
* {
    margin : 0;
    padding : 0;
    box-sizing : border-box;
    font-family: 'roboto',sans-serif;
}
html,body{
    scroll-behavior: smooth;
    height: 100%;
    width : 100%;
}
.hidden {
  display: none !important;
  transition: all ease 0.5s;
}
#lpage{
  width: 100%;
  height: 100vh;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lpage img{
  width: 200px;
  height: auto;
}
.bounding{
  width: fit-content;
  overflow: hidden;
}
.bounding .boundingelem{
  transform: translateY(100%);
}
.loader-5 {
  animation: rotate 2s infinite;
  height: 200px;
  width: 200px;
}

.loader-5:before,
.loader-5:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 50px;
  width: 50px;
}
.loader-5:before {
  animation: ball1 2s infinite;
  background-color: rgb(255 255 255 / 16%);
  box-shadow: 50px 0 0 #8f44fd;
  margin-bottom: 10px;
}
.loader-5:after {
  animation: ball2 2s infinite;
  background-color: #8f44fd;
  box-shadow: 50px 0 0 rgb(255 255 255 / 16%);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(0.8);
  }
}

@keyframes ball1 {
  0% {
    box-shadow: 50px 0 0 #8f44fd;
  }
  50% {
    box-shadow: 0 0 0 #8f44fd;
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 50px 0 0 #8f44fd;
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 50px 0 0 rgb(255 255 255 / 32%);
  }
  50% {
    box-shadow: 0 0 0 rgb(255 255 255 / 32%);
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 50px 0 0 rgb(255 255 255 / 32%);
    margin-top: 0;
  }
}

.circle{
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  position: fixed;
  z-index: 9999;
}

#menu{
    padding: 1em;
    position: fixed;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 15%;
    background-color: transparent;
}
.call i{
  color: #F4FDFF;
  font-size: 30px;
}
/* .call{
    display: flex;
    align-items: center;
    gap: 10px;
    left: 70%;
    position: absolute;
} */
.call h1{
  font-size: 20px;
  color: white;
}
.call2{
  font-size: 30px;
}
#menu img{
    width: 200px;
    height: auto;
}
.ham-menu{
  height: 100px;
  width: 100px;
  margin-left: auto;
  position: relative;
}
.ham-menu span{
  height: 10px;
  width: 100%;
  top: 50%;
  left: 25%;
  background-color: white;
  position: absolute;
  transform: translate(-50%,-50%);
  transition: 0.2s ease-in;
}
.ham-menu span:nth-child(1){
  top: 45%;
}
.ham-menu span:nth-child(2){
  top: 70%;
}
.ham-menu.active span:nth-child(1){
  top: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2){
  top: 50%;
  transform: translate(-50%,-50%) rotate(-45deg);
}
.off-screen-menu{
    background-color: rgba(0, 0, 0, 0.422);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* top: 0; */
    top: -100%;
    font-size: 3rem;
    transition: all ease  0.5s ;
}
.off-screen-menu a{
  position: relative;
  text-decoration: none;
  color: #fff;
}
.off-screen-menu a::after{
  content: " ";
  position: absolute;
  left:0;
  bottom: -2px;
  height: 3px;
  width: 0;
  background-color: white;
  transition: all ease 1s;

}
.off-screen-menu a:hover::after{
  width: 100%;
}
.off-screen-menu.active{
  top: 0;
}
li {
  list-style-type: none;
}

#menu h4{
    color: white;
    font-weight: 300;
    position: relative;
}
.items h4::after{
    content: " ";
    position: absolute;
    left:0;
    bottom: -7px;
    height: 2px;
    width: 0;
    background-color: white;
    transition: all ease 0.4s;

}
.items h4:hover::after{
    width: 100%;
}
#page1{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 100%;
    background-color: black;
    position: relative;
    flex-direction: column;
    overflow: hidden;

}
.block{
  display: flex;
  align-items: center;
  justify-content: center;
}
.block h1 {
    color: white;
    text-align: center;
    font-size: 6vw;
}

.light {
    /* z-index: 9; */
    /* position: absolute; */
    width: 45%;
    height: 1.5px;
    background: linear-gradient(to right, transparent, rgba(0, 153, 255, 0.873), transparent);
    box-shadow: 0 20px 200px 12px rgba(0, 153, 255, 0.619);  
    /* transform: translate(-50%, -50%); */
  }
  .light:nth-child(4){
    box-shadow: 0 -20px 200px 12px rgba(0, 153, 255, 0.619)
  }
  #page2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 0;
    background-color: black;
    overflow: hidden;
    background-image: url(https://images.pexels.com/photos/2603464/pexels-photo-2603464.jpeg?auto=compress&cs=tinysrgb&w=600);
    
}
#desc{
  width: 60%;
  height: 600px;
  background-color: rgba(255, 255, 255, 0.214);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 30px;
  padding: 10%;
  text-align: center;
}
#desc h1{
  font-size: 50px;
}
#desc p{
  font-size: 20px;
}
#desc a{
  color: #02111B;
}
#desc button{
  width: 10vw;
  border-radius: 5px;
  margin: 2%;
  padding: 1%;
  font-size: 1.5vw;
}
.autoShow{
  animation: autoShowAnimation both;
  animation-timeline: view(70% 5%);
}
@keyframes autoShowAnimation {
  from{
    opacity: 0;
    transform: translateY(200px) scale(0.3);
  }to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.autoBlur{
  animation: autoBlurAnimation both;
  animation-timeline: view();
}
@keyframes autoBlurAnimation {
  0%{
    filter: blur(50px) ;
  }
  45%, 55%{
    filter: blur(0px);
  }
  100%{
    filter: blur(50px);
  }

}
.con1 a{
  opacity: 0;
  font-size: 1.5vw;
  position: absolute;
  bottom: 8%;
  right: 2%;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}

.con a{
  opacity: 0;
  font-size: 1.5vw;
  position: absolute;
  right: 2%;
  bottom: 3%;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}
.con a:hover{
  transition: all ease 0.2s;
  scale: 1.2;
}
.con1 a:hover{
  transition: all ease 0.2s;
  scale: 1.2;
}
.slider{
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right,transparent,black 10% 60%,transparent);
}
.slider .list{
  margin-top: 2%;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}
.slider .list .item{
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autorun 30s linear infinite;
  transition: filter 0.3s;
  animation-delay: calc((30s / var(--quantity)) * (var(--position) - var(--quantity)));
}
.slider .list .item h1{
  text-align: center;
  font-size: 40px;
}
@keyframes autorun {
  from{
    left: 100%;
  }
  to{
    left:calc(var(--width)*-1)
  }
}
.slider:hover .item{
  animation-play-state: paused!important;
}
#page3{
  width: 100%;
  min-height: 100vh;
  background-color: black;
}
.pd{
  padding: 3%;
  font-size: 3vw;
  color: white;
  text-align: center;
}
.works{
  display: flex;
  justify-content: center;
  gap: 8px;
  transform-style: preserve-3d;
  transform: perspective(1000px)
}
.card img{
  width: 100%;
}
.works .card{
  width: 200px;
  height: 450px;
  object-fit: cover;
  transition: 0.3s;
  filter: brightness(0.5);
}
.works .card:hover{
  filter: brightness(1);
  width: 300px;
  transform: translateZ(170px);
}
#redirect{
  padding: 5%;
  padding-top: 10%;
  position: relative;
  
}
.more{
  z-index: 1;
  padding: 3%;
  width: 100%;
  border-top: 1px solid #fff;
  position: relative;
}
.more h1{
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  font-size: 9vw;
  color: #fff;
}
.last{
  border-bottom: 1px solid #fff;
}
.more{
  position: relative;
}
.more a::after{
  content: " ";
  position: absolute;
  left:0;
  bottom: -2px;
  height: 5px;
  width: 0;
  background-color: white;
  transition: all ease 1s;

}
.more a:hover::after{
  width: 100%;
}
.banner{
  width: 100%;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
  background-color: black;
}
.banner .ring{
  z-index: 10;
  position: absolute;
  width: 180px;
  height: 220px;
  top: 10%;
  left: calc(50% - 100px) ;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  animation: autoRun 20s linear infinite;
}
@keyframes autoRun {
  from{
    transform: perspective(1000px) rotateX(-14deg) rotateY(0deg);
  }
  to{
    transform: perspective(1000px) rotateX(-14deg) rotateY(360deg);
  }
  
}
.banner .ring .seat{
  position: absolute;
  inset: 0 0 0 0;
  transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(500px);

}
.banner .ring .seat img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .content{
  color: transparent;
  position: absolute;
  z-index: 90;
  bottom:2%;
  left: 12%;
  transform: translateX(-50%);
  height: max-content;
}
.banner .ots{
  color: transparent;
  bottom:2%;
  left: 57%;
  position: absolute;
  z-index: 90;
}
.banner h1{
  font-size: 8vw;
  font-weight: 700;
  -webkit-text-stroke: 1px #fff;
  
}
.smodel img{
  position: absolute;
  top: 20%;
  right: 78%;
  width: 380px;
  z-index: 10;
}
.man2 img{
  position: absolute;
  top: 20%;
  right: 0%;
  width: 380px;
  z-index: 10;
}
.service{
  padding-top: 100px;
  padding: 3%;
  width: 100%;
  min-height: 100vh;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.servicecard{
  width:80%;
  height: 50vh;
  background-image: url(https://plus.unsplash.com/premium_photo-1668104454432-69c53f7196fc?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTAxfHxiYW5uZXIlMjBiYWNrZ3JvdW5kfGVufDB8fDB8fHww);
  background-size: cover;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
/* .webp{
  width: 30%;
  height: 80%;
  object-fit: cover;
} */
.webp img{
  width: 250px;
  border-radius: 15px;
}
.webd{
  width: 60%;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.233);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}
.webd p{
  padding: 10%;
  font-size: 20px;
}
.abmain{
  width: 100%;
  height: 100vh;
  background-image: url(https://img.freepik.com/free-photo/laptop-with-blank-screen-table-dark-office-with-night-city-view_1142-58024.jpg?ga=GA1.1.169835902.1720189868&semt=ais_hybrid);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
#abd{
  width: 80%;
  height: 78%;
  background-color: rgba(255, 255, 255, 0.233);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.abi img{
  width: 27vw;
}
.abp p{
  font-size: 1.5vw;
  padding: 4%;
}
.abp h1{
  font-size: 4vw;
  text-align: center;
}
a{
  text-decoration: none;
  color: #fff;
}
.video1 video{
  width: 100%;
}
.video2 video{
  width: 100%;
}
.video1{
  /* top: -15%; */
  /* position: absolute; */
  width: 600px;
  height: 400px;
  clip-path: circle(50% at 50% 100%);
  overflow: hidden;
}
.video2{
  /* position: absolute; */
  width: 600px;
  height: 400px;
  clip-path: circle(50% at 50% 0);
  overflow: hidden;
}
.vision{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visionp{
  width: 70%;
  height: 80%;
  position: relative;
  overflow: hidden;
}
.visionp img{
  z-index: 1;
  width: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0.5;
  border-radius: 25% 75% 25% 75% / 72% 25% 75% 25%;
}
.visionp h1{
  font-size: 5vw;
  color: #fff;
  text-align: center;
}
.visiond{
  width: 90%;
  height: 80%;
  padding-left: 9%;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.visiond p{
  font-size: 2vw;
  text-align: center;
  z-index: 5;
  color: white;
}
.abcomp{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  padding: 4%;
  align-items: center;
  background-color: black;
}
.ac img{
  width: 400px;
}
.ad h1{
  text-align: start;
  color: #fff;
  font-size: 4vw;
}
.ad p{
  color: #fff;
  font-size: 1.5vw;
}
.ad{
  padding: 5.2%;
  overflow: hidden;
}
#footer{
  padding: 5%;
  width: 100%;
  height: auto;
  background-image: url(https://img.freepik.com/free-vector/abstract-business-professional-background-banner-design-multipurpose_1340-16856.jpg?size=626&ext=jpg&ga=GA1.1.169835902.1720189868&semt=ais_hybrid);
  background-size: cover;
}
#footer h1,h4{
  display: flex;
  flex-direction: column;
  color: white;
  font-weight: 400;
  text-align: center;
  
}
.qlinks{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.ss{
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.ss a{
  font-size: 30px;
  text-align: center;
}
.copy h4{
  width: 100%;

}
.abmeet{
  width: 100%;
  padding: 3%;
  background-color: black;

}
.abmeet h1{
  text-align: center;
  font-size: 3vw;
  color: white;
}
.picg{
  padding: 3%;
  width: 100%;
  
  display: flex;
  justify-content: space-between;
}
.pro{
  padding: 2%;
}
.m{
  font-weight: 900;
}
.pro h4{
  color: white;
}
.pro img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
span{
  color: #fff;
}
#maintact{
  gap: 100px;
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #02111B;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box{
  z-index: 1;
  top: 10%;
  left: 53%;
  width: 100px;
  height: 100px;
  position: absolute;
  background-color: #6F432A;
}
.box1{
  z-index: 1;
  top: 35%;
  left: 0%;
  width: 50px;
  height: 100px;
  position: absolute;
  background-color: #6F432A;
}
.tangle{
  width: 18%;
  height: 100vh;
  position: absolute;
  z-index: 1;
  background-color: #6F432A;
  right: 0%;
}
.contact-form-container{
  padding: 1.5%;
  /* background-color:#5B7553; */
  color: #F4FDFF;
  display: flex;
  flex-direction: column;
  width: 40%;
  gap: 40px;
}
.map{
  z-index: 10;
}
.contact-form-container h1{
  font-size: 60px;
  border-bottom: 4px solid white;
  width: 350px;
  padding-bottom: 20px;
}
/* .ques{
  font-size: 30px;
  margin-bottom: 10px;
} */
.op{
  height: auto;
  width: 400px;
  font-size: 20px;
  margin-bottom: 10px;
}
.butcon button{
  height: 55px;
  width: 400px;
  border-radius: 30px;
  background-color: #6F432A;
  font-size: 20px;
  border: none;
  outline: none;
  color: #F4FDFF;
}
.input-next{
  margin-bottom: 20px;
  background-color: #F4FDFF;
  height: 50px;
  width: 400px;
  padding: 5%;
  border-radius:30px;
  border: none;
  outline: none;
}
@media screen and (max-width: 600px) {
  .call{
      display: none;
  }
  .call2{
    display: inline;
    font-size: 20px;
  }
  .circle{
    display: none;
  }
  .video1{
    width: 280px;
    height: 150px;
  }
  .block h1{
    font-size: 30px;
  }
  .video2{
    width: 280px;
    height: 150px;
  }
  .con a{
    font-size: 20px;
  }
  .con1 a{
    font-size: 20px;
  }
  #desc{
    width: 80%;
  }
  #desc h1{
    font-size: 30px;
  }
  #desc p{
    font-size: 13px;
  }
  .works{
    flex-direction: column;
    align-items: center;
    transform: perspective(2000px);
  }
  .works .card:hover{
    transform: translateZ(180px);
  }
  #redirect{
    margin-top: 20%;
  }
  .vision{
    height: 70vh;
  }
  .visionp{
    height: 40%;
  }
  .visionp h1{
    font-size: 10vw;
  }
  .visiond p{
    font-size: 2.5vw;
  }
  .visionp img{
    opacity: 0.6;
  }
  .qlinks{
    flex-direction: column;
  }
  .ss{
    flex-direction: column;
    align-items: center;
  }
  .add h1{
    font-size: 25px;
  }
  .ll h1{
    font-size: 25px;
  }
  .add h4{
    font-size: 14px;
  }
  .ll h4{
    font-size: 14px;
  }
  .ss a{
    font-size: 25px;
    text-align: center;
  }
  .ll{
    padding: 5%;
  }
  .add{
    padding: 5%;
  }
  .ss{
    padding: 5%;
  }
  .smodel img{
    display: none;
  }
  .man2 img{
    top: 38%;
    left: 33%;
  }
  .banner .ring .seat{
    transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(190px);
  }
  .banner .ring{
    width: 100px;
    height: 120px;
    top: 30%;
    left: 37%;
  }
  .banner .ots{
    color: transparent;
    top: 68%;
    left: 25%;
  }
  .banner .content h1{
    font-size: 50px;
  }
  .banner .ots h1{
    font-size: 50px;
    -webkit-text-stroke: 1px white;
  }
  .banner .content{
    color: #fff;
    top: 60%;
    left: 40%;
  }
  .servicecard{
    gap: 20px;
    padding: 5%;
    height: 70vh;
    flex-direction: column;
  }
  .webp img{
    width: 140px;
    border-radius: 15px;
  }
  .webd{
    width: 80%;
  }
  .webd p{
    padding: 10%;
    font-size: 15px;
  }
  #abd{
    flex-direction: column;
  }
  .abi img{
    width: 27vh;
  }
  .abp p{
    font-size: 1.5vh;
    padding: 4%;
    text-align: center;
  }
  .abp h1{
    font-size: 4vh;
    text-align: center;
  }
  .picg{
    flex-direction: column;
    align-items: center;

  }
  .m{
    font-weight: 700;
  }
  .ac img{
    width: 250px;
  }
  .abcomp{
    flex-direction: column;
    justify-content: center;
  }
  .ad{
    padding: 8%;
  }
  .ad h1{
    text-align: center;
    font-size: 4vh;
  }
  .ad p{
    text-align: center;
    font-size: 2vh;
  }
  .abmeet h1{
    font-size: 4vh;
  }
  .map iframe{
    width: 250px;
    height: 250px;
  }
  #maintact{
    height: 120vh;
    padding: 15%;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .box{
    z-index: 1;
    top: 80%;
    left: 5%;
    width: 70px;
    height: 70px;
    position: absolute;
    background-color: #6F432A;
  }
  .box1{
    z-index: 1;
    top: 25%;
    left: 0%;
    width: 50px;
    height: 100px;
    position: absolute;
    background-color: #6F432A;
  }
  .tangle{
    top: 50%;
    width: 18%;
    height: 40vh;
    position: absolute;
    z-index: 1;
    background-color: #6F432A;
    right: 0%;
  }
  .contact-form-container{
    /* text-align: center; */
    border-radius: 20px;
    padding: 0%;
    /* background-color:#5B7553; */
    color: #F4FDFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  #contactForm{
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .contact-form-container h1{
    font-size: 30px;
    border-bottom: 2px solid white;
    width: 200px;
    padding-bottom: 5px;
  }
  .op{
    width: 240px;
    height: auto;
    font-size: 15px;
    margin-bottom: 10px;
    /* text-align: center; */
  }
  .butcon button{
    height: 40px;
    width: 240px;
    border-radius: 30px;
    background-color: #6F432A;
    font-size: 15px;
    border: none;
    outline: none;
    color: #F4FDFF;
  }
  .input-next{
    margin-bottom: 10px;
    background-color: #F4FDFF;
    height: 10px;
    width: 220px;
    padding: 10%;
    /* text-align: center; */
  }
}
@media only screen and (min-width:601px) and (max-width: 1024px) {
  .call2{
    display: inline;
    font-size: 20px;
  }
  .circle{
    display: none;
  }
  .video1{
    width: 450px;
    height: 250px;
    /* display: none; */
  }
  .video2{
    width: 450px;
    height: 250px;
    /* top: 53%; */
  }
  .light {
    top: 52%;
  }
  .light:nth-child(4){
    top: 48%;
  }
  .con a{
    font-size: 20px;
  }
  .con1 a{
    font-size: 20px;
  }
  #desc{
    width: 80%;
  }
  #desc h1{
    font-size: 30px;
  }
  #desc p{
    font-size: 13px;
  }
  .works{
    flex-direction: column;
    align-items: center;
    transform: perspective(1000px);
  }
  .works .card:hover{
    transform: translateZ(200px);
  }
  #redirect{
    margin-top: 20%;
  }
  .vision{
    height: 70vh;
  }
  .visionp{
    height: 40%;
  }
  .visionp h1{
    font-size: 50px
  }
  .visiond p{
    font-size: 12px;
  }
  .visionp img{
    opacity: 0.6;
  }
  .qlinks{
    flex-direction: column;
  }
  .ss{
    flex-direction: column;
    align-items: center;
  }
  .add h1{
    font-size: 25px;
  }
  .ll h1{
    font-size: 25px;
  }
  .add h4{
    font-size: 14px;
  }
  .ll h4{
    font-size: 14px;
  }
  .ss a{
    font-size: 25px;
    text-align: center;
  }
  .ll{
    padding: 5%;
  }
  .add{
    padding: 5%;
  }
  .ss{
    padding: 5%;
  }
  .smodel img{
    display: none;
  }
  .man2 img{
    top: 38%;
    left: 33%;
  }
  .banner .ring .seat{
    transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(300px);
  }
  .banner .ring{
    width: 150px;
    height: 170px;
    top: 30%;
    left: 37%;
  }
  .banner .ots{
    color: transparent;
    top: 68%;
    left: 25%;
  }
  .banner .content h1{
    font-size: 50px;
  }
  .banner .ots h1{
    font-size: 50px;
    -webkit-text-stroke: 1px white;
  }
  .banner .content{
    color: #fff;
    top: 60%;
    left: 40%;
  }
  .servicecard{
    gap: 20px;
    padding: 5%;
    height: 70vh;
    flex-direction: column;
  }
  .webp img{
    width: 140px;
    border-radius: 15px;
  }
  .webd{
    width: 80%;
  }
  .webd p{
    padding: 10%;
    font-size: 20px;
  }
  #abd{
    flex-direction: column;
  }
  .abi img{
    width: 27vh;
  }
  .abp p{
    font-size: 1.5vh;
    padding: 4%;
    text-align: center;
  }
  .abp h1{
    font-size: 4vh;
    text-align: center;
  }
  .picg{
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }
  .m{
    font-weight: 700;
  }
  .ac img{
    width: 250px;
  }
  .abcomp{
    flex-direction: column;
    justify-content: center;
  }
  .ad{
    padding: 8%;
  }
  .ad h1{
    text-align: center;
    font-size: 4vh;
  }
  .ad p{
    text-align: center;
    font-size: 2vh;
  }
  .abmeet h1{
    font-size: 4vh;
  }
  .map iframe{
    width: 300px;
    height: 300px;
  }
  #maintact{
    padding: 15%;
    gap: 10px;
    flex-direction: column;
    align-items: start;
  }
  .box{
    z-index: 1;
    top: 80%;
    left: 5%;
    width: 70px;
    height: 70px;
    position: absolute;
    background-color: #6F432A;
  }
  .box1{
    z-index: 1;
    top: 25%;
    left: 0%;
    width: 50px;
    height: 100px;
    position: absolute;
    background-color: #6F432A;
  }
  .tangle{
    top: 50%;
    width: 18%;
    height: 40vh;
    position: absolute;
    z-index: 1;
    background-color: #6F432A;
    right: 0%;
  }
  .contact-form-container{
    /* text-align: center; */
    border-radius: 20px;
    padding: 0%;
    /* background-color:#5B7553; */
    color: #F4FDFF;
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: 10px;
  }
  
  .contact-form-container h1{
    font-size: 30px;
    border-bottom: 2px solid white;
    width: 200px;
    padding-bottom: 5px;
  }
  .op{
    width: 240px;
    height: auto;
    font-size: 15px;
    margin-bottom: 10px;
    /* text-align: center; */
  }
  .butcon button{
    height: 40px;
    width: 240px;
    border-radius: 30px;
    background-color: #6F432A;
    font-size: 15px;
    border: none;
    outline: none;
    color: #F4FDFF;
  }
  .input-next{
    margin-bottom: 20px;
    background-color: #F4FDFF;
    height: 40px;
    width: 240px;
    padding: 10%;
    /* text-align: center; */
  }
}
