@font-face {
  font-family: neuR;
  src: url(./assets/NeueHaasDisplay-Roman.ttf);
}
@font-face {
  font-family: neuM;
  src: url(./assets/NeueHaasDisplay-Mediu.ttf);
}
* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: neuR;
}
html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
.loader{
  background-color: #0B0500;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader h1{
  font-size: 4vw;
  position: absolute;
  color: transparent;
  background: linear-gradient(to right,orangered,orange);
  -webkit-background-clip: text;
}
.page1 {
  min-height: 100vh;
  width: 100vw;
  background-color: #efeae3;
  position: relative;
}
nav {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.2vw;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-right: 1.2vw;
}
.nav-links a {
  text-decoration: none;
  color: rgb(51, 51, 51);
  border: 1px solid rgba(145, 145, 145, 0.616);
  border-radius: 50px;
  padding: 0.6vw 1.5vw 1vw;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.nav-links a::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: black;
  left: 0%;
  border-radius: 50%;
  z-index: -1;
  bottom: -100%;
  transition: all ease-in-out 0.3s;
}
.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  border-radius: 0;
  bottom: 0;
}
.hero-content {
  padding: 2.2vw;
}
.hero {
  height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid rgb(177, 166, 166);
}
.hero h4 {
  font-size: 2vw;
  color: rgb(7, 7, 7);
  line-height: 1;
  margin-bottom: 4vw;
  letter-spacing: -0.5px;
}
.hero h1 {
  font-size: 11.5vw;
  text-align: right;
  line-height: 0.8;
  font-family: neuM;
  letter-spacing: -5px;
  color: #0b0500;
  margin-bottom: 4vw;
  padding-right: 3vw;
}
.video-container {
  padding: 2.2vw;
}
.video-container video {
  height: 100%;
  width: 99%;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 3;
}
.goofy1 {
  height: 40vw;
  width: 40vw;
  top: 45vw;
  right: 13%;
  border-radius: 50%;
  position: absolute;
  filter: blur(25px);
  background-color: orangered;
  animation: goofy1 linear infinite 3s alternate;
}
@keyframes goofy1 {
  from {
    transform: translate(-5%, -5%);
  }
  to {
    transform: translate(5%, 5%);
  }
}
.goofy2 {
  height: 40vw;
  width: 40vw;
  top: 45vw;
  right: 4%;
  border-radius: 50%;
  position: absolute;
  filter: blur(25px);
  background-color: orangered;
  animation: goofy2 linear infinite 3s alternate;
}
@keyframes goofy2 {
  from {
    transform: translate(-10%, -10%);
  }
  to {
    transform: translate(5%, 5%);
  }
}
.goofy3 {
  height: 40vw;
  width: 40vw;
  top: 39vw;
  right: -10%;
  border-radius: 50%;
  position: absolute;
  filter: blur(25px);
  background-color: orangered;
  animation: goofy3 linear infinite 2s alternate;
}
@keyframes goofy3 {
  from {
    transform: translate(-10%, -10%);
  }
  to {
    transform: translate(5%, 5%);
  }
}
.page2 {
  min-height: 100vh;
  width: 100vw;
  background-color: #efeae3;
}
.infinite-rolls {
  white-space: nowrap;
}
.infinite-roll {
  animation: infinite-roll 15s linear infinite;
  display: inline-block;
  margin: 5vw 0vw;
}
.infinite-roll span {
  display: inline-block;
  background-color: orangered;
  height: 5vw;
  width: 5vw;
  border-radius: 50%;
  margin: 1vw 3vw;
}
.infinite-roll h2 {
  font-size: 10vw;
  display: inline-block;
}
@keyframes infinite-roll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.page2-content {
  display: flex;
  justify-content: space-between;
  padding: 0vw 6vw;
  position: relative;
}
.page2-content .left h2 {
  width: 80%;
  font-size: 4.5vw;
  font-family: neuM;
  line-height: 1;
  position: relative;
  z-index: 3;
}
.page2-content .right {
  width: 40%;
  padding-top: 12vw;
}
.page2-content .right img {
  height: 180px;
  width: 280px;
  object-fit: cover;
  border-radius: 10px;
}
.page2-content .right p {
  padding: 3.5vw 0vw;
  width: 105%;
}
.page2-content .goofy {
  height: 35vw;
  width: 35vw;
  border-radius: 50%;
  top: 9vw;
  left: 25vw;
  position: absolute;
  background-color: rgb(255, 94, 0);
  filter: blur(25px);
  animation: goofy 3s linear infinite alternate;
}
@keyframes goofy {
  from {
    transform: translate(-10%, 10%);
  }
  to {
    transform: translate(10%, -10%);
  }
}
.page2-content .goofy1 {
  height: 35vw;
  width: 35vw;
  border-radius: 50%;
  top: 9vw;
  left: 25vw;
  position: absolute;
  background-color: rgb(248, 79, 0);
  filter: blur(25px);
  animation: goofy1 5s linear infinite alternate;
}
@keyframes goofy1 {
  from {
    transform: translate(-10%, 10%);
  }
  to {
    transform: translate(10%, -10%);
  }
}
.page2 .bottom-text {
  padding: 3vw 2vw;
}
.page2 .bottom-text span {
  display: inline-block;
  height: 0.6vw;
  width: 0.6vw;
  border-radius: 50%;
  background-color: rgb(255, 60, 0);
}
.page2 .bottom-text p {
  display: inline-block;
  font-size: 1vw;
  margin-left: 0.3vw;
}
.page3 {
  min-height: 100vh;
  width: 100vw;
  background-color: #efeae3;
  position: relative;
}
.page3 .elem1 {
  height: 120px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0vw 2vw;
  border-bottom: 1px solid rgb(124, 119, 119);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.page3 .elem1::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: #ff9831;
  transition: all ease 0.3s;
  z-index: -1;
}
.page3 .elem1:hover::after {
  top: 0%;
}
.page3 .elem1 .head{
  overflow: hidden;
}
.page3 .elem1 .head h2 {
  font-size: 4vw;
  font-family: neuM;
  letter-spacing: -1.5px;
}
.page3 .elem1 .texts {
  overflow: hidden;
  height: 60px;
}
.page3 .elem1 .texts h5 {
  font-weight: 100;
}
.page3 .elem1 .texts p {
  font-size: 1vw;
  font-weight: 100;
  color: #5c5555;
}
.hover-div {
  position: fixed;
  height: 400px;
  width: 300px;
  z-index: 10;
  top: 10vw;
  right: 26vw;
  display: none;
}
.hover-image-div {
  position: fixed;
  height: 400px;
  width: 300px;
  /* background-color: red; */
  z-index: 10;
  border-radius: 15px;
  top: 10vw;
  right: 26vw;
  display: none;
  background-size: cover;
  background-position: center;
}
.hover-video-div {
  position: fixed;
  height: 63%;
  width: 22%;
  /* background-color: red; */
  z-index: 10;
  border-radius: 15px;
  top: 10vw;
  right: 26vw;
  display: none;
  object-fit: cover;
}
.page4 {
  min-height: 100vh;
  width: 100vw;
  background-color: #efeae3;
  padding: 5vw 2.2vw;
}
.page4 .all {
  height: 40px;
  width: 160px;
  border-radius: 50px;
  border: 1px solid rgb(161, 155, 155);
  position: relative;
  padding: 0.7vw 2vw;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.page4 .all a {
  text-decoration: none;
  color: #000;
  text-align: center;
}
.page4 .all::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  background-color: #000;
  height: 100%;
  width: 100%;
  border-radius: 90%;
  transition: all ease-in-out 0.3s;
  z-index: -1;
}
.page4 .all:hover::before {
  bottom: 0;
  border-radius: 0;
}
.page4 .all:hover a {
  color: #fff;
}
.page4 .bottom-text {
  padding: 3vw 4.2vw;
  margin-bottom: 3vw;
}
.page4 .bottom-text span {
  display: inline-block;
  height: 0.6vw;
  width: 0.6vw;
  border-radius: 50%;
  background-color: rgb(255, 60, 0);
}
.page4 .bottom-text p {
  display: inline-block;
  font-size: 1vw;
  margin-left: 0.3vw;
}
.swiper {
  width: 100vw;
  min-height: 40vh;
  margin-left: 4.2vw;
  position: relative;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.swiper-slide {
  text-align: center;
  color: #000;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgb(197, 187, 187);
  padding: 0vw 1.5vw;
}
.swiper-slide img {
  height: 12vw;
  width: 12vw;
}
.swiper-slide p {
  font-size: 1.15vw;
  text-align: left;
  width: 70%;
  line-height: 1.3;
}
.mover {
  height: 8vw;
  width: 8vw;
  background-color: orangered;
  border-radius: 50%;
  position: fixed;
  top: -8%;
  left: -4%;
  transform: translate(-50%, -50%);
  opacity: 0;
  scale: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page5{
  background: transparent;
  height: 100vh;
  width: 100vw;
}
footer{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -11;
}
.footers {
  height: 100vh;
  width: 100vw;
  background-color: #fe330a;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-top {
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.footer-top .left {
  padding: 4vw 6vw;
}

.footer-top .left h2 {
  color: #fff;
  font-size: 2.3vw;
  font-weight: 600;
  font-family: neuM;
}
.footer-top .right {
  padding: 4vw 0vw;
  margin-right: -10vw;
}
.footer-top .right h5 {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 100;
  width: 60%;
}
.footer-top .right input {
  border: 0;
  width: 60%;
  font-size: 24px;
  background: transparent;
  border-bottom: 1px solid rgba(201, 192, 192, 0.719);
  padding: 1vw 0vw;
}
.footer-top .right input:focus {
  outline: 0;
}
.footer-top .right input::placeholder {
  color: rgba(201, 192, 192, 0.384);
  font-size: 20px;
}
.footers .footer-middle h1 {
  font-size: 23vw;
  font-family: neuM;
  line-height: 1;
  color: #fff;
  margin: 0vw 2vw;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.footers .footer-last {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5vw 3vw;
}
.footers .footer-last h5 {
  font-size: 1.2vw;
  color: #fff;
  font-weight: 100;
}
.footers .goofy7 {
  background-color: #0c0500;
  position: absolute;
  bottom: 0%;
  left: 0;
  height: 20vw;
  width: 75vw;
  z-index: -1;
}
.footers .goofy8 {
  background-color: #0c0500;
  position: absolute;
  top: 22%;
  left: -12%;
  height: 60vw;
  width: 60vw;
  border-radius: 50%;
  filter: blur(25px);
  z-index: -1;
  animation: goofy8 5s linear infinite alternate;
}
@keyframes goofy8 {
  from{
    transform: translate(-10%,10%);
  }
  to{
    transform: translate(10%,-10%);
  }
}
.footers .goofy9 {
  background-color: #0c0500;
  position: absolute;
  top: 22%;
  left: 12%;
  height: 60vw;
  width: 60vw;
  border-radius: 50%;
  filter: blur(25px);
  z-index: -1;
  animation: goofy9 5s linear infinite alternate;
}
@keyframes goofy9 {
  from{
    transform: translate(-10%,10%);
  }
  to{
    transform: translate(10%,-10%);
  }
}
.footers .goofy10 {
  background-color: #0c0500;
  position: absolute;
  top: 22%;
  left: 32%;
  height: 60vw;
  width: 60vw;
  border-radius: 50%;
  filter: blur(25px);
  z-index: -1;
  animation: goofy10 10s linear infinite alternate;
}
@keyframes goofy10 {
  from{
    transform: translate(10%,-10%);
  }
  to{
    transform: translate(-10%,10%);
  }
}
