@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
    font-family: Heading;
    src:  url(/assets/fonts/Gallient.ttf);
  }
@font-face {
    font-family: gm;
    src: url(/assets/fonts/Graphik-Medium-Web.ttf);
  }
@font-face {
    font-family: gr;
    src: url(/assets/fonts/Graphik-Regular-Web.ttf);
  }
@font-face {
    font-family: gsb;
    src: url(/assets/fonts/Graphik-Semibold-Web.ttf);
  }
    @font-face {
    font-family: neu;
    src: url(/assets/fonts/NeueHaasDisplayMediu.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(/assets/fonts/NeueHaasDisplayLight.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 200;
    src: url(/assets/fonts/NeueHaasDisplayRoman.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gr;
}
html, body {
    height: 100%;
    width: 100%;
}
*::selection {
    background-color: #fff;
    color: #96b73d;
  }
  .c-scrollbar {
    background: transparent;
}
.c-scrollbar_thumb {
    background-color: transparent;
}

:root {
  /* black family */
  --black:#000;
  --offblack:#0C0C0C;
  /* white family */
  --white:#ffffff;
 --offwhite:#E7E5E6;
 /* purple family */
 --offpurple:#B084D3;
 /* yellow family */
 --offyellow:#D3FF4E;
 /* yellow family */
 --lightbg:#FAF8F3;
 --darkbg:#EDECE7;
 /* para gray family*/
 --ParaGray:#A1A2A3;
 --mtext:#575b5f;
  --mdgwt:#777c81;
  
}
/*  */

#main{
    position: relative;
    background-color: #000;
}
.aboutherobanner{
    width: 100%;
    height: 125vh;
    background-color: var(--black);
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 2vw;
    padding: 4vw;
    position: relative;
}
.aboutherobanner h1{
  display: none;
}
.aboutherobanner h2{
  font-size: 16vw;
  font-family: neu;
  color: var(--mtext);
  font-weight: 900;
}
.aboutherobanner h2 span{
  font-size: 16vw;
  font-family: neu;
  color: var(--mtext);
  font-weight: 900;
}

.aboutherobanner p{
  width: 60%;
  font-size: 1.5vw;
  line-height: 1.4;
  font-family: gr;
  color: var(--mdgwt);
}
.aboutherobanner #grleftswipebtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-top: 50px;
    height: 1.5vw;
    cursor: pointer;
  }
  .aboutherobanner #grleftswipebtn a{
    text-decoration: none ;
  }
  .aboutherobanner #grleftswipebtn-effect h3 {
    font-weight: 300;
    font-family: neu;
    color:#ffffff;
    font-size: 1.2vw;
    z-index: 999;
  }
  
  .aboutherobanner #grleftswipebtn-effect {
    padding:12px 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(to top right, #833ab4, #b084d3);
}


.aboutherobanner #grleftswipebtn-after {
    height: 100%;
    position: absolute;
    width: 100%;
    -webkit-transition: left 0.4s ease;
    -o-transition: left 0.4s ease;
    transition: left 0.4s ease;
    background: linear-gradient(to top right, #833ab4, #b084d3);
    left: -100%;
    top: 0;
    z-index: 999;
    border-radius: 50px;
}

.aboutherobanner #grleftswipebtn-effect:hover #grleftswipebtn-after {
    left: 0;
}
@media (max-width:768px) {
.aboutherobanner{
  height: 130vh;
    gap: 4vh;
    padding:5vh 0vw;
    
}
.aboutherobanner h2{
  display: none;
}
.aboutherobanner h1{
  display: block;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 84px;
  
}
.aboutherobanner h1 span{
  font-size: 20vh;
  font-family: neu;
  color: #575b5f;
  font-weight: 900;
  animation-name: scroll;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-name: scroll;
  display: inline-block;
  animation-timing-function: linear;
  
}
.aboutherobanner h1::-webkit-scrollbar {
  display: none;
}
@keyframes scroll {
  0% {
      transform: translateX(0);
  }

  100% {
      transform: translateX(calc(-100% - 83px));
  }
}
.aboutherobanner p{
  width: 100%;
  font-size: 2.2vh;
  padding: 0 4vw;
}
.aboutherobanner p span{
  width: 100%;
  font-size: 2.2vh;
}
.aboutherobanner #grleftswipebtn {
    margin-top: 0px;
    padding: 3vw;
  }
 .aboutherobanner #grleftswipebtn-effect h3 {
    font-size: 2vh;
  }
  .aboutherobanner #grleftswipebtn-effect {
    padding:12px 20px;
  }
}

#ourteam{
  width: 100%;
  height: 100%;
  padding: 4vw ;
}

#ourteam-wrapp{
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--mtext);
}
#ourteam-top{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2vw 0;
}
#ourteam-top ul{
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: .5vw;
}
#ourteam-top ul h3{
    font-size: 1.2vw;
    display: flex;
    gap: .87vw;
    color: #fff;
}
#ourteam-top ul h3 span{
    border-radius: 50%;
    width: 10px;
    height: 10px;
   
    background: linear-gradient(to top right, #833ab4, #b084d3);
    display: block;
    z-index: 9999;
    margin-top: 5px;
}
#ourteam-top ul p{
  width: 100%;
  font-size: 1.2vw;
  color: var(--mdgwt);
  margin-left: 22px;
}
#ourteam-wrapp p{
  width: 40%;
  font-size: 1.2vw;
  color: var(--offwhite);
}

#ourteam-bottom{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2vw;
  padding: 4vw 0;
}
#ourteamimage{
  width: 100%;
  height: 62vh;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
#ourteamimage img{
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#ourteamimage h1{
  font-size: 1.4vw;
  font-family: gr;
  color: #ffffff;
}
#ourteamimage h1 span{
  font-size: 1.4vw;
  color:  var(--mdgwt);
}
@media (max-width:768px) {
#ourteam-top{
  flex-direction: column;
  padding: 2vh 0;
  gap: 4vh;
}
#ourteam-top ul{
  width: 100%;
  flex-direction: column;
  gap: 1vh;
}
#ourteam-top ul h3{
    font-size: 2vh;
    gap: 2vw;
}

#ourteam-top ul p{
  font-size: 1.8vh;
  font-weight: 600;
}
#ourteam-wrapp p{
  width: 100%;
  font-size: 1.8vh;
}
#ourteam-bottom{
  flex-direction: column;
  gap: 4vh;
  padding: 4vw 0;
}
#ourteamimage{
  height: 62vh;
  gap: 1vh;
}
#ourteamimage h1{
  font-size: 2.2vh;
}
#ourteamimage h1 span{
  font-size: 2.2vh;
}
}

#aboutpage2{
  width: 100%;
  height: 100%;
  padding:0 4vw;
}
#aboutpage2-left h3{
    font-size: 1.2vw;
    display: flex;
    gap: .87vw;
    color: #fff;
}
#aboutpage2-left h3 span{
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: linear-gradient(to top right, #833ab4, #b084d3);
    display: block;
    z-index: 9999;
    margin-top: 5px;
}
#aboutpage2-wrapp {
   padding: 2vw 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    border-top: 1px solid var(--mdgwt);
    justify-content: space-between;
}

#aboutpage2-left {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 1vw;
    padding: 2vw 0 ;

}

#aboutpage2-left p {
    font-size: 1vw;
    color: #fff;
    
}

#aboutpage2-left h5 {
    width: 75%;
    font-weight: 400;
    font-size: 1vw;
    color: var(--mdgwt);
    margin-left: 1.5vw;
}


#aboutpage2-right {
    height: 100%;
    width: 60%;
    /* background-color: #333; */
}

.aboutpage2-right-elem {
    position: relative;
    /* background-color: red; */
    padding-top: 2vw;
    border-bottom: 1px solid var(--mdgwt);
    padding-bottom: 5vw;
    
  }
  .aboutpage2-right-elem:nth-last-child(1){
  padding-bottom: 0vw;
  border-bottom: none;
}
.aboutpage2-right-elem h2 {
  font-size: 1.4vw;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}
.aboutpage2-right-elem h2 span{
  font-size: 1.2vw;
  color: var(--mdgwt);
}
.aboutpage2-right-elem img {
    height: 7vw;
    width: 7vw;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    scale: 0;
    z-index: 99999;
}

@media (max-width:768px) {
#aboutpage2{
  padding:2vh 4vw;
}
#aboutpage2-left h3{
  font-size:2vh;
  gap: 2vw;
}
#aboutpage2-wrapp {
  padding: 2vh 0;
  flex-direction: column;
  gap: 4vh;
}
#aboutpage2-left {
    width: 100%;
    flex-direction: column;
    gap: 2vh;
    padding: 2vw 0 ;
}
#aboutpage2-left p {
  font-size: 1.8vh;   
}
#aboutpage2-left h5 {
  width: 100%;
  font-size: 1.8vh;
  margin-left: 20px;
}
#aboutpage2-right {
    width: 100%;
}
.aboutpage2-right-elem {
  padding-top: 2vh;
  padding-bottom: 5vh; 
}

.aboutpage2-right-elem h2 {
  font-size: 2vh;
  gap: 2vh;
}
.aboutpage2-right-elem h2 span{
  font-size: 1.8vh;
}
}




#aboutpage5-content h3{
    font-size: 1.2vw;
    display: flex;
    justify-content: center;
    gap: .87vw;
    color: #fff;
    font-family: gr;
}
#aboutpage5-content h3 span{
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: linear-gradient(to top right, #833ab4, #b084d3);
    display: block;
    z-index: 9999;
    margin-top: 5px;
}


#aboutpage5{
  width: 100%;
  height: 100%;
  
  padding: 4vw;
}

#aboutpage5-content{
  width: 100%;
  border-top: 1px solid var(--mdgwt);
  display: flex;
  justify-content: space-between;
  padding-top: 2vw;
}
#aboutpage5-content ul{
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 6vw;

}
#aboutpage5-content p{
  width: 100%;
  font-size: 1.2vw;
  color: var(--mdgwt);
  font-family: gr;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
#aboutpage5-content p span{
  font-size: 1.4vw;
  position: relative;
  color: var(--white);
}

#aboutpage5-bottomcontent{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 4vw 0;
    gap: 4vw;
    margin-top: 8vw;
}
#aboutpage5-bottomcontent h3{
    font-size: 1.2vw;
    position: relative;
    color: #fff;
    font-family: gr;
    
}
#aboutpage5-bottomcontent h3 span{
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: linear-gradient(to top right, #833ab4, #b084d3);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}
#aboutpage5-bottomcontent ul{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6vw;
    margin-left: 2vw;
}
#aboutpage5-bottomcontent ul li{
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}
#aboutpage5-bottomcontent ul h1{
    font-size: 1.1vw;
    font-family: gr;
    display: flex;
    align-items: center;
    gap: 1vw;
 color: #fff;
}
#aboutpage5-bottomcontent ul h1 i{
    font-size: 2vw;
    color: transparent;
   background: linear-gradient(to top right, #833ab4, #b084d3);
  -webkit-text-fill-color: transparent;
  background-clip:text;

  /* 
  animation: mymove 3s ease-out infinite alternate; */
}
#aboutpage5-bottomcontent ul p{
    font-size: 1.2vw;
    font-family: gr;
    color: var(--mdgwt);
  margin-left: 3vw;
}
@keyframes mymove {
    from {top: 0px;}
    to {top: 10px;}
  }

@media (max-width:768px) {
#aboutpage5-content h3{
  font-size: 2vh;
  gap: 2vw;
  justify-content: flex-start;
}
#aboutpage5-content{
  flex-direction: column;
  gap: 2vh;
  border-top: none;
}
#aboutpage5-content ul{
  padding-top: 4vh;
  border-top: 1px solid var(--mdgwt);
  width: 100%;
  grid-template-columns: repeat(1,1fr);
  gap: 4vh;
}
#aboutpage5-content p{
  width: 100%;
  font-size: 1.8vh;
  gap: 2vh;
}
#aboutpage5-content p span{
  font-size: 2vh;
}
#aboutpage5-bottomcontent{
  flex-direction: column;
  padding: 4vh 0;
  gap: 6vh;
  margin-top: 4vh;
}
#aboutpage5-bottomcontent h3{
  font-size: 2vh;
  margin-left: 22px;
}

#aboutpage5-bottomcontent ul{
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 4vh;
    margin-left: 0vw;
}
#aboutpage5-bottomcontent ul li{
    width: 100%;
    gap: 2vh;
}
#aboutpage5-bottomcontent ul h1{
  font-size: 2vh;
  gap: 2vw;
}
#aboutpage5-bottomcontent ul h1 i{
  font-size: 2.6vh;
}
#aboutpage5-bottomcontent ul p{
  font-size: 1.8vh;
  margin-left: 3vh;
}
}

.section3-swiper {
    width: 68%;
    margin: 0 auto;
    /* background-color: blue; */
    position: relative;
    margin-top: -2vw;

}

.swiper-parent {
    /* background-color: red; */
    overflow: hidden;
    border-radius: 1.5rem;
}

.swiper-container {
    /* background-color: red; */
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    /* overflow: hidden; */
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
   
}

.swiper-container .swiperwrapp {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 1.5rem;
    overflow: hidden;
    -webkit-transition: all ease 1s;
    -o-transition: all ease 1s;
    transition: all ease 1s;
}

.swiper-container .swiperwrapp > img {
    width: 27.5%;
    height: 32vh;
    object-fit: cover;
}

.section3-swiper .swiper-text {
     background: linear-gradient(to top right, #833ab4, #b084d3);
    padding: 4vw;
    width: 69%;
    height: 32vh;


}

.section3-swiper .swiper-text img {
    position: absolute;
    top: 14%;
    right: 6.8%;
    height: 3.2vw;
}

.swiper-container .swiperwrapp h3 {
    font-size: 1.69vw;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.4vw;
}

.swiper-container .swiperwrapp p {
    color: #fff;
    font-size: 1.25vw;
    font-style: italic;
    line-height: 1.9vw;
    font-weight: 300;
    letter-spacing: 0.1px;
}

.swiper-nextbtn {
    position: absolute;
    top: 50%;
    right: -9%;
    -webkit-transform: translate(0, -50%) rotateY(180deg);
    transform: translate(0, -50%) rotateY(180deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.swiper-prevbtn {
    position: absolute;
    top: 50%;
    left: -9%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.swiper-prevbtn i {
    font-size: 3vw;
    font-weight: 900;
  color: #A1A2A3;
  transition: 1s easet;
}

.swiper-nextbtn i {
    font-size: 3vw;
    font-weight: 900;
    transform: rotate(180DEG);
    color: #A1A2A3;
    transition: 1s ease-in-out;

}


.swiper-prevbtn:hover i {
     color: transparent;
   background: linear-gradient(to top right, #833ab4, #b084d3);
  -webkit-text-fill-color: transparent;
  background-clip:text;
}
.swiper-nextbtn:hover i {
     color: transparent;
   background: linear-gradient(to top right, #833ab4, #b084d3);
  -webkit-text-fill-color: transparent;
  background-clip:text;
}


.swiper-pagination{
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4vw;
    position: absolute;
    bottom: -29%;
    left: 50%;
    transform: translate(-50%, 0);
}
.pagination-dot{
    height: 1.1vw;
    width: 1.1vw;

    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}
.pagination-dot.active {
    background: linear-gradient(to top right, #833ab4, #b084d3);
  }
@media (max-width:768px) {
  .section3-swiper {
    width: 100%;
    padding: 12vh 4vw 4vh;

}

.swiper-parent {
    overflow: visible;
    border-radius: 0;
}

.swiper-container {
    justify-content: flex-end;
    gap: 4vh;
   
}

.swiper-container .swiperwrapp {
    border-radius: 0;
    overflow: visible;
}

.swiper-container .swiperwrapp > img {
    width: 52%;
    height: 25vh;
    object-fit: cover;
    position: absolute;
    top: -15%;
    left: 10%;
    z-index: 99999;
}

.section3-swiper .swiper-text {
    background: linear-gradient(to top right, #833ab4, #b084d3);
    padding:8vh 4vh 12vh;
    width: 100%;
    height: 52vh;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2vh;

}

.section3-swiper .swiper-text img {
    position: absolute;
    top: 22%;
    right: 10%;
    height: 6vh;
}

.swiper-container .swiperwrapp h3 {
  font-size: 2.8vh;
}

.swiper-container .swiperwrapp p {
  font-size: 2vh;
  line-height: 2vh;
}

.swiper-nextbtn {
  display: none;
}

.swiper-prevbtn {
  display: none;
}
.swiper-pagination{
    gap: 2.4vh;
    bottom: -5%;
}
.pagination-dot{
    height: 1.8vh;
    width: 1.8vh;
}


}


  .faq-body{
    width: 100%;
    padding: 12vw 4vw 8vw;

}


#faq-wrapp h4 span{
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: linear-gradient(to top right, #833ab4, #b084d3);
    display: block;
    z-index: 9999;
    margin-top: 5px;
}
#faq-wrapp{
  width: 100%;
  height: 100%;
  padding-top: 4vw;
  display: flex;
  justify-content: space-between;
}
#faq-wrapp h4{
    font-size: 1.2vw;
    display: flex;
    gap: .87vw;
    color: #fff;
    font-family: gr;
}


 .faq{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 5vw;
 }
 .faq-body .faq .box{
    border-radius: 1px;
    border: none;

    transition: .5s ease;
 }
 
 

 .faq-body .faq .box h3{
    color: var(--mdgwt);
    font-size: 2vw;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1vw;
    font-family: gr;
    transition: .5s ease;
  }
  .faq-body .faq .box h3:hover{
    color: #fff;
  }
  .faq-body .faq .box h3:hover i{
    color: #fff;
  }
  .faq-body .faq .box h3 i{
   transition: 1s ease;
  font-size: 2vw;
  color: var(--mdgwt);

 }
 
 .faq-body .faq .box p{
    width: 100%;
    padding:20px 0 20px 3vw ;
    line-height: 1.2;
    font-size: 1.4vw;
    color:var(--mdgwt);
    opacity: 1;
    display: none;
    
 }
 
 
 .faq-body .faq .box.active p{
    display: inline-block;
 }
 .faq-body .faq .box.active h3 i{
    transform: rotate(45deg);
 }
@media (max-width:768px) {
.faq-body{
  padding: 12vh 4vw 8vh;
}
#faq-wrapp{
  padding-top: 4vh;
  flex-direction: column;
  gap: 6vh;
}
#faq-wrapp h4{
  font-size: 2vh;
  gap: 2vw;
  font-weight: 400;
}
 .faq{
  width: 100%;
  flex-direction: column;
  gap: 4vh;
 }
 .faq-body .faq .box h3{
  font-size: 2.2vh;
  gap: 2vw;
  }
  .faq-body .faq .box h3 i{
  font-size: 2.6vh;
 }

 .faq-body .faq .box p{
  width: 100%;
  padding:20px 0 20px 3vh ;
  font-size: 1.8vh;  
 }
}

