@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --dark-grey: hsl(0, 0%, 7%);
  --medium-grey: hsl(0, 0%, 30%);
  --light-grey: hsl(0, 0%, 97%);
  --white: hsl(0, 0%, 100%);
  --primary: hsl(76, 91%, 55%);
  --font: 'Work Sans', sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  background: var(--dark-grey);
  color: var(--primary);
  -webkit-text-stroke: 0px var(--primary);
}

::selection {
  background: var(--dark-grey);
  color: var(--primary);
  -webkit-text-stroke: 0px var(--primary);
}

body {
  background: var(--dark-grey);
  color: var(--dark-grey);
  padding: 0;
  margin: 0;
  text-shadow: none;
  -webkit-text-size-adjust: none;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: var(--font);
}

hr {
  clear: both;
  border-top: 5px solid hsla(0 0% 0% / .1);
  height: 1px;
  margin: 2.4rem 0;
}

a {
  color: var(--dark-grey);
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6{
  font-weight: 400;
  color: var(--dark-grey);
  margin-bottom: 3.2rem;
  line-height: 1.1;
  text-transform: uppercase;
}

h1,
.h1 {
  font-size: 5.6rem;
}

h2,
.h2 {
  font-size: 4.8rem;
}

h3,
.h3 {
  font-size: 4rem;
}

h4,
.h4 {
  font-size: 3.2rem;
}

h5,
.h5 {
  font-size: 2.4rem;
}

h6,
.h6 {
  font-size: 2rem;
}

p {
  margin: 0 0 1.6rem;
}

.btn{
  text-decoration: none;
  color: var(--dark-grey);
  border: .1rem solid var(--dark-grey);
  text-transform: uppercase;
  letter-spacing: .1rem;
  border-radius: 3.2rem;
  padding: 1rem 3.2rem 0.8rem;
  display: inline-block;
  position: relative;
  transition: all .35s ease-in-out;
  overflow: hidden;
}
.btn::after{
  content: '';
  height: 100%;
  width: 100%;
  left: -100%;
  top: 0;
  background: var(--dark-grey);
  position: absolute;
  transition: all .35s ease-in-out;
}
.btn:hover:hover::after{
  left: 0;
}
.btn span{
  position: relative;
  z-index: 1;
}
.btn:hover{
  color: #fff;
}
section{
  width: 100%;
  background: #fff;
  padding: 3.2rem;
  position: relative;
}
header.bar-header .scroll-hide{
  transition: all .5s ease-in-out;
}
header.bar-header.header-bg .scroll-hide{
  opacity: 0;
}
header.bar-header .container{
  transition: all .5s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.bar-header.header-bg .container{
  padding: 1.6rem 4rem 1.2rem;
  border-radius: 4rem;
  background: hsl(0 0% 100%);
  box-shadow: 0 0 1.6rem hsla(0 0% 0% / .15);
}
header.bar-header.header-bg a.logo{
  width: 150px;
}
header nav{
  max-width: 60rem;
  width: 100%;
}
header nav ul{
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
header nav ul li{
  text-align: right;
  width: calc(33.3333% - 11px);
}
header nav ul li a{
  text-decoration: none;
  color: var(--dark-grey);
  font-size: 1.8rem;
  text-transform: uppercase;
  position: relative;
  padding: 0 .8rem;
  transition: all .5s ease-in-out;
}
header nav ul li a:hover{
  color: var(--white);
}
header nav ul li a::after{
  content: '';
  width: 0;
  height: 100%;
  background: var(--dark-grey);
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .5s ease-in-out;
}
header nav ul li a:hover::after{
  width: 100%;
}
header nav ul li a > span{
  position: relative;
  z-index: 1;
}
section.hero{
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.container{
  max-width: 1304px;
  margin: 0 auto;
  width: 100%;
}

#hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.layer {
  background-position: bottom center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  position: fixed;
  aspect-ratio: 643 / 661;
  max-width: 643px;
}

.layer-bg {
  background-image: url(../../assets/images/hero-background.png);
}

.layer-1 {
  background-image: url(../../assets/images/hero-layer-01.png);
}

.layer-2::after{
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  bottom: -100%;
}

.text-layer h1,
.text-layer span{
  color: var(--dark-grey);
  font-size: 17.5rem;
  line-height: .9;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  transform: translate(0, -50%);
  width: 1304px;
  -webkit-text-stroke: 2px var(--dark-grey);
}
.text-layer svg{
  width: calc(1304px - 200px);
  right: 190px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.outline-layer h1{
  color: hsla(0 0% 0% / 0);
}

.skewO,
.text-layer h1 > strong,
.text-layer span > strong{
  font-weight: 400;
  display: inline-block;
  transform: rotate(45deg);
}

p span.skewO{
  position: relative;
  top: 0.5px;
  left: 0.5px;
}

.outline-layer{
  overflow: hidden;
}

.hero-text-solid {
  fill: #121212;
  stroke-width: 0px;
}

.hero-text-outline {
  fill: #121212;
  stroke-width: 0px;
}

.subtitle-layer h2{
  text-transform: uppercase;
  font-weight: 400;
  color: var(--dark-grey);
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  transform: translate(16px, 160px);
  width: 1304px;
  margin: 0;
}

header{
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 1.6rem 3.2rem;
}

a.logo{
  display: block;
  width: 200px;
  transition: all .5s ease-in-out;
}

a.logo svg{
  width: 100%;
}

.logo-svg{
  fill: var(--dark-grey);
  stroke-width: 0px;
}

.intro-strip{
  border-top: 1px solid var(--medium-grey);
  border-bottom: 1px solid var(--medium-grey);
  padding: 9.6rem 3.2rem;
}
.intro-strip .container{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.intro-strip .h6{
  position: relative;
  padding-left: 3.2rem;
}
.intro-strip .h6::before{
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background: url(../../assets/images/icon-wave.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: calc(50% - 1.2rem);
  animation: wave 10s ease-out infinite;
}
@keyframes wave {
  0%{
    transform: rotate(0deg);
  }
  10%{
    transform: rotate(45deg);
  }
  20%{
    transform: rotate(-25deg);
  }
  30%{
    transform: rotate(0deg);
  }
}
.intro-strip h1,
.intro-strip .h6{
  width: 100%;
  margin: 0;
}
.intro-strip h1{
  letter-spacing: -1px;
}
.intro-strip .skill-box,
.intro-strip h2,
.intro-strip p{
  width: calc(75% - 3.2rem);
}
.intro-strip h2{
  margin-top: 3.2rem;
  font-size: 3.2rem;
}
.intro-strip .skill-box{
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.intro-strip .skill-box > *{
  width: calc(100% / 5);
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--medium-grey);
  border-bottom: 1px solid var(--medium-grey);
  position: relative;
}
.intro-strip .skill-box > *:nth-of-type(5){
border-right: none;
}
.intro-strip .skill-box > *:nth-of-type(6),
.intro-strip .skill-box > *:nth-of-type(7),
.intro-strip .skill-box > *:nth-of-type(8),
.intro-strip .skill-box > *:nth-of-type(9){
  border-bottom: none;
}
.intro-strip .skill-box > *:nth-of-type(10){
  border: none;
}
.intro-strip .skill-box img{
  filter: grayscale(1);
  width: auto;
  height: 8rem;
  transition: all .35s ease-in-out;
}
.intro-strip .skill-box > *:hover img{
  filter: grayscale(0);
}
.intro-strip .skill-box h4{
  position: absolute;
  background: hsla(0 0% 7% / .35);
  backdrop-filter: blur(6px);
  padding: .8rem 1.6rem;
  font-size: 1.6rem;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  opacity: 0;
  transition: all .35s ease-in-out;
  width: calc(100% - 1.6rem);
  text-align: center;
}
.intro-strip .skill-box > *:hover h4{
  opacity: 1;
}
.portfolio-strip{
  padding: 0;
  position: relative;
  z-index: 1;
}
.portfolio-item{
  min-height: calc(100vh / 6);
  width: 100%;
  border-bottom: 1px solid var(--medium-grey);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: none;
}
.portfolio-item::before{
  content: '';
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  position: absolute;
  background: var(--dark-grey);
  transition: all .5s ease-in-out;
}
.portfolio-item:hover{
  z-index: 2;
  overflow: visible;
}
.portfolio-item:hover::before{
  left: 0;
}

.portfolio-item .container{
  position: relative;
}

.portfolio-item h2{
  transition: all .45s ease-in-out;
  margin: 0 0 .8rem;
}

.portfolio-item:hover h2{
  color: #fff;
}

.portfolio-item .skills{
  display: flex;
  gap: 1.6rem;
}

.portfolio-item .skills span{
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
  padding: .8rem 4rem;
  border: 1px solid var(--dark-grey);
  border-radius: 3rem;
  transition: all .45s ease-in-out;
}

.portfolio-item:hover .skills span{
  color: #fff;
  border-color: #fff;
}

.portfolio-item .preview{
  position: absolute;
  right: 15%;
  top: 50%;
  max-width: 30rem;
  width: 100%;
  height: 0;
  transform: translate(0 , -50%);
  aspect-ratio: 3 / 4;
  opacity: 0;
  transition: all .5s ease-in-out;
  /* overflow: hidden; */
  box-shadow: 0 0 1.6rem hsla(0 0% 0% / .16);
}

.portfolio-item .preview:hover{
  overflow: visible;
  box-shadow: none;
}

.portfolio-item:hover .preview{
  opacity: 1;
  height: 40rem;
}

.portfolio-item .preview img.spinning-img{
  width: 12.4rem;
  height: 12.4rem;
  animation: siteSpin 10s infinite linear;
  position: absolute;
  z-index: 3;
  transition: opacity .5s ease-in-out;
  background: var(--dark-grey);
  border-radius: 50%;
  padding: 1.2rem;
  top: calc(50% - 6.2rem);
  right: -6.2rem;
}

@keyframes siteSpin{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
.portfolio-item .preview:hover img.spinning-img{
  opacity: 0;
}

.preview .background-box{
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  position: absolute;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.preview:hover .background-box{
  box-shadow: 0 0 1.6rem hsla(0 0% 0% / .16);
  transform: perspective(900px) translateY(0%) rotateX(25deg) translateZ(0);
}


.preview .image-hover,
.preview .image-crop{
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all .5s ease-in-out;
  z-index: 2;
  overflow: hidden;
}

.preview:hover .image-crop{
  opacity: 0;
}

.preview .image-hover{
  z-index: 3;
  overflow: visible;
  opacity: 0;
  transition: all .5s ease-in-out 0s;
}
.preview:hover .image-hover{
  opacity: 1;
  transition: all .5s ease-in-out .5s;
}

.preview .image-hover img,
.preview .image-crop img{
  height: 125%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
}
.preview .image-crop img{
  transform: translate(-50% , -50%) rotate(-32deg);
}
.preview .image-hover img{
  height: calc(100% - 1.6rem);
  top: auto;
  bottom: -8px;
  transform: translate(-50% , 0);
}

.stats-strip{
  padding: 4.8rem 3.2rem;
  background: var(--dark-grey);
}

.stats-strip .container{
  display: flex;
  gap: 3.2rem;
  text-align: center;
}

.stat{
  color: var(--white);
  width: calc(33.3333% - 22px);
}

.stat h2{
  color: var(--white);
  margin: 0 0 1.6rem;
  font-size: 8rem;
  height: 9rem;
  padding-right: 10px;
}

.stat:last-of-type h2{
  padding: 0;
  font-size: 10rem;
  top: -2px;
  position: relative;
}

.stat h2.counter-value::after{
  content: '+';
  font-size: 4rem;
  position: absolute;
}

.stat p{
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.portfolio-intro{
  background: var(--dark-grey);
  padding: 4.8rem 0;
  border-bottom: 1px solid var(--white);
}

.portfolio-intro h2{
  font-size: 20rem;
  line-height: 1;
  color: var(--white);
  margin: 0;
}

.logo-strip{
  padding: 6.4rem 0;
}

.logo-strip .container{
  /* max-width: 100%; */
  padding: 0 3.2rem;
}

.logo-strip h2{
  font-size: 3.2rem;
  margin: 0;
}

.logo-strip img{
  width: 200px;
  margin: 0;
  height: auto;
  display: block;
  opacity: .4;
}

.scroller{
  max-width: 100%;
  margin: 0 auto;
}

.inner-scroller{
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.scroller[data-animated=true]{
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated=true] .inner-scroller{
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 20s infinite linear;
}

.second-scroller{
  overflow: hidden;
}
.second-scroller .inner-scroller{
  gap: 4.8rem;
}
.second-scroller[data-animated=true] .inner-scroller{
  animation: secondScroll 20s infinite linear;
}

@keyframes scroll {
  to{
    transform: translate(calc(-50% - .8rem));
  }
}

@keyframes secondScroll {
  to{
    transform: translate(calc(-50% - 2.4rem));
  }
}

.lets-chat{
  padding: 9.6rem 3.2rem;
  background: var(--dark-grey);
}
.lets-chat .container{
  position: relative;
}
.lets-chat .content{
  width: 50%;
  position: relative;
  z-index: 1;
}
.lets-chat a,
.lets-chat h2,
.lets-chat p{
  color: var(--white);
}
.lets-chat a{
  text-decoration: none;
}
.lets-chat a:hover{
  color: var(--primary);
}
.lets-chat h2{
  font-size: 12rem;
  line-height: .9;
  letter-spacing: -.2rem;
}
.lets-chat p{
  margin-bottom: 4.8rem;
}
.contact-info{
  border-top: 1px solid hsl(0 0% 100%);
  border-bottom: 1px solid hsl(0 0% 100%);
  margin-bottom: 4.8rem;
  padding: 0.8rem 0;
  color: hsl(0 0% 100%);
}
.contact-info span:first-of-type{
  padding-right: 1.6rem;
  margin-right: 1.6rem;
  border-right: 1px solid hsl(0 0% 100%);
}
.lets-chat a.btn{
  color: #fff;
  border-color: #fff;
  margin: 0 1.6rem 0 0;
}
.lets-chat a.btn::after{
  background: var(--white);
}
.lets-chat a.btn:hover{
  color: var(--dark-grey);
}
.lets-chat svg{
  position: absolute;
  top: -0.9rem;
  left: auto;
  right: 0;
  width: 48rem;
  height: auto;
  opacity: .5;
}
.icon-outline {
  fill: none;
  stroke: var(--white);
  stroke-miterlimit: 10;
  stroke-width: .1rem;
}
.icon-fill {
  fill: var(--white);
  stroke-miterlimit: 0;
  stroke-width: 0;
}
footer{
  background: var(--dark-grey);
  border-top: .1rem solid #fff;
  padding: 4.8rem 3.2rem;
  position: relative;
}
footer *{
  color: #fff;
}
footer .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer svg{
  width: 50px;
  height: auto;
}
footer ul{
  display: flex;
  list-style: none;
  gap: 4.8rem;
}
footer a{
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05rem;
  position: relative;
  padding: 0 0.8rem;
  transition: all .5s ease-in-out;
}
footer a::after{
  content: '';
  width: 0;
  height: 100%;
  background: var(--white);
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .5s ease-in-out;
}
footer a:hover::after{
  width: 100%;
}
footer a span{
  position: relative;
  z-index: 1;
  transition: all .5s ease-in-out;
}
footer a:hover span{
  color: var(--dark-grey);
}
footer p{
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
#meet-me,
#portfolio,
#lets-talk{
  position: absolute;
  top: -100px;
}
header .nav-drawer{
  display: none;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--dark-grey);
  z-index: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(0, -101%);
  transition: all .5s ease-in-out;
}
header.active .nav-drawer{
  transform: translate(0, 0);
}
header.active .logo-svg{
  fill: white;
}
header.header-bg.active .logo-svg{
  fill: var(--dark-grey);
}
.nav-drawer nav{
  display: block;
}
.nav-drawer nav ul{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav-drawer nav ul li{
  width: auto;
}
.nav-drawer nav ul li a{
  color: white;
  font-size: 4rem;
}
.nav-drawer nav ul li a:hover{
  color: var(--dark);
}
.nav-drawer nav ul li a::after{
  background: white;
}
body.nav-active{
  overflow: hidden;
}
header .ham-btn{
  display: none;
  width: 2.4rem;
  height: 18px;
  position: relative;
  cursor: pointer;
}
.ham-btn span{
  width: 100%;
  height: 2px;
  background: var(--dark-grey);
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translate(-50%, 0);
  transition: all .5s ease-in-out;
}
header.active .ham-btn span{
  background: white;
}
header.header-bg.active .ham-btn span{
  background: var(--dark-grey);
}
.ham-btn span:first-child{
  top: 0;
}
.ham-btn span:last-child{
  bottom: 0;
  top: auto;
}
header.active .ham-btn span:first-child{
  transform: translate(-50%, 0) rotate(45deg);
  top: 8px;
}
header.active .ham-btn span:last-child{
  transform: translate(-50%, 0) rotate(-45deg);
  bottom: 8px;
}
header.active .ham-btn span:nth-child(2){
  opacity: 0;
}
/* ---------- Responsiveness ---------- */
@media screen and (max-width: 1366px){
  .container{
    max-width: 1024px;
  }
  .layer{
    max-width: 482px;
  }
  .text-layer svg{
    width: calc(1024px - 150px);
    right: 150px;
  }
  .subtitle-layer h2{
    transform: translate(2px, 130px);
    width: 1024px;
  }
  .portfolio-item h2{
    font-size: 4rem;
  }
}
@media screen and (max-width: 1090px){
  .container{
    max-width: 768px;
  }
  .layer{
    max-width: 420px;
    margin: 17vh 0 0;
  }
  .text-layer svg{
    width: calc(768px - 80px);
    right: 80px;
    top: -1vh;
  }
  .subtitle-layer h2{
    transform: translate(2px, -100%);
    width: 768px;
    top: 100%;
  }
  .intro-strip .skill-box > *{
    width: calc(100% / 4);
  }
  .intro-strip .skill-box > *:nth-of-type(4),
  .intro-strip .skill-box > *:nth-of-type(8){
    border-right: none;
  }
  .intro-strip .skill-box > *:nth-of-type(5),
  .intro-strip .skill-box > *:nth-of-type(6){
    border-right: 1px solid var(--medium-grey);
  }
  .intro-strip .skill-box > *:nth-of-type(6), 
  .intro-strip .skill-box > *:nth-of-type(7),
  .intro-strip .skill-box > *:nth-of-type(8) {
    border-bottom: 1px solid var(--medium-grey);
  }
  .intro-strip .skill-box h4{
    padding: .8rem;
  }
  .portfolio-item{
    padding: 3.2rem 0;
    text-align: center;
  }
  .portfolio-item .preview{
    position: inherit;
    top: auto;
    right: auto;
    transform: translate(0, 0);
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  .portfolio-item:hover .preview{
    margin: 0 auto 2.4rem;
  }
  .portfolio-item .preview img.spinning-img{
    right: -2.2rem;
  }
  .portfolio-item .skills{
    justify-content: center;
  }
  .lets-chat svg{
    width: auto;
    height: calc(100% + 6.4rem);
    opacity: .05;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }
  .lets-chat h2{
    width: 50%;
  }
  .lets-chat .content{
    width: 100%;
  }
}
@media screen and (max-width: 830px){
  .container{
    max-width: 520px;
  }
  #hero{
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10vh;
  }
  .layer{
    margin: 0;
  }
  .text-layer svg{
    width: calc(100vw - 64px);
    right: 50%;
    top: 0;
    transform: translate(50%, -55%);
  }
  .subtitle-layer h2{
    transform: translate(-50%, calc(-100% - 14vh));
    width: calc(100vw - 64px);
    top: 0;
    left: 50%;
  }
  header nav{
    display: none;
  }
  header.bar-header .container{
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }
  header.bar-header .container
  a.logo{
    width: 15rem;
  }
  header.bar-header.header-bg .scroll-hide{
    opacity: 1;
  }
  .stats-strip .container{
    flex-direction: column;
  }
  .stat{
    width: 100%;
  }
  .intro-strip h1{
    margin: 0 0 3.2rem;
  }
  .intro-strip .skill-box, .intro-strip h2, .intro-strip p{
    width: 100%;
  }
  .intro-strip .skill-box h4{
    font-size: 1.4rem;
  }
  .intro-strip .skill-box > * {
    width: calc(100% / 2);
  }
  .intro-strip .skill-box > *:nth-of-type(4),
  .intro-strip .skill-box > *:nth-of-type(5),
  .intro-strip .skill-box > *:nth-of-type(6), 
  .intro-strip .skill-box > *:nth-of-type(7),
  .intro-strip .skill-box > *:nth-of-type(8) {
    border-bottom: 1px solid var(--medium-grey);
    border-right: 1px solid var(--medium-grey);
  }
  .intro-strip .skill-box > *:nth-of-type(2n){
    border-right: none;
  }
  .intro-strip .skill-box > *:nth-of-type(9){
    border-bottom: none;
  }
  .portfolio-intro h2{
    font-size: 12rem;
  }
  .portfolio-item h2{
    font-size: 3.2rem;
  }
  .portfolio-item .skills{
    flex-direction: column-reverse;
    align-items: center;
  }
  footer .container{
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
  }
  .lets-chat h2{
    width: 100%;
  }
  header .nav-drawer{
    display: flex;
  }
  header .ham-btn{
    display: flex;
  }
}
@media screen and (max-width: 620px){
  .preview .image-hover img {
    width: calc(100vw - 64px);
    height: auto;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, calc(-50% + 17px));
  }
}
@media screen and (max-width: 600px){
  #hero{
    align-items: center;
    padding: 18vh 0 0;
  }
  .layer{
    max-width: 320px;
  }
  .subtitle-layer h2{
    transform: translate(-50%, calc(-100% - 10vh));
  }
  footer ul{
    flex-direction: column;
    gap: 1.6rem;
    text-align: center;
    align-items: center;
  }
  .lets-chat a.btn{
    margin: 0 0 1.6rem;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 480px){
  .lets-chat h2{
    font-size: 8rem;
  }
  .contact-info span{
    display: block;
  }
  .contact-info span:first-of-type{
    border-right: none;
    border-bottom: 1px solid hsl(0 0% 100%);
    padding: 0 0 .8rem;
    margin: 0 0 .8rem;
  }
}