/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  --font-semi: 600;
  /*===== Colours ==#3e6ff4===*/
  /*Purple 260 - Red 355 - Blue 224 - Pink 340*/
  /* HSL color mode */
  --hue-color: 224;
  --first-color: hsl(var(--hue-color), 89%, 60%);
  --second-color: hsl(var(--hue-color), 56%, 12%);
  /*===== Fuente y tipografia =====*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;
  --smaller-font-size: .75rem;
  /*===== Margenes =====*/
  --mb-2: 1rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  /*===== z index =====*/
  --z-back: -10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --smaller-font-size: .875rem;
  }
}

/*=================== BASE ==============================*/

.noDecoration, a:link, a:visited {
  text-decoration: none;
}


*, ::before, ::after {
  box-sizing: border-box;
}

a:link {
  text-decoration: none!important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second-color);
}

h1, h2, p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*====================== CLASS CSS ============================== */
.section-title {
  position: relative;
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-4);
  text-align: center;
}

.section-title::after {
  position: absolute;
  content: '';
  width: 64px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 2rem;
  background-color: var(--first-color);
}

.section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

/*=========================== LAYOUT ==========================*/
.bd-grid {
  max-width: 1024px;
  display: grid;
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
  grid-column-gap: 2rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.15);
}

/*========================= NAV ==========================*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-semi);
}


@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    height: 20%;
    padding: 1rem;
    background-color: var(--second-color);
    transition: .1s;
    z-index: 9;
  }
}

.nav__item {
  margin-bottom: 2rem;
}

.nav__link {
  position: relative;
  color: #fff;
}

.nav__link:hover {
  position: relative;
}

.nav__link:hover::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}

.nav__logo {
  color: var(--second-color);
}

.nav__toggle {
  color: var(--second-color);
  font-size: 2rem;
  cursor: pointer;
}


/*Active menu*/
.active::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}

@media screen and (max-width: 768px) {
  .active::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0.18rem;
    left: 0;
    top: 1.25rem;
  }
}

/*=== Show menu ===*/
.show {
  right: 0;
}

/* Active Link ============================*/
.active-link {
color: var(--first-color);
}

/*============================== HOME ==============================*/
.colorchange {
  animation: color-change 99s infinite;
}

@keyframes color-change {
  0% { color: #000; }
  97% { color: var(--first-color); }
  98% { color: #ffffff; }
  99% { color: #000; }
  100% { color: #000; }
}

.animated-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

span#words {
  font-weight: bolder;
}

.shinytext {
position: relative;

background: linear-gradient(90deg, #000000, #000000, #ffffff);
background-repeat: no-repeat;
background-size: 80%;
animation: animate 3s infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: rgb(0, 0, 0);
}

@keyframes animate {
0% {
  background-position: -500%;
}
100% {
  background-position: 800%;
}
}

.boxvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 95%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.85;
}  

.contentuno {
  color: #000000;
  font: var(--h2-font-size);
  font-size: 1.2rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 4%;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(224, 224, 224, 0.1);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.05), -.125rem -.125rem 0.8rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.1); 
}

.contentuno:not([disabled]):focus {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.8), -.125rem -.125rem 2rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.contentuno:not([disabled]):hover {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 2.5rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.contentuno2 {
  max-height: 300px;
  overflow-y: scroll;
  color: #000000;
  font: var(--h2-font-size);
  font-size: 1.05rem;
  font-weight: 550;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4%;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(224, 224, 224, 0.1);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 0.8rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.1); 
  }


.contentuno2:not([disabled]):focus {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.8), -.125rem -.125rem 2rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.contentuno2:not([disabled]):hover {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.8), -.125rem -.125rem 2.5rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}




@media screen and (max-width: 366px) {
  .contentuno {
    display: none
  }
  }

.home {
  position: relative;
  row-gap: 5rem;
  padding: 4rem 0 5rem;
}

.home__data {
  align-self: center;
}

.home__title {
  font-size: var(--big-font-size);
  margin-bottom: var(--mb-5);
}

.home__title-color {
  color: var(--first-color);
}

.home__social {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 366px) {
  .home__social {
    display: none
  }
  }

.home__social-icon {
  width: max-content;
  margin-bottom: var(--mb-2);
  font-size: 1.85rem;
  font-weight: bolder;
  color: #000000;
  text-decoration: none;
  z-index: 2;
}

.home__social-icon:hover {
  color: var(--first-color);
}

.home__img {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 280px;
}

.home__blob {
  fill: var(--first-color);
}

.home__blob-img {
  width: 360px;
}


/*--=========================--not in use button stuff--=========================--*/
/*---
.bx-envelope{
  box-shadow: 0 0 10rem rgba(0, 0, 0, 0.05), -.125rem -.125rem 0.01rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.1); 

}

.bxl-whatsapp {
  box-shadow: 0 0 10rem rgba(0, 0, 0, 0.05), -.125rem -.125rem 0.01rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.1); 

}

.bxl-instagram {
  box-shadow: 0 0 10rem rgba(0, 0, 0, 0.05), -.125rem -.125rem 0.01rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.1); 

}

.bxl-facebook {
  box-shadow: 0 0 10rem rgba(0, 0, 0, 0.05), -.125rem -.125rem 0.01rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.1); 

}
-*/

/*---=========================-shake--=========================--*/
.face:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

/*--=========================--TYPEWRITER-=========================---*/
.css-typing p {
  border-right: .15em solid rgb(0, 110, 255, O.0);
  white-space: nowrap;
  overflow: hidden;
}
.css-typing p:nth-child(1) {
  width: 7.3em;
  -webkit-animation: type 2s steps(100, end);
  animation: type 2s steps(40, end);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.css-typing p:nth-child(2) {
  width: 11.5em;
  opacity: 0;
  -webkit-animation: type2 2s steps(999, end);
  animation: type2 1s steps(40, end);
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.css-typing p:nth-child(3) {
  width: 7.3em;
  opacity: 0;
  -webkit-animation: type3 1s steps(999, end), blink .5s step-end infinite alternate;
  animation: type3 5s steps(9990, end), blink .5s step-end infinite alternate;
  -webkit-animation-delay: 1s;
  animation-delay: 4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid rgb(0, 110, 255, O.0);
  }
  100% {
    border: none;
  }
}

@-webkit-keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid rgb(255, 255, 255, 0.1);
  }
  100% {
    border: none;
  }
}

@keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid rgb(0, 102, 255, 0.1);
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@-webkit-keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid rgb(0, 132, 255, 0.1);
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    border-color: tranparent;
  }
}



/*=========================BUTTONS=========================*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  font-weight: var(--font-semi);
  border-radius: .5rem;
  transition: .3s;
  position: relative;
  z-index: 3;
  padding: 2em;
  margin: -2em;
}

.button:hover {
  box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.15);
}

.button-62 {
  background: hsl(var(--hue-color), 89%, 60%);
  border: 0;
  border-radius: 12px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  line-height: 2.5;
  outline: transparent;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.button-62:not([disabled]):focus {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.8), -.125rem -.125rem 2rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.button-62:not([disabled]):hover {
  box-shadow: 0 0 .25rem rgb(255, 255, 255), -.125rem -.125rem 2.5rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.button-63 {
  margin-left: 42%;
  align-items: center;
  background: hsl(var(--hue-color), 89%, 60%);
  border: 0;
  border-radius: 12px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  line-height: 2.5;
  outline: transparent;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.button-63:not([disabled]):focus {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.8), -.125rem -.125rem 2rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.button-63:not([disabled]):hover {
  box-shadow: 0 0 .25rem rgb(255, 255, 255), -.125rem -.125rem 2.5rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.button-64 {
  height: 34px;
  background: hsl(var(--hue-color), 89%, 60%);
  border: 0;
  border-radius: 12px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  line-height: 2.5;
  outline: transparent;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem #fff, .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

/*========================= ABOUT =========================*/
.about__container {
  row-gap: 2rem;
  text-align: center;
}

.about__subtitle {
  margin-bottom: var(--mb-2);
}

.about__img {
  justify-self: center;
}

.about__img img {
  width: 200px;
  border-radius: .5rem;
}


.aboutbackground{ 
  background-image: url(assets/img/screenshot.png);
}


 /* ------ACCORDION ========================= */
 .glass {
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 15px;
  margin-left: 8px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 2px;
  border: 0px solid rgba(255, 255, 255, 0.5);
  box-shadow: 5px rgba(27, 68, 201, 0.5);
}
.accordion-bral {
  min-height: 0;
  min-width: 220px;
  width: 90%;
  height: 100%;
  background-image;:(assets/img/screenshot2.png);
  margin: 0px!important; 

}
.accordion-bral .ac-label {
  padding: 2px 1px;
  position: relative;
  display: block;
  height: auto;
  cursor: pointer;
  background: transparent;
  font-size: var(--smaller-font-size);
  border-radius: 0.8rem;
  box-shadow: 0px 2px 5px rgba(14, 36, 49, 0.2);
  margin: 1%;
}
.accordion-bral .ac-label:hover {
  background-color: var(--first-color);
  color: #fff;
  font-weight: bold;
}
.accordion-bral input + .ac-label  {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion-bral input:checked + .ac-label,
.accordion-bral input:checked + .ac-label:active {
  background-color: var(--first-color);
  color: #FFF;
  box-shadow: 0px 0px 0px 0px rgba(155, 155, 155, 0.3), 0px 2px 0px rgba(0, 0, 0, 0.1);
}
.accordion-bral input.ac-input {
  display: none;
}
.accordion-bral .article {
  font-size: var(--smaller-font-size);
  background: rgb(240, 240, 240, 0.2);
  overflow: hidden;
  height: 0px;
  max-height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion-bral .article p {
  
  padding: 10px;
}
.accordion-bral input:checked ~ .article i {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.accordion-bral input:checked ~ .article.ac-content {
  height: auto;
}

.accordion-bral i {
  position: absolute;
  transform: translate(-30px, 0);
  margin-top: 8px;
  right: 0;
}
.accordion-bral input:checked ~ .ac-label i:before {
  transform: translate(2px, 0) rotate(-45deg);
}
.accordion-bral input:checked ~ .ac-label i:after {
  transform: translate(-2px, 0) rotate(45deg);
}
.accordion-bral i:before, .accordion-bral i:after {
  background-color: #FFF;
  content: " ";
  position: absolute;
 padding: 1.5px;
  width: 2.5px;
  height: 9px;
}

.accordion-bral i:before {
  transform: translate(-2px, 0) rotate(-45deg);
}
.accordion-bral i:after {
  transform: translate(2px, 0) rotate(45deg);
 
}
ul.ac-list {
  padding-left: 40px;
  list-style-type: disc; 
}

table.ac-table {
  margin: 20px 0 20px 20px;
}
table.ac-table th{
  text-align: left;
}

@media (max-width: 550px) {
  .accordion-bral .ac-label {
  padding: 5px 10px;
  position: relative;
  display: block;
  height: auto;
  padding-right: 20px;
  cursor: pointer;
  color: #1d1d1d;
  line-height: 33px;

}
  .accordion-bral i {
  position: absolute;
  transform: translate(-30px, 0);
  margin-top: 2%;
  right: 0;
}
}

ul {
  list-style: none;

}

a {
  text-decoration: none;
}

ul:hover li a{
transform:scale(2);
opacity:0.2;
filter:blur(5px);
transition:1.5s;
}

ul li a:hover{
transform:scale(3);
opacity:1;
filter:blur(0);
text-decoration:none;
}

ul li a:before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background: rgba(233, 233, 233, 0);
transition:0.5s;
transform-origin:left;
transform:scaleX(0);
z-index:-1;
}

ul li a:hover:before{
transition:transform 3s;
transform-origin:left;
transform:scaleX(1);
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 110px;
}
@media (max-width: 800px)  {
  h2 {
  display: none;
  }
}
@media (max-width: 1000px)  {
  section {
      padding: 100px 50px;
  }  
}
@media (max-width: 600px)  {
  section {
      padding: 125px 30px;
  }  
}
.nav {
font-size: larger;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a {
  font-weight: 800;
}

header h2{
  text-decoration: none;
}

header .nav {
  display: flex;
}

header .nav li {
  margin: 0 15px;
}

header .nav li:first-child {
  margin-left: 0;
}

header .nav li:last-child {
  margin-right: 0;
}
@media(max-width:1000px) {
  header {
      padding: 20px 50px;
  }
}

@media(max-width:700px) {
  header {
      flex-direction: column;
  }
  header h2 {
      margin-bottom: 15px;
  }
  header .nav li {
      margin: 0 7px;
  }
}

.box {
  position: relative;
  justify-content: center;
  min-height: 100vh;
  color: #fff;
  text-align: center;
}

.box video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.box h1 {
  margin-bottom: 15px;
  font-size: 65px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
}

.box h3 {
  margin-bottom: 40px;
  font-size: 199px;
}

.box a.boxBtn {
  border-style: solid;
  border-width: 5px;
  padding: 1px 50px;
  background: transparent;
  border-radius: 50px;
  border:  2px solid #fff;
  transition: all 0.5s;
  font-size: larger;
border-radius: 16px;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.bluetxt {
  font-size: larger;
color: var(--first-color);
font-weight: 750;
text-align: center;
margin: 4px;
}

.bluetxt:hover {
  color: #fff;
  }


.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
max-width: 20%;
}


/*=============== SKILLS =========================*/

.bb {
  font-size: xx-large;
 color: var(--first-color);
}

.skills__container {
  row-gap: 2rem;
  text-align: center;
}

.skills__subtitle {
  margin-bottom: var(--mb-2);
}

.skills__subtitle2 {
  margin-bottom: var(--mb-2);
}

.skills__text {
  margin-bottom: var(--mb-4);
}

.skills__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: var(--font-semi);
  padding: .5rem 1rem;
  margin-bottom: var(--mb-4);
  border-radius: .5rem;
  box-shadow: 0px 4px 25px rgba(14, 36, 49, 0.15);
}

.skills__icon {
  font-size: 2rem;
  color: var(--first-color);
}

.skills__names {
  display: flex;
  align-items: center;
}

.skills__name {
  display: flex;
  align-items: center;

}

.skills__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--first-color);
  height: .25rem;
  border-radius: .5rem;
  z-index: var(--z-back);
}

.skills__html {
  width: 100%;
}

.skills__css {
  width: 100%;
}

.skills__js {
  width: 100%;
}

.skills__ux {
  width: 100%;
}

.skills__img {
  border-radius: .5rem;
}

.nodec {
  text-decoration: none; !important
}


/*============== WORK ==============================*/
.work__container {
  row-gap: 2rem;
}

.work__img {
  box-shadow: 0px 4px 25px rgba(14, 36, 49, 0.15);
  border-radius: .5rem;
  overflow: hidden;
}

.work__img img {
  transition: 1s;
}

.work__img img:hover {
  transform: scale(1.1);
}

/* ===================== CONTACT ==============================*/
.contact__input {
  width: 100%;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi);
  padding: 1rem;
  border-radius: .5rem;
  border: 1.5px solid var(--second-color);
  outline: none;
  margin-bottom: var(--mb-4);
}

.contact__button {
  display: block;
  border: none;
  outline: none;
  font-size: var(--normal-font-size);
  cursor: pointer;
  margin-left: auto;
}

/* ================= FOOTER ==============================*/
.footer {
  background-color: var(--second-color);
  color: #fff;
  text-align: center;
  font-weight: var(--font-semi);
  padding: 0.1rem 0;
}

.footer__title {
  font-size: 2rem;
  margin-bottom: var(--mb-1);
}

.footer__social {
  margin-bottom: var(--mb-1);
}

.footer__icon {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 var(--mb-1);
}

.footer__copy {
  font-size: var(--smaller-font-size);
}

/*================== MEDIA QUERIES ==============================*/
@media screen and (max-width: 320px) {
  .home {
    row-gap: 2rem;
  }
  .home__img {
    width: 200px;
  }
}

@media screen and (min-width: 576px) {
  .home {
    padding: 4rem 0 2rem;
  }
  .home__social {
    padding-top: 0;
    padding-bottom: 2.5rem;
    flex-direction: row;
    align-self: flex-end;
  }
  .home__social-icon {
    margin-bottom: 0;
    margin-right: var(--mb-4);
  }
  .home__img {
    width: 300px;
    bottom: 25%;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: initial;
  }
  .skills__container {
    grid-template-columns: .7fr;
    justify-content: center;
    column-gap: 1rem;
  }
  .work__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    padding-top: 2rem;
  }
  .contact__form {
    width: 360px;
    padding-top: 2rem;
  }
  .contact__container {
    justify-items: center;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .section {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .section-title {
    margin-bottom: var(--mb-6);
  }
  .section-title::after {
    width: 80px;
    top: 3rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__list {
    display: flex;
    padding-top: 0;
  }
  .nav__item {
    margin-left: var(--mb-6);
    margin-bottom: 0;
  }
  .nav__toggle {
    display: none;
  }
  .nav__link {
    color: var(--second-color);
  }
  .home {
    padding: 8rem 0 2rem;
  }
  .home__img {
    width: 400px;
    bottom: 10%;
  }
  .about__container {
    padding-top: 2rem;
  }
  .about__img img {
    width: 300px;
  }
  .skills__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    align-items: center;
    text-align: initial;
  }
  .work__container {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }
  .home {
    padding: 10rem 0 2rem;
  }
  .home__img {
    width: 450px;
  }
}

