@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}
html,
body {
  height: 100%;
  width: 100%;
}
.main {
  z-index: 10;
  position: relative;
}
.page1 {
  min-height: 100vh;
  width: 100vw;
  background-color: #efeae3;
  position: relative;
  padding: 0 2vw;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 0vw;
  position: relative;
  /* z-index: 1; */
  width: 100%;
}

.nav-part-2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}
.nav-part-2 h4 {
  color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  transition: all ease 0.4s;
  position: relative;
  overflow: hidden;
}

.nav-part-2 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-part-2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}
.nav-part-2 a {
  text-decoration: none;
  color: black;
  position: relative;
  z-index: 1;
}
.nav-part-2 h4:hover a {
  color: white;
}
.nav h3 {
  display: none;
  /* z-index: 0; */
}
.full-scr {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.351);
  position: fixed;
  /* z-index: 1; */
  top: -100%;
  transition: all ease 0.8s;
}
.full-div1 {
  height: 50%;
  width: 100%;
  background-color: #efeae3;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.center {
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* padding: 0 2vw; */
  padding-bottom: 2.5vw;
  border-bottom: 1px solid #000003;
}
.left h3 {
  font-size: 1.8vw;
  font-weight: 700;
  width: 25vw;
  line-height: 2vw;
}
.center h1 {
  font-size: 10vw;
  font-weight: 800;
  line-height: 8vw;
  text-align: right;
}
.page1 video {
  width: 100%;
  border-radius: 30px;
  margin-top: 4vw;
  position: relative;
}
.hero-shape {
  position: absolute;
  width: 40vw;
  height: 30vw;
  right: 0;
  top: 90vh;
}
.hero-1 {
  background-color: #fe320a;
  height: 100%;
  width: 100%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  filter: blur(20px);
  position: absolute;
}
.hero-2 {
  background-color: #fe320a;
  /* background-color: aqua; */
  height: 20vw;
  width: 20vw;
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  animation-name: anime2;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
.hero-3 {
  position: absolute;
  background: linear-gradient(#fe320a, #fc5d02);
  /* background-color: aqua; */
  height: 27vw;
  width: 27vw;
  border-radius: 50%;
  filter: blur(30px);
  animation-name: anime1;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
@keyframes anime1 {
  from {
    transform: translate(50%, -10%);
  }
  to {
    transform: translate(-10%, -10%);
  }
}
@keyframes anime2 {
  from {
    transform: translate(0%, -20%);
  }
  to {
    transform: translate(-30%, 5%);
  }
}
.page2 {
  min-height: 100vh;
  width: 100%;
  padding: 8vw 0;
  position: relative;
  background-color: #efeae3;
}
.moving-text {
  white-space: nowrap;
  overflow-x: auto;
}
.moving-text::-webkit-scrollbar {
  display: none;
}
.moving-text .con {
  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: 9vw;
  display: inline-block;
}
.round {
  display: inline-block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #fe320a;
  margin: 0vw 3vw;
}
@keyframes move {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(-100%);
  }
}
.page2-bottom {
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3vw;
  position: relative;
  z-index: 99;
}
.page2-bottom h1 {
  font-size: 3vw;
  font-weight: 700;
  width: 50%;
  line-height: 3vw;
}
.bottom-part2 {
  width: 25%;
}
.bottom-part2 img {
  width: 100%;
  border-radius: 10px;
}
.bottom-part2 p {
  font-weight: 600;
  line-height: 1.5vw;
  margin-top: 2vw;
  font-size: 1vw;
}
.page2 .guru {
  height: 25vw;
  width: 25vw;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(to top right, #fe320a, #ff671b);
  top: 58%;
  left: 25%;
  filter: blur(20px);
  animation-name: guru;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
@keyframes guru {
  from {
    filter: blur(20px);
    transform: translate(10%, -10%) skew(0);
  }
  to {
    filter: blur(30px);
    transform: translate(-10%, 10%) skew(-12deg);
  }
}
.page3 {
  min-height: 100vh;
  width: 100%;
  background-color: #efeae3;
  padding: 4vw 0;
}
.elem {
  position: relative;
  height: 150px;
  width: 100%;
  /* background-color: #ff671b; */
  display: flex;
  align-items: center;
  padding: 0 3vw;
  border-bottom: 1px solid rgb(133, 133, 133);
  overflow: hidden;
}
.elem h2 {
  font-size: 3vw;
  position: relative;
  z-index: 88;
}
.overlay {
  height: 100%;
  width: 100%;
  background-color: #ff9100;
  position: absolute;
  left: 0;
  top: -100%;
  transition: all ease 0.2s;
}
.elem:hover .overlay {
  top: 0;
}

.fixed-image {
  height: 29vw;
  width: 25vw;
  background-color: #fe320a;
  border-radius: 10px;
  position: fixed;
  z-index: 11;
  left: 50%;
  top: 18%;
  display: none;
  background-size: cover;
  background-position: center;
}
.page3-part2 {
  height: 100vh;
  width: 100vw;
  /* background-color: black; */
  display: flex;
  justify-content: center;
  /* position: relative; */
  margin: 5vw 0;
}
.page3-part2 .inner-part {
  background-color: black;
  display: flex;
  width: 90%;
  height: 100%;
  border-radius: 2vw;
}
.page3-part2 .inner-part .inner1 {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page3-part2 .inner-part .inner1 .tabs {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 1vw 2vw;
  position: relative;
}
.page3-part2 .inner-part .inner1 .tabs a {
  font-size: 4vw;
  font-weight: 700;
  color: grey;
  text-decoration: none;
}

.page3-part2 .inner-part .inner1 .tabs span {
  width: 8px;
  height: 5.5vw;
  background-color: grey;
  position: absolute;
  left: 15px;
}
.page3-part2 .inner-part .inner1 .tabs .active {
  color: white;
}
.page3-part2 .inner-part .inner1 .tabs .active span {
  background-color: #fe320a;
}
.image-1 {
  display: none;
}
.image-2 {
  display: none;
}
.image-3 {
  display: none;
}
.active-img {
  display: block;
}

.page3-part2 .inner-part .inner1 p {
  width: 50%;
  height: 15vw;
  /* background-color: #fc5d02; */
  margin-top: 5vw;
  color: white;
}

.project_p {
  display: none;
}
.execution_p {
  display: none;
}
.page3-part2 .inner-part .inner2 {
  height: 100%;
}
.page3-part2 .inner-part .inner2 img {
  width: 100%;
  height: 100%;
}
.page4 {
  height: 50vh;
  width: 100%;
  background-color: #efeae3;
  padding: 2vw 2vw;
}
/* swiper */
.swiper {
  width: 100%;
  height: 80%;
  /* display: flex; */
}
.swiper:hover {
  cursor: e-resize;
}

.swiper-slide {
  /* position: absolute; */
  width: 25vw;
  padding: 2vw 1vw;
  border-left: 1px solid rgb(139, 138, 138);
}
.page5 {
  /* background-color: #b88c4f; */
  height: 100vh;
  /* width: 100vw; */
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(255, 51, 0, 0.6)
  );
  z-index: 8;
}
.footer {
  height: 90vh;
  width: 100%;
  position: fixed;
  background-color: black;
  color: white;
  z-index: 9;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  /* text-align: center; */
  /* justify-content: center; */
  flex-direction: column;
  padding: 1vw 3vw;
}
.footer h1 {
  font-size: 22vw;
  text-align: center;
  margin-top: 1vw;
}
.footer-div {
  height: 20vh;
  width: 100%;
  /* background-color: red; */
  display: flex;
  justify-content: space-between;
  padding: 2vw 0;
}
.footer a {
  text-decoration: none;
  color: white;
  font-size: 2.5vw;
  display: flex;
}
.footer a:hover {
  cursor: pointer;
}
.footer-bottom {
  border-top: 1px solid white;
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer-bottom h4 {
  font-size: 1vw;
}

@media (max-width: 600px) {
  .page1 {
    min-height: 100vh;
    width: 100vw;
    padding: 0 0vw;
  }
  nav {
    padding: 8vw 5vw;
    background-color: #efeae3;
    z-index: 9999;
  }

  .nav-part-2 {
    display: none;
  }
  .nav img {
    height: 10vw;
    transition: all ease 0.8s;
    padding-left: 5vw;
  }
  .nav h3 {
    display: block;
    padding: 3vw 5vw;
    border: 1px solid black;
    border-radius: 50px;
    font-size: 4vw;
    font-weight: 200;
    padding-left: 10vw;
  }
  .center {
    height: 62vh;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: space-between;
    /* padding: 0 2vw; */
    padding-bottom: 10vw;
    padding: 7vw 5vw;
    border-bottom: 1px solid #000003;
    /* background-color: #fe630a; */
    position: relative;
    z-index: 0;
  }
  .left h3 {
    font-size: 4vw;
    width: 80%;
    line-height: 5vw;
  }
  .center h1 {
    font-size: 12vw;
    line-height: 12vw;
    text-align: right;
  }
  .page1 video {
    width: 92%;
    height: 70vh;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    margin-top: 4vw;
    position: relative;
    margin-left: 4%;
  }
  .hero-shape {
    position: absolute;
    width: 75vw;
    height: 56vw;
    right: 0;
    top: 72vh;
  }
  .page2 {
    min-height: 100vh;
    width: 100%;
    padding: 8vw 0;
    position: relative;
    background-color: #efeae3;
  }
  .moving-text {
    white-space: nowrap;
    overflow-x: auto;
  }
  .moving-text::-webkit-scrollbar {
    display: none;
  }
  .moving-text .con {
    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;
    display: inline-block;
  }
  .round {
    display: inline-block;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #fe320a;
    margin: 1vw 3vw;
  }
  .page2-bottom {
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vw 3vw;
    position: relative;
    z-index: 99;
  }
  .page2-bottom h1 {
    font-size: 7vw;
    width: 100%;
    line-height: 8vw;
    text-align: center;
  }
  .bottom-part2 {
    width: 70%;
    text-align: center;
  }
  .bottom-part2 img {
    width: 90vw;
    border-radius: 10px;
    /* margin: 5vw; */
    /* margin-top: 5vw; */
  }

  .bottom-part2 p {
    font-weight: 500;
    /* margin-top: 3vw; */
    line-height: 3vw;
    font-size: 3vw;
  }
  .page2 .guru {
    height: 60vw;
    width: 60vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #fe320a, #ff671b);
    top: 58%;
    left: 25%;
    filter: blur(20px);
    animation-name: guru;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
  }
}
.loader {
  height: 100%;
  width: 100%;
  background-color: black;
  position: fixed;
  z-index: 99999;
  top: 0;
  transition: all ease 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader h1 {
  font-size: 3vw;
  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;
  }
}
@media (max-width: 600px) {
  .loader h1 {
    font-size: 10vw;
  }
  main {
    overflow: hidden;
  }
  .footer {
    width: 100vw;
  }
}
