 

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');
/*font-family: 'Inter', sans-serif;*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&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');
/*font-family: "Poppins", sans-serif;*/

:root{
	--font1:'Inter', sans-serif;
	--font2:  "Playfair Display", serif;;
	--redcolor: #EA0D0D;
    --bluecolor: #0b6ecf;
    --greencolor: #17aa17;
    --darkredcolor: #840707;
    --grd1: linear-gradient(to bottom,#EA0D0D 50%, #840707 100% );
    --grd2: linear-gradient(to right,#221d1d 10%, #454342 100% );

    --redgrd:linear-gradient(to right,#e50d0d 50%, #850707 100% );
    --bluegrd:linear-gradient(to right,#0a6bca 50%, #05386a 100% );
    --greengrd:linear-gradient(to right,#0cbf0c 50%, #065f06 100% );

	--grey:  #5E5A57;  
    --white: #FFFFFF; 
	--black: #000;
    --dark: #1c1c1c;
    --sideblack:#241f1f;
	--bglight: #F4F4F4;
    --bordercolor:#5E5A57;
}


*{ 
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0; 
    scroll-behavior: smooth; 
    font-size: 24px;
    line-height: 34px;
    color: var(--text-color);
    font-family: var(--font1);
}
h1,h2,h3,h4,h5,h6{
    color: var(--dark);
    font-family: var(--font1); 
    font-weight: 500;
}
p{
	margin: 0 0 25px;
}
img,svg{
    width: 100%;
}
.clear{
    clear: both;
}
.clear:after{
    position: relative;
    content: "";
    clear: both;
    display: table;
    width: 100%;
}
 

a{
    transition: .5s;
    text-decoration: none;
}
a:hover{
	text-decoration: none;
}


section{
    padding: 100px 0;
    position: relative; 
}
 

/**common**/
 


/**home**/
.wrapper{
    display: flex;
    justify-content: flex-end;
}


/**sideBar**/
.sideBar{
  z-index: 12;
    display: flex;
    width: 80px;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--bordercolor);

    position: fixed;
    left: 0;
    top: 0;
    background: var(--sideblack);
    height: 100%;
}
.logo{ 
    display: block;
    padding: 10px;
    border-bottom: 1px solid var(--bordercolor);
    height: 80px;
}
.logo img{
    max-width:70px;
}

.sideBottom{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    align-items: center;
    height: calc(100% - 80px);
}
.menubtn{
    width: 48px;
    height: 48px;
    background: var(--redcolor);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    position: relative;
}
.menubtn:hover{
    color: var(--white);
}
.menubtn i{transition: .5s; opacity: 1;}
.menubtn.menuactive i{opacity: 0;}
.menubtn i.bi-x{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 40px;
    opacity: 0;
}
.menubtn.menuactive .bi-x{opacity: 1;}

.sideBottom .pagerNo{
    font-size: 28px;
    line-height: 40px;
    color: var(--white);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
}
.sideBottom .pageTitle{
     font-size: 28px;
    line-height: 40px;
    color: var(--white);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
}



/**sideMenu**/
.sideMenuHolder{
    left: 80px;
    width: calc(100% - 80px);
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 80px;
    top: 0;
    height: 100%;
    border-left: 1px solid #fff;
    opacity: 0;
    transition: all .5s ease-in-out 0s;
    pointer-events: none;
}
.sideMenuHolder.deactive{
    opacity: 0;
     pointer-events: none;
    transition: all .2s ease-in-out 1s;
}
.sideMenuHolder.active{
    opacity: 1;
    pointer-events: initial;
}
.sideMenuHolder:before{
    width: 0;
    height: 80%;
    top: 50%;
    left: 0;
    position: absolute;
    transform: translate(0,-50%);
    content: "";
    background: var(--redcolor);
    transition: all 1s ease-in-out 0s;
}
.sideMenuHolder.active:before{width: 720px;} 
.sideMenuHolder.deactive:before{transition: all 1s ease-in-out .2s;}
.sideMenuContent{ 
    background: var(--dark);
    width: 0;
    height: 80%;
    top: 50%;
    left: 0;
    position: absolute;
    transform: translate(0,-50%); 
     transition: all 1s ease-in-out .5s;
     padding: 50px 0; 
} 
.sideMenuHolder.active .sideMenuContent{width: 720px; padding: 50px 50px;
        border-right: 10px solid var(--redcolor);
}
.sideMenuHolder.deactive .sideMenuContent{transition: all 1s ease-in-out 0s; width: 0;
    padding: 50px 0;
}
.sideMenuContent >*{
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: all .5s ease-in-out 1s;
}
.sideMenuHolder.active .sideMenuContent >*{opacity: 1;}
.sideMenuHolder.deactive .sideMenuContent >*{opacity: 0;
    transition: all .5s ease-in-out 0s;
}
 
.sideMenuContent .menulist{
    list-style: none;
    margin: 0;
    padding: 0; 
}
.menulist li{}
.menulist li a{
    padding: 15px 20px;
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    position: relative;
}
.menulist li a:hover{
    color: var(--redcolor);
}


.wrapperRightHolder{
    width: calc(100% - 80px);
    min-height: 100vh;
    background: var(--grd2);
   
}

.homeBanner{
    display: flex;
    align-items:flex-start; .
    justify-content: space-between;
     padding: 80px 30px;
     position: relative;

}
.bannerLeft{font-size: 24px; line-height: 34px; color: var(--white);
    width: 50%;
    position: relative;
    z-index: 1;

    position: sticky;
    top: 30px;
}
.bannerLeft .bannerSubtitle{font-size: 28px; line-height: 33px; color: var(--redcolor);
    text-transform: uppercase; display: block; 
}
h1{
    font-size: 72px;
    line-height: 86px;
    color: var(--white);
    margin: 0 0 25px; 
    font-weight: 500;
}
.cmnbtn{
    font-size: 16px;
    line-height: 24px;
    background: var(--grd1);
    padding: 14px 24px;
    color: var(--white);
    font-weight: 500;
    position: relative;
    display: inline-block;
}
.btnholder .cmnbtn{
  margin-right: 25px;
}
.cmnbtn1{
  background: transparent;
}
.cmnbtn1:after{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  transition: .5s;
  opacity: 1;
}
.cmnbtn1:hover:after{
  opacity: 0;
}
.cmnbtn:before{
    position: absolute;
    content: "";
    left: 50%;
    transform: translate(-50%,0);
    width: 100%;
    height: 0;
    bottom: 0;
    transition: .5s;
    background: var(--bluecolor);
}
.cmnbtn:hover:before{
    height: 100%;
}
.cmnbtn:hover{ 
    color: var(--white);
}
.cmnbtn span{
    position: relative;
    z-index: 1;
}

.bannerRight{
    width: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 1;
}


 

 .circleholder{
 	width: 500px;
 	height: 500px;
 	/*border: 1px solid #000; */
 	position: relative;

    transition: all 1s ease-in-out 4s;
 }
  .circleholder.beforestart{
    animation: circlefullanim 5s linear infinite;
    opacity: 1; 
    left: -50px;
  }
  .circlediv:hover{
    color: var(--white);
  }
    .circleholder.beforestart .circlediv{
      transition: all 1s ease-in-out 3s;
    }
    .circleholder.beforestart .circlediv:nth-child(1){
    transform: translate(20%, 50%);
 }
 .circleholder.beforestart .circlediv:nth-child(2){
    transform: translate(80%, 50%);
 }
 .circleholder.beforestart .circlediv:nth-child(3){
    transform: translate(50%, 80%);
 }
 @keyframes circlefullanim{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
 }

.animated .circleholder.beforestart{opacity: 0;}
.animated .circleholder.beforestart .circlediv:nth-child(1){
  transform: translate(15%, 0%);
}
.animated .circleholder.beforestart .circlediv:nth-child(2){
  transform: translate(100%, 50%);
}
.animated .circleholder.beforestart .circlediv:nth-child(3){
  transform: translate(0%, 100%);
}

 .circleholder.beforestart .circlediv{
    background: none;
    animation: none;
 }
 .circleholder.beforestart .circlediv span{
    display: none;
 }
 .circleholder.beforestart .circlediv:hover{
    background: none;
    box-shadow: none;
 }



 .circleholder.afterstart{
    /*display: none;*/
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);


 }
 .circleholder.afterstart:hover .circlediv{ 
   animation-play-state: paused;
 }
 .animated .circleholder.afterstart{opacity: 1;}

 .circlediv{
 	width: 250px;
 	height: 250px; 
 	display: inline-flex;
 	align-items: center;
 	justify-content: center;
 	border-radius: 50%;

 	position: absolute; 
 
    flex-wrap: wrap;
    font-size: 28px;
    line-height: 33px;
    text-transform: uppercase;
    color: var(--white);
    transition: .5s;

   
 }
.circleholder.afterstart .circlediv{
     background: rgba( 255, 255, 255, 0.25 );
    /*box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );*/
    backdrop-filter: blur( 4px );
 }
 .circlediv:after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/redcircle.png) no-repeat 0 0;
    background-size: 100%;


 }

 .circlediv:hover{
    box-shadow: 0 0 100px 35px inset var(--grey);
 }
 .circlediv.rd_cr:after{
    background: url(../images/redcircle.png) no-repeat 0 0;
    background-size: 100%;
 }
 .circlediv.bl_cr:after{
    background: url(../images/bluecircle.png) no-repeat 0 0;
    background-size: 100%;
 }
 .circlediv.gr_cr:after{
    background: url(../images/greencircle.png) no-repeat 0 0;
    background-size: 100%;
 }

 .circlediv.rd_cr:hover{
    background:var(--redcolor);
 }
 .circlediv.bl_cr:hover{
    background:var(--bluecolor);
 }
 .circlediv.gr_cr:hover{
    background:var(--greencolor);
 }

 .circlediv:nth-child(1){ animation: rotate1 10s linear infinite;}
 .circlediv:nth-child(2){ animation: rotate2 10s linear infinite;}
 .circlediv:nth-child(3){animation: rotate3 10s linear infinite; }

/* .circlediv:nth-child(1){transform: translate(50%, 50%) rotate(0deg) translate(140px,-70px) rotate(0deg);}
 .circlediv:nth-child(2){ transform: translate(50%, 50%) rotate(0deg) translate(0px,160px) rotate(0deg);}
 .circlediv:nth-child(3){   transform: translate(50%, 50%) rotate(0deg) translate(-140px,-70px) rotate(0deg);}
*/

/* .circlediv:nth-child(1){transform: translate(50%, 50%) rotate(0deg) translate(110px,-40px) rotate(0deg);}
 .circlediv:nth-child(2){ transform: translate(50%, 50%) rotate(0deg) translate(0px,150px) rotate(0deg);}
 .circlediv:nth-child(3){   transform: translate(50%, 50%) rotate(0deg) translate(-110px,-40px) rotate(0deg);}
*/
@keyframes rotate1 {
    0% {
        transform: translate(50%, 50%) rotate(0deg) translate(140px,-70px) rotate(0deg);
    }
    100% {
        transform: translate(50%, 50%) rotate(360deg) translate(140px,-70px) rotate(-360deg);
    }
}
@keyframes rotate2 {
    0% {
        transform: translate(50%, 50%) rotate(0deg) translate(0px,160px) rotate(0deg);
    }
    100% {
        transform: translate(50%, 50%) rotate(360deg) translate(0px,160px) rotate(-360deg);
    }
}
@keyframes rotate3 {
      0% {
        transform: translate(50%, 50%) rotate(0deg) translate(-140px,-70px) rotate(0deg);
    }
    100% {
        transform: translate(50%, 50%) rotate(360deg) translate(-140px,-70px) rotate(-360deg);
    }
}

#particles-js{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 50px);
}



.partner_sec{
   position: relative;
   z-index: 2;
   margin-top: 80px;
}



h2.moveinghead{
    font-size: 150px;
    line-height: 180px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #5e5a57;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-family: "Poppins", sans-serif;
    animation: headingmove 10s linear infinite;
}
.mvheadholder{
    overflow: hidden;
    display: flex;
    gap:50px;
}
@keyframes headingmove {
    0%{
        transform: translate(0,0);
    }
    100%{
        transform: translate(-100%,0);
    }
}
.partnerlist{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap:40px;

    position: absolute;
    bottom: 20px;
}
.partnerlist li{}
.pimg{
    display: inline-block;
}
.pimg img{
    height: 40px;
    width: 100%;
    object-fit: contain;
}


/**about us**/

.counterHolder{
    margin-top: 100px;
}
.cnthold{
  font-size: 72px;
  line-height: 86px;
  font-weight: bold;
}
.counter-details{
  font-size: 16px;
  line-height: 26px;
  color: var(--white);
  text-transform: uppercase;
}


.aboutCircle{
    width: 430px;
    height: 430px;
    position: relative;
}
.aboutCircle .icocircle{
    position: absolute;
    width: 105px;
    height: 105px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 10px solid rgba(255,255,255,.1);
    backdrop-filter:blur(4px);
    border-radius: 50%;
    transition: .5s;
    z-index: 2;
}
   .text{
  display: none;
  position: absolute;
  width: 200px;
  height: auto;
  padding:10px 20px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  backdrop-filter:blur(4px);
  z-index: 3;
  border-radius: 10px;
  font-size: 20px;
  line-height: 24px;
  color: var(--white);
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
  left: 50%;
  top: 50%;
  transform: scale(1) translate(-50%,-50%);
  transition: .5s;
}
 .text.show{
  display: inline-block;
}
/*.aboutCircle .icocircle:hover .text{
  transform: scale(1);
}
.aboutCircle .icocircle3 .text{
   right: 30px; 
}
.aboutCircle .icocircle2 .text,
.aboutCircle .icocircle4 .text{
  right: auto;
  left: 30px;
}*/

.aboutCircle .icocircle:after{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: none;
    border: 15px solid var(--redcolor); 
    border-radius: 50%;
    transition: .5s;
    opacity: 0;
}
.aboutCircle .icocircle:hover:after{
    opacity: 1;
}
.aboutCircle .icocircle:hover{
    border: 10px solid rgba(255,255,255,1);
    background: var(--white);
}
.aboutCircle .icocircle:hover img{
    filter: invert(1);
}
.aboutCircle .icocircle img{
    width: 40px;
    height: 40px;
}
.aboutCircle .icocircle1{
    left: 22px; top: 30px;
}
.aboutCircle .icocircle2{
    left: auto; right: 32px; top: 28px;
}
.aboutCircle .icocircle3{
   left: 28px; bottom: 26px;
}
.aboutCircle .icocircle4{
  left: auto; right: 40px; bottom: 40px;
}

.aboutCircle .sphere-wrapperholder{

    display: inline-flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.aboutCircle{
  animation: fullrotate 50s linear infinite;
}
.aboutCircle:hover{
animation-play-state: paused;
}
@keyframes fullrotate{
  0%{transform: rotate(0deg);}
  100%{transform: rotate(360deg);}
}

.cmnpadding{
  padding: 80px 30px;
  max-width: 1800px;
}

.storysection{}
.storysection .row:nth-child(2n){
  flex-direction: row-reverse;
}
.storyimg{}
.storyimg img{}
.storycontent{
  color: var(--white);
  font-size: 24px;
  line-height: 34px;
  font-weight: 100;
}
.storycontent h3{color: var(--white); font-size: 40px; line-height: 50px;
  margin: 0 0 25px;
}
.storycontent p{}

.apartsection{}
.apartholder .row >div{
  margin: 0 0 25px;
}
.tophd{text-align: center; margin: 0 0 60px;}
.tophd h2{text-transform: capitalize; font-size: 40px; line-height: 50px;
  margin: 0 0 25px; font-weight: 600; color: var(--white);
}
.apartdiv{font-size: 16px; line-height: 26px; color: var(--white);
  background: var(--dark); padding: 25px; border-radius: 10px;
  position: relative; margin-top: 60px;
}
.apartdiv .ico{
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255,255,255,.2);
  
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0,-50%);
}
.apartdiv .ico:before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.1);
  backdrop-filter:blur(3px);
  z-index: 2;
}
.apartdiv .ico:after{
  position: absolute;
  content: "";
  background: url(../images/logo.png) no-repeat center;
  background-size: 70px; 
  width: 70px;
  height: 70px;
  z-index: 1;
}
.apartdiv .ico img{
  width: 45px;
  height: 45px;
  position: relative;
  z-index: 3;
}
.apartdiv h3{font-size: 24px; line-height: 34px; margin: 0 0 20px; color: var(--white);}


.partnerwith_sec{
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}
.partnerwith_sec >*{
  position: relative;
  z-index: 1;
}
.partnerwith_sec:after{
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: url(../images/mutlidot.png) no-repeat 0 bottom;
  background-size: 100%;
}
.partnerwith_sec .tophd{
  color: #fff;
}
.partnerwith_sec .tophd p{
  font-size: 16px;
  line-height: 26px;
  max-width: 70%;
  margin: 0 auto 30px;
}

/**sphere css**/
.sphere-wrapper {
  transform-style: preserve-3d;
  width: 280px;
  height: 280px;
  position: relative;
  -webkit-animation: rotate3d 10s linear infinite;
          animation: rotate3d 10s linear infinite;
}
.plane {
  position: absolute;
  transform-style: preserve-3d;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.spoke {
  transform-origin: 0 0;
  transform-style: preserve-3d;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 150px;
  width: 0px;
}
.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  left: -3px;
  top: 100%;
  transform: rotateX(90deg);
}
.spoke.spoke-1 {
  transform: rotateZ(10deg);
}
.spoke.spoke-2 {
  transform: rotateZ(20deg);
}
.spoke.spoke-3 {
  transform: rotateZ(30deg);
}
.spoke.spoke-4 {
  transform: rotateZ(40deg);
}
.spoke.spoke-5 {
  transform: rotateZ(50deg);
}
.spoke.spoke-6 {
  transform: rotateZ(60deg);
}
.spoke.spoke-7 {
  transform: rotateZ(70deg);
}
.spoke.spoke-8 {
  transform: rotateZ(80deg);
}
.spoke.spoke-9 {
  transform: rotateZ(90deg);
}
.spoke.spoke-10 {
  transform: rotateZ(100deg);
}
.spoke.spoke-11 {
  transform: rotateZ(110deg);
}
.spoke.spoke-12 {
  transform: rotateZ(120deg);
}
.spoke.spoke-13 {
  transform: rotateZ(130deg);
}
.spoke.spoke-14 {
  transform: rotateZ(140deg);
}
.spoke.spoke-15 {
  transform: rotateZ(150deg);
}
.spoke.spoke-16 {
  transform: rotateZ(160deg);
}
.spoke.spoke-17 {
  transform: rotateZ(170deg);
}
.spoke.spoke-18 {
  transform: rotateZ(180deg);
}
.spoke.spoke-19 {
  transform: rotateZ(190deg);
}
.spoke.spoke-20 {
  transform: rotateZ(200deg);
}
.spoke.spoke-21 {
  transform: rotateZ(210deg);
}
.spoke.spoke-22 {
  transform: rotateZ(220deg);
}
.spoke.spoke-23 {
  transform: rotateZ(230deg);
}
.spoke.spoke-24 {
  transform: rotateZ(240deg);
}
.spoke.spoke-25 {
  transform: rotateZ(250deg);
}
.spoke.spoke-26 {
  transform: rotateZ(260deg);
}
.spoke.spoke-27 {
  transform: rotateZ(270deg);
}
.spoke.spoke-28 {
  transform: rotateZ(280deg);
}
.spoke.spoke-29 {
  transform: rotateZ(290deg);
}
.spoke.spoke-30 {
  transform: rotateZ(300deg);
}
.spoke.spoke-31 {
  transform: rotateZ(310deg);
}
.spoke.spoke-32 {
  transform: rotateZ(320deg);
}
.spoke.spoke-33 {
  transform: rotateZ(330deg);
}
.spoke.spoke-34 {
  transform: rotateZ(340deg);
}
.spoke.spoke-35 {
  transform: rotateZ(350deg);
}
.plane.plane-1 {
  transform: rotateY(15deg);
}
.plane.plane-2 {
  transform: rotateY(30deg);
}
.plane.plane-3 {
  transform: rotateY(45deg);
}
.plane.plane-4 {
  transform: rotateY(60deg);
}
.plane.plane-5 {
  transform: rotateY(75deg);
}
.plane.plane-6 {
  transform: rotateY(90deg);
}
.plane.plane-7 {
  transform: rotateY(105deg);
}
.plane.plane-8 {
  transform: rotateY(120deg);
}
.plane.plane-9 {
  transform: rotateY(135deg);
}
.plane.plane-10 {
  transform: rotateY(150deg);
}
.plane.plane-11 {
  transform: rotateY(165deg);
}
.spoke-0 .dot,
.spoke-36 .dot {
  -webkit-animation: pulsate 0.5s infinite 0s alternate both;
          animation: pulsate 0.5s infinite 0s alternate both;
  background-color: #fff;
}
.spoke-1 .dot,
.spoke-35 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.05555556s alternate both;
          animation: pulsate 0.5s infinite 0.05555556s alternate both;
  background-color: #fff;
}
.spoke-2 .dot,
.spoke-34 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.11111111s alternate both;
          animation: pulsate 0.5s infinite 0.11111111s alternate both;
  background-color: #fff;
}
.spoke-3 .dot,
.spoke-33 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.16666667s alternate both;
          animation: pulsate 0.5s infinite 0.16666667s alternate both;
  background-color: #fff;
}
.spoke-4 .dot,
.spoke-32 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.22222222s alternate both;
          animation: pulsate 0.5s infinite 0.22222222s alternate both;
  background-color: #fff;
}
.spoke-5 .dot,
.spoke-31 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.27777778s alternate both;
          animation: pulsate 0.5s infinite 0.27777778s alternate both;
  background-color: #fff;
}
.spoke-6 .dot,
.spoke-30 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.33333333s alternate both;
          animation: pulsate 0.5s infinite 0.33333333s alternate both;
  background-color: #fff;
}
.spoke-7 .dot,
.spoke-29 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.38888889s alternate both;
          animation: pulsate 0.5s infinite 0.38888889s alternate both;
  background-color: #fff;
}
.spoke-8 .dot,
.spoke-28 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.44444444s alternate both;
          animation: pulsate 0.5s infinite 0.44444444s alternate both;
  background-color: #fff;
}
.spoke-9 .dot,
.spoke-27 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.5s alternate both;
          animation: pulsate 0.5s infinite 0.5s alternate both;
  background-color: #fff;
}
.spoke-10 .dot,
.spoke-26 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.55555556s alternate both;
          animation: pulsate 0.5s infinite 0.55555556s alternate both;
  background-color: #fff;
}
.spoke-11 .dot,
.spoke-25 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.61111111s alternate both;
          animation: pulsate 0.5s infinite 0.61111111s alternate both;
  background-color: #fff;
}
.spoke-12 .dot,
.spoke-24 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.66666667s alternate both;
          animation: pulsate 0.5s infinite 0.66666667s alternate both;
  background-color: #fff;
}
.spoke-13 .dot,
.spoke-23 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.72222222s alternate both;
          animation: pulsate 0.5s infinite 0.72222222s alternate both;
  background-color: #fff;
}
.spoke-14 .dot,
.spoke-22 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.77777778s alternate both;
          animation: pulsate 0.5s infinite 0.77777778s alternate both;
  background-color: #fff;
}
.spoke-15 .dot,
.spoke-21 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.83333333s alternate both;
          animation: pulsate 0.5s infinite 0.83333333s alternate both;
  background-color: #fff;
}
.spoke-16 .dot,
.spoke-20 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.88888889s alternate both;
          animation: pulsate 0.5s infinite 0.88888889s alternate both;
  background-color: #fff;
}
.spoke-17 .dot,
.spoke-19 .dot {
  -webkit-animation: pulsate 0.5s infinite 0.94444444s alternate both;
          animation: pulsate 0.5s infinite 0.94444444s alternate both;
  background-color: #fff;
}
.spoke-18 .dot,
.spoke-18 .dot {
  -webkit-animation: pulsate 0.5s infinite 1s alternate both;
          animation: pulsate 0.5s infinite 1s alternate both;
  background-color: #fff;
}
@-webkit-keyframes rotate3d {
  0% {
    transform: rotate3d(1, 1, 1, 0deg);
  }
  25% {
    transform: rotate3d(1, 1, 1, 90deg);
  }
  50% {
    transform: rotate3d(1, 1, 1, 180deg);
  }
  75% {
    transform: rotate3d(1, 1, 1, 270deg);
  }
  100% {
    transform: rotate3d(1, 1, 1, 360deg);
  }
}
@keyframes rotate3d {
  0% {
    transform: rotate3d(1, 1, 1, 0deg);
  }
  25% {
    transform: rotate3d(1, 1, 1, 90deg);
  }
  50% {
    transform: rotate3d(1, 1, 1, 180deg);
  }
  75% {
    transform: rotate3d(1, 1, 1, 270deg);
  }
  100% {
    transform: rotate3d(1, 1, 1, 360deg);
  }
}
@-webkit-keyframes pulsate {
  0% {
    transform: rotateX(90deg) scale(0.3) translateZ(20px);
  }
  100% {
    transform: rotateX(90deg) scale(1) translateZ(0px);
  }
}
@keyframes pulsate {
  0% {
    transform: rotateX(90deg) scale(0.3) translateZ(20px);
  }
  100% {
    transform: rotateX(90deg) scale(1) translateZ(0px);
  }
}
.animista-badge {
  font: normal 15px/1.5 sans-serif;
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5em 1em;
}
/**sphere css end**/

/**contact page**/
.contactlist{
  list-style: none;
  margin: 0;
  padding: 0;
}
.contactlist li{
  margin: 0 0 20px;
}
.contactlist li a{
  display: block;
  color: var(--white);
  font-size: 24px;
  padding: 2px 2px 2px 30px;
}
.contactlist li a:hover{
  color: var(--redcolor);
}
.contactlist li a.call{background: url(../images/call.svg) no-repeat 0 10px;}
.contactlist li a.mail{background: url(../images/mail.svg) no-repeat 0 10px;}
.contactlist li a.address{background: url(../images/map.svg) no-repeat 0 10px;}
.contactform{
  background: var(--dark);
  padding: 30px;
}
.contactform .form-group{ position: relative; }
.contactform input,
.contactform textarea{
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--grey);
  padding: 10px;
  margin: 0 0 15px;
}
.contactform input:focus,
.contactform textarea:focus{
  outline: none;
}
.contactform button{
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 35px;
}
.contactform .placeholder{
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--white);
  font-size: 16px;
}
.contactform .placeholder b{
  color: var(--grey);
  font-size: 12px;
}

/**blog page**/
.blogholder{}
.blogdiv{
  background: #333;
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 26px;
  width: 90%;
  float: left;
}
.blogdiv:nth-child(2n){
  float: right;
}
.blogimg{}
.blogimg img{
  width: 100%;
} 
.blogcontent{
  padding: 25px 0;
  color: var(--white);
  display: flex;
}
.blogcontent .date{
  width: 85px;
  padding: 0 15px;
  line-height: 40px;
}
.blogcontent .date .day{
  display: inline-block;
  position: relative;
  padding: 0 0 15px;
  margin: 0 0 10px;
  font-size: 40px;
}
.blogcontent .date .day:after{
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translate(-50%,0);
  background: var(--redcolor);
  width: 100%;
  height: 1px;
}
.blogcontent .date .month{
  display: block;
  font-size: 24px;
  text-transform: uppercase;
}
.blright{
  width: calc(100% - 85px);
  padding: 0 15px;
}
.blogcontent .blright h3{
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  color: var(--white);
}
.blogcontent .blright p{}

/**service page**/
.servicebannerRight{
  padding: 80px 0;
}
.serviceHolder{
  position: relative;
}
.serviceHolder:after{
  position: absolute;
  content: "";
  background: #282727;
  top: 150px;
  left: 50%;
  transform: translate(-50%,0);
  width: 15px;
  height: calc(100% - 50px);
  z-index: 1;
}
.serviceHolder:before{
  position: absolute;
  content: "";
  background: #282727;
  bottom: -150px;
  left: 50%;
  transform: translate(-50%,0);
  width: 300px;
  height: 15px;
  z-index: 4;
}
.serviceRow{
  display: flex;
  justify-content: space-between;
}
.serviceDiv{background: var(--redgrd);
  width: 210px; height: 210px; padding: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  margin-left: 40px;
  margin-right: 40px;
  position: relative;
    z-index: 3;
}
.serviceDiv .overlay{
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: transparent;
}
.serviceDiv .overlay:before{
  position: absolute; content: ""; left: 50%; top: 50%;
  transform: translate(-50%,-50%); border: 1px solid var(--redcolor);
  width: 100%; height: 100%; transition: .5s; border-radius: 50%;
  z-index: 1;
}
.serviceDiv .overlay:after{
  position: absolute; content: ""; left: 50%; top: 50%;
  transform: translate(-50%,-50%); border: 1px solid var(--redcolor);
  width: 100%; height: 100%; transition: .5s; border-radius: 50%;
  z-index: 1;
}
.serviceDiv:hover .overlay:before{ width: calc(100% + 15px); height: calc(100% + 15px);}
.serviceDiv:hover .overlay:after{ width: calc(100% + 30px); height: calc(100% + 30px);}

.serviceDiv .ico{display: inline-block; width: 32px; margin: 0 0 15px;}
.serviceDiv h3{
    font-size: 18px; line-height: 26px; font-weight: 500; color: var(--white);
  }
  .serviceDiv:first-child{margin-top: -50px;}
  .serviceDiv:last-child{background: var(--greengrd); margin-top: 50px;}
  .serviceDiv:last-child .overlay:after,
  .serviceDiv:last-child .overlay:before{border: 1px solid var(--greencolor); }
  .serviceRow:nth-child(2n){
    flex-direction: row-reverse;
  }
  .serviceRow:nth-child(2n) .serviceDiv:first-child{margin-top: 50px;}
  .serviceRow:nth-child(2n) .serviceDiv:last-child{background: var(--bluegrd);
    margin-top: -50px;
  }
  .serviceRow:nth-child(2n) .serviceDiv:last-child .overlay:after,
  .serviceRow:nth-child(2n) .serviceDiv:last-child .overlay:before{
    border: 1px solid var(--bluecolor); 
  }

  .serviceDiv:first-child:after,
  .serviceRow:nth-child(2n) .serviceDiv:last-child:after{
       position: absolute;
      content: "";
      left: calc(100% - 22px);
      bottom: -33px;
      background: #282727;
      width: 15px;
      height: 75px;
      transform: rotate(-55deg);
      transform-origin: 0 0;
    
  }

  .serviceDiv:last-child:after,
  .serviceRow:nth-child(2n) .serviceDiv:first-child:after{
       position: absolute;
      content: "";
      left: auto;
      right: calc(100% - 22px);
      bottom: -33px;
      background: #5e5a57;
      width: 15px;
      height: 75px;
      transform: rotate(55deg);
      transform-origin: right 0;
  }
  .serviceRow{
    position: relative;
  }
  .serviceRow:after{
       position: absolute;
      content: "";
      left: 50%;
    transform: translate(-50%,0);
    top: calc(100% - 10px);
    background: #5e5a57;
    width: 15px;
    height: calc(50% + 30px); 
    z-index: 2;
}

/**service details**/

.srvc_bnr_img{
  position: relative;
  overflow: hidden; 
}
.srvc_bnr_img >img{
  animation: roundfull 15s linear infinite;
  max-width: 100%;
}
.srvc_bnr_img .head{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%); 
}
.srvc_bnr_img .head img{
  transition: .5s; 
}
.srvc_bnr_img:hover .head img{ 
  animation: headmove 5s linear infinite;
}

@keyframes roundfull{
  0%{transform: rotate(0deg);}
  100%{transform: rotate(360deg);}
}
@keyframes headmove{
  0%{transform: rotate(0deg);}
  25%{transform: rotate(-10deg);}
  50%{transform: rotate(0deg);}
  75%{transform: rotate(10deg);}
  100%{transform: rotate(0deg);}
}

.storysection{}
.storyservicesection .row{
  margin: 0 0 70px;
  flex-direction: row-reverse;
}
.storyservicesection .row:last-child{
  margin: 0;
}
.storyservicesection .fullrow {
  text-align: center;
  padding: 0 100px;
}
.storyservicesection ul{
  font-size: 16px;
  line-height: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.storyservicesection ul li{
  position: relative;
  padding: 0 0 0 20px;
  margin: 0 0 15px;
}
.storyservicesection ul li:before{
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  background: url(../images/arrow.svg) no-repeat 0 0;
  background-size: 15px;
}
.storyservicesection h2{
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: #fff;
}
.storyservicesection h3{
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #fff;
}

/**cursor**/ 

.cursor2 { 
  border-radius: 100%;
  background-color: white; 
  position: fixed; 
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 99;
    display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
   
}
#curved1{
  /*width: 200px;*/
  position: relative !important;
  left: 0;
  top: 0;

  /*transform: translate(-50%,-50%);*/
  animation: cursoranim 5s linear infinite;
  color: var(--redcolor);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0;
  word-spacing: 2px;

 transform-origin: center;

}


@keyframes cursoranim{
  0%{transform: rotate(0deg) ;}
  100%{transform: rotate(360deg) ;}
}
/*.cursor2:after{
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}*/
 

 .cursorinnerhover {
   animation: cursoranim1 20s linear infinite;
   transform-origin: center;
}
.cursorinnerhover.cursor2:after{
  width: 15px; height:  15px;
}
 
@keyframes cursoranim1{
  0%{transform: rotate(0deg) scale(.8);}
  100%{transform: rotate(360deg) scale(.8);}
}


.blogdetails{}
.blogdetails .blogcontent{
  flex-wrap: wrap;
  padding: 20px;
}
.blogdetails .blogcontent .date{ 
  display: flex;
  margin: 0 0 20px;
  padding: 10px;
  background: var(--redcolor);
  width: auto;
  align-items: center;
  border-radius: 10px;
}
.blogdetails .blogcontent .date .day{
  margin: 0 10px 0 0;
  padding: 0;
}
.blogdetails .blogcontent .date .day:after{
  display: none;
}
.blogdetails .blright{
  width: 100%;
  padding: 0;
}

@media (max-width: 1360px){
  .homebannerRight{
    transform: scale(.7);
    transform-origin: center 0;
  }

}

@media (max-width: 1250px){
   h1{
    font-size: 60px;
    line-height: 80px;
   }
   .aboutbannerRight{
    transform: scale(.8);
   }
    
    .serviceHolder{
      transform: scale(.8);
     transform-origin: center 0;
    }
    .servicebannerRight{
      padding: 0;
    }
}

@media (max-width: 1023px){
   .serviceHolder{
      transform: scale(.5);  
    }
    .serviceBanner .bannerLeft{
      position: relative;
    }
   .homebannerRight{
    transform: scale(.5);
  }
  h2.moveinghead{
    font-size: 100px;
    line-height: 120px;
  }
  .cmnpadding{
    padding: 40px 20px;
  }
  .homeBanner{
    gap:20px;
  }
  h1{
    font-size: 45px;
    line-height: 60px;
    margin: 0 0 20px;
  }
  .bannerLeft .bannerSubtitle{
    font-size: 20px;
    line-height: 30px;
  }
  .bannerLeft{
    font-size: 20px;
    line-height: 30px;
  }
  .contactlist li a{
    font-size: 20px;
  }


}

@media (max-width: 991px){
  .btnholder .cmnbtn {
    margin-right: 8px;
}

  .aboutCircle{
    animation: initial;
  }
  .aboutCircle .sphere-wrapper{
    width: 220px;
    height: 220px;
  }
  .aboutCircle .sphere-wrapperholder {
          transform: scale(.8) translate(-50%, -50%);
          transform-origin: 0 0;
          top: 163px;
     
  }
  .aboutCircle .icocircle{
    width: 80px;
    height: 80px;
    border: 7px solid rgba(255,255,255,.1);
  }
  .aboutCircle .icocircle3{
    bottom: 130px;
  }
  .aboutCircle .icocircle4{
    bottom: 145px;
  }
  .apartdiv h3{
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 15px;
  }
  .apartdiv{
    font-size: 15px;
  }
  .apartdiv .ico{
    width: 75px;
    height: 75px;
    top: -10px;
  }
}
@media (max-width: 767px){
  .storyservicesection .fullrow{
    padding: 0;
  }
  .storyservicesection h2{
    font-size: 25px;
    line-height: 35px;
  }
  .storyservicesection .fullrow{
    text-align: left;
  }
  .homeBanner{
    flex-wrap: wrap;
    gap:0;
  }
  .bannerLeft{
    width: 100%;
    margin: 0 0 35px;
    position: relative;
    top: 0;
  }
  .bannerRight{
    width: 100%;
  }
  .contactform{
    width: 100%;
  }
  .cursor2{
    transform: scale(.5);
  }
  .cmnbtn{
    font-size: 15px;
    padding: 10px 20px;
  }
  .storycontent{
    font-size: 18px;
    line-height: 26px;
  }
  .storycontent h3{
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 15px;
  }
  .cmnpadding{
    padding: 20px;
  }
  .tophd h2{
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 15px;
  }
  .tophd{
    margin: 0 0 30px;
  }
  .partnerwith_sec .tophd p{
    max-width: inherit;
  }
}

@media (max-width: 479px){
  .blogdiv:nth-child(2n){
    float: none;
  }
  .blogdiv{
    width: 100%;
  }
  .blogcontent{
    flex-wrap: wrap;
  }
  .blright{
    width: 100%;
  }
  .sideBar{
    width: 60px;
  }
  .wrapperRightHolder{
    width: calc(100% - 60px);
  }
  h1 {
      font-size: 30px;
      line-height: 40px;
      margin: 0 0 15px;
  }
    .bannerLeft .bannerSubtitle{
      font-size: 17px;
      line-height: 26px;
    }
    .bannerLeft{
      font-size: 17px;
      line-height: 26px;
    }
    .contactlist li a{
      font-size: 17px; 
    }
    .contactlist li a.call,
    .contactlist li a.mail,
    .contactlist li a.address{
      background-position: 0 3px;
    }
    .contactform{
      padding: 20px;
    }
    .homebannerRight{
      transform: scale(.3);
    }
    .aboutbannerRight{
      transform: scale(1);
    }
    .aboutCircle .sphere-wrapperholder {
        transform: scale(.5) translate(-50%, -50%);
        transform-origin: 0 0;
        top: 118px;
    }
    .aboutCircle .icocircle {
        width: 50px;
        height: 50px;
        border: 4px solid rgba(255, 255, 255, .1);
    }
    .aboutCircle .icocircle1 {
      left: 15px;
      top: 20px;
    }
    
    .aboutCircle .icocircle2 {
        left: auto;
        right: 25px;
        top: 20px;
    }
    .aboutCircle .icocircle3 {
      left: 15px;
        bottom: 225px;
    }
    .aboutCircle .icocircle img {
      width: 30px;
      height: 30px;
  }
      .aboutCircle .icocircle4 {
        bottom: 225px;
        right: 10px;
    }
}