@font-face {
    font-family: neu;
    src: url(./font/NeueHaasGrotDisp-65Medium-Trial.otf) format("opentype");
}
@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(./font/NeueHaasGrotDisp-45Light-Trial.otf) format("opentype");
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: neu;
}
html,
body {
  height: 100%;
  width: 100%;
}
#main {
  position: relative;
  z-index: 10;
}
#page1 {
  min-height: 100vh;
  width: 100%;
  background-color: #efeae3;
  position: relative;
  padding: 0 2vw;
}
nav {
  padding: 2vw 0vw;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  z-index: 100;
  justify-content: space-between;
}
#nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}
#nav-part2 h4 {
  position: relative;
  padding: 10px 20px;
  border: 1px solid rgba(11, 5, 0, 0.2);
  border-radius: 50px;
  font-weight: 500;
  color: #0b0500;
  transition: all ease 0.4s;
  font-size: 18px;
  overflow: hidden;
}
#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: black;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
}
#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
#nav-part2 h4 a {
  text-decoration: none;
  color: #0b0500;
  position: relative;
  z-index: 9;
}
nav h3 {
  display: none;
}
#nav-part2 h4:hover a {
  color: #fff;
}
#center {
  height: 65vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid;
  padding-bottom: 2.5vw;
}
#left h3 {
  width: 25vw;
  font-size: 1.8vw;
  line-height: 2vw;
  font-weight: 400;
}
#center h1 {
  font-size: 10vw;
  line-height: 8vw;
  text-align: right;
  font-weight: 500;
  opacity: 0.95;
}
#page1 video {
  position: relative;
  border-radius: 30px;
  margin-top: 4vw;
  width: 100%;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
#hero-shape {
  position: absolute;
  width: 46vw;
  height: 36vw;
  right: 0;
  top: 69vh;
}

#hero-1 {
  background-color: #fe320a;
  height: 100%;
  width: 100%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  filter: blur(10px);
  position: absolute;
}

#hero-2 {
  background: linear-gradient(#fe320a, #fe3f0a);
  height: 30vw;
  width: 30vw;
  border-radius: 50%;
  position: absolute;
  animation-name: anime2;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  filter: blur(25px);
}

#hero-3 {
  background: linear-gradient(#fe320a, #fe3f0a);
  height: 30vw;
  position: absolute;
  width: 30vw;
  border-radius: 50%;
  filter: blur(25px);
  animation-name: anime1;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes anime1 {
  from {
    transform: translate(55%, -3%);
  }

  to {
    transform: translate(0%, 10%);
  }
}

@keyframes anime2 {
  from {
    transform: translate(5%, -5%);
  }

  to {
    transform: translate(-20%, 30%);
  }
}

#page2 {
  min-height: 100vh;
  width: 100%;
  background-color: #efeae3;
  padding: 8vw 0;
  position: relative;
}
#moving-text {
  overflow-x: auto;
  white-space: nowrap;
}
#moving-text::-webkit-scrollbar {
  display: none;
}
#moving-text h1 {
  font-size: 7vw;
  font-weight: 400;
  display: inline-block;
}
#roundshape {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: inline-block;
  background-color: #fe320a;
  margin: 1vw 2vw;
}
.page2-container {
  white-space: nowrap;
  display: inline-block;
  animation-name: move;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
#page2-bottom {
  height: 80vh;
  width: 100%;
  padding: 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
#page2-bottom h1 {
  font-size: 2.5vw;
  width: 60%;
  line-height: 2.5vw;
  font-weight: 550;
}
#bottom-part2 {
  width: 20%;
}
#bottom-part2 img {
  width: 100%;
  border-radius: 15px;
}
#bottom-part2 p {
  font-weight: 200;
  margin-top: 2vw;
  font-size: 1vw;
}
#page2 #gooey {
  width: 35vw;
  height: 35vw;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(to top right, #ff2d03, #ff5c0b);
  top: 58%;
  left: 25%;
  filter: blur(20px);
  animation-name: gooey;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
@keyframes gooey {
  from {
    filter: blur(20px);
    transform: translate(10%, -10%) skew(0);
  }

  to {
    filter: blur(30px);
    transform: translate(-10%, 10%) skew(-15deg);
    -webkit-transform: translate(-10%, 10%) skew(-15deg);
    -moz-transform: translate(-10%, 10%) skew(-15deg);
    -ms-transform: translate(-10%, 10%) skew(-15deg);
    -o-transform: translate(-10%, 10%) skew(-15deg);
  }
}

#page3 {
  min-height: 100vh;
  width: 100%;
  background-color: #efeae3;
  padding: 4vw 0;
}
#roundshape-mini {
  width: 1vw;
  height: 1vw;
  background-color: #fe330a;
  border-radius: 100vw;
}
.featured-project {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  flex-direction: row;
  align-items: center;
  margin-left: 2em;
  margin-right: 2em;
  padding-bottom: 3.75em;
  display: flex;
}
.featured-project h1 {
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: Neuehaasdisplay roman, sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.2;
}
.elem {
  height: 150px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #38383864;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
}
.elem h2 {
  font-size: 2.5vw;
  font-weight: 550;
  position: relative;
  z-index: 9;
}
.elem .overlay {
  height: 100%;
  width: 100%;
  background-color: orange;
  position: absolute;
  left: 0;
  top: -100%;
  transition: all ease 0.25s;
}
.elem:hover .overlay {
  top: 0;
}
.last-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  z-index: 9;
}
.last-text h1 {
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: Neuehaasdisplay roman, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.last-text h2 {
  color: rgba(0, 0, 0, 0.4);
  font-family: Neuehaasdisplay roman, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}

#fixed-image {
  height: 30vw;
  width: 24vw;
  border-radius: 15px;
  position: fixed;
  z-index: 99;
  left: 50%;
  top: 25%;
  display: none;
  background-size: cover;
  background-position: center;
}
#page4 {
  height: 80vh;
  width: 100%;
  background-color: #efeae3;
  padding: 10vw 2vw;
}
.swiper-wrapper {
  padding-left: 50px;
  padding-right: 5.625em;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 20%;
  border-left: 1px solid #aeadad;
  padding: 0 2vw;
}
.swiper-slide p {
  color: #0b0500;
  margin-bottom: 0;
  font-family: Neuehaasdisplay roman, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.4;
}

#page5{
    height: 100vh;
    width: 100%;
    
}
#footer{
    position: fixed;
    z-index: 9;
    color: white;
    height: 105vh;
    width: 100%;
    background-color: #000000;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
   
}
.er{
        filter: blur(55px);

}
#footer h1{
    font-size: 20vw;
    font-weight: 500;
    
}

#footer-bottom {
    border-top: 1px solid #dadada;
    height: 10vh;
    width: 100%;
    position: relative;
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding: 2vw 3vw;
}
#footer-bottom h3{
    font-weight: 100;
}
#footer-div{
    filter: blur(30px);
    background-color: #f83d18;
    filter: blur(0px);
}
.gooeywrapper{
    display: flex;
    z-index: 9;
    flex-direction: row;
   height: 90vh;
    width: 205%;
    
    
}
.fd1{
        

       background-color: #f74521;
 height: 100%;
    width: 60%;
   position: absolute;
   bottom: 20%;
   left: -20%;
    animation: footergooey  10s linear  infinite alternate ;
    transform: rotate(-35deg);
}
.fd2{
    background-color: #f74521;
    height: 100%;
    width: 80%;
    position: absolute;
    right: -15%;
    bottom: 10%;
   transform: rotate(25deg); 
   animation: footergooey2  10s linear  infinite alternate ;
}

@keyframes footergooey {
    from{
        transform:rotate(-15deg) skew(0deg);
    }
    to{
        transform: rotate(-30deg) skew(50deg) ;
    }
}
@keyframes footergooey2 {
    from{
        transform:rotate(15deg) skew(20deg);
    }
    to{
        transform: rotate(30deg)skew(65deg);
    }
}


#full-scr {
  height: 100vh;
  width: 100%;
  background-color: #00000070;
  position: fixed;
  z-index: 99;
  top: -100%;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}

#full-div1 {
  height: 50%;
  width: 100%;
  background-color: #efeae3;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.footer_links {
  flex-direction: column;
  justify-content: space-between;
  margin-top: 0.5em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.footer_links_wrapper {
  z-index: 2;
  width: 100%;
  border-top: 1px rgba(239, 234, 227, 0.3);
  flex-direction: row;
  justify-content: space-between;
  margin: 1.75em auto;
  display: flex;
  position: relative;
  z-index: 10;
}
.text-color-white {
  color: #efeae3;
}
.footer_location {
  grid-column-gap: 0.375em;
  grid-row-gap: 0.375em;
  align-items: flex-start;
  display: flex;
}
.footer_socials {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: row;
  display: flex;
}
.footer_socials {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: row;
  display: flex;
}
.animate-line {
  display: inline-block;
  position: relative;
  overflow-x: hidden;
}

.footer-link {
  color: #efeae3;
  font-family: Neuehaasdisplay roman, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

#loader {
  height: 100%;
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 999;
  top: 0;
  transition: all ease 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader h1 {
  font-size: 4vw;
  color: transparent;
  background: linear-gradient(to right, orange, orangered);
  -webkit-background-clip: text;
  position: absolute;
  opacity: 0;
  animation-name: load;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: linear;
}
#loader h1:nth-child(2) {
  animation-delay: 2s;
}
#loader h1:nth-child(3) {
  animation-delay: 3s;
}

@keyframes load {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Responsive for loader */
@media (max-width: 600px) {
  #loader h1 {
    font-size: 9vw;
  }
}
/* responsive for page1 */
@media (max-width: 600px) {
  #page1 {
    min-height: 100vh;
    width: 100vw;
    padding: 0 0vw;
  }

  nav {
    padding: 3vw 5vw;
    background-color: #efeae3;
    /* padding: 0 5vw; */
  }

  nav img {
    transition: all ease 0.2s;
    height: 9vh;
  }

  #nav-part2 {
    display: none;
  }

  nav h3 {
    display: block;
    margin-top: 1vw;
    padding: 3vw 8vw;
    border: 1px solid #ababab;
    border-radius: 50px;
    font-size: 4vw;
    font-weight: 200;
    padding-left: 9vw;
  }

  #center {
    height: 60vh;
    width: 100%;
    /* background-color: orange; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #0000003c;
    padding: 7vw 5vw;
    padding-bottom: 10vw;
    flex-direction: column-reverse;
    position: relative;
    z-index: 9;
  }

  #left h3 {
    width: 80%;
    font-size: 5.5vw;
    line-height: 6vw;
  }

  #center h1 {
    font-size: 17vw;
    text-align: right;
    line-height: 15vw;
    margin-top: 1vw;
  }

  #page1 video {
    position: relative;
    border-radius: 15px;
    margin-top: 4vw;
    height: 70vh;
    object-fit: cover;
    object-position: center;
    width: 92%;
    margin-left: 4%;
  }
}

/* responsive for page 2 */
@media (max-width: 600px) {
  #page2 {
    min-height: 86vh;
    width: 100%;
    background-color: #efeae3;
    padding: 7vw 0;
    position: relative;
  }

  #moving-text {
    overflow-x: auto;
    white-space: nowrap;
  }

  #moving-text::-webkit-scrollbar {
    display: none;
  }

  .page2-container {
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  #moving-text h1 {
    font-size: 15vw;
    /* background-color: lightblue; */
    display: inline-block;
  }

  #roundshape {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: #fe320a;
    margin: 2vw 2vw;
  }

  #page2-bottom {
    height: 72vh;
    width: 100%;
    padding: 10vw 4vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
    z-index: 9;
  }

  #page2-bottom h1 {
    font-size: 7vw;
    width: 100%;
    line-height: 8vw;
  }

  #bottom-part2 {
    width: 70%;
    margin-left: 13vw;
  }

  #bottom-part2 img {
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  #bottom-part2 p {
    font-weight: 200;
    margin-top: 2vw;
    font-size: 4vw;
  }

  #page2 #gooey {
    height: 62vw;
    width: 62vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #ff2d03, #ff5c0b);
    top: 45%;
    left: 25%;
    filter: blur(20px);
    animation-name: gooey;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
  }
}

/* Responsive for page3 */

@media (max-width: 600px) {
  #page3 {
    min-height: 70vh;
    width: 100%;
    background-color: #efeae3;
    padding: 4vw 0;
  }
  #roundshape-mini {
    width: 1.5vw;
    height: 1vw;
    background-color: #fe330a;
    border-radius: 100vw;
  }
  .featured-project {
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    flex-direction: row;
    align-items: center;
    margin-left: 6em;
    margin-right: 2em;
    padding-bottom: 3.75em;
    display: flex;
  }
  .featured-project h1 {
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: Neuehaasdisplay roman, sans-serif;
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.2;
  }
  .elem {
    height: 80px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #38383864;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2vw;
  }
  .elem h2 {
    font-size: 6vw;
    position: relative;
    z-index: 9;
  }
  .elem .overlay {
    height: 100%;
    width: 100%;
    background-color: orange;
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.25s;
  }
  .elem:hover .overlay {
    top: 0;
  }
  .last-text {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    display: flex;
    z-index: 9;
  }
  .last-text h1 {
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: Neuehaasdisplay roman, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
  }
  .last-text h2 {
    color: rgba(0, 0, 0, 0.4);
    font-family: Neuehaasdisplay roman, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
  }

  #fixed-image {
    height: 50vw;
    width: 30vw;
    border-radius: 15px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 25%;
    display: none;
    background-size: cover;
    background-position: center;
  }
}

/* Responsive for page 4 */
@media (max-width: 600px) {
  #page4 {
    height: 70vh;
    width: 100%;
    background-color: #efeae3;
    padding: 10vw 2vw;
  }
  .swiper-wrapper {
    padding-left: 50px;
    padding-right: 5.625em;
  }
  .swiper {
    width: 100%;
    height: 65%;
  }

  .swiper-slide {
    width: 70%;
    border-left: 1px solid #aeadad;
    padding: 0 2vw;
  }
  .swiper-slide img {
    width: 25vw;
  }
  .swiper-slide p {
    color: #0b0500;
    margin-bottom: 0;
    font-family: Neuehaasdisplay roman, sans-serif;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.4;
  }
}
/* responsive for page5 */
@media (max-width: 600px) {
  #page5 {
    height: 85vh;
    width: 100%;
  }
}

/* Responsive for Footer */

@media (max-width: 600px) {
  #footer {
     position: fixed;
     height: 105vh;
     width: 100%;
     background-color: black;
     color: #fff;
     z-index: 9;
     bottom: 0;
     display: flex;
     justify-content: flex-end;
     flex-direction: column;
     padding: 1vw 3vw;
   }
 
   #footer h1 {
     font-size: 23vw;
     z-index: 10;
   }
 
   #footer-div {
     height: 53vh;
     width: 100%;
     margin-top: 25vh;
     display: flex;
     flex-direction: column;
     gap: 6vw;
     justify-content: center;
     align-items: flex-start;
     padding: 1vw;
     z-index: 10;
   }
   #work-studio-contact {
     color: #efeae3;
     letter-spacing: -0.03em;
     font-family: Neuehaasdisplay mediu, sans-serif;
     font-size: 1.8em;
     font-weight: 500;
     line-height: 1.2;
     text-decoration: none;
     transition: opacity 0.2s;
   }
   #email-wrapper {
     border-bottom: 1px solid rgba(239, 234, 227, 0.3);
     align-items: center;
     /* padding: 10px 20px; */
   }
   #email-wrapper p {
     font-size: 1.25em;
     line-height: 1.3;
     font-weight: 100;
   }
 
   #footer-shape {
     position: absolute;
     width: 46vw;
     height: 36vw;
     left: 0;
     top: 0vh;
   }
 
   #footer-2 {
     background: linear-gradient(#fe320a, #fe3f0a);
     height: 120vw;
     width: 100vw;
     /* border-radius: 50%; */
     position: absolute;
     animation-name: footeranime2;
     animation-duration: 2s;
     animation-timing-function: linear;
     animation-iteration-count: infinite;
     animation-direction: alternate;
     filter: blur(40px);
     -webkit-filter: blur(40px);
   }
 
   @keyframes footeranime2 {
     from {
       transform: translate(0%, 0%);
       -webkit-transform: translate(0%, 0%);
       -moz-transform: translate(0%, 0%);
       -ms-transform: translate(0%, 0%);
       -o-transform: translate(0%, 0%);
     }
 
     to {
       transform: translate(0%, 5%);
       /*AddskewYtocreatewave-likecurve*/
       -webkit-transform: translate(0%, 5%) skewY(-10deg);
       -moz-transform: translate(0%, 5%);
       -ms-transform: translate(0%, 5%);
       -o-transform: translate(0%, 5%);
       -webkit-transform: translate(0%, 5%);
     }
   }
 
   .input-email {
     color: #efe9e2;
     background-color: transparent;
     border: 1px #000;
     border-bottom-color: rgba(239, 234, 227, 0.3);
     margin-bottom: 0;
     padding: 1.8em 0;
     font-family: Neuehaasdisplay roman, sans-serif;
     font-size: 0.8em;
     font-weight: 400;
   }
   .input-email::placeholder {
     color: #dddddd;
   }
 
   #footer-bottom {
     border-top: 1px solid #dadada;
     height: 15vh;
     width: 100%;
   }
 
   #full-scr {
     height: 100vh;
     width: 100%;
     background-color: #00000070;
     position: fixed;
     z-index: 99;
     top: -100%;
     transition: all ease 0.5s;
     -webkit-transition: all ease 0.5s;
     -moz-transition: all ease 0.5s;
     -ms-transition: all ease 0.5s;
     -o-transition: all ease 0.5s;
   }
 
   #full-div1 {
     height: 40%;
     width: 100%;
     background-color: #efeae3;
     border-bottom-left-radius: 20px;
     border-bottom-right-radius: 20px;
   }
   .mob-menu p {
     display: flex;
     color: black;
     justify-content: flex-end;
     flex-direction: column;
   }
   .footer_links {
     flex-direction: column;
     justify-content: space-between;
     margin-top: 0.5em;
     padding-left: 0.5em;
     padding-right: 0.5em;
     display: flex;
   }
 
   .footer_links_wrapper {
     z-index: 2;
     width: 100%;
     border-top: 1px rgba(239, 234, 227, 0.3);
     /* flex-direction: column; */
     justify-content: space-between;
     margin: 0.75em auto;
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 4vw;
     position: relative;
     z-index: 10;
     font-size: 4vw;
   }
   .text-color-white {
     color: #efeae3;
   }
   .footer_location {
     grid-column-gap: 0.375em;
     grid-row-gap: 0.375em;
     align-items: flex-start;
     display: flex;
   }
   .location_icon img {
     width: 3vw;
   }
   .footer_socials {
     flex-direction: row;
     display: flex;
     justify-content: flex-start;
   }
 
   .footer-link {
     color: #efeae3;
     font-family: Neuehaasdisplay roman, sans-serif;
     font-weight: 400;
     text-decoration: none;
   }
 
   .mob-menu {
     display: flex;
     position: absolute;
     flex-direction: column;
     justify-content: flex-end;
     align-items: end;
     margin-top: 32vw;
     margin-left: 33vw;
     transform: translateY(0px);
     transition: transform 400ms ease-out 0s;
     /* align-items: end; */
   }
   .mob-menu h1 {
     font-size: 3.2em;
     font-weight: 500;
     line-height: 1.1;
   }
 }