@font-face {
  font-family: neue;
  src: url(./NeueHaasDisplayRoman.ttf);
}

@font-face {
  font-family: neue;
  font-weight: 100;
  src: url(./NeueHaasDisplayLight.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: neue;
}

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;
}

/* Navbar */

nav {
  padding: 2vw 0vw;
  width: 100%;
  /* background-color: red; */
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100 !important;
  justify-content: space-between;
}

.nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.nav-part2 h4 {
  padding: 10px 20px;
  border: 1px solid #0000003c;
  border-radius: 50px;
  font-weight: 500;
  color: #000000bb;
  transition: all ease 0.4s;
  position: relative;
  z-index: 100 !important;
  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;
}

.nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

.nav-part2 h4 a {
  color: #000000bb;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

.nav-part2 h4:hover a {
  color: #fff;
}

nav h3 {
  display: none;
}

/* Centre div */

#center {
  height: 77vh;
  width: 100%;
  /* background-color: orange; */
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #0000003c;
  padding-bottom: 2.5vw;
}

#left h3 {
  width: 25vw;
  font-size: 1.8vw;
  line-height: 2vw;
}

#right h1 {
  font-size: 10vw;
  line-height: 9vw;
  text-align: right;
}

#page1 video {
  width: 100%;
  border-radius: 30px;
  margin-top: 5vw;
  position: relative;
}

#hero-shape {
  position: absolute;
  width: 46vw;
  height: 36vw;
  right: 0;
  top: 85vh;
}

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

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

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

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

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

#page2 {
  min-height: 100vh;
  width: 100%;
  background-color: #efeae3;
  padding: 8vw 0;
  position: relative;
}

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

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

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

#moving-text h1 {
  font-size: 9vw;
  font-weight: 1200;
  display: inline-block;
}

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

@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#page2-bottom {
  height: 80vh;
  width: 100%;
  padding: 4vw 4vw;
  margin-top: 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}

#page2-bottom h1 {
  font-size: 4.5vw;
  width: 60%;
  line-height: 5vw;
}

#bottom-part2 img {
  width: 100%;
  border-radius: 15px;
}

#bottom-part2 {
  width: 23%;
  margin-top: 10rem;
}

#bottom-part2 p {
  font-weight: 100;
  margin-top: 4vw;
  font-size: 1.3vw;
  line-height: 1.7vw;
}

#page2 #gooey {
  height: 35vw;
  width: 35vw;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(to top right, #fe320a, #fe5f0af4);
  top: 50%;
  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 {
    transform: translate(10%, -10%) skew(0);
  }
  to {
    transform: translate(-10%, 10%) skew(-12deg);
  }
}

#page3 {
  min-height: 100vh;
  width: 100%;
  background-color: #efeae3;
  padding: 4vw 0;
}

.elem {
  height: 100px;
  width: 100%;
  border-bottom: 1px solid #292929;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 2vw;
  overflow: hidden;
}

.elem h2 {
  font-size: 3vw;
  position: relative;
  z-index: 9;
}

.overlay {
  height: 100%;
  width: 100%;
  background-color: orange;
  position: absolute;
  left: 0;
  top: -100%;
  transition: all ease 0.2s;
}

.elem:hover .overlay {
  top: 0;
}

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

#page4 {
  min-height: 300px;
  width: 100%;
  padding: 4vw 4vw;
  background-color: #efeae3;
}

#block {
  height: 49vw;
  width: 100%;
  background-color: black;
  border-radius: 17px;
  position: relative;
  display: flex;
}

#block-right {
  width: 45%;
  padding: 8vw 6vw 6vw 8vw;
}

#block-right #h1 {
  border-left: 3px solid #fe320a;
}

#block-right #h2 {
  color: #423c37;
  border-left: 3px solid #423c37;
}

#block-right h1 {
  color: #efeae3;
  font-size: 5vw;
  padding-left: 1vw;
  cursor: pointer;
}
#block-right p {
  margin-top: 2vw;
  color: #efeae3;
  font-size: 1.3vw;
  line-height: 1.8vw;
}

#block-left {
  width: 55%;
}

#block-left img {
  height: 100%;
  width: 55%;
  position: absolute;
  border-radius: 14px;
}

#page5 {
  height: 110vh;
  width: 100%;
  background-color: #efeae3;
  padding: 5vw 4vw;
}

#work {
  display: flex;
  align-items: center;
  margin-bottom: 4vw;
}

#work .dot {
  height: 10px;
  width: 10px;
  margin-right: 1vw;
  border-radius: 50%;
  background-color: #fe320a;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: 4vw;
}

.swiper-slide {
  text-align: left;
  font-size: 16px;
  border-left: 1px solid #7c7c7c;
  padding-left: 2vw;
}

.swiper-slide img {
  display: block;
  width: 10vw;
  height: 10vw;
  object-fit: contain;
}

.swiper-slide {
  width: 30%;
}

.swiper-slide:nth-child(n) {
  width: 30%;
  height: 70%;
}

#page6 {
  height: 130vh;
  width: 100%;
}

#footer {
  position: fixed;
  text-align: center;
  z-index: 9;
  height: 105vh;
  width: 100%;
  padding: 1vw 3vw;
  background: linear-gradient(to top, black, #fe320a);
  color: #fff;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

#footer h1 {
  font-size: 20vw;
  padding-bottom: 0;
  z-index: 9;
  border-bottom: 0.7px solid rgb(112, 112, 112);
}

#footer-div {
  height: 20vh;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4vw 5vw;
  margin-bottom: 3vw;
}

#footer-left h2 {
  margin-bottom: 0.4vw;
  text-align: left;
}

#footer-right p {
  font-size: 1.5vw;
}

#footer-bottom {
  height: 10vh;
  padding: 0vw 0vw;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#footer-bottom h4 {
  font-size: 1.3vw;
}

#full-scr {
  height: 100vh;
  width: 100%;
  background-color: #00000070;
  position: fixed;
  z-index: 50;
  top: -100%;
  transition: all ease 0.4s;
}

#full-div1 {
  height: 50%;
  width: 100%;
  top: -100%;
  position: fixed;
  transition: all ease 0.4s;
  background-color: #efeae3;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#full-div1 h2 {
  top: -100%;
  color: black;
  position: fixed;
  transition: all ease 0.4s;
}

@media (max-width: 600px) {
  #page1 {
    min-height: 100vh;
    width: 100vw;
    padding: 0 0vw;
  }

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

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

  .nav-part2 {
    display: none;
  }

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

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

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

  #right h1 {
    font-size: 16vw;
    line-height: 14vw;
    text-align: right;
  }

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

  #hero-shape {
    position: absolute;
    width: 82vw;
    height: 56vw;
    right: 0;
    top: 65vh;
  }

  #page2 {
    min-height: 100vh;
    width: 100%;
    background-color: #efeae3;
    padding: 8vw 0;
    position: relative;
  }

  #moving-text h1 {
    font-size: 10vw;
    font-weight: 1200;
    display: inline-block;
  }

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

  #page2-bottom {
    height: 80vh;
    width: 100%;
    padding: 3vw 8vw;
    margin-top: 1vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 9;
  }

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

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

  #bottom-part2 {
    width: 70%;
    margin-top: 0 !important;
  }

  #bottom-part2 p {
    font-weight: 100;
    margin-top: 4vw;
    font-size: 3vw;
    line-height: 3.5vw;
  }

  #page2 #gooey {
    height: 60vw;
    width: 60vw;
  }

  #page3 {
    min-height: 100vh;
    width: 100%;
    background-color: #efeae3;
    padding: 4vw 0;
  }

  .elem {
    height: 100px;
    width: 100%;
    border-bottom: 1px solid #292929;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4vw;
    overflow: hidden;
  }

  .elem h2 {
    font-size: 7vw;
    position: relative;
    z-index: 9;
  }

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

  #page4 {
    min-height: 300px;
    width: 100%;
    padding: 4vw 4vw;
    background-color: #efeae3;
  }

  #block {
    height: 190vw;
    width: 90%;
    margin: 0 4vw;
    background-color: black;
    border-radius: 17px;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  #block-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 8vw 6vw 6vw 8vw;
  }

  #block-right #h1 {
    border-left: 3px solid #fe320a;
  }

  #block-right #h2 {
    color: #423c37;
    border-left: 3px solid #423c37;
  }

  #block-options {
    margin-top: 3vw;
    margin-bottom: 7vw;
    margin-left: 3vw;
  }

  #block-right h1 {
    color: #efeae3;
    font-size: 8vw;
    gap: 2vw;
    padding-left: 1vw;
    cursor: pointer;
  }
  #block-right p {
    margin-left: 1vw;
    margin-right: 3vw;
    margin-top: 1vw !important;
    color: #efeae3;
    font-size: 3.5vw;
    line-height: 3.5vw;
    text-align: left;
  }

  #block-left {
    width: 55%;
  }

  #block-left img {
    left: 15px;
    bottom: 10px;
    height: 52%;
    width: 90%;
    position: absolute;
    border-radius: 14px;
  }

  #page5 {
    height: 60vh;
    width: 100%;
    background-color: #efeae3;
    padding: 5vw 4vw;
  }

  #work {
    display: flex;
    align-items: center;
    margin-bottom: 5vw;
    margin-top: 4vw;
    margin-left: 3vw;
  }

  #work .dot {
    height: 10px;
    width: 10px;
    margin-right: 2vw;
    border-radius: 50%;
    background-color: #fe320a;
  }

  .swiper {
    width: 100%;
    height: 100%;
    margin-left: 6vw;
  }

  .swiper-slide {
    text-align: left;
    font-size: 16px;
    border-left: 1px solid #7c7c7c;
    padding-left: 4vw;
  }

  .swiper-slide img {
    display: block;
    width: 15vw;
    height: 15vw;
    object-fit: contain;
  }

  .swiper-slide {
    width: 30%;
  }

  .swiper-slide:nth-child(n) {
    width: 70%;
    height: 70%;
  }

  #page6 {
    height: 70vh;
    width: 100%;
  }

  #footer-div {
    height: 20vh;
    width: 100%;
    top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0vw 5vw;
    margin-bottom: 30vw;
  }

  #footer-left {
    margin-bottom: 15vw;
    position: absolute;
  }

  #footer-left h2 {
    margin-bottom: 2vw;
    text-align: left;
  }

  #footer-right {
    margin-top: 34vw;
    margin-bottom: 6vw;
    position: absolute;
  }

  #footer-right p {
    font-size: 4vw;
    text-align: left;
  }

  #footer-bottom {
    height: 10vh;
    padding: 0vw 0vw;
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  #footer-bottom h4 {
    font-size: 3vw;
  }

  #footer {
    height: 70vh;
  }
}

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

#loader h1 {
  color: transparent;
  font-size: 4vw;
  background: linear-gradient(to right, orange, orangered);
  -webkit-background-clip: text;
  position: absolute;
  opacity: 0;
  animation-name: load;
  animation-duration: 1.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;
  }
}

@media (max-width: 600px) {
  #loader h1 {
    font-size: 10vw;
  }
}
