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

html, body {
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.main {
  position: relative;
  z-index: 10;
}
.main .page1 {
  width: 100%;
  height: 100vh;
  background-color: rgba(245, 245, 245, 0.2117647059);
  position: relative;
}
.main .page1 .cursor {
  height: 7.5vw;
  width: 7.5vw;
  background-color: #ff5f38;
  border-radius: 50%;
  position: fixed;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .page1 .cursor h5 {
  font-size: 1.5vw;
  color: #fff;
}
.main .page1 video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.main .page1 .page1-content {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 10;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.main .page1 .page1-content nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 4vw;
}
.main .page1 .page1-content nav h3 {
  font-size: 1.4vw;
  font-weight: 500;
}
.main .page1 .page1-content nav a {
  text-decoration: none;
  font-size: 1.5vw;
  font-weight: 400;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3215686275);
  text-transform: uppercase;
  padding: 4px 10px;
}
.main .page1 .page1-content h1 {
  font-size: 27vw;
  font-weight: 100;
  line-height: 27vw;
}
.main .page3 {
  min-height: 100vh;
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 3vw;
}
.main .page3 .page-3top {
  text-align: center;
  border-bottom: 1.5px solid #000;
  padding: 2vw 4vw;
}
.main .page3 .page-3top h4 {
  margin-bottom: 1vw;
  font-size: 1.7vw;
  font-weight: 400;
}
.main .page3 .page-3top h4 span {
  font-size: 0.9vw;
  background-color: #000;
  color: #fff;
  padding: 4px 10px;
  border-radius: 10px;
}
.main .page3 .page-3top h2 {
  font-size: 3.5vw;
  font-weight: 500;
}
.main .page3 .page-3elements {
  height: 75vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5vw;
}
.main .page3 .page-3elements .box {
  height: 100%;
  width: 20%;
  background-color: #000;
  margin-right: 1vw;
  position: relative;
}
.main .page3 .page-3elements .box video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main .page3 .page-3elements .box button {
  font-size: 1.2vw;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0.6vw 1.1vw;
  background-color: transparent;
  margin-top: 0.8vw;
}
.main .page3 .page-3elements .box button a {
  text-decoration: none;
  color: #000;
}
.main .page3 .page-3elements .box img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all linear 0.8s;
  -o-object-position: center;
     object-position: center;
}
.main .page3 .page-3elements .box:hover img {
  opacity: 0;
}
.main .page5 {
  height: 100vh;
  width: 100%;
  padding: 4vw 0vw;
  position: relative;
  background-color: #fff;
}
.main .page5 h1 {
  font-size: 7vw;
  font-weight: 500;
  border-bottom: 1px solid #000;
  width: 95%;
  margin-left: 2%;
  margin-bottom: 2vw;
}
.main .page5 .swiper1 {
  height: 65vh;
  width: 100%;
  position: relative;
  margin-top: -3%;
}
.main .page5 .swiper1 .swiper {
  width: 120%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.main .page5 .swiper1 .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}
.main .page5 .swiper1 .swiper .swiper-slide img {
  display: block;
  width: 19%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .page2 {
  min-height: 100vh;
  width: 100%;
  background-color: #fff;
  padding: 3vw 0vw;
  position: relative;
}
.main .page2 .moving-text {
  white-space: nowrap;
  overflow-x: auto;
}
.main .page2 .moving-text h1 {
  font-size: 9vw;
  font-weight: 500;
  display: inline-block;
}
.main .page2 .moving-text .cont {
  white-space: nowrap;
  display: inline-block;
  animation-name: move;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.main .page2 .moving-text .gola {
  height: 70px;
  width: 70px;
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  margin: 1vw 2vw;
}
.main .page2 .moving-text::-webkit-scrollbar {
  display: none;
}
.main .page2 .page2-bottom {
  height: 50vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.5vw;
  position: relative;
  z-index: 9;
}
.main .page2 .page2-bottom h1 {
  font-size: 3.5vw;
  font-weight: 500;
  width: 50%;
  line-height: 4vw;
}
.main .page2 .page2-bottom .bottom-part1 {
  width: 30%;
}
.main .page2 .page2-bottom .bottom-part1 img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .page2 .page2-bottom .bottom-part1 p {
  font-size: 1.2vw;
  font-weight: 400;
  margin-top: 0.8vw;
}
.main .page2 .new {
  height: 30vw;
  width: 30vw;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(to top right, #ff5f38, #fffa69);
  top: 60%;
  left: 25%;
  filter: blur(20px);
  animation-name: new;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes move {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes new {
  from {
    filter: blur(20px);
    transform: translate(10%, -10%) scale(1) skew(0);
  }
  to {
    filter: blur(30px);
    transform: translate(-10%, 10%) scale(1.2) skew(-12deg);
  }
}
.main .page4 {
  height: 70vh;
  width: 100%;
  background-color: beige;
  padding: 6vw 3vw;
}
.main .page4 .swiper {
  width: 100%;
  height: 100%;
}
.main .page4 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .page4 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .page4 .swiper-slide {
  width: 30%;
}
.main .page7 {
  height: 100vh;
  width: 100%;
}

.loader {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #000;
  z-index: 99;
  transition: all linear 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader h1 {
  text-transform: uppercase;
  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;
}
.loader h1:nth-child(4) {
  animation-delay: 4s;
}
@keyframes load {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.footer {
  position: fixed;
  z-index: 9;
  height: 100vh;
  width: 100%;
  background-color: #000;
  color: #fff;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 1vw 3vw;
}
.footer h1 {
  font-size: 11vw;
}
.footer .footer-div {
  height: 20vh;
  width: 100%;
  background-color: red;
}
.footer .footer-bottom {
  border-top: 1px solid #dadada;
  height: 10vh;
  width: 100%;
}

@media (max-width: 600px) {
  .main {
    background-color: red;
  }
}/*# sourceMappingURL=style.css.map */