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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html,
body {
  height: auto;
  min-height: 100%;
  width: 100vw;
  overflow-x: hidden;
}
#main {
  position: relative;
  z-index: 10;
  margin-bottom: 100vh;
  background-color: #efeae3;
}
#page1 {
  font-family: Georgia, "Times New Roman", Times, serif, sun-mediu;
  min-height: 100vh;
  width: 100vw;
  background-color: #efeae3;
  position: relative;
  padding: 0 2vw;
}
.sec1 {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
nav {
  padding-top: 2vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#nav-part2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
#nav-part2 h4 {
  padding: 10px 20px;
  border: 1px solid #000000ac;
  border-radius: 50px;
  background-color: #efeae3;
  font-weight: 500;
  position: relative;
  color: #000000;
  font-size: 18px;
  transition: all ease 0.4s;
  overflow: hidden;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000;
  left: 0;
  bottom: -100%;
  border-radius: 70%;
  transition: all ease 0.4s;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 50px;
}
#nav-part2 h4 a {
  color: #000000c3;
  text-decoration: none;
  position: relative;
  z-index: 9;
}
#nav-part2 h4:hover a {
  color: white;
}

#center {
  height: 65vh;
  width: 100%;
  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;
}

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

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

#hero-shape {
  position: absolute;
  height: 46vw;
  width: 60vw;
  right: 0;
  top: 87vh;
}
#hero-1 {
  height: 100%;
  width: 100%;
  position: absolute;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  background: linear-gradient(#fe330c, #fe400c);
  filter: blur(15px);
}
#hero-2 {
  height: 30vw;
  width: 30vw;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(#fe330c, #fe400c);
  background-color: blue;
  filter: blur(25px);
  animation-name: anime-1;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
#hero-3 {
  height: 30vw;
  width: 30vw;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(#fe330c, #fe400c);
  /* background-color: green; */
  filter: blur(25px);
  animation-name: anime-2;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes anime-1 {
  from {
    transform: translate(55%, -8%);
  }
  to {
    transform: translate(10%, 10%);
  }
}
@keyframes anime-2 {
  from {
    transform: translate(-5%, 1%);
  }
  to {
    transform: translate(-20%, 32%);
  }
}

#page2 {
  min-height: 100vh;
  width: 100vw;
  background-color: #efeae3;
  padding: 8vw 0;
  position: relative;
}
#moving-text {
  white-space: nowrap;
  display: inline-block;
  width: 100vw;
  overflow-x: auto;
}
#moving-text::-webkit-scrollbar {
  display: none;
}
.con {
  white-space: nowrap;
  display: inline-block;
  animation-name: move;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-direction: inherit;
  animation-iteration-count: infinite;
}
#moving-text h1 {
  font-size: 18vh;
  display: inline-block;
}
#gola {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #fe330c;
  display: inline-block;
  margin: 1vw 2vw;
}
@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#page2Bottom {
  height: 94vh;
  width: 100vw;
  padding: 4.5vw;
  background-color: #efeae3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#page2Bottom h1 {
  text-align: left;
  font-size: 3.7rem;
  width: 63%;
  line-height: 3.7rem;
  position: relative;
  z-index: 9;
}

#bottomPart2 {
  width: 22%;
}
#bottomPart2 img {
  width: 100%;
  border-radius: 15px;
}

#bottomPart2 p {
  width: 100%;
  font-weight: 400;
  text-align: start;
  font-size: 14px;
  margin-top: 3vw;
}
#page2 #round {
  height: 32rem;
  width: 32rem;
  border-radius: 50%;
  background: linear-gradient(to top right, #ee2c05, #fa7516);
  filter: blur(25px);
  top: 58%;
  left: 25%;
  position: absolute;
  animation-name: round;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes round {
  from {
    filter: blur(25px);
    transform: translate(10%, -10%) skew(0);
  }
  to {
    filter: blur(35px);
    transform: translate(-10%, -10%) skew(-12deg);
  }
}

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

.elem {
  height: 125px;
  width: 100%;
  position: relative;

  border-bottom: 1px solid #d7d2d0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
  cursor: pointer;
}

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

.elem .overlay {
  height: 100%;
  width: 100%;
  background-color: #ff9831;
  position: absolute;
  left: 0;
  top: -100%;
  transition: all ease 0.25s;
  z-index: 1;
  pointer-events: none;
}

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

#fixed-image {
  height: 30vw;
  width: 25.3vw;
  position: fixed;
  left: 50%;
  top: 18%;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}

#sec {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-left: 32px;
  position: absolute;
  bottom: -21px;
  left: 0;
  margin: 0;
}
#sec #dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #fe330c;
  margin-right: 6;
  padding: 0;
}
#sec p {
  font-size: 16px;
  font-weight: 300;
}
.elem .dec {
  text-align: right;
  z-index: 9;
}
.dec p {
  color: rgb(173, 167, 167);
}
.dec h4 {
  font-weight: 350;
}
.navbut h4 {
  padding: 13px 21px;
  width: fit-content;
  border: 1px solid #917e78dc;
  border-radius: 50px;
  background-color: #efeae3;
  font-weight: 700;
  letter-spacing: -1px;
  position: relative;
  color: #000000;
  font-size: 16px;
  transition: all ease 0.4s;
  overflow: hidden;
  bottom: -27px;
  left: 0;
  margin: 37px;
}

.navbut h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000;
  left: 0;
  bottom: -100%;
  border-radius: 70%;
  transition: all ease 0.4s;
}

.navbut h4:hover::after {
  bottom: 0;
  border-radius: 50px;
}
.navbut h4 a {
  color: #000000c3;
  text-decoration: none;
  position: relative;
  z-index: 9;
}
.navbut h4:hover a {
  color: white;
}

#page4 {
  min-height: 100vh;
  background: #efeae3;
  padding: 4vw 0;
}

#black-box {
  height: 50rem;
  background: #000;
  margin: 3rem;
  border-radius: 20px;
  display: flex;
  gap: 4rem;
}

#tab-sec {
  width: 50%;
}

#tabs {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.tab.active {
  color: #efeae3;
}

.content {
  display: none;
  color: #ffffffaf;
  margin-top: 10rem;
  line-height: 1.6;
  margin-left: 9rem;
  font-size: 15px;
  width: 24rem;
  letter-spacing: -1px;
}

.content.active {
  display: block;
}

#tab-image {
  width: 50%;
  border-radius: 20px;
  transition: opacity 0.4s ease;
}
#tabs {
  position: relative;
  padding-left: 3px;
}
#state-line {
  position: absolute;
  left: 9rem;
  top: 50%;
  height: 100%;
  width: 2px;
  background: #504a45;
}

.tab {
  font-size: 70px;
  color: #504a45;
  cursor: pointer;
  transform: translateX(28px);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
  position: relative;
  top: 9rem;
  left: 9rem;
  letter-spacing: -1px;
}

.tab.active {
  color: #fff;
  transform: translateX(0);
}

#page5 {
  height: 80vh;
  width: 100%;
  background-color: #efeae3;
  padding: 10vw 2vw;
  position: relative;
  z-index: 12;
}

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

.mySwiper .swiper-slide {
  width: 25% !important;
}

.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 h1 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 2vw;
  position: relative;
  top: -81px;
  left: 60px;
}
#dot2 {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #fe330c;
  margin-right: 6;
  padding: 0;
  position: relative;
  top: -69px;
  left: 46px;
}

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

.mob-menu h1 {
  font-size: 3.2em;
  font-weight: 500;
  line-height: 1.1;
}

#footer {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 9;
  bottom: 0;
  background-color: black;
  color: white;
  flex-direction: column;
  padding: 1vw 3vw;
  display: flex;
}
#footer-part {
  height: 30vh;
  width: 100%;

  padding-top: 4vw;
  display: flex;
  justify-content: space-between;
}
#footer-part1 h2 {
  font-size: 2.2vw;
  padding-left: 60px;
  padding-top: 10px;
}
#footer-part2 p {
  font-size: 1.1em;
  font-family:
    Neuehaasdisplay roman,
    sans-serif;
  font-weight: 400;
  line-height: 1.4;
  padding-right: 60px;
  padding-top: 10px;
}
#footer-part2 h3 {
  text-decoration: underline whitesmoke;
}
#footer h1 {
  font-size: 22vw;
  position: relative;
  left: -2%;
  top: 9%;
}
#emailbox {
  display: flex;
  gap: 40%;
  background-color: #f5e8e800;
  border-bottom: 1px solid #bdbab6d2;
  padding: 4px;
}
#emailbox input {
  background: none;
  border: none;
}
#emailbox input::placeholder {
  font-family:
    Neuehaasdisplay roman,
    sans-serif;
  color: #bdbab6d2;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
#emailbox button {
  background: none;
  border: none;
  color: #bdbab6d2;
  font-size: 27px;
}
#footer-bottom {
  border-top: 1px solid #6e6b6b;
  height: 10vh;
  width: 100%;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  padding: 2vw 0vw;
}
.footer-links p {
  font-size: 1em;
  font-family:
    Neuehaasdisplay roman,
    sans-serif;
  font-weight: 400;
  line-height: 1.4;
}
#bg-animation1 {
  height: 27vw;
  width: 70%;
  border-bottom-right-radius: 60%;
  background: linear-gradient(152deg, #ff9831, #fe330a 43%);
  position: absolute;
  top: -17%;
  left: 0%;
  filter: blur(90px);
  animation-name: move3;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  z-index: -9;
}
#bg-animation2 {
  height: 34vw;
  width: 60%;
  border-bottom-left-radius: 80%;
  background: linear-gradient(152deg, #fc6621, #fe330a 43%);
  position: absolute;
  top: 0%;
  right: 0%;
  filter: blur(90%);
  animation-name: move4;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  z-index: -9;
}
@keyframes move3 {
  from {
    filter: blur(20px);
    transform: translate(0%, 20%) skew(8deg);
  }
  to {
    filter: blur(50px);
    transform: translate(-30%, 10%) skew(-4deg);
  }
}
@keyframes move4 {
  from {
    filter: blur(20px);
    transform: translate(8%, 0%) skew(7deg);
  }
  to {
    filter: blur(50px);
    transform: translate(10%, -27%) skew(15deg);
  }
}

#loader {
  height: 100%;
  width: 100%;
  background-color: #000;
  position: fixed;
  top: 0;
  z-index: 999;
  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, rgb(255, 170, 13), orangered);
  -webkit-background-clip: text;
  position: absolute;
  opacity: 0;
  animation-name: textload;
  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 textload {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
