@font-face{
    src: url(../../font/Gilroy-Regular.ttf);
    font-family: 'Gilroy-Regular';
    font-display: swap;
}
/*@font-face{*/
/*    font-family: 'Gilroy-Medium';*/
/*    font-display: swap;*/
/*}*/
@font-face{
    src: url(../../font/Gilroy-Medium.ttf);
    font-family: 'Gilroy-Medium';
    font-display: swap;
}
@font-face{
    src: url(../../font/Gilroy-SemiBold.ttf);
    font-family: 'Gilroy-SemiBold';
    font-display: swap;
}
@font-face{
    src: url(../../font/Gilroy-Bold.ttf);
    font-family: 'Gilroy-Bold';
    font-display: swap;
}
@font-face{
    src: url(../../font/Gilroy-ExtraBold.ttf);
    font-family: 'Gilroy-ExtraBold';
}
@font-face{
    src: url(../../font/Gilroy-Light.ttf);
    font-family: 'Gilroy-Light';
}
@font-face{
  src: url(../../font/Gilroy-Heavy.ttf);
  font-family: 'Gilroy-Heavy';
}
@font-face{
  src: url(../../font/Gilroy-Light.ttf);
  font-family: 'Gilroy-Light';
}

/* custom scroll bar start */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #0559FA; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #003bab; 
}

/* custom scroll bar end */

body{
    font-family: 'Gilroy-Medium';
    background-color: #fff;
}

html.lenis {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }
  
/*-------------- preloader ---------------*/
#preloader{
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 10;
}
/*-------------- preloader end -----------*/

/*---------------- Header start -----------------*/
header{
padding: 23px 0;
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 5;
background-color: #fff;
}
header.affix{
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.1);
}
.togle-icon{
    position: relative;
    width: 42px;
    height: 17px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.toggle-bar{
    height: 4px;
    width: 50%;
    background-color: #737979;
    border-radius: 10px;
}
.toggle-bar.two{
    width: 100%;
    background: #363739;
}
.header-container{
    max-width: 1396px;
    margin: auto;
    width: 100%;
}
.header-secondary-new{
    position: static;
}
.secondary-header{
    background-color: #fff;
}
/*---------------- header end -------------------*/
#page-banner-scroll-pin{
    overflow: hidden;
    height: 100%;
}
.page-banner{
    min-height: 100vh;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.banner-header{
    max-width: 1400px;
    margin: auto;
}
.page-banner .banner-head, .alternate-text{
    color: #000;
    font-family: 'Gilroy-Regular';
    font-size: 83.784px;
    line-height: 1;
    text-align: center;
}
.alternate-text{
    color: #0559FA;
    font-weight: 600;
    line-height: 1;
    
}
.video-section{
    min-height: 100vh;
    position: relative;
    z-index: 2;
    margin-top: -60vh;
}
.video-section video, .video-section img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.typed-cursor{
    visibility: hidden;
}

.elegant-solutions{
    padding: 190px 0;
    background: #0559FA;
    min-height: 100vh;
    margin-top: -120vh;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.mx-1366{
    max-width: 1396px;
    margin: auto;
    padding:  0 15px;
}
.elegant-solutions-header{
    margin-bottom: 30px;
    position: relative;
}
.elegant-solutions-header h2{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 80px;
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 60px;
    position: relative;
}
.lets-talk-btn{
    position: relative;
    border-radius: 30px;
    padding: 12px 25px;
    background-color: #FFF;
    color: #0559FA;
    font-family: Gilroy-SemiBold;
    font-size: 25px;
    display: inline-block;
    text-decoration: none;
    min-width: 204px;
}
.btn-loader{
    display: flex;
    align-items: center;
    position: absolute;
    top: 28px;
    right: 26px;
}
.btn-loader > span{
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background-color: #0559FA;
    margin-right: 6px;
    animation: bouncing-loader 0.4s infinite alternate;
}
.btn-loader > span:nth-child(2) {
    animation-delay: 0.1s;
  }
  .btn-loader > span:nth-child(3) {
    animation-delay: 0.3s;
    margin-right: 0;
  }
/* .btn-loader span:last-child{
    margin-right: 0;
} */


/*----------- btn animation start -----------*/
@keyframes bouncing-loader {
    to {
      opacity: 0.7;
      transform: translate3d(0, -0.5rem, 0);
    }
  }

  
/*----------- btn animation end -------------*/

.elegant-solutions-content-wraper{
    padding-left: 136px;
    position: relative;
}
.elegant-solutions-content{
    padding: 25px 0;
    border-top: 1px solid #1e6dff;
}
.elegant-solutions-content-container{
    max-width: 468px;
}
.elegant-solutions-content h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 43.328px;
    font-weight: 400;
    line-height: 1.1; /* 109.61% */
    text-transform: capitalize;
    margin-bottom: 15px;
}
.elegant-solutions-content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.elegant-solutions-content ul li{
    margin-bottom: 0;
}
.elegant-solutions-content ul li:last-child{
    margin-bottom: 0;
}
.elegant-solutions-content ul li a{
    color: #E3E3E3;
    font-family: Gilroy-SemiBold;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.85; /* 186% */
    text-transform: capitalize; 
    text-decoration: none;
    position: relative;
    transition: 0.5s ease;
}
.elegant-solutions-content ul li a:hover{
    color: #fff;
    text-decoration: underline !important;
}
.section-head{
    color:#000;
    font-family: Gilroy-Bold;
    font-size: 50px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 18px;
}
.section-para{
    color: #464646;
    text-align: center;
    font-family: Gilroy-Medium;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0;
    max-width: 947px;
    margin: auto;
}
.stand-out{
    padding: 94px 0 50px 0;  
    position: relative;
    z-index: 3; 
}
.stand-out-container{
    max-width: 1252px;
    margin: auto;
}
.stand-out-item-wraper{
    padding-top: 100px;
}
.stand-out-item-wraper .row [class*='col-']{
    margin-bottom: 90px;
    max-width: 540px;
}
.stand-out-item{
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
}
.stand-out-item-head{
    min-height: 63px;
    background: rgba(149, 166, 255, 0.3);
    border-radius: 19.832px;
    padding: 10px 15px 10px 62px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.stand-out-item-head h4{
    position: relative;
    color: #142685;
    font-family: Gilroy-Bold;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0;
}
.stand-out-item-head h4 span{
    position: absolute;
    left: -36px;
    top: 0;
}
.stand-out-item-content{
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    height: 100%;
}
.stand-out-item-content p{
    color: #363535;
    font-family: Gilroy-Medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 0;
}

.case-study-new{
    padding: 0 0 80px 0;
    background-color: #FFF;
}
.case-study-new-container{
    max-width: 1396px;
    margin: auto;
    padding:  0 15px;
}
.case-study-new-item-wraper{
    margin-top: 160px;
}
.case-study-new-item-wraper .case-study-new-item:last-child{
    margin-bottom: 0;
}
.new-common-btn{
    display: inline-block;
    min-width: 244px;
    position: relative;
    border-radius: 30px;
    background: #1E6AFA;
    color: #FFF;
    font-family: Gilroy-SemiBold;
    font-size: 25px;
    line-height: 29.753px;
    text-align: center;
    padding: 15px 20px;
    text-decoration: none;
}

.case-study-new .section-head{
    max-width: 860px;
    margin: auto;
    margin-bottom: 30px;
}
.case-study-new-item{
    position: relative;
    margin-bottom: 115px;
    display: flex;
    align-items: center;
}
.cs-image{
    position: relative;
    height: 672px;
    width: 600px;
    flex-shrink: 0;
    z-index: 1;
    /* clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 20% 100%, 0 84%); */
}
/* .cs-image::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 100px solid rgb(255, 255, 255);
    border-right: 100px solid transparent;
    content: '';
    display: none;
} */
.cs-image::before{
    position: absolute;
    height: 550px;
    width: 550px;
    border-radius: 50%;
    content: '';
    bottom: -16rem;
    right: -16rem;
    opacity: 0.05;
    background: linear-gradient(180deg, #F8F9FF 0%, #2E85D7 100%);
    z-index: 0;
}
.cs-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 20% 100%, 0 84%);
}

.cs-logo{
    margin-bottom: 36px;
    
}
.cs-logo img{
    max-height: 106px;
}
.cs-content{
    padding-left: 108px;
    position: relative;
    z-index: 1;
}
.cs-content h5{
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 50px;
    line-height: 0.7;
    margin-bottom: 16px;
}
.cs-content h6{
    color: #3D3D3D;
    font-family: Gilroy-SemiBold;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 86px;
}
.cs-content p{
    color: #3D3D3D;
    font-family: Gilroy-Medium;
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 88px;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 4; /* number of lines to show */
           line-clamp: 4; 
   -webkit-box-orient: vertical;
}
.btn-line-arrow{
    display: flex;
    align-items: center;
    position: relative;
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 25px;
    line-height: 35.427px;
    text-decoration: none;
} 
.btn-line-arrow span{
    margin-left: 40px;
    transition: 0.6s ease;
}
.case-study-new-item-wraper .case-study-new-item:nth-child(even){
    flex-direction: row-reverse;
}
.case-study-new-item-wraper .case-study-new-item:nth-child(even) .cs-image::before{
    right: unset;
    left: -16rem;
}
.case-study-new-item-wraper .case-study-new-item:nth-child(even) .cs-content{
    padding-left: 0;
    padding-right: 108px;
}
.case-study-new-item-wraper .case-study-new-item:nth-child(even) .cs-image::after{
    
}


.transform-x{
    position: relative;
    padding: 145px 0;
    z-index: 1;
}
.transform-x::after{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: '';
    background: rgba(0,0,0,0.8);
    display: none;
}
#particles-js{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.transform-x img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}
.transform-x-container{
    max-width: 1440px;
    margin: auto;
    position: relative;
    z-index: 2;
}
.transform-x-header{
    text-align: left;
    max-width: 444px;
}
.transform-x-header .section-head{
    color: #FFF;
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: left;
}
.transform-x-header p{
    margin-bottom: 38px;
    color: #DEDEDE;
    font-family: Gilroy-SemiBold;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
}
.transform-x-box{
    padding: 40px 50px 76px 60px;
    background: #0559FA;
    max-width: 585px;
    width: 100%;
    margin-left: auto;
}
.transform-x-box .section-head{
    color: #1FF;
    font-family: Gilroy-Bold;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}
.transform-x-box p{
    color: #DEDEDE;
    font-family: Gilroy-Medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42;
    margin-bottom: 0;
}
.need-help{
    margin-top: 75px;
}
.need-help h5{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 43.3px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 30px;
}
.need-help .btn-line-arrow{
    color: #FFF;
}
.need-help .btn-line-arrow:hover{
    color: #fff;
}
.btn-circle-arrow{
    position: relative;
    display: inline-block;
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 20.7px;
    font-style: normal;
    font-weight: 400;
    line-height: 35.427px; 
    text-decoration: none;
}
.btn-line-arrow svg{
    transition: 0.3s linear;
}
.btn-line-arrow:hover{
    color: #0559fa;
}
.btn-line-arrow:hover svg{
    width: 150px;
}
.btn-line-arrow:hover span{
    margin-left: 30px;
}

/*--------------------- footer new start -----------------*/

.footer-new{
    background: #000000;
    padding: 180px 0 96px 0;
    position: relative;
    z-index: 1;
}
.footer-new ul{
    margin: 0;
    padding: 0;
}
.footer-container{
    max-width: 1396px;
    margin: auto;
}
.lets-talk{
    max-width: 550px;
    width: 100%;
}
.lets-talk h5{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 100px;
    line-height: 0.65;
    position: relative;
    margin-bottom: 0;
}
.lets-talk h5 span{
    position: absolute;
    right: 0;
    top: 0;
}
.lets-talk h5 span svg{
    height: auto;
}

.whatsapp-chat{
    display: flex;
    align-items: center;
    position: relative;
    max-width: 385px;
    margin-left: auto;
    width: 100%;
    text-decoration: none;
}
.whatsapp-chat-contenet h6{
    color: #0559FA;
    font-family: Gilroy-Medium;
    font-size: 25px;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.whatsapp-chat-contenet p{
    color: #848484;
    font-family: Gilroy-Regular;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
}
.whats-app-icon{
    height: 68px;
    width: 68px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
    margin-left: 70px;
}
.ftr-link-wraper{
    padding: 150px 0 90px 0;
}
.enq-mail-box ul{
    list-style-type: none;
}
.enq-mail-box ul li{
    display: block;
    margin-bottom: 22px;
}
.enq-mail-box ul li span{
    display: block;
    color: #5E5B5B;
    font-family: Gilroy-Medium;
    font-size: 19px;
    line-height: 1.6;
}
.enq-mail-box ul li a{
    display: block;
    color: #EEE;
    font-family: Gilroy-Medium;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}
.footer-link-item ul{
    list-style-type: none;
}
.footer-link-item ul li a{
    display: block;
    color: #656565;
    font-family: Gilroy-Medium;
    font-size: 20px;
    line-height: 1.92;
    text-decoration: none;
    transition: 0.3s ease;
}
.review-wraper{
    display: flex;
    align-items: center;
}
.review-item{
    position: relative;
    border-right: 1px solid #464545;
    padding-left: 54px;
    padding-right: 15px;
    max-width: 288px;
    width: 100%;
    margin-right: 82px;
}
.review-item .review-icon{
    position: absolute;
    left: 0;
    top: 0;
}
.review-wraper .review-item:last-child{
    margin-right: 0;
    border: none
}
.review-wraper .review-item ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.review-wraper .review-item ul li{
    margin-right: 12px;
}
.review-wraper .review-item ul li:last-child{
    margin-right: 0;
}
.review-content p{
    margin-bottom: 0;
    color: #707070;
    font-family: Gilroy-Medium;
    font-size: 15.648px;
    line-height: 28.948px;
}

.credit-section{
    max-width: 330px;
    margin-left: auto;
}
.credit-section p{
    color: #767272;
    font-family: Gilroy-Medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.credit-links ul{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.credit-links ul li{
    position: relative;
    line-height: 1;
    padding-right: 8px;
    margin-right: 5px;
    margin-bottom: 9px;
}
.credit-links ul li:last-child{
    padding-right: 0;
    margin-right: 0;
}
.credit-links ul li::after{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: #767272;
    content: '';
}
.credit-links ul li:last-child::after{
    display: none;
}
.credit-links ul li a{
    display: inline-block;
    color: #767272;
    text-decoration: none;
    transition: 0.3s ease;
}
.footer-new-social-icons ul{
    list-style-type: none;
    display: flex;
    align-items: center;
}
.footer-new-social-icons ul li{
    margin-right: 26px;
}
.footer-new-social-icons ul li:last-child{
    margin-right: 0;
}
.footer-end-last{
    display: flex;
    align-items: center;
}
.footer-new-social-icons ul li a:hover svg path{
    fill: #0559FA;
}

/*--------------------- footer new end -------------------*/



/*-------------------- about page start ------------------*/
.about-new{
    overflow: hidden;
}
.page-padding-top{
    padding-top: 260px;
}
.about-container{
    max-width: 1330px;
    margin: auto;
    position: relative;
}
.page-header{
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 65.504px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.04;
    margin-bottom: 120px;
}
.page-header span{
    color: #0559FA;
}
.ab-vision-mission-wraper{
    position: relative;
    z-index: 2;
}
.ab-vision-mission{
    position: relative;
    padding-top: 124px;
}
.ab-vision-mission::before{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.7);
    z-index: 1;
    display: none;
}
.ab-vision-mission img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.ab-vision-mission-wraper .row [class*='col-']{
    margin-bottom: 80px;
}
.ab-vision-mission-item{
    max-width: 570px;
}
.ab-vision-mission-item h4{
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 43.3px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.02;
    margin-bottom: 7px;
}
.ab-vision-mission-item p{
    color: #333;
    font-family: Gilroy-Medium;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 0;
}

.aparts{
    padding-top: 120px;
}
.apart-item{
    max-width: 365px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.apart-item-wraper{
    margin-top: 80px;
}
.apart-item-wraper .row [class*='col-']{
    margin-bottom: 60px;
}
.apart-item-header h4{
    color: #142685;
    font-family: Gilroy-Bold;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    padding-left: 36px;
    margin-bottom: 15px;
}
.apart-item-header h4 span{
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
}
.apart-item-content{
    
    position: relative;
}
.apart-item-liner{
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 20px;
    background-color: rgba(149, 166, 255, 0.3);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.apart-item-liner::before{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #0559FA;
    content: '';
    width: 80px;
    z-index: 2;
    border-radius: 20px;
    animation: move-anim 5s ease-in-out infinite;
    animation-direction: alternate;
}
.apart-item-content p{
    color: #747474;
    font-family: Gilroy-Medium;
    font-size: 20.138px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.48;
    margin-bottom: 40px;
}

@keyframes move-anim{
    0%{
        left: 0;
    }
    50%{
        left: 78%;
    }
    100%{
        left: 0;
    }
}
.apart-item:hover .apart-item-liner{
    opacity: 1;
    visibility: visible;
}
.logo-carousel img{
    width: auto !important;
}
.global-content{
    max-width: 536px;
}
.global-content h3{
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 43.3px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
}
.global-content p{
    color: #747474;
    font-family: Gilroy-Medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 56px;
}

.spotted{
    padding-top: 170px;
}
.spotted .section-head{
    margin-bottom: 1px;
}
.spotted .section-header{
    margin-bottom: 120px;
}

.spotted-item{
    display: flex;
    align-items: center;
}
.spotted-item-image{
    width: 552px;
    height: 630px;
    flex-shrink: 0;
}
.spotted-item-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 10% 100%, 0 90%);
}
.spotted-item-content{
    padding-left: 100px;
}
.spotted-item-content img{
    max-height: 50px;
    margin-bottom: 25px;
}
.spotted-item-content h5{
    color: #142685;
    font-family: Gilroy-Bold;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 26px;
}
.spotted-item-content p{
    color: #4E4B4B;
    text-align: justify;
    font-family: Gilroy-Medium;
    font-size: 20px;
    line-height: 1.49;
    margin-bottom: 30px;
}
.spotted-item-content p:last-child{
    margin-bottom: 0;
}
.spotted-item-wraper .spotted-item{
    margin-bottom: 160px;
}
.spotted-item-wraper .spotted-item:nth-child(even) {
    flex-direction: row-reverse;
}
.spotted-item-wraper .spotted-item:nth-child(even) .spotted-item-content{
    padding-right: 100px;
    padding-left: 0;
}
.logo-slider{
    margin-bottom: 80px;
}
.our-culture{
    padding: 80px 0 115px 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.our-culture .vecter-ab{
    position: absolute;
    display: none;
}
.vecter-ab.top {
    top: 9rem;
    right: 30rem;
}
.vecter-ab.bottom {
    bottom: 6rem;
    left: 40rem;
}


/* .culture-content{
    padding-left: 160px;
} */
.culture-content h4{
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 43.3px;
    line-height: 0.6;
    margin-bottom: 36px;
}
.culture-content p{
    color: #4E4B4B;
    font-family: Gilroy-Medium;
    font-size: 20.138px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}
.culture-content ul{
    padding: 0;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}
.culture-content ul li{
    width: 50%;
    color: #000;
    font-family: Gilroy-Medium;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.15;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 25px 12px;
    padding-left: 30px !important;
}
.culture-content ul li span{
    position: absolute;
    left: 0;
    top: 25px;
    line-height: 1;
}
.culture-points{
    width: 560px;
    height: 562px;
    /* background-color: #DEDEDE; */
    position: relative;
    z-index: 2;
}
.culture-points::after{
    height: 556px;
    width: 556px;
    border-radius: 50%;
    opacity: 0.05;
    background: linear-gradient(180deg, #F8F9FF 0%, #2E85D7 100%);
    content: '';
    position: absolute;
    bottom: -6rem;
    right: -22rem;
    z-index: 0;
}
.culture-point-item{
    height: 290px;
    width: 290px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 25px;
    line-height: normal;
    position: absolute;
    mix-blend-mode: multiply;
    z-index: 1;
}
.tech{
    background: rgba(240, 200, 95, 0.9);
    top: 0;
    right: 70px;
}
.potential{
    background: rgba(192, 133, 238, 0.90);
    top: 12rem;
    right: 0;
}
.culture{
    background: rgba(133, 172, 245, 0.90);
    bottom: 0;
    left: 6rem;
}
.empathy{
    background: rgba(35, 212, 212, 0.90);
    top: 86px;
    left: 0;
}


.talk-to-an-expert{
    margin-bottom: 100px;
}
.talk-to-an-expert-wraper{
    padding: 70px 20px;
    border-radius: 41px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.20) 0%, rgba(217, 217, 217, 0.00) 100%);
    text-align: center;
}
.talk-to-an-expert-wraper h5{
    color: #000;
    font-family: Gilroy-SemiBold;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 26px;
}
.talk-to-an-expert-wraper h6{
    color: #464646;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 43.3px;
    line-height: 1.15;
}
.btn-round-arrow{
    height: 116px;
    width: 116px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #F7F7F7;
    margin: auto;
    transition: 0.5s ease;
}
.talk-to-an-expert-wraper a{
    margin-top: -50px;
}

.global-map svg{
    max-width: 100%;
    height: auto;
}
.btn-round-arrow svg{
    height: auto;
    transition: 0.5s ease;
}
.btn-round-arrow:hover{
    background: #0559fa;
}
.btn-round-arrow:hover svg{
    transform: scale(0.8);
}
.btn-round-arrow:hover path{
    fill: #fff;
}
.logo-carousel .owl-nav{
    display: none;
}

/*-------------------- about page end --------------------*/

/*-------------------- contact page start ------------------*/

.contact-new{
    overflow: hidden;
}
.contact-new-container{
    max-width: 1390px;
    margin: auto;
}
.form-new-item{
    margin-bottom: 66px;
}
.form-new-item input, .form-new-item textarea, .form-new-item input[type ="submit"], .form-new-item select{
    border: none;
    outline: none;
}
.form-new-item input, .form-new-item textarea, .form-new-item select{
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #5e5e5e;
    font-family: Gilroy-Medium;
    font-size: 19px;
    line-height: 37px;
    padding-bottom: 15px;
    /*padding-left: 46px;*/
    padding-left: 10px;
    min-height: 54px;
}
.form-new-item select{
    color: #818181;
}

.white-btn{
    display: inline-block;
    color: #0559FA;
    font-family: Gilroy-Medium;
    font-size: 20px;
    line-height: 29.753px;
    border-radius: 37.64px;
    border: 0.941px solid #A4A4A4;
    padding: 12px 13px;
    min-width: 174px;
    background: #fff;
}
.contact-new .form-new-container{
    display: flex;
    flex-wrap: wrap;
}
.contact-new .form-new-item{
    width: 50%;
    padding-right: 50px;
}
.contact-new .form-new-item:nth-child(even){
    padding-right: 0;
    padding-left: 50px;
}
.form-new-item textarea{
    height: 54px;
    resize:none;
    overflow: hidden;
}
.contact-new-form{
    max-width: 812px;
}

.contact-new-enq-item{
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
}
.contact-new-enq-item::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 4px;
    height: 100%;
    background: #0559FA;
    border-radius: 15px;
    visibility: hidden;
    opacity: 0;
    transition: 0.1s linear;
}
.contact-new-enq-item.active::before{
    visibility: visible;
    opacity: 1;
}
.contact-new-enq-item span{
    color: #3A3A3A;
    font-family: Gilroy-Regular;
    font-size: 19px;
    line-height: 1;
    display: block;
}
.contact-new-enq-item a{
    display: block;
    color: #2B2B2B;
    font-family: Gilroy-Medium;
    font-size: 18px;
    line-height: 37px;
}
.contact-new-enq-box .contact-new-enq-item:last-child{
    margin-bottom: 0;
}
.office-location{
   padding: 170px 0 230px 0; 
}
.office-location-item{
    display: flex;
}
.office-location-item-content{
    padding-left: 90px;
}
.office-location-item-content-item{
    max-width: 300px;
    width: 100%;
    flex-shrink: 0;
}
.office-location-item-content-item h4{
    color: var(--base-black, #000);
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.office-location-item-content-item h4::after{
    position: absolute;
    width: 49px;
    height: 2px;
    background: #D9D9D9;
    content: '';
    bottom: 0;
    left: 0;
}
.office-location-item-content-item p{
    color: #717171;
    font-family: Gilroy-Medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 29.753px;
    margin-bottom: 0;
}
.other-offices{
    justify-content: flex-end;
    margin-top: -14rem;
    margin-right: 6rem;
}
.cochin .office-location-item-content{
    padding-top: 6rem;
}
.other-offices .office-location-item-content .office-location-item-content-item{
    margin-bottom: 48px;
}
.other-offices .office-location-item-content .office-location-item-content-item:last-child{
    margin-bottom: 0;
}
.office-location-item-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.office-location-item.cochin .office-location-item-image{
    width: 500px;
    height: 616px;
}
.office-location-item.other-offices .office-location-item-image{
    height: 344px;
    width: 308px;
}
.intl-tel-input .flag-container{
    top: -16px;
}
.wpcf7-not-valid-tip{
    padding-top: 5px;
}
/*-------------------- contact page end ------------------*/



/*-------------------- career new start ------------------*/

.career-banner{
    position: relative;
    padding: 385px 0 236px 0;
}
.career-banner::before{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: '';
    background: #0559FA;
    opacity: 0.4;
    mix-blend-mode: multiply;
    z-index: 1;
}
.career-banner img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
}
.career-banner-conatiner{
    position: relative;
    z-index: 2;
    max-width: 1396px;
    margin: auto;
    text-align: center;
}
.career-banner-conatiner h6{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 80px;
    line-height: 1;
    margin-bottom: 0;
}
.career-banner-conatiner h1{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 200px;
    line-height: 0.6;
    margin-bottom: 36px;
}
.career-banner-conatiner p{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Medium;
    font-size: 34.006px;
    line-height: 111%;
    margin: auto;
    margin-bottom: 0;
    max-width: 753px;
}
.page-margin-top{
    margin-top: 92px;
}
.career-container{
    max-width: 1396px;
    margin: auto;
}
.career-point-header{
    padding: 120px 0 3px 0;
}
.career-point-header h2{
    color: #333232;
    font-family: Gilroy-Bold;
    font-size: 43.3px;
    line-height: 119.5%;
    margin-bottom: 36px;
}
.career-point-header h4{
    color: #747474;
    font-family: Gilroy-Medium;
    font-size: 30px;
    line-height: 1.1;
}
.career-point-header p{
    color: #747474;
    font-family: Gilroy-Medium;
    font-size: 20.138px;
    line-height: 1.5;
}
.career-points-wraper{
    margin-top: 90px;
}
.career-point{
    margin-bottom: 115px;
    display: flex;
    align-items: center;
}
.career-point-number{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.point-number{
    margin-right: 100px;
    flex-shrink: 0;
}
.career-point-content{
    max-width: 424px;
    margin-left: auto;
}
.career-point-content h4{
    color: #000;
    font-family: Gilroy-SemiBold;
    font-size: 30px;
    line-height: 111%;
    margin-bottom: 17px;
}
.career-point-content p{
    color: #747474;
    font-family: Gilroy-Medium;
    font-size: 20.138px;
    line-height: 1.5;
    margin-bottom: 0;
}
.career-points-wraper .career-point:nth-child(even){
    flex-direction: row-reverse;
}
.career-points-wraper .career-point:nth-child(even) .career-point-content{
    margin-right: auto;
    margin-left: unset;
}
.career-points-wraper .career-point:nth-child(even) .career-point-number{
    flex-direction: row-reverse;
}
.career-points-wraper .career-point:nth-child(even) .career-point-number .point-number{
    margin-right: 0;
    margin-left: 100px;
}
.career-points-wraper .career-point:last-child{
    margin-bottom: 156px;
}
.career-point-number .point-icon svg{
    height: auto;
}
.career-opportunity a{
    text-decoration: none;
}

.support-new{
    margin-bottom: 136px;
}
.support-new-container{
    padding: 0 42px;
}
.support-new-container .row [class*="col-"]{
    padding: 0 22px;
}
.support-content{
    padding: 30px 60px 30px 90px;
    border-radius: 27px;
    background: #F5F5F5;
}
.support-content h4{
    color: #454546;
    font-family: Gilroy-Bold;
    font-size: 43.3px;
    font-style: normal;
    font-weight: 400;
    line-height: 111%;
    margin-bottom: 50px;
}
.support-item{
    height: 486px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.support-slider-image{
    display: block;
}
.support-slider-image img{
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 27px;
}
.btn-arrow-2{
    display: inline-block;
    color: #414040;
    font-family: Gilroy-Medium;
    font-size: 20px;
    line-height: 111%;
    text-decoration: none;
}
.btn-arrow-2 span{
    margin-left: 15px;
}
.btn-arrow-2:hover{
    color: #414040;
}
.btn-arrow-2 svg{
    transition: 0.2s linear;
}
.btn-arrow-2:hover svg{
    width: 90px;
}



.opportunity-header{
    margin-bottom: 84px;
}
.opportunity-header h4{
    color: #0559FA;
    font-family: Gilroy-Bold;
    font-size: 43.3px;
    line-height: 111%;
    margin-bottom: 0;
}
.opportunity-header a{
    text-decoration: none;
}
.quick-application{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.quick-application p{
    color: #1D1D1D;
    font-family: Gilroy-Medium;
    font-size: 20px;
    line-height: 148%;
    margin-bottom: 0;
    margin-right: 65px;
    flex-shrink: 0;
}
.quick-application p span{
    color: #494949;
    display: block;
}

.offer-wraper .accordion-button:not(.collapsed), .offer-wraper .accordion-button:focus{
    background: #fff;
    box-shadow: none;
}
.offer-wraper .accordion-button{
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 111%;
    padding-bottom: 34px;
    padding-top: 0;
    padding-left: 0;
}
.offer-wraper .accordion-body{
    padding-left: 0;
    padding-right: 0;
}
.offer-wraper .accordion-item{
    margin-bottom: 34px;
}
.offer-wraper .accordion-flush .accordion-item:last-child, .offer-wraper .accordion-flush .accordion-item{
    border-bottom: 1px solid rgba(0,0,0,0.15);
}
.offer-accordion-content{
    padding-bottom: 60px;
}
.offer-accordion-content p, .offer-accordion-content ul li{
    color: #3F3F3F;
    font-family: Gilroy-Medium;
    font-size: 20px;
    line-height: 123%;
}
.offer-accordion-content p{
    line-height: 1.5;
}
.offer-accordion-content ul{
    max-width: 1037px;
    width: 100%;
    margin: 20px 0 48px 0;
    list-style-type: disc;
    padding-left: 34px;
}
.offer-accordion-content ul li{
    line-height: 200%;
    color: #363636;
}
.offer-accordion-content p{
    margin-bottom: 60px;
}
.offer-accordion-content h1, .offer-accordion-content h3, .offer-accordion-content h3, .offer-accordion-content h4, .offer-accordion-content h5, .offer-accordion-content h6{
    color: #000;
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 111%;
    margin-bottom: 26px;
}
.career-btn-wraper a{
    font-size: 23px;
}
.talent{
    padding: 130px 0 130px 0;
}
.talent .section-head{
    line-height: 1.2;
    margin-bottom: 13px;
}
.talent .section-head, .talent .section-para{
    text-align: left;
    color: #000000;
    margin: initial;
}
.talent-item-wraper{
    max-width: 714px;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}
.talent-item-wraper::before{
    width: 552px;
    height: 556px;
    position: absolute;
    border-radius: 556px;
    opacity: 0.05;
    background: linear-gradient(180deg, #F8F9FF 0%, #2E85D7 100%);
    content: '';
    z-index: 0;
    left: -20rem;
    top: -16rem;
}
.talent-item{
    display: flex;
    margin-bottom: 50px;
    margin-right: 46px;
    width: 46%;
    position: relative;
    z-index: 1;
}
.talent-item-icon{
    flex-shrink: 0;
    margin-right: 30px;
}
.talent-item-content p{
    margin-bottom: 0;
    color: #000;
    font-family: Gilroy-Medium;
    font-size: 20px;
}
.talent-item-wraper .talent-item:nth-child(even){
    margin-right: 0;
}
/*--------------------- career new end ------------------*/

.case-study-new{
    overflow: hidden;
}

.svg-line-anim{
    position: absolute;
    left: -28rem;
    top: 0;
    z-index: 0;
    max-width: 100%;
}
.new-common-btn.white{
    color: #1E6AFA;
    border: 0.738px solid var(--base-black, #000);
    background-color: #fff;
}
.accordion-button::after{
    width: 24px;
    height: 16px;
    object-fit: contain;
}
.accordion-button::after, .accordion-button:not(.collapsed)::after{
    background-image: url(../../images/new/icon/arrow-right.png);
}
.accordion-button:not(.collapsed)::after{
    transform: rotate(90deg);
}


/*------------------------- service page start ----------------*/
.new-service-page{
    overflow: hidden;
}
.new-service-banner{
    position: relative;
    padding: 336px 0 136px 0;
}
.service-banner{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
}
.service-new-header{
    position: relative;
}
.service-container{
    max-width: 1390px;
    margin: auto;
    width: 100%;
}
.service-new-header .page-header{
    color: #fff;
    margin-bottom: 60px;
}
.btn-arrow-default{
    display: inline-block;
    position: relative;
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 30px;
    text-decoration: none;
}
.btn-arrow-default span{
    margin-left: 30px;
    transition: 0.3s ease;
}
.btn-arrow-default:hover{
    color: #fff;
}
.btn-arrow-default:hover span{
    margin-left: 15px;
}
.future{
    /* padding: 126px 0 150px 0; */
    padding: 126px 0 90px 0;
}
.future .section-header{
    max-width: 1003px;
    margin: auto;
    width: 100%;
    text-align: center;
}
.future .section-header .page-header{
    margin-bottom: 15px;
    line-height: 1.2;
}
.future .section-header .section-para{
    max-width: 878px;
    margin: auto;
    margin-bottom: 28px;
}


.service-item-wraper{
    min-height: 100vh;
    /* background-color: rgb(245, 245, 245); */
    display: flex;
    align-items: center;
    padding-top: 120px;
}
.service-item-image-wraper{
    height: 611px;
    width: 520px;
    /* background-color: red; */
    position: sticky;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 20% 100%, 0 84%);
    flex-shrink: 0;
    margin-right: 240px;
}
.service-item-content{
    padding-left: 0;
    max-width: 575px;
    height: 600px;
    overflow: hidden;
}
.service-content-item{
    padding-top: 60px;
}
.service-item-image{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transform: translateY(100%);
}
.service-item-image span{
    position: absolute;
    right: 25px;
    top: 25px;
}
.ui-ux-image{
    background-color: #F8F9FF;
    transform: translateY(0);
}
.innovation-image{
    background-color: #e2fff8;
}
.reachout-image{
    background-color: #ffe2e2;
}
.driving-image{
    background-color: #fffce2;
}
.tech-image{
    background-color: #efffe2;
}
.service-content-item .section-head{
    position: relative;
    color: #1F51E6;
    margin-bottom: 30px;
    line-height: 1.14;
    text-align: left;
}
.service-content-item .section-head span{
    display: flex;
    align-items: center;
    position: relative;
    width: fit-content;
    margin-bottom: 30px;
    color: var(--base-black, #000);
    text-align: left;
    font-family: Gilroy-SemiBold;
    font-size: 30px;
    line-height: 0.7; 
}
.service-content-item .section-head span::after{
    position: absolute;
    right: -5rem;
    width: 55px;
    height: 1px;
    background: #000;
    content: '';
}
.service-content-item p{
    color: #595757;
    font-family: Gilroy-Medium;
    font-size: 20.138px;
    line-height: 1.48;
    margin-bottom: 90px;
}
.btn-short-arrow{
    position: relative;
    color: #000;
    font-family: Gilroy-SemiBold;
    font-size: 23.51px;
    text-decoration: none;
}
.btn-short-arrow span{
    margin-left: 10px;
}
.section-head-span{
    position: relative;
    display: flex;
    align-items: center;
    color: #000;
    text-align: center;
    font-family: Gilroy-SemiBold;
    font-size: 30px;
    line-height: 0.8;
    width: fit-content;
}
.section-head-span::after{
    position: absolute;
    right: -5rem;
    height: 1px;
    background: #000;
    content: '';
    width: 55px;
}

.industries{
    margin-bottom: 160px;
}
.industries .section-head{
    text-align: left;
}
.industries-container{
    padding-left: 288px;
}

.industries-header .section-head{
    margin-bottom: 28px;
}
.industries-header p{
    color: #595757;
    font-family: Gilroy-Medium;
    font-size: 20.138px;
    line-height: 1.41;
    margin-bottom: 60px;
}

.industries-slider-wraper{
    padding-left: 3rem;
}
.industries-slider a{
    text-decoration: none;
}
.industries-slider-item{
    padding: 30px 36px;
    background: #F8F9FF;
}
.industries-slider-image{
    height: 264px;
    width: 100%;
    margin-bottom: 22px;
}
.industries-slider-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.industries-slider-content h5{
    color: #5A5959;
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    line-height: 1.2; /* 116.6% */
    margin-bottom: 8px;
}
.industries-slider-content p{
    color: #595757;
    font-family: Gilroy-Medium;
    font-size: 20.138px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4; /* 147.745% */
    margin-bottom: 5px;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}
.industries-slider svg{
    transition: 0.3s ease;
}
.industries-slider a:hover svg{
    width: 150px;
}


.tech-section{
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    align-items: center;
}
.tech-section-logos{
    padding: 120px 144px 60px 200px;
    width: 100%;
    min-width: 920px;
    max-width: 100%;
    flex-shrink: 0;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.tech-section-content{
    max-width: 810px;
    width: 100%;
    padding-left: 138px;
    flex-shrink: 0;
    padding-right: 30px;
}
.tech-section-content .page-header{
    text-align: left;
    margin-bottom: 25px;
}
.tech-section-content .page-header span{
    color: #000;
    margin-bottom: 25px;
}
.tech-section-content p{
    color: #585858;
    font-family: Gilroy-Medium;
    font-size: 20.138px;
    line-height: 1.41;
}
.tech-section-content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.tech-section-content li{
    position: relative;
    color: #5C5A5A;
    font-family: Gilroy-SemiBold;
    font-size: 26px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-left: 32px;
}
.tech-section-content li span{
    position: absolute;
    left: 0;
    top: 15px;
    line-height: 1;
}
.tech-section-logos ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.tech-section-logos ul li{
    display: inline-block;
    margin-right: 2%;
    margin-bottom: 30px;
    width: 30%;
    text-align: center;
}
.tech-section-logos ul li img{
    max-width: 100%;
}
.get-in-touch-stripe{
    position: relative;
    /* background-color: #0559FA; */
    padding: 200px 0 80px 0;
}
.get-in-touch-banner{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.get-in-touch-stripe-container{
    max-width: 930px;
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
}
.get-in-touch-stripe-container h6{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-SemiBold;
    font-size: 30px;
    line-height: 0.8;
    margin-bottom: 50px;
}
.get-in-touch-stripe-container h4{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 80px;
    line-height: 0.95;
    margin-bottom: 50px;
}
.get-in-touch-stripe-container p{
    color: #FFF;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 15px;
}
.get-in-touch-stripe-container .new-common-btn{
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
}
.service_thumb_img{
    max-width: 100%;
}
.industries-slider .owl-nav, .support-item-slider .owl-nav{
    display: none;
}

/*------------------------- service page end -----------------*/

.custContainer {
    padding: 0 12px;
    margin: 0 auto;
    width: 100%;
    max-width: 1396px;
}
.page-padding{
    padding-top: 90px;
}
.case-study-new .section-head{
    max-width: 1000px;
}
.slideSection .case-study-new .section-head{
    margin-bottom: 5px;
}
.head-second{
    background: transparent;
}
.footer-link-item ul li a, .enq-mail-box ul li a{
    display: inline-block;
}
.footer-link-item ul li a:hover, .credit-links ul li a:hover{
    color: #fff;
}
@media(max-width: 1600px){
    .page-padding{
        padding-top: 84px;   
    }
}
@media(max-width: 1400px){
    .page-padding{
        padding-top: 78px;   
    }
}
@media(max-width: 575px){
    .page-padding{
        padding-top: 60px;   
    }
}



/*-------------- coached-by start ------------*/ 
.coached-by-header{
    background-color: #323131 !important;
  }
  .coached-by{
    background: #323131;
  }
  .case-banner-box{
    text-align: center;
    max-width: 780px;
    margin: auto;
  }
  .casestudy-banner{
    padding: 280px 0 140px 0;
  }
  .casestudy-banner h1{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 110.158px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.203px;
    text-transform: uppercase;
  }
  .casestudy-banner p{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Medium;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .casestudy-header{
    background-color: transparent;
  }
  .parallax-sec-coached-by-img{
    background-image: url(../../images/new/case-study/case-sttudy-coachedby.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;

}
.parallax-sec-coached-by-img::after{
    position: absolute;
    height: 100%;
    width: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
}
.parallax-sec-coached-by-img .capital-head{
    z-index:1;
    position:relative;
}
.coachedby-subtitle p {
    font-size: 50px;
    color: #FFF;
    text-align: center;
    font-family: 'Gilroy-Bold';
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.175px;
    margin: auto;
    margin-bottom: 0;
}
  .parallax-sec{
    background-image: url(../../images/new/case-study/case-sttudy-coachedby.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 750px;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  .parallax-sec img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .font-40{
    font-size: 40px;
  }
  .coached-by-content-section{
    padding: 118px 0 0 0;
    background: #323131;
  }
  .coach-section-head{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .coached-by-content-section p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    line-height: 2.5;
  }
  .coached-by-content p{
    color: #fff;
  }
  .coached-by-content-section .row [class*='col-']:nth-child(1){
    padding-right: 36px;
  }
  .coached-by-content-section .row [class*='col-']:nth-child(2){
    padding-left: 36px;
  }
  .image-wraper{
    columns: 2;
    padding-top: 118px;
  }
  .image-wraper .image-item{
    max-height: 622px;
    column-gap: 2em;
    overflow: hidden;
    /* background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat; */
  }
  .image-wraper .image-item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .image-wraper .image-item:nth-child(1), .image-wraper .image-item:nth-child(3){
    margin-bottom: 1em;
  }

  .coaching{
    padding: 140px 0 112px 0;
    /* min-height: 100vh; */
  }
  .coaching-content h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    line-height: 1.5;
    margin-bottom: 36px;
  }
  .coaching-content p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    line-height: 2.5;
    margin-bottom: 0;
  }
  .coach-image{
    height: 100%;
  }
  .coach-image img{
    max-width: 100%;
    min-height: 650px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
  /* .image-item-1{
    background-image: url(../images/case-study/coachedby-1.jpg);
  } */
.business-growth{
    padding-top: 118px;
    /* background: url(../images/case-study/business-growth.jpg);
    background-repeat: no-repeat;
    background-size: cover; */
    background: linear-gradient(1deg, #111 25.45%, #424242 115.84%);
    position: relative;
    overflow: hidden;
}
.business-img{
    position: absolute;
    right: -4rem;
    bottom: 0;
}
.business-img img{
    max-width: 100%;
    max-height: 1200px;
}
.business-growth-content{
    padding-bottom: 150px;
}
  .business-growth-content h4{
    margin-bottom: 74px;
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    line-height: 1.2;
  }
  .business-growth-content p{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 18px;
    line-height: 2.5;
    margin-bottom: 50px;
  }
  .business-image-wraper{
    background: #323131;
    columns: 2;
  }
  .business-image-item img{
    max-width: 100%;
  }
  .better-value-parent-img img, .value-child-image img{
    max-width: 100%;
  }
  .better-value{
    padding: 100px 0;
    background: #0f0f0f;
  }
  .better-value-images{
    position: relative;
  }
  .value-child-image{
    position: absolute;
    right: 1rem;
    top: 3rem;
  }
  .better-value-content{
    max-width: 605px;
    margin-left: 3vw;
  }
  .better-value-content h4{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 34px;
  }
  .better-value-content p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    line-height: 1.99;
    margin-bottom: 40px;
  }
  .better-value-content p:last-child{
    margin-bottom: 0;
  }


  .scroll-section{
    position: relative;
  }
  .scroll-section-inner{
    position: relative;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    max-height: 100vh;
  }
  .scroll-item{
    width: 20%;
    text-align: center;
  }
  .scroll-item img{
    max-width: 100%;
  }

  .our-projects{
    background: #111;
  }
  .our-projects-content{
    max-width: 700px;
    padding: 120px 0 100px 180px;
  }
  .our-projects-content h4{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px;
    line-height: 1.2; /* 124.386% */
    letter-spacing: 0.4px;
    margin-bottom: 10px;
  }
  .our-projects-content p{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 25px;
    line-height: 1.4; /* 140% */
    letter-spacing: -0.125px;
    margin-bottom: 25px;
  }
  .our-projects-content a{
    color: #FFF;
    font-family: 'Gilroy-medium';
    font-size: 20px;
    line-height: 41.254px; /* 206.271% */
    letter-spacing: 0.2px;
    display: inline-block;
    border-radius: 40px;
    border: 1px solid #FFF;
    background: #017EFE;
    text-decoration: none;
    padding: 12px 44px;
    transition: 0.3s ease;
  }
  .our-projects-content a:hover{
    background-color: transparent;
  }
  .our-projects-wraper{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 960px;
    width: 100%;
    margin-left: auto;
  }
  .our-projects-wraper::after{
    position: absolute;
    height: 100%;
    width: 100%;
    content: '';
    top: 0;
    left: 0;
    background: linear-gradient(357deg, #000 -60.59%, rgba(0, 0, 0, 0.00) 97.08%);
  }
  .our-project-item{
    max-width: 33.333%;
    width: 100%;
    position: relative;
    height: 225px;
    overflow: hidden;
  }

  .our-project-item img{
    height: 100%;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: 1s;
    /* transition-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1); */
  }
  .project-link{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 1;
  }
  .project-link a{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    line-height: 1;
    text-decoration: none;
    display: block;
    transition: 0.3s ease;
  }

  .our-projects-wraper:hover .our-project-item img{
    transform: scale(1.01);
  }
  .project-link a svg{
    height: auto;
  }
/*-------------- coached-by end ------------*/

/*------------- Adithya Birla start -------------*/
.adithya_birla{
    background-color: #F4F3F2;
}
.adithya_birla h1{
    color: #545454;
  }
  .adithya_birla p{
    color: #545454;
  }
  .parallax-sec-adithya_birla{
    background-image: url(../../images/new/case-study/adithya-birla/red-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  .adithya_birla-content-section{
    /* padding: 118px 0 0 0; */
    padding: 107px 0 50px;
    background: linear-gradient(159deg, #000 45.94%, rgba(84, 84, 84, 0.00) 154.38%);
    /* height: 100vh; */
    overflow: hidden;
  }
  .adithya_birla-content-section p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    line-height: 45px;
  }.adithya_birla-content p
  .adithya_birla-content-section .row [class*='col-']:nth-child(1){
    padding-right: 36px;
  }
  .adithya_birla-content-section .row [class*='col-']:nth-child(2){
    padding-left: 36px;
  }
  .adithya_birla-content p{
    color:#fff;
    font-family: Gilroy-Bold;
    font-size: 62px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.58;
    letter-spacing: 8.06px;
    text-transform: uppercase;
    margin-bottom: 0;
    /* padding: 240px 0 210px; */
  }
  .adithya-birla-sec img{
    max-width: 100%;
   
  }
  .capital-head{
    text-align: center;
  }
  .capital-head h2{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 192px;
    font-style: normal;
    font-weight: 900;
    line-height: 0.87;
    letter-spacing: -1.933px;
  }
  .capital-head span{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 24.077px;
  }
  .parallax-sec-adithya_birla .capital-head span {
    letter-spacing: unset;
    line-height:1.2;
    font-family: Gilroy-Bold;
    font-size: 50px;
}
  .thumbnail-sec{
    background-color: #fff;
    overflow: hidden;
  }
  .problem-sec{
    padding: 80px 150px;
  }
  .problem-sec h3{
    color: var(--base-black, #000);
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2; /* 107.143% */
  }
  .problem-sec p{
    color: var(--base-black, #000);
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    letter-spacing: -0.63px;
    margin-bottom: 0;
  }
  .solution-sec{
    background-image: url(../../images/new/case-study/adithya-birla/solution-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 0 140px 0;
    position: relative;

  }
  .solution-sec h2{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1; /* 107.143% */
  }
  .solution-sec p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height:2.5;
    letter-spacing: -0.63px;
    margin-bottom: 0;
  }
  .result{
    padding: 100px 0;
    background: #F8F8F8;
    overflow: hidden;
  }
  .result-images{
    position: relative;
    max-width: 100%;
  }
  .result-images img{
    max-width: 100%;
  }
  .result-content{
    max-width: 605px;
    margin-left: 3vw;
  }
  .result-content h4{
    color: var(--base-black, #000);
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2; /* 107.143% */
  }
  .result-content p{
    color: var(--base-black, #000);
    font-family: Gilroy-Medium;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    letter-spacing: 0.99px;
    margin-bottom: 0;
  }
  .result-content p:last-child{
    margin-bottom: 0;
  }
  .adithya-birla-header{
    background-color:#f4f3f2 ;
  }
  .scroll-sec{
    position: relative;
    background-color: #E7E7E7;
    overflow: hidden;
  }
  .scroll-inner-sec{
    position: relative;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    max-height: 100vh;
  }
  .scroll-items{
    text-align: center;
  }
  .scroll-items img{
    max-width: 100%;
  }
  .thumbnail-sec .image-item{
    width: 100%;
    height: 100%;
  }
  .thumbnail-sec .image-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .thumbnail-wrapper [class*='col-']{
padding: 0 6px;
margin-bottom: 12px;
  }
  .thumbnail-wrapper [class*='col-']:nth-last-child(-n + 2) {

    margin-bottom: 0;
      }

 .adithya-birla-header svg path{
     fill: #545454;
 }     
/*-------------- Adithya Birla end -------------*/

/*-------------- Eurovets start -------------*/
.eurovets-header.affix{
  background: #5F5E5E;
}
.eurovets{
    background: #5F5E5E;
}

.eurovets-content-section{
    background: #F0F0F0;
}
.eurovets-content-section .coach-section-head, .eurovets-content-section .coached-by-content p{
    color: #000000;
}
.what-we-delivered{
    background: #FFFFFF;
}
.what-we-delivered h4{
    color: #252525;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 15px;
    position: relative;
}
.header-line{
    background: #252525;
    height: 1px;
    width: 100%;
}

.what-we-delivered p{
    color: #252525;
}
.what-we-delivered h5{
    color: #252525;
    font-family: Gilroy-SemiBold;
    font-size: 35.14px;
    line-height: 1;
    margin-bottom: 34px;
}
.what-we-delivered-header{
    margin-bottom: 30px;
}
.what-we-delivered .business-img img{
    max-height: 767px;
}
.what-we-delivered-content [class*='col-']:nth-child(1){
    padding-right: 30px;
}
.what-we-delivered-content [class*='col-']:nth-child(2){
    padding-left: 30px;
}
.euro-imgs{
    column-gap: 0;
}
.euro-mob img{
    max-width: 100%;
    max-height: 100%;
}
.business-image-item .euro-imgs{
    max-width: 1000px;
    overflow: hidden;
}
.euro-imgs img{
    height: 960px;
    object-fit: cover;
}
.animal-health{
    background: #eeeeee;
    min-height: 100vh;
    display: flex;
    align-items: end;
    overflow: hidden;
}
.animal-health .better-value-content{
    padding: 30px 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.animal-health .better-value-content h4{
    font-family: Gilroy-Bold;
    font-size: 77px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.03; /* 103.896% */
    text-transform: uppercase;
    background: linear-gradient(53deg, #F6AF22 73.98%, #FFE6AF 122.6%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.dlove{
    position: absolute;
    right: 0;
    top: 26%;
}
.euro-scroll{
    transform: translateX(-1%) translateY(-20%) rotate(-21deg);
    height: 200vh;
    max-height: none;
    position: absolute;
    width: 110%;
    top: 0;
    left: 0;
}
.scroll-section{
    overflow: hidden;
}
.euro-scroll-sec{
    height: 100vh;
    position: relative;
}
.impact{
    padding-top: 76px;
    text-align: center;
    overflow: hidden;
}
.impact-content{
    max-width: 1258px;
    margin: auto;
}
.impact-content h5{
    color: #252525;
    font-family: Gilroy-Bold;
    font-size: 70px;
    line-height: 1.2;
    margin-bottom: 33px;
}
.impact-content p{
    color: #252525;
    text-align: center;
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    line-height: 2.25;
    margin-bottom: 36px;
}
.eurovets-parallax{
    /* background-image: url(../images/case-study/eurovets/eurovets-banner.jpg); */
    height: 100vh !important;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}
.eurovets-parallax .banner-euro{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.eurovets-parallax h2{
    font-family: Gilroy-Bold;
font-size: 260px;
line-height: 1; /* 86.154% */
letter-spacing: -3.053px;
text-align: center;
background: linear-gradient(180deg, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.euro-mob{
    position: absolute;
    bottom: -14rem;
    z-index: 1;
    text-align: center;
}

/*-------------- Eurovets end ----------------*/


/*-------------- ABC Cargo start --------------*/
/*.abc-cargo-header{*/
/*    background: #E64A3C;*/
/*}*/
/*.abc-cargo{*/
/*    background: #E64A3C;*/
/*}*/
/*.parallax-sec-abc_cargo{*/
/*    background-image: url(../../images/new/case-study/abc-cargo/abc-banner.webp);*/
/*    background-size: cover;*/
/*    background-attachment: fixed;*/
/*    background-repeat: no-repeat;*/
/*    height: 100vh;*/
/*    width: 100%;*/
/*    margin: 0;*/
/*    overflow: hidden;*/
/*    padding: 25px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/

/*  }*/
/*  .abc_cargo-content-section{*/
/*    background-color: #343434;*/
/*    padding: 100px 0;*/
/*  }*/
/*  .abc_cargo-content h3{*/
/*    color: #FFF;*/
/*    font-family: Gilroy-SemiBold;*/
/*    font-size: 40px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: normal;*/
/*    margin-bottom: 25px;*/
/*  }*/
/*  .abc_cargo-content p{*/
/*    color: #FFF;*/
/*    font-family: Gilroy-Regular;*/
/*    font-size: 18px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 2.5;*/
/*  }*/
/*  .client-approach-sec{*/
/*    background: linear-gradient(180deg, #030609 0%, #05090C 14.51%, #090E14 27.99%, #0B1016 35.51%, #0B141B 45.65%, #111B25 50.21%, #121E2A 65.69%, #162431 75.33%, #192B39 82.53%, #1B2C3C 88.1%, #1B2D3F 91.78%, #1B2E3F 95.59%, #1E3142 100%);*/
/*    padding: 150px 0px;*/
/*  }*/
/*  .client-approach-sec h2{*/
/*    color: #FFF;*/
/*    font-family: Gilroy-Bold;*/
/*    font-size: 70px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 1.06;*/
/*    margin-bottom: 60px;*/
/*  }*/
/*  .client-approach-sec p{*/
/*    color: #FFF;*/
/*    font-family: Gilroy-Regular;*/
/*    font-size: 18px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 2.5;*/
/*    text-align: justify;*/
/*  }*/
/*  .client-approach-img{*/
/*    max-width: 500px;*/
/*    position: relative;*/
/*    text-align: center;*/
/*    margin-left: auto;*/
   
/*  }*/
/*  .client-approach-img img{*/
/*    animation: imgs 7s infinite;*/
/*    max-width: 100%;*/
/*  }*/
/*  @keyframes imgs{*/
/*    0%   {transform:translateY(0)}*/
/*    50%  {transform:translateY(40px)}*/
/*    100% {transform:translateY(0)}*/
/*  }*/
/*  .client-approach-img::after{*/
/*    width: 100%;*/
/*    height: 26px;*/
/*    border-radius: 50%;*/
/*    background-color: #000;*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -100px;*/
/*    left: 0;*/
/*    right: 0;*/
/*    filter: blur(8px);*/
/*    opacity: 0.4;*/
/*    animation: bgs 7s infinite;*/
/*  }*/
/*  @keyframes bgs{*/
/*    0%   {transform:scale(1)}*/
/*    50%  {transform:scale(0.7)}*/
/*    100% {transform:scale(1)}*/
/*  }*/
/*  .quote-content p{*/
/*    color: #E64A3C;*/
/*    font-family: Gilroy-SemiBold;*/
/*    font-size: 50px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 1.54;*/
/*    text-transform: uppercase;*/
/*    padding: 170px 0 20px 0;*/
/*  }*/
/*  .quote-sec{*/
/*    max-width: 100%;*/
/*    overflow: hidden;*/
/*    height: 700px;*/
/*    position: relative;*/
/*  }*/
/*  .quote-img svg{*/
/*    position: absolute;*/
/*    height: auto;*/
/*    right: -8rem;*/
/*    bottom: 0;*/
/*  }*/
/*  .abc-solution-sec{*/
/*    background-color: #E64A3C;*/
/*    padding: 90px 0;*/
/*  }*/
/*  .solution-content{*/
/*    border-radius: 54px;*/
/*    background: #FFF7F8;*/
/*    padding: 55px 95px;*/
/*  }*/
/*  .solution-content p{*/
/*    color: #343333;*/
/*    font-family: Gilroy-Regular;*/
/*    font-size: 18px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 2.5;*/
/*    margin-bottom: 0;*/
/*  }*/
/*  .abc-solution-sec h3{*/
/*    color: #FFF;*/
/*    font-family: Gilroy-Bold;*/
/*    font-size: 64px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 1.16;*/
/*    margin-bottom: 80px;*/
/*  }*/
/*  .abc-outcome-parallax-sec{*/
/*    background: url(../../images/new/case-study/abc-cargo/outcome-bg.jpg) no-repeat;*/
/*    background-size: cover;*/
/*    background-attachment: fixed;*/
/*    height: 900px;*/
/*    width: 100%;*/
/*    margin: 0;*/
/*    overflow: hidden;*/
/*    padding: 25px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    position: relative; */
/*  }*/
  
/*  .abc-outcome-parallax-sec h3{*/
/*    color: #FFF;*/
/*    font-family: Gilroy-Bold;*/
/*    font-size: 70px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 1.2;*/
/*  }*/
/*  .abc-outcome-parallax-sec p{*/
/*    color: #FFF;*/
/*    font-family: Gilroy-Regular;*/
/*    font-size: 18px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 2.5;*/
/*  }*/
/*  .outcome-content{*/
/*    padding: 190px 0;*/
/*    padding: 0 !important;*/
   
/*  }*/
/*.abc-scroll-sec{*/
/*    height: 100vh;*/
/*    overflow: hidden;*/
/*}*/
/*.abc-scroll-items img{*/
/*max-height: 360px;*/
/*}*/
/*.sun-anim{*/
/*    animation: blk 5s infinite;*/
/*}*/
/* @keyframes blk{
    0% {opacity:0}
    40% {opacity:1}
} */
/* @-webkit-keyframes blinker {
    from {opacity: 1.0;}
    to {opacity: 0.0;}
  } */
/*  .sun-anim{*/
/*      text-decoration: blink;*/
/*      -webkit-animation-name: blinker;*/
/*      -webkit-animation-duration: 0.6s;*/
/*      -webkit-animation-iteration-count:infinite;*/
/*      -webkit-animation-timing-function:ease-in-out;*/
/*      -webkit-animation-direction: alternate;*/
/*  }*/

/*  .abc-scroll-inner-sec{*/
/*    position: relative;*/
/*    top: -3rem;*/
/*  }*/
/*-------------- ABC Cargo end --------------*/


/*---------------- blog style start -----------------*/
.blog-head{
    color: var(--base-black, #000);
    font-family: Gilroy-Bold; 
    font-style: normal;
}
.blog-sec{
    padding: 200px 0 0px;
}
.blog-container{
    border-bottom: 1px solid #E8E8E8;
}
.blog-container h1{
    font-size: 65px;
    margin-bottom: 30px;
}
.blog-thumbnil img{
    max-height:435px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.share-btn{
    background-color: #F4F3F3;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}
/* .blog-content{
    margin: 60px;
} */
.blog-content h2{
    font-size:30px;
    line-height: 1.25;
    margin: 30px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
            line-clamp: 3; 
    -webkit-box-orient: vertical;

}
.blog-content a{
    color: var(--base-black, #000);
    font-family: Gilroy-Regular;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
}
.blog-date{
    color: #7E7E7E;
    font-family: Gilroy-Medium;
    font-size: 15px;
    font-style: normal;
    float: right;
}
.resources-sec
{
    padding: 90px 0;
}
.resources-sec h3{
    color: var(--base-black, #000);
    font-family: Gilroy-Medium;
    font-size: 65px;
    font-style: normal;
    line-height: 1;
    margin-bottom: 80px;
}
.blog-card{
    /* max-width: 340px; */
    width: 100%;
    margin-bottom: 30px;
}
.blog-card img{
    margin-bottom:30px ;
    width: 100%;
    max-height: 215px;
    object-fit: cover;
    object-position: center;
}
.blog-card h4{
    font-size: 20px;
    margin-bottom: 25px;
    min-height:50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.blog-card a{
    text-decoration: none;
    /* float: right; */
}
.blog-card a span{
    float: right;
}
.blog-card span{
    color: var(--base-black, #000);
    font-family: Gilroy-Medium;
    font-size: 16px;
    font-style: normal;
    line-height: 1.9;
}
.blog-card-wrapper{
    justify-content: space-between;
}
.blog-card-wrapper [class*='col-']{
    max-width: 400px;
    margin-right: 70px;
}
.blog-card-wrapper [class*='col-']:nth-child(3n){
    margin-right: 0;
}
.blog-tab-sec{
    padding-left: 120px; 
}

.blog-tab-sec nav{
    border-radius: 40px;
    border: 0.738px solid #C9C9C9;
    padding: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
/* .nav-pills .show>.nav-link {
    
    
    padding: 25px 50px;
    
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    font-style: normal;
} */

.blog-tab-sec .nav-pills .nav-link{
    padding: 20px 35px;
    color: var(--base-black, #000);
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    font-style: normal;
    border-radius: 40px;
}
.blog-tab-sec .nav-pills .nav-link.active{
    background: rgba(30, 106, 250, 0.20);
    color: var(--base-black, #000);
}
.blog-tab-content{
    border-bottom: 1px solid #E1E1E1;
    padding-bottom: 25px;
}
.blog-tab-content:nth-last-child(1){
    border-bottom: unset;
}
.blog-tab-content h2{
    font-size: 25px;
    font-family: Gilroy-SemiBold;
    margin: 25px 0;
}
.blog-tab-content a{
    color: var(--base-black, #000);
    font-family: Gilroy-Regular;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
}

.blog-tab ul{
    border-radius: 40px;
    border: 0.738px solid #C9C9C9;
    padding: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.blog-tab ul li{
    padding: 25px;
}
.blog-tab ul li a{
    color: var(--base-black, #000);
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    font-style: normal;
    text-decoration: none;
    }
.blog-tab {
    border-radius: 40px;
    background: rgba(30, 106, 250, 0.20);
    padding: 25px 50px;
}
.inbox-sec{
    padding-bottom: 90px;
}
.inbox-sec-wrapper{
    max-width: 1110px;
}
.inbox-sec p{
    color: #595757;
font-family: Gilroy-Medium;
font-size: 30px;
font-style: normal;
line-height: 1.6;
}
.inbox-sec h3{
    color: var(--base-black, #000);
font-family: Gilroy-SemiBold;
font-size: 30px;
font-style: normal;
line-height: 30px; /* 100% */
margin-bottom: 30px;
display: flex;
align-items: center;
}
.sent-btn{
    background-color: #F4F3F3;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    display: block;
    display: flex;
    margin-left: 20px;
}
.mail-wrapper{
    margin-top: 40px;
}
.mail-wrapper input{
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #B7B4B4;
    font-family: Gilroy-Medium;
    font-size: 19px;
    line-height: 37px;
    padding:0 46px;
    min-height: 68px;
    border-radius: var(--main-system-10-px, 10px);
    border: 1px solid #DADADA;
    outline: none;
    text-align:center;

}
.mail-wrapper button{
    border-radius: var(--main-system-10-px, 10px);
border: 1px solid #E7EAF9;
background: #E7EAF9;
padding: 14px 15px;
margin-left: 50px;
color: #343434;
font-family: Gilroy-Medium;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 37px; /* 194.737% */
min-width: 180px;
transition: 0.3s linear;
}
.mail-wrapper button svg{
    margin-left: 50px;
}
.mail-wrapper button:hover{
    border-color:  #ced4f5;
background: #ced4f5;
}
.mail-wrapper input:focus{
    border-color: #ced4f5;
}
.latest-blog{
    margin-bottom: 60px;
}
/*----------------  blog style end -----------------*/


/*----------------  innovation section start -----------------*/
.innovation-sec {
    padding: 170px 0;
}

.mvp-sec h2 {
    color: #302F2F;
    font-family: Gilroy-Bold;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 35px;

}

.mvp-sec p {
    color: #606060;
    font-family: Gilroy-Regular;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.mvp-sec h3 {
    color: #2B2828;
    font-family: Gilroy-SemiBold;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 25px;
}

.mvp-sec {
    max-width: 630px;
}

.common-button {
    border-radius: 25px;
    background: #1E6AFA;
    color: #fff;
    padding: 10px 45px;
    outline: none;
    border: none;
    font-size: 20px;
}

.mvp-sec input {
    border-radius: 29px;
    border: 1px solid #1F4FAA;
    height: 56px;
    text-align: center;
    padding-left: 0;
    color: #B7B4B4;
    font-family: Gilroy-Medium;
    font-size: 19px;
    line-height: 1.2;
    border: 1px solid #DADADA;
    outline: none;
    max-width: 400px;
}

.mvp-img {
    max-height: 824px;
    width: 100%;
    object-fit: cover;
}

.mvp-benefits-sec {
    background-image: url(../../images/new/mvp-benefit-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    padding: 110px 0;
    position: relative;
    background-size: cover;
}

.mvp-benefits-sec::after {
    background: #0559FA;
    mix-blend-mode: soft-light;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 0;


}

.mvp-benefits-sec h3 {
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 100px;
}

.benefits-wrapper {
    position: relative;
    padding-left: 60px;
}

.benefits-wrapper svg {
    flex-shrink: 0;
    position: absolute;
    top: 30px;
    left: 0;
}

.benefits-content h4 {
    color: #D1C9C9;
    ;
    font-family: Gilroy-Medium;
    font-size: 30px;
    line-height: 1.2;


}

.benefits-content p {
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 0;
}

.benefits-content {
    padding: 23px 30px;
    max-width: 540px;
}

.benefits-content:hover {
    border-radius: var(--Main-System-20px, 20px);
    background: #8087bc;

}

.mvp-goals {
    padding: 120px 0;
}

.mvp-goals h3 {
    color: var(--Base-Black, #000);
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 50px;
}

.mvp-goals span {
    font-family: Gilroy-Regular;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.761px;
    max-width: 217px;
}

.goal-wrap {
    /* margin: 60px 0; */
    border-right: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    padding: 56px 0;
    padding-right: 15px !important;

}

.mvp-goals [class*='col-'] {
    padding: 0;
}

.mvp-goals [class*='col-']:nth-child(even) .goal-wrap {
    border-right: 0px;
}

.mvp-goals [class*='col-']:nth-child(n+3) .goal-wrap {
    border-bottom: 0px;
}

.mvp-goals svg {
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 75px;
}

.mvp-goals [class*='col-']:nth-child(even) svg {
    margin-left: 130px;
}

.development-experience-sec {
    padding: 90px 0;
}

.development-experience-sec h3 {
    color: #343333;
    font-family: Gilroy-Bold;
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    padding-bottom: 49px;
    max-width: 950px;
    margin-top: 32px;
    position: relative;
}

.development-experience-sec h3::after {
    width: 151px;
    height: 3px;
    content: '';
    position: absolute;
    background-color: #000;
    bottom: 0;
    left: 0;
}

.development-experience-sec span {
    color: var(--Base-Black, #000);
    font-family: Gilroy-Medium;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-transform: uppercase;

}

.development-experience-sec p {
    color: #595757;
    font-family: Gilroy-Medium;
    font-size: 20.138px;
    line-height: 1.4;
    margin-top: 62px;
}

.why-choose {
    background: var(--Base-Black, #000);
    padding: 130px 0;
    overflow: hidden;
}

.why-choose-head {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    line-height: 1.5;
    margin-bottom: 90px;
    font-family: Gilroy-SemiBold;
}

h3 span {
    color: #0E9CEC;
}

.listing-content {
    border-bottom: 1px solid #3F3F3F;
    padding: 25px 0;
}

.listing-content h3 {
    text-align: left;
    color: #FFF;
    font-family: Gilroy-SemiBold;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 10px;

}

.listing-content p {
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 20px;
    line-height: 1.4;
}

.listing-wrap svg {
    stroke-width: 4px;
    stroke: #6DDA47;
    width: var(--Main-System-24px, 24px);
    height: 16.5px;
    flex-shrink: 0;
    margin: 45px 34px;
}

.contactus-mvp {
    padding: 90px 0 0;
    text-align: center;
    display: flex;
}

.contactus-wrap {
    width: 800px;
}

.contactus-mvp p {
    color: var(--Base-Black, #000);
    text-align: center;
    font-family: Gilroy-Regular;
    font-size: 20px;
    line-height: 1.4;
}

.contactus-mvp h3 {
    color: var(--Base-Black, #000);
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 20px;
}

.more-about-mvp {
    padding: 90px 0;
}

.more-about-mvp h3 {
    color: var(--Base-Black, #000);
    font-family: Gilroy-Bold;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 42px;
}

.more-about-mvp img {
    max-height: 322px;
}

.circle-wrap {
    width: 700px;
    height: 700px;
    position: absolute;
    margin: auto;
    top: 0;
}

.circle {
    width: 100%;
    height: 100%;
    border: 1px solid aqua;
    position: absolute;
    border-radius: 50%;
    animation: ripple-animation 1.5s infinite ease-out;
}

.circle1 {
    animation-delay: 0s;
}

.circle2 {
    animation-delay: 500ms;
}

.circle3 {
    animation-delay: 1s;
}

@keyframes ripple-animation {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.choose-thumbnil {
    width: 750px;
    position: relative;
    z-index: 2;
}

.choose-thumbnil img {
    max-width: 100%;
}

.rectangle {
    overflow: hidden;
    width: 100%;
    height: 611px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    z-index: 1;
}

.diagonal-line {
    height: 200%;
    width: 43px;
    background-color: #04253F;
    transform: rotate(41deg);
    position: absolute;

}

.listing-parent {
    max-width: 570px;
    margin-left: auto;
}

.choose-img {
    overflow: hidden;
    width: 750px;
    height: 611px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;

}

.img-bg {
    background-image: url(../../images/new/chooseus-img.webp);
    background-repeat: no-repeat;
    background-position: center;
    height: 200%;
    /* width: 315px; */
    width: 43px;
    position: absolute;
    z-index: 2;
    transform: rotate(330deg);
    background-size: cover;
    /* animation: animate 3s ease-in-out; */
    border: 1px solid #18BAFF;
}

.animate {
    animation: animate .7s ease-in-out forwards;
}

@keyframes animate {
    from {
        width: 0px;
    }

    to {
        width: 315px;
    }
}

.mvp-zindex {
    z-index: 1;
}

.mvp-slider .owl-dots .owl-dot {
    background-color: #D9D9D9;
    height: 10px;
    width: 10px;
    margin: 0 3px;
    border-radius: 50px;
}

.mvp-slider .owl-dots .owl-dot.active {
    background-color: #928E8E;
}

.mvp-slider .owl-dots {
    position: absolute;
    right: 0;
    top: -52px;
}

.img-anim-animation {
    position: relative;
    opacity: 0;
    transition: 1s ease;
}

.img-anim-animation::after {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgb(255, 255, 255);
    content: '';
    top: 0;
    left: 0;
    z-index: 9;
    transition: 1.4s ease-in-out;
    opacity: 1;
    visibility: hidden;
}

.img-anim-animation.anim {
    visibility: visible;
    opacity: 1;
}

.img-anim-animation.anim::after {
    height: 0;
    opacity: 1;
    visibility: visible;
}

.img-anim-animation img {
    opacity: 0;
    transition: 1s ease;
}

.img-anim-animation.anim img {
    opacity: 1;
}
.mvp-goalwrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 12px
}

.more-about-mvp .blog-card-wrapper [class*='col-'] {
    max-width: 400px;
    margin-right: 70px;
}

.contactus-mvp .common-button {
    padding: 10px 35px;
}


/*----------------  innovation section end -----------------*/

.lastmenugrid{
    background: #0559FA;
}
.lastmenugrid:hover{
    background: #1c52b9;
}


/* --------- Rekha's start ------------ */
.rekha-parallax,.time-house-parallax{
    height: 100vh;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}
.rekha-parallax .banner-rekha,.time-house-parallax .banner-timehouse{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
  .rekha-header.affix{
    background: #040F4A;
  }

  .rekha-parallax .capital-head{
    margin: auto;
  }
.rekha-parallax p {
    color: #FFF;
    text-align: center;
    font-family: 'Gilroy-Bold';
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.175px;
    /* max-width: 688px; */
    margin: auto;
    margin-bottom: 0;
}
  .rekha-content-section{
    padding: 75px 0;
    background: linear-gradient(276deg, #101669 0%, #2737DF 107.02%);
   
  }
  .rekha-content-section p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
  }
.increase-total-sec{
    padding: 120px 0;
}
.increase-total-sec p{
    color: #2F2F2F;
    font-family: Gilroy-Medium;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 55px 0;
}
.increase-total-sec span{
    color: #2F2F2F;
    font-family: Gilroy-Medium;
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
   
}
.rekha-problem-sec{
    border-radius :100px 100px 0 0;
    background: linear-gradient(276deg, #101669 0%, #2737DF 107.02%);
    padding: 185px 0;
}
.rekha-problem-head-wrap h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.rekha-problem-head-wrap span{
    color: #FFF;
    font-family: Gilroy-SemiBold;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
}
.rekha-problem-head-wrap p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height:2.5;
    margin-bottom: 0;
    margin-top: 30px;
}
.rekha-problem-image{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
}
.rekha-increase-brand h4{
    color: #F0F0F0;
    font-family: Gilroy-Bold;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    text-transform: capitalize;
    margin-top: 120px;
}
.rekha-solution-sec{
    padding: 95px 0;
    background: #4B5188;
}
.rekha-solution-sec h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}
.rekha-solution-sec h4{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height:1.4;
    margin-bottom: 25px;
}
.rekha-solution-sec p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin-bottom: 0;
}
.solution-image{
    display: flex;
    align-items: center;
    justify-content: center;
}
.drop-in-cpa-sec{
    background: #2F2F2F;
    padding: 70px 0;
}
.cpa-box{
    border-radius: 63px;
    border: 1px solid #FFF;
    padding: 75px;
     height: 100%; 
    padding-left: 100px;
}
 .dropin-subtext{
    font-size: 18px !important;
    margin-bottom: 0 !important;
}
.cpa-box span{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}
.cpa-box p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.3;
    margin-bottom: 0;
}
.cpa-box h5{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
  
}
.new-patient-wrap{
   margin-left: 50px;
}
.new-patient-wrap p{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
}
/*.social-media-rekha p{*/
/*    margin-left: 75px;*/
/*}*/
.new-patient-sec {
    margin-top: 95px;
    display: flex;
    align-items: center;
    margin-left:35px;
}
.dropin-cpa-wrap{
    margin-left:35px;
}
.rekha-advertising-sec{
    background: linear-gradient(180deg, #303030 9.14%, #707EFF 468.66%);
    padding: 100px 0;
}
.rekha-subhead{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
}
.rekha-advertising-content p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin-bottom: 0;
}
.rekha-result-box{
    background: #FFF;
    height: 100%;
    width: 100%;
    padding: 135px 75px;
}
.rekha-result-box p{
    color: var(--Base-Black, #000);
    font-family: Gilroy-Regular;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 166.667% */
}
.rekha-result-box svg{
    width: 136px;
    height: 126.305px;
}
.rekha-head{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height:1.2;
    text-align: center;
    margin-bottom: 58px;
}
.card {
    /* position: absolute; */
    /* top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    margin: -150px; */
    /* float: left; */
    perspective: 1000px;
    width: 458px;
    height: 568px;
    flex-shrink: 0;
    background-color: transparent;
    border: unset;
  }
  
  .content {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  
    transition: transform 1s;
    transform-style: preserve-3d;
  }
  
  .card:hover .content {
    transform: rotateY( 180deg ) ;
    transition: transform 0.5s;
  }
  
  .rekha-result-front,
  .rekha-result-back {
    position: absolute;
    height: 100%;
    width: 100%;
    background: white;
    border-radius: 5px;
    backface-visibility: hidden;
    padding: 135px 72px;
 
  }
  .rekha-result-front p{
    color: var(--Base-Black, #000);
    font-family: Gilroy-Regular;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 49px;

  }
  .rekha-result-back p{
    color: #FFF;
    font-size: 118px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
   
  }
  .rekha-result-back {
    background: linear-gradient(277deg, #101669 -15.61%, #2737DF 83.99%);
    color: #FFF;
    font-family: 'Gilroy-Medium';
    font-size: 118px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transform: rotateY( 180deg );
    display: flex;
    justify-content: center;
  }
  .rekha-result-sec{
    /* height: 100vh; */
    padding: 90px 0 ;
    overflow: hidden;
  }
  .increase-total-img{
    margin-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .advertising-image{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .count span::after{
    content: attr(after-data);
}
/* --------- Rekha's end ------------ */

/* --------- Neuropedia Styles end ------------ */
.neuropedia-header.affix{
    background: #FE8249;
  }
 .banner-neuropedia{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.neuropedia-parallax{
    height: 100vh;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}
.neuropedia-parallax .banner-neuropedia{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    object-position: center;
    top: 0;
    left: 0;
}
/*.neuropedia-parallax p{*/
/*    color: #FFF;*/
/*    text-align: center;*/
/*    font-family: Gilroy-Medium;*/
/*    font-size: 33px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 1.2;*/
/*    margin-bottom: 0;*/
/*    position: relative;*/
/*}*/
.neuropedia-content-section{
    background: var(--Base-Black, #000);
    padding: 84px 0;
   text-align: center;
}
.neuropedia-text{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin-bottom: 0;
}
.neuropedia-content{
    max-width: 942px;
    margin: auto;
}
.image-item-sec .image-wraper{
    padding-top: 0;
}
.image-item-sec img{
    object-fit: contain;
    object-position: center;
}
.neuropedia-challenge{
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}
.neuropedia-challenge-thumbnil{
    position: absolute;
    left: -20rem;
    bottom: 0;
}
.neuropedia-challenge-img{
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    height: 100%;
    width: 100%;
   
}
.neuropedia-challenge h5{
    color: #FE8249;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height:1.5;
    text-transform: uppercase;
    margin-bottom: 67px;
    /*margin-left: 100px;*/
}
.neuropedia-head{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}
.neuropedia-challenge-content{
    border-radius: 49px;
    background: #FE8249;
    padding: 50px 80px;
    margin-bottom: 100px;
    max-width: 910px;
}
.neuropedia-solution-sec{
    background: #1D1D1D;
    padding: 90px 0 0;
    min-height:100%;
    /* height: 800px; */
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.neuro-solution-wrap{
        position: relative;
        margin: auto;
        margin-left: 100px;
}
.neuro-solution-list{
    border-radius: 56px;
    border: 1px solid #C2C2C2;
    background: #444;
    width: 587px;
    height: auto;
    flex-shrink: 0;
    padding: 40px 85px 50px;
    margin: 45px 0;
}
.neuro-solution-list:hover{
    background: #FE8249;
}
.neuro-solution-list svg{
    margin-bottom: 22px;
}
.neuropedia-solution-content{
    position: relative;
    padding: 160px 0 !important;
}
.neuropedia-impact-sec{
    background: #5E5E5E;
    overflow: hidden;
}
.neuropedia-impact-content{
    padding: 110px 0 90px;
    margin-left: 150px;
}
.impact-grid-content{
    padding: 80px 50px;
    border-radius: 40px;
    background: #4B4A4A;
    height: fit-content;
    width:400px;
    margin-bottom: 50px;
    position: relative;
}
.impact-grid-content:hover{
    background: #FE8249;
}
.impact-grid-content:hover p,.impact-grid-content:hover span,.impact-grid-content:hover svg{
    color: #fff;
}
.impact-grid-content:hover span{
    color: #fff;
}
.impact-grid-content:hover svg path{
   fill: #fff !important;
}
.impact-grid-content p{
    color: #D2D2D2;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}
.site-visitor-ht{
    height: 330px;
    padding: 40px 30px;
}
.impact-grid-content span{
    color: #D2D2D2;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}
.impact-grid-wrap{
  width: 100%;
  height: 100%;
  columns: 2;
  column-gap: 0px;
  margin-top: 80px;
}
.impact-grid-wrap svg{
    margin-bottom: 45px;
}
.neuropedia-result-sec{
    background: #E9E9E9;
    padding: 110px 0;
    color: #000;
}
.neuro-result-img{
    position: relative;
    margin-top: 50px;
    height: 100%;
}
.neuro-result-img img{
    position: absolute;
    left: -15rem;
    top:0;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.neuropedia-result-sec p{
    color: #000;
}
.neuropedia-result-sec h3{
    color: #000;
}
.neuropedia-conclusion-sec{
    background: #5E5E5E;
    position: relative;
    overflow: hidden;   
}
.neuropedia-conclusion-thumbnil{
    position: relative;
}
.neuropedia-conclusion-thumbnil img{
    position: absolute;
    right:-10rem;
    top:0;
    /* width: 100%; */
    height: 100%;
}
.neuropedia-conclusion-content{
    padding: 200px 0;
}
.neuropedia-scroll-sec{
    height: 100%;
    overflow: hidden;
    background: #D3BDB4;
}
.neuropedia-items img{
max-height: 360px;
}
/* .neuropedia-scroll-inner-sec{
    transform: translateY(-12%);
} */
.neuropedia-impact-sec .impact-grid-wrap .impact-grid-content:nth-child(3),.neuropedia-impact-sec .impact-grid-wrap .impact-grid-content:nth-child(4) {
   top: -60px;
}
.neuropedia-solution-content p{
    font-size: 22px;
    max-width: 738px;
}
.neuropedia-image {
    height: 100%;
}
.neuropedia-image img{
    object-fit: cover;
    object-position: center;
    max-height: 1300px;
    height: 100%;
    width: 100%;
}
.neuropedia-conclusion-thumbnil{
    height: 100%;
}
/* --------- Neuropedia Styles end ------------ */

/* --------- Little Goodness Start ------------ */

.littlegoodness{
    background: #13037C;
}
.littlegoodness-parallax{
    height: 100vh !important;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}
.littlegoodness-parallax .banner-littlegoodness{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.littlegoodness-parallax h2{
    font-family: Inter;
    font-size: 150px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -6.399px;
    background: linear-gradient(180deg, #FFF 50%, rgba(255, 255, 255, 0.00) 89.45%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 11rem;
    text-align: center;
}
.littlegoodness-mob{
    position: absolute;
    bottom: -7rem;
    z-index: 1;
    text-align: center;
    height: 100%;
}
.littlegoodness-wrap{
    max-width: 920px;
    margin: auto;
}
.littlegoodness-content-section{
    background: #13037C;
    text-align: center;
}
.ott-platform-head{
    border-radius: 98px;
    background: #353535;
    padding: 70px 90px;
    margin-bottom: 25px;
}
.ott-platform-head h4{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height:1.5;
    text-transform: uppercase;
    margin-bottom: 0;
   
}
.ott-platform-content{
    padding: 90px 85px;
    background: #353535;
    border-radius: 98px;


}
.ott-platform-content p{
    color: #FFF;
    text-align: justify;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin-bottom: 0;
    
}
/* .ott-platform-img img{
    padding: 100px;
   
} */
.ott-platform-img{
    background: #353535;
    border-radius: 98px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .ott-platform-img img{
    width: 430px;
    height: 700px;
} */
.littlegoodness-experience{
    /* max-width: 650px; */
    margin:0 30px;
}
.littlegoodness-experience h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px;
}
.littlegoodness-experience p{
    color: #FFF;
    text-align: justify;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-weight: 400;
    line-height:2.5;
    margin-bottom: 0;
}
.littlegoodness-experience-wrap{
   padding: 90px 0;
   background: #252525;
}
.ott-sec{
    padding: 90px 0;
    background: #252525;
}
.experience-img{
    margin: 0 20px;
   overflow: hidden;
   border-radius: 80px;
}
.experience-anim{
    width: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 625px;
   
}
.lg-wishes-sec{
    background: #7A7979;
    padding: 90px 0;
}

.lg-wishes-sec h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 68px;
    font-style: normal;
    font-weight: 400;
    line-height:1.2;
    text-transform: uppercase;
    margin-bottom: 0;
   
}
.lg-wishes-sec p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin-bottom: 0;
}

.littlegoodness-scroll-sec{
    height: 100vh;
    overflow: hidden;
}
.littlegoodness-scroll-items img{
max-height: 360px;
}
.wishes-thumbnil{
    object-fit: cover;
    width: 100%;
    object-position: center;
    margin-bottom: 45px;
}
.littlegoodness-header.affix{
    background: #13037C;
}
.wish-text{
    display: flex;
    align-items: center;
    height: 100%;
}
.littlegoodness-scroll-inner-sec{
    transform: translateY(-12%);
}
/* --------- Little Goodness end ------------ */


/* --------- Khind start ------------ */

.khind-header.affix{
    background-color: #fff;
}
.khind-header svg path{
    fill:#000;
}
.khind-header .headerRow .navMenu .hamburger i{
    color:#000;
}
/* .khind h1{
    color: #000;
}
.khind p{
    color: #000;
} */
.parallax-sec-khind{
    background-image: url(../../images/new/case-study/khind-new/khind-banner.webp);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  .parallax-sec-khind h2{
color: var(--Base-Black, #000);
font-family: Gilroy-Bold;
font-size: 194px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2.203px;
text-transform: uppercase;
  }
.parallax-sec-khind p{
color: var(--Base-Black, #000);
text-align: center;
/*font-family: Gilroy-Medium;*/
/*font-size: 33px;*/
/*font-style: normal;*/
/*font-weight: 400;*/
line-height: 1.4;
letter-spacing: 0.175px;
}
  .khind-content-section{
    background-color: #434343;;
    padding: 100px 0px;
  }
  .khind-content h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
  }
  .khind-content p{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-weight: 400;
    line-height:2.5;
    margin-bottom: 0;
  }
  .parallax-sec-goal{
    background-image: url(../../images/new/case-study/khind-new/khind-goal.webp);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: center;
  }
  .parallax-sec-goal p{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
  }
  .khind-icon-sec{
    padding: 150px 0;
  }
  .khind-icon-sec p{
    color: #EDBB5E;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.4;
 
    max-width: 480px;
    margin: auto;
    margin-top: 70px;
  }
  .roles-sec{
    background-color: #F5F5F5;
    padding: 120px 0 150px;
  }
  .roles-sec h3{
    color: #474646;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
  }
  .role-wrap{
    border-radius: 41px;
    background: #FFF;
    padding: 55px 49px;
    /*height:100%;*/
  }
  .role-wrap p{
    color: #474646;
    font-family: Gilroy-Regular;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .role-wrap svg{
    margin-bottom: 30px;
    height: 93px;
  }
  .role-wrap:hover{
    background-color: #F3B327;
    
  }
  .role-wrap:hover p{
    color: #fff;
  }
  .role-wrap:hover path{
    fill: #fff;
  }
  
  .account-health-sec{
    background-color: #000;
    padding: 135px 0;
  }
  .account-health-sec h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
  }
  .account-health-sec p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin-bottom: 0;
  }
  .account-health-content{
    max-width: 630px;
  }
  .account-health-sec img{
     margin-left: 62px;
  }
  .lt-acount-health p{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    padding: 130px 0;
    margin-top: 34px;
  }
  .rt-acount-health{
    padding: 130px 0;
  }
  .khind-health-box{
    width: 712px;
    margin:17px 0;
    display: flex;
    width: 100%;

  }
  .khind-health-box p{
    border: 1px solid;
    border-radius: 25px;
    border: 1px solid #B9B9B9;
    padding: 39px 44px;
    /* height: 189px; */
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
  }
  .wid-bar{
    width: 60px;
    max-width: 76px;
    margin-right: 10px;
    border-radius: 15px;
    /* transform: scaleY(0);
    animation: progress 1500ms; */
    position: relative;
  }
 
  .progress-bar {
    width: 60px;
    max-width: 76px;
    margin-right: 10px;
    border-radius: 15px; 
    /* top:0%;
    left: 80%;
    width: 5%;
    height: 100%;
    position: absolute; */
     overflow: hidden;
     background-color: transparent;
  }
  
  .progress-bar span {
    display: flex;
    height: 100%;
    position: absolute;
    bottom: 30px;
}
  
 .rating-bars .grey-bar{
    background-color: #414141;
    animation: progressBar1 3s ease-in-out;
    animation-fill-mode:forwards; 
  }
  @keyframes progressBar1 {
    0% { height: 0; }
    100% { height: 76px; }
  }
  .rating-bars .light-grey-bar{
    background-color: #EAEAEA;
    animation: progressBar2 3s ease-in-out;
    animation-fill-mode:forwards; 
  }
  @keyframes progressBar2 {
    0% { height: 0; }
    100% {    height: 114px; }
  }
  .rating-bars .white-bar{
    background-color: #fff;
    animation: progressBar3 3s ease-in-out;
    animation-fill-mode:forwards; 
  }
  @keyframes progressBar3 {
    0% { height: 0; }
    100% {  height: 137px; }
  }
  .rating-bars .red-bar{
    background-color: #FF3636;
    animation: progressBar4 3s ease-in-out;
    animation-fill-mode:forwards; 
  }
  @keyframes progressBar4 {
    0% { height: 0; }
    100% {  height: 156px; }
  }
  .rating-bars .yellow-bar{
    background-color: #FFEF5F;
    animation: progressBar5 3s ease-in-out;
    animation-fill-mode:forwards; 
  }
  @keyframes progressBar5 {
    0% { height: 0; }
    100% { height: 175px; }
  }
  .rating-bars .green-bar{
    background-color: #28F849;
    animation: progressBar6 3s ease-in-out;
    animation-fill-mode:forwards; 
  }
  @keyframes progressBar6 {
    0% { height: 0; }
    100% {  height: 203px; }
  }
  .rating-bars{
    display: flex;
    align-items: baseline;
    justify-content: center;
  }
  .green-bar{
    background-color: #28F849;
  }
  .yellow-bar{
    background-color: #FFEF5F;
  }
  .red-bar{
    background-color: #FF3636;
  }
  .rating-wrap,.seller-interaction{
    border-radius: 54px;
    border: 1px solid #FFF;
   padding: 46px 86px;
   height: 100%;
  }
  .rating-wrap{
    height: 400px;
  }
  .rating-wrap h4{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 53.5px; /* 133.75% */
    margin-bottom: 24px;
  }
  .bar-item{
    display: flex;
  }
  .bar-item span{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px; /* 250% */
    margin-left: 25px;
  }
  
  .bar-item .red-bar,.bar-item .yellow-bar,.bar-item .green-bar{
    height: 51px;
    margin-bottom: 15px;
  }
  .seller-interaction h5{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 100% */
    margin-bottom: 24px;
  }
  .khind-strategies-content{
    padding: 140px 20px 90px;
    max-width: 780px;
    margin-left: 15rem;
  }
  .khind-strategies-image{
     height: 100%;
  }
  .khind-strategies-image img{
    height: 100%;
    object-fit: cover;
  }
  .khind-strategies-image .simpleParallax{
    height: 100%;
  }
  .khind-strategies-content h3{
    color: var(--Base-Black, #000);
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.24;
    margin-bottom: 20px;
  }
  .khind-strategies-content p{
    color: var(--Base-Black, #000);
    font-family: Gilroy-Regular;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.9; 
    width: 543px;
    margin-bottom: 50px;
  }
  .khind-sub-content{
    font-size: 18px !important;
    line-height: 45px; /* 250% */
    margin-bottom: 0 !important;
  }
  .khind-strategies-sec{
    overflow: hidden;
  }
  .khind-services-wrap ul{
    display: flex;
    flex-wrap: wrap;
    padding-left:0;
    margin-bottom: 40px;
  }
  .khind-services-wrap ul li{
    list-style: none;
    border-radius: 37.5px;
    background: #535353;
    width: fit-content;
    padding: 15px 46px;
    margin:0 10px 10px 0;
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
  }
  .khind-task-sec{
    padding: 110px 0;
    background: #F0DB9A;
  }
.khind-task-content{
    border-radius: 60px;
    background: #F9F9F9;
    padding: 103px 70px;
    height: 100%;
    
}
.khind-task-content p{
    color: var(--Base-Black, #000);
    font-family: Gilroy-Regular;
    font-size: 18px;
    line-height: 2.5;

}
.khind-task-list{
    border-radius: 80px;
    background: #F9F9F9;
    height: 100%;
    padding: 63px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.khind-task-list p{
    color: var(--Base-Black, #000);
    font-family: Gilroy-Regular;
    font-size: 22px;
    line-height: 2;
    margin-bottom: 0;

}
.khind-task-image{
    border-radius: 52px;
    /* height: 616px; */
    overflow: hidden;
    margin: auto;
    height: 100%;

}
.khind-task-image img{
    border-radius: 52px;
    width: 100%;
    object-fit: cover;
    height: 100%;
   

}
.khind-image-wrap{
    position: relative;
    width: fit-content;
    margin: auto;
    margin-bottom: 5rem;
}
.img-shadow{
    width: 100%;
    height: 100%;
   filter: blur(2px);
   position: absolute;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
   top: 0;
   left: 0;
}
.task-subhead{
    color: #535353;
    font-family: Gilroy-Bold;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height:1.2;
    margin: 65px 0;
}
.khind-result-sec{
    padding: 110px 0;
    background: #434343;
}
.khind-result-content h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height:1.2;
    margin-bottom: 60px;
}
.khind-result-content p{
    color: #FFF;
    font-family: Gilroy-SemiBold;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
 margin-bottom: 70px;
    width: 806px;
}
.result-rate{
    display: flex;
    height: 187px;
    margin-bottom: 40px;
}
.rate-month{
    border-radius: 18px;
    background: #FFF;
    width: 654px;
    padding: 53px 70px;  
    height: 187px;
    justify-content: center;
}
.month-text{
    color: #FFAE1A;
    font-family: Gilroy-Medium;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 24px;
}
.rank-rating{
    border-radius: 18px;
    background: #F3B327;
    width: 654px;
    padding: 53px 70px;
    margin-left: -34px;
}
.rank-rating p{
    color: var(--Base-Black, #000);
font-family: Gilroy-Regular;
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: 45px; /* 180% */
margin: 0;
}
.rank-rating span{
    font-family: Gilroy-SemiBold;
font-size: 70px;
margin-left: 5px;
}
.count span::after{
    content: attr(after-data);
}
.sales-wrap #next-month{
float: right;
color: #FFAE1A;
font-family: Gilroy-Regular;
font-size: 18px;
font-style: normal;
font-weight: 400;

}
.account-health-image{
    overflow: hidden;
    border-radius: 60px;
}
.account-health-image img{
    max-width: 100%;
    min-height: 650px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    
}

.parallax-image-wrap{
    position: absolute;
    width: 100%;
    height: 100%;
}
.icon-wrap img {
    height: 150px;
    width: 130px;
}
.khind-task-image .simpleParallax{
    height: 100%;
}
.progress2 {
    padding: 6px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.25);  
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
  }
  
  .progress-bar2 {
    height: 18px;
    border-radius: 30px;
    background-image: 
      linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    transition: 0.4s linear;  
    transition-property: width, background-color;    
  }
  
  .progress-moved .progress-bar2 {
    width: 85%; 
    background-color: #EF476F;  
    animation: progressAnimation 6s;
  }
  
  @keyframes progressAnimation {
    0%   { width: 5%; background-color: #F9BCCA;}
    100% { width: 85%; background-color: #EF476F; }
  }
  
/* --------- Khind end ------------ */
.text-bold{
    font-weight:600;
}
.rekha-bold-text{
        color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2!important;
    margin-bottom: 25px;
}
.neuro-result-content .text-bold{
    color:#000;
}
.neuropedia-bold-text .text-bold{
    color:#fff;
}
.rekha-increase-brand p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin-bottom: 0;
    margin-top: 30px;
}


.health-weft-sec{
    border-radius: 30px;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
}  
.health-weft-sec h5{
    background-color: #4F4F4F;
    padding: 25px 0;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #fff;
    
}
.right-weft-sec h5{
    background-color: #ED295F;
}
.health-weft-sec p{
    font-family: Gilroy-Medium;
    font-size: 20px;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 15px;
}
.khind-bar-wrapper{
height: 20px;
}
.khind-bar-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.red-box{
    background-color: #CE1F36;
    height: 100%;
    width: 33.33%;
}
.yellow-box{
    background-color: #FFC849;
    height: 100%;
    width: 33.33%;
}
.green-box{
    background-color: #417739;
    height: 100%;
    width: 33.33%;
}
.khind-account-wrapper{
    padding: 48px 70px;
}
.krisk-box{
    padding: 10px 25px;
    background-color: #FFC849;
    width: fit-content;
    margin: auto;
    position: relative;
    border-radius: 20px;
}
.krisk-box span{
    color: #000;
}
.krisk-box::after{
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    left: 40px;
    top: 30px;
    background-color: #FFC849;
    transform: rotate(45deg);
}
.krisk-box-green{
    padding: 10px 25px;
    background-color: #417739;
    width: fit-content;
    position: relative;
    border-radius: 20px;
    left: 75%;
}
.krisk-box-green::after{
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    left: 40px;
    top: 30px;
    background-color: #417739;
    transform: rotate(45deg);
}
.khind-roles-img{
    /* height: 93px; */
    width: 113px!important;
    /*margin-bottom: 30px;*/
}
.roles-sec .owl-carousel{
    display:block;
}
.care-result-sec .swiper{
  max-width: 950px !important;
  width: 100%;
  max-height: 460px;
 height: 100%; 
}


.th-challenge-sec .gallery {
  width: 100%;
  /* max-width: 620px; */
  /*margin: 40px auto;*/
}

.th-challenge-sec .gallery-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.th-challenge-sec .gallery-thumbs .swiper-slide {
  text-align: center;
  overflow: hidden;/
}

.th-challenge-sec .swiper-slide{
  text-align: left;
}
.th-challenge-sec .gallery-thumbs .swiper-wrapper
{
  padding: 30px;
}
.th-challenge-sec .swiper-slide img{
  width: 416px;
  height: 530px;
  border-radius: 50px;
  object-fit: contain;
}
.th-challenge-sec .swiper-container{
    height:100%;
}
/* --------- Time House Styles start ------------ */
.time-house-parallax{
    height: 100vh;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}
.th-bold-text{
    font-weight:600;
    
}
.time-house-parallax .banner-timehouse{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.time-house-header.affix {
    background: #75131D;
}
.time-house-content-section{
    background: #303030;
    padding: 90px 0;
    text-align: center;
}
.time-house-parallax p {
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.175px;
    margin-bottom: 0;
    /* width: 840px; */
    margin: auto;
}
.time-house-text{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-weight: 400;
    line-height:2.5;
    margin-bottom: 0;
}
.th-project-sec{
    padding: 90px 0;
    background: #3F3E3E;
}
.th-project-sec h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}
.step-wrap span{
    color: #75131D;
    font-family: Gilroy-Bold;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  
}
.step-wrap{
    background-color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding: 10px 12px;
    flex-shrink: 0;
    text-align: center;
}
.project-steps{
    display: flex;
    border-right: 1px solid #fff;
    height: 100%;
}

.project-steps p{
padding: 0 40px;
}
.th-service-sec{
    background: #6D4F32;
    padding: 90px 0;
}
.th-service-content h3{
    color: #FFF;
font-family: Gilroy-Bold;
font-size: 90px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
margin-bottom: 30px;
}
/*.th-service-content p{*/
/*    color: #FFF;*/
/*font-family: Gilroy-Medium;*/
/*font-size: 50px;*/
/*font-style: normal;*/
/*font-weight: 400;*/
/*line-height: 1.5;*/
/*margin-bottom: 0;*/
/*}*/

.th-service-content{
    max-width:850px;
}
.th-challenge-sec .time-house-text {
    color: #000;
    font-family: 'Gilroy-Medium';
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align:center;
}
.swiper {
    width: 620px;
    height: 740px;
    /* transform: rotate(6deg); */
    flex-shrink: 0;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 52px;
  }
  .swiper-slide img{
    width: 100%;
    object-fit: contain;
    object-position: center;
 
  }

  /* .swiper-slide:nth-child(1n) {
    background-image: url(../images/case-study/time-house/online1.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    
  }

  .swiper-slide:nth-child(2n) {
    background-image: url(../images/case-study/time-house/online2.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  } */
  .swiper-3d .swiper-slide-shadow {
    background: transparent !important;
}
.th-challenge-sec{
    padding: 90px 0 60px;
}

.th-challenge-sec h3{
    color: var(--Base-Black, #000);
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
    text-align:center;
}
/*.th-challeneg-content{*/
/*    margin-left: 150px;*/
/*}*/
.th-challeneg-content{
    /* margin-left: 150px; */
     max-width: 500px; 
    width: 100%;
    display:flex;
    flex-direction:column;
    /*align-items:center;*/
    justify-content:center;
    height:100%;
    width:100%;
}
.th-challeneg-content h4{
    color: #575757;
    font-family: Gilroy-Bold;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px;
}
.th-challeneg-content p{
    color: #707070;
    font-family: Gilroy-Regular;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.th-strategy-sec{
    background: #303030;
    min-height:100%;
    /* margin-top: -120vh; */
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.th-strategies-content{
   position: relative;
    padding: 160px 0 !important;
    max-width: 500px !important;
}
.strategies-wrap{
    position: relative;
    margin: auto;
   
}
.strategies-list{
    border-radius: 39px;
    border: 1px solid #C2C2C2;
    background: #444;
    width: 540px;
    height: 500px;
    flex-shrink: 0;
    padding: 50px 30px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    }
.strategies-list p{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    /* max-width: 386px; */
    margin-bottom: 0;
    width: 100%;
    
    }
    .strategies-list  h5{
      color: #fff;
    font-size: 30px;
    font-family: Gilroy-Bold;
    line-height: 1.5;
    }
.th-strategies-content h3{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 28px;
}
.th-strategies-content span{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
}
  .th-result-content p{
    color: #303030;
    margin-bottom: 25px;
  }
  .th-result-content{
    padding:90px 100px;
  }
  .th-result-content h3{
    color: #303030;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
  }
  .th-result-image img{
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }
  .th-service-img img{
    object-fit: contain;
    object-position: center;
    max-width: 100%;
  }
  .th-service-img .simpleParallax{
    overflow: unset !important;
  }
  .th-project-sec .row [class*='col-']:last-child .project-steps{
    border-right: 0px;
}
.th-result-image .simpleParallax{
    height: 100% !important;
}
.th-result-image{
    height: 100% ;
}   
/* --------- Time House Styles end ------------ */



/* --------- Care On Call Styles start ------------ */
.care-on-call-header.affix{
    background: #4C0786;
  }
  .care-on-call-parallax{
    height: 100vh;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}
.care-on-call-parallax .capital-head h2{
    letter-spacing:unset;
}
.care-on-call-parallax::after{
    position: absolute;
    height: 100%;
    width: 100%;
    content: '';
    background-color: rgb(0 0 0 / 38%);
}
.care-on-call-parallax .capital-head{
    z-index:1
}
.care-on-call-parallax .banner-careoncall{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.care-on-call-parallax h2{
    font-size: 180px;
}
.care-on-call-parallax p{
    color: #FFF;
    text-align: center;
    /*font-family: Gilroy-Medium;*/
    /*font-size: 33px;*/
    /*font-weight: 400;*/
    line-height: 1.4;
    letter-spacing: 0.175px;
    /*max-width:900px;*/
    margin:auto;
    margin-bottom: 0;
    width:100%;
}
.care-content{
    max-width: 1073px;
    margin: auto;
}
.care-on-call-content-section{
    padding: 75px 0;
    background: #371E63;
    text-align: center;
}
.care-on-call-text{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height:1.8;
    margin-bottom: 0;
  }
  .care-solution-sec{
    padding: 95px 0;
    background: #363636;
  }

 .care-solution-image {
    height: 100%;
    width: 100%;
    
  }
  .care-solution-image img {
    border-radius: 68px;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    height: 100%;
    display:flex;
    margin:auto;
}
.challege-content-sec ul{
    list-style-type: none;
    padding-left: 0;
}
.challege-content-sec li{
    display: flex;
}
.challege-content-sec ul span{
   margin-right: 20px;
}
  .care-on-call-head{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
   line-height: 1.2;
   margin-bottom:20px
  }
  .care-solution-sec h5{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    /* margin-top: 80px; */
    margin-bottom: 0;
  }
  .care-what-we-did-sec{
    background: linear-gradient(100deg, #5418FF -15.3%, #7717C1 54.14%, #901496 169.33%);
    padding: 95px 0;
  }
  .care-increase-graph {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 76px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(75px);
    height: 100%;
    padding: 156px 64px 125px;
    position: relative;
    overflow: hidden;
}
.care-increase-graph::after{
    /* background: rgba(255, 255, 255, 0.16); */
    background: radial-gradient(#fff, #853cd9);
    filter: blur(45px);
    width: 200px;
    height: 200px;
    content: '';
    position: absolute;
    border-radius: 50%;
    top: -85px;
    left: 48px;
}
.care-increase-graph::before{
    /* background: rgba(255, 255, 255, 0.16); */
    background: radial-gradient(#fff, #853cd9);
    filter: blur(45px);
    width: 200px;
    height: 200px;
    content: '';
    position: absolute;
    border-radius: 50%;
    bottom: -90px;
    right: 48px;
}
  /* .care-increase-graph svg{
    width: 100%;
    height: 100%;
  } */
  
  .care-increase-graph-content span{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Regular;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .organic-inc-text{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
  }
  .care-increase-graph-content{
    margin-left: 30px;
  }
  .what-we-did-content {
    margin-left: 80px;
}
.what-we-did-content h3{
    margin-bottom: 50px;
}
  .what-we-did-content h5{
    color: #FFF;
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
    }
    .care-increase-graph-content .care-on-call-text{
        font-size: 30px;
    }
    .care-performance-sec{
        background: var(--Base-Black, #000);
        padding: 105px 0;
    }
    .care-graph-wrap{
        border-radius: 64px;
        background: #FFF;
        box-shadow: 0px 3.693px 3.693px 0px rgba(0, 0, 0, 0.25);
        padding: 110px 66px;
        margin-left:30px;
    }
    .care-graph-wrap svg{
        width: 100%;
       
    }
    .care-clicks{
        border-radius: 12.221px;
        background: #371E63;
        padding: 18px 20px;
        color: #fff;
        width: fit-content;
        font-size: 20px;
        margin-bottom:20px;
    }
    .care-impression{
        border-radius: 12.26px;
        background: #6017E9;
        padding: 18px 20px;
        color: #fff;
        width: fit-content;
        font-size: 20px;
    }
    .care-clicks span{
        width: 45px !important;
        display: inline-block;
    }
    .care-impression span{
        width: 50px !important;
        display: inline-block;
      
    }
    .care-result-sec{
        padding: 70px 0;
        background: #371E63;
    }
    .care-lead-quality-wrap{
        border-radius: 76px;
        background: #FFF;
        padding: 65px 100px;
        width: 947px;
        text-align: center;
        margin: auto;
        position: relative;
        z-index: 3;
        height: 100%;
    }
    .care-lead-quality-wrap p{
        color: #371E63;
        text-align: center;
        font-family: Gilroy-Medium;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height:1.2;
    }
    .care-lead-quality-wrap span{
        display: block;
        color: #371E63;
        font-family: Gilroy-Medium;
        font-size: 120px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
    }
    .solution-content-sec,.challege-content-sec{
        margin-left: 45px;
    }
    .care-service-leads{
        max-width: 960px;
        margin: auto;
        margin-top: 80px;
    }
    .care-result-sec h3{
        margin-bottom: 50px;
        line-height: 2.5;
    }
    .care-lead-quality svg{
        margin-bottom: 30px;
    }
    .care-result-bg1{
        width: 822px;
        border-radius: 76px 76px 0px 0px;
        background: #8360C2;
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
        position: absolute;
        height: 430px;
        top: -45px;
        z-index: 2;
    }
    .care-result-bg2{
        width: 670px;
        border-radius: 76px 76px 0px 0px;
        background: #5D3D96;
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
        position: absolute;
        height: 420px;
        top: -92px;
        z-index: 1;
    }
    .care-social-media-sec{
        padding: 130px 0;
        background: #14004D;
    }
    .care-list-result-content{
        border-radius: 50px;
        background: linear-gradient(115deg, #5418FF -30.64%, #901496 120.47%, #7717C1 148.82%);
        padding: 90px 50px;
        height: 100%;
        width: 100%;
    }
   /* .care-result-bg2{
    border-radius: 50px;
    background: linear-gradient(115deg, #5418FF -30.64%, #901496 120.47%, #7717C1 148.82%);
   } */
   .care-list-result-content p{
    line-height: 1.5;
   }
  .social-media-increase{
    display: flex;
    border-bottom: 1px solid #14004C;
    padding: 30px 0;
    align-items: center;
    justify-content: space-between;
    margin:0 35px;
   }
   .social-media-increase p{
    color: #14004C;
    font-family: Gilroy-SemiBold;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
   }
   .social-media-increase span{
    color: #14004C;
    font-family: Gilroy-Bold;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;

   }
   .care-count-wrap{
    background-color: #fff;
    border-radius: 42px;
    padding: 75px;
  }
  .care-overall-result-sec{
      margin-top:90px;
  }
   .care-social-media-wrap{
    max-width: 650px;
   }
   .care-social-media-wrap p{
    font-size: 30px;
    line-height:2;
   }
  .care-lead-quality{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .overall-result-care{
    margin-bottom: 90px;
  }
  .care-performance-content{
    margin-right: 10px;
  }
  .care-performance-content h3{
    margin-bottom: 30px;
  }
  .care-performance-content p{
    margin-bottom: 20px;
  }
  .conversion-cost{
    display: flex;
    justify-content: space-between;
  }
  .conversion-cost p{
    color: var(--Base-Black, #000);
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
  }
  .conversion-cost span{
    font-size: 30px;
  }
  .line-anim {
    stroke-dasharray: 800;
    stroke-dashoffset: 1650;
    animation: animate 10s linear forwards; 
  }
  
  @keyframes animate {
    0% {
      stroke-dashoffset: 1650;
      fill-opacity: 0;
      }
    75% {
      stroke-dashoffset: 0;
      fill-opacity: 0;
    }
    95% {
      stroke-dashoffset: 0;
    }
    100% {
      fill-opacity: 1;
      stroke-dashoffset: 0;
    }
  }

/* --------- Care On Call Styles end ------------ */
.digital-head-padding .our-projects-content {
    max-width: 700px;
    padding: 85px 0 0px 180px;
}
.text-bold {
    font-weight: 600;
}
.case-study-banner-head{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.175px;
    margin-bottom: 0;
    /* width: 840px; */
    margin: auto;
}


/*--------------------ADNOC Style start--------------------*/
.adnoc-banner-sec{
    padding: 120px 0 60px;
}
.adnoc-subtitle{
    font-family: 'Gilroy-Regular';
    font-style: normal;
    font-weight: 300;
    font-size: 42px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #000000;   
}

.adnoc-banner-sec h1{
    font-family: 'Gilroy-Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 65px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 50px;
}
.adnoc-thumbnil{
    max-height: 690px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}
.adnoc-thumbnil img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 690px;
    height: 100%;
}
.adnoc-project-thumbnil img{
    width: 100%;
    object-fit: contain;
    object-position: center;
    height: 100%;
}
.oil-company{
    padding:60px 0
}
.oil-company .adnoc-subhead{
    color: #4A4A4A;
}
.oil-company p{
    font-family: 'Gilroy-SemiBold';
}
.oil-company .image-item img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.adnoc-subhead{
    font-family: 'Gilroy-Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 42px;
    line-height: 1.5;
    text-transform: uppercase;
    color:#000000;
}
/* .adnoc-approach-img{
    height: 100%;
} */
.adnoc-approach-img{
    max-height: 360px;
    height: 100%;
}
.adnoc-approach-img img{
   max-height: 100%;
}
.adnoc-text{
font-family: 'Gilroy-Regular';
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 1.5;
margin-bottom: 0;
color: #000000;
}
.adnoc-project-heads{
font-family: 'Gilroy-SemiBold';
font-style: normal;
font-weight: 400;
font-size: 30px;
line-height: 1.2;
color: #000000;
margin-bottom: 18px;
}
.adnoc-header{
    background-color:#fff;
}
.ad-heading-line{
position: relative;
margin-bottom: 50px;
}
.ad-heading-line::after{
    position: absolute;
    height: 0;
    width: 77px;
    background: #000000;
    border: 2px solid #000000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    content: '';
    left: 0;
    top: 4rem;
}
.oil-company .adnoc-text{
    margin-bottom: 90px;
}
.adnoc-project-wrap{
margin-bottom: 50px;
  max-width: 630px;
}
.adnoc-challenge-sec{
    padding: 75px 0;
}
.adnoc-approach-sec .adnoc-project-heads{
    font-family: 'Gilroy-Bold' ;
}
.adnoc-approach-wrap{
    max-width: 350px;
    /* margin: 90px 40px; */
    /* margin-bottom: 120px; */
    padding-left: 60px;
}
.adnoc-padding{
    margin-top: 120px;
}
.adnoc-feature-wrap span{
font-family: 'Gilroy-SemiBold';
font-style: normal;
font-weight: 400;
font-size: 32px;
line-height:1.3;
color: #DDDDDD;
}
.adnoc-feature-wrap {
    /* max-width: 340px; */
    width: 100%;
    padding: 20px 40px;
    max-height: 360px;
    height: 100%;
    border-radius: 25px;
}
.adnoc-feature-wrap:hover{
    background-color: #F6F6F6;
}
.adnoc-feature-wrap .adnoc-text{
    font-size: 18px;
}
.adnoc-features-sec{
    padding: 50px 0;
}
.adnoc-impact-sec{
    padding: 50px 0;
}
.adnoc-impact-head{
font-family: 'Gilroy-Regular';
font-style: normal;
font-weight: 300;
font-size: 50px;
line-height: 1.3;
color: #000000;
margin-bottom: 90px;
}
.adnoc-impact-head span{
    font-family:'Gilroy-Bold';
    color: #000;
}
.adnoc-result-sec{
    padding: 60px 0 120px;
}
.adnoc-impact-img{
    max-width: 700px;
    max-height: 680px;
    overflow: hidden;
}
.adnoc-impact-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.adnoc-result-sec p{
    font-family: 'Gilroy-Regular';
    font-style: normal;
    font-weight: 300;
    font-size: 42px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 70px;
}
.adnoc-result-img{
    margin-bottom: 70px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.adnoc-result-sec .result-text-bold{
    font-family: 'Gilroy-SemiBold';
    margin-bottom: 0;
}
.adnoc-impact-content{
    padding-left: 60px;
    border-left: 1px solid #D7D7D7;
    padding-bottom: 50px;
    position: relative;
}
.adnoc-impact-content::after{
    position: absolute;
    height: 20px;
    width: 20px;
    background-color: #0047BB;
    left: -10px;
    top: 0;
    border-radius: 50px;
    content: '';
    opacity: 0;
    transition: 0.3s linear;
}
.adnoc-impact-content:hover::after{
    opacity: 1;
  
}
.adnoc-impact-content:hover .adnoc-project-heads{
    color: #0047BB;
}
.adnoc-impact-wrap .adnoc-impact-content:last-child{
    padding-bottom: 0;
}
.oil-company .simpleParallax{
    height: 100%;
}
/*--------------------ADNOC Style end--------------------*/


/* --------- ABC Cargo Styles start ------------ */
.abc-cargo-parallax,.abc-cargo-challenge-parallax{
    height: 100vh !important;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}
.abc-cargo-parallax .banner-abc-cargo{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;

}
.abc-cargo-challenge-parallax .banner-abc-cargo{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;

}
.abc-cargo-parallax::after{
    /* background: linear-gradient(180deg, #D2C4C4 29.05%, rgba(217, 217, 217, 0.00) 100%); */
    background-color: rgba(0, 0, 0, 0.2);
    /* mix-blend-mode: color-burn; */
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.abc-cargo-header.affix{
    background: #E63732;
    /* box-shadow: none; */
}
.abc-cargo-parallax p{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    /* letter-spacing: 0.175px; */
    /* max-width: 840px; */
    margin: auto;
    margin-bottom: 0;
}
.abc-cargo-parallax .capital-head{
    z-index: 1;
}
.abc-cargo-content-section{
    min-height: 100vh;
    position: relative;
}
.abc-line{
    height: 3px;
    background: #A5A3A3;
    animation:abc-line-anim 5s;
    animation-fill-mode: forwards;
    /* margin-bottom: 20px; */
    position: relative;
    bottom: 3px;
    width: 0;
    left: 0;
}

@keyframes abc-line-anim{
    0%{
        width: 0;
    }
   
    100%{
        width: 100%;
    }
}
.abc-result-sec{
    padding: 65px 130px 128px 100px;
}
.abc-solution-sec .container-fluid{
    padding:0;
}
.abc-result-content{
    border-radius: 31px;
    background: #FFF7F8;
    padding: 68px 65px;
}
.abc-result-content h3{
    color: #E63732;
    font-family: Gilroy-Bold;
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}
.abc-result-content p{
    color: #514F4F;
    font-family: Gilroy-Medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.2;
    margin-bottom: 0;
}
.abc-result-thumbnil{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.abc-scroll-sec{
    height: 100%;
    overflow: hidden;
}
.abc-scroll-items img{
    max-height: 360px;
}
/*.abc-scroll-inner-sec{*/
/*    transform: translateX(-12%);*/
/*}*/
.abc-clouds{
    position: relative;
    animation: hand-shake 5s infinite;
    width: 100%;
}
.abc-result-img-wrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;  
}
.abc-result-img-wrap svg{
    max-width:920px;
    width: 100%;
    height: auto;
}
.abc-hands{
position: absolute;
mix-blend-mode: luminosity;
animation: hand-shake 5s infinite;
}
@keyframes hand-shake{
    0%   {transform:translateY(0)}
    50%  {transform:translateY(40px)}
    100% {transform:translateY(0)}
  }
.abc-solution-sec{
    background-image: url(../../images/new/case-study/abccargo/solution-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    overflow: hidden;
    padding: 110px 0 0;
}


.abc-solution-sec h3{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 77px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    /* padding: 110px 0; */
    max-width: 750px;
    margin-bottom: 90px;
}
.abc-solution-wrap h5{
    color: var(--Base-Black, #000);
    font-family: Gilroy-SemiBold;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    text-transform: capitalize;
    margin-bottom: 24px;
}
.abc-solution-list{
    width: 25%;
    height: 814px;
    flex-shrink: 0;
    padding: 65px 70px;
    position: relative;
    
}
.abc-item1{
    z-index: 4;
}
.abc-item2{
    z-index: 3;
}
.abc-item3{
    z-index: 2;
}
.abc-item4{
    z-index: 1;
}
.abc-solution-wrap .abc-item1 p{
    color: #FFF !important;
}
.abc-solution-list p {
    color: var(--Base-Black, #000);
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 15px;
}
.abc-solution-wrap{
    display: flex;
    /* height: 100vh; */
    align-items: center;
}
.abc-solution-wrap .abc-item1 h5{
    color: #fff !important;
}

.abc-solution-wrap .abc-item1{
    background: #181818;
    color: #fff;
}
.abc-solution-wrap .abc-item2{
    background: #FFBDBD;;
}
.abc-solution-wrap .abc-item3{
    background: #FFD5D3;;
}
.abc-solution-wrap .abc-item4{
    background: #F6F5F5;;
}
.abc-solution-head{
    display: flex;
    align-items: center;
    justify-content: center;
}
.abc-cargo-challenge-parallax .mob-main-wrapper{
    position: relative;
 width: 400px;
    /* width: 100%; */
    /* margin: 40px 0; */
    overflow: hidden;
    margin:auto;
    margin-top:5vw;
} 
.abc-cargo-challenge-parallax .mob-wrap{
    border-radius: 60px;
    border: 5px solid #FFF;
    background: rgba(0, 0, 0, 0.22);
    width: 100%;
    /* height: 880px; */
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:auto;
}
.abc-mob-text{
    /* margin:0 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
    text-align: center;
    position: absolute;
    top: 33%;
    padding: 0 40px;
    width: 100%;
}
.abc-mob-text h3{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-SemiBold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 1; 
    text-transform: uppercase;
    margin-bottom: 14px;
}
.complexity-abc{
    font-family: Gilroy-Bold !important;
    padding: 30px 60px;
    border-radius: 28px;
    background: #E63732;
    /* margin:0 45px; */
}
.abc-challenge-content{
    position: absolute;
    border-radius: 60px;
    border: 5px solid #FFF;
    background: #FDD;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    top: 0;
    height: 750px;
    padding: 0 55px;
}
.abc-challenge-content p{
    color: #474545;
    font-family: Gilroy-SemiBold;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
    
  
}
.line-abc-mob{
    width: 150px;
    height: 6px;
    background-color: #fff;
    position: absolute;
    bottom: 50px;
    z-index: 1;

}
.abc-success-sec{
    background: var(--Base-Black, #000);
    padding: 164px 0 80px;
    overflow: hidden;
}
.abc-success-head h3{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Bold;
    font-size: 79px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 0;
}
/* .navbar {
    position: fixed;
    top: 5em;
    left: 3em;
    height: 175px;
    z-index: 1;
  } */
  
 
  .slider {
    padding: 132px 0;
    color: #fff;
    overflow: hidden;
    height: 100vh;
  }
  .slider .swiper-container {
    width: 100%;
    height: 100%;
    display: flex;
  }
  .slider__flex {
    display: flex;
    align-items: flex-start;
  }
  .slider__col {
    display: flex;
    flex-direction: column;
    max-width: 720px;
    margin-right: 32px;
  }
  .slider__prev,
  .slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .slider__prev:focus,
  .slider__next:focus {
    outline: none;
  }
  /* .slider__thumbs {
    height: calc(400px - 96px);
  } */
  .slider__thumbs .slider__image {
    transition: 0.25s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
    color: #7D7C7C;
  }
  .slider__thumbs .slider__image:hover {
    opacity: 1;
    color: #fff;
  }
  .slider__thumbs .swiper-slide-thumb-active .slider__image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
    color: #fff;
  }
  .slider__images {
    height: 400px;
  }
  /* .slider__images .slider__image img {
    transition: 3s;
  }
  .slider__images .slider__image:hover img {
    transform: scale(1.1);
  } */
  .slider__image {
    width: 100%;
    height: 100%;
    /* border-radius: 30px; */
    overflow: hidden;
  }
  .slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  @media (max-width: 767.98px) {
    .slider__flex {
      flex-direction: column-reverse;
    }
    .slider__col {
      flex-direction: row;
      align-items: center;
      margin-right: 0;
      margin-top: 24px;
      width: 100%;
    }
    .slider__images {
      width: 100%;
    }
    .slider__thumbs {
      height: 100px;
      width: calc(100% - 96px);
      margin: 0 16px;
    }
    .slider__prev,
    .slider__next {
      height: auto;
      width: 32px;
    }
  }
  /*.swiper-wrapper {*/
  /*  flex-direction: column;*/
  /*  margin-left: 90px;*/
  /*}*/
.slider__image h3{
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
}
.slider__image p{
font-family: Gilroy-Medium;
font-size: 18px;
font-style: normal;
font-weight: 400;
}
/*.swiper-slide{*/
/*    height: fit-content !important;*/
/*}*/

.timeline {
    padding: 50px;
  }
  .timeline ul {
    padding: 0;
  }
  .timeline .default-line {
    content: "";
    position: absolute;
    left: 50%;
    width: 4px;
    background: #bdc3c7;
    height: 1500px;
  }
  .timeline .draw-line {
    width: 4px;
    height: 0;
    position: absolute;
    left: 50%;
    background: #2ecc71;
  }
  .timeline ul li {
    list-style-type: none;
    position: relative;
    width: 2px;
    margin: 0 auto;
    height: 400px;
    background: transparent;
  }
  .timeline ul li.in-view {
    transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
  }
  .timeline ul li.in-view::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-image: url("https://sg0duxoli5-flywheel.netdna-ssl.com/wp-content/themes/inspired_elearning_theme/images/check-dark.svg");
    background-color: #2ecc71;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
  }
  .timeline ul li::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: inherit;
    background: #bdc3c7;
    transition: all 0.4s ease-in-out;
  }

  
  .percent {
    overflow: hidden;
    width: 50px;
    height: 580px;
    flex-shrink: 0;
    border-radius: 25px;
    background: #292929;
    position: relative;
  }
  .smile-anim{
    position: absolute;
    top:0;
    left: 0;
    height:530px;
    width: 100%;
    /* background-color: orange; */
  
    /* transform: scaleY(0); */
    transform-origin: top center;
    z-index: 1;
  }
  .smile-anim::before{
    background-image: url(../../images/new/case-study/abccargo/smile-img.webp);
    background-position: center;
    background-size: cover;
    height: 50px;
    width: 50px;
    top: 0;
    left: 0;
    content: '';
    position: absolute;
  }
  .fill {
    width: 100%;
    height: 100%;
    background: #EF4E31;
    position: absolute;
    bottom: 0;
    transition: background 0.15s ease;
  }
  .smile-v{
    /* width: 52px;
    height: 52.165px;
    transform: rotate(356deg);
    flex-shrink: 0; */
    width: 62.165px;
    height: 62.165px;
    transform: rotate(-13.014deg);
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 13px;
  }

.smile{
    position: absolute;
    top: 0;
    transform: translateY(500);
       
      }

.slider-mob-wrap{
    width: 416px;
height: 791.565px;
overflow: hidden;
}
  

.pin-up {
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    /* background-color: green; */
  }
  
  
  
  .content-wrap{
    /* position:relative;
    width: 100%;
    height: 100%; */
    border-radius: 4px;
    /* background-color: limegreen; */
    margin-right: 111px;
    /*margin-top: -10px;*/
    position: relative;
    width: 380px;
    /* width: 100%; */
    max-height: 753px;
    flex-shrink: 0;
    /* margin: 40px 0; */
    overflow: hidden;

  }
  .content-mob{
    position: relative;
    width: 100%;
    height: 753px;
    border-radius: 65px;
  }
  .content-wrap img{
    width:100%;
height: 100%;
position: relative;
z-index: 2;
  }
  .content {
    width: 100%;
    height: 100%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* background-color: limegreen; */
    border-radius: 4px;
    color: white;
    z-index: 1;
    position: absolute;
    top: 0;
  }
  .content img{
    width: 400px;
    height: 730px;
    border-radius: 62px;
    object-fit: contain;
    object-position: center;
  }
    .sideline {
        position: absolute;
        top: calc(45vh - 111px - 23px);
        left: 0;
        height: 500px;
        width: 3px;
        background-color: orange;
        transform: translateY(500);
        transform-origin: top center;
        z-index: 1;
      }
      .sideline div{
        background: white;
        border-radius: 50%;
        width: 51px;
        height: 51px;
        flex-shrink: 0;
        animation: cir 1s ;
      }
      @keyframes cir{
        0%{
            transform: translateY(0);
        }
        50%{
            transform: translateY(50%);
        }
        100%{
            transform: translateY(100%);
        }
    }
  .slideline-bg{
    border-radius: 25px;
    background: #292929;
     width: 50px;
    height: 580px;
    flex-shrink: 0;
  }
  .text-wrap {
    height: 100vh;
    width: 100%;
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    
    /* background-color: green; */
  }
  
.text {
    font-size: 30px;
    width: 100%;
    color: #7D7C7C;
    max-width: 670px;
    margin-bottom: 30px;
}
.text p{
    font-family: Gilroy-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin-bottom: 0;
  }
.text h3{
    font-family: Gilroy-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    text-transform: capitalize;
    margin-bottom: 0;
  }
.abc-content-sec{
    padding: 100px 0 30px;
    position: relative;
    height: 100%;
}
.abc-content-text h5{
    color: #393838;
    font-family: Gilroy-ExtraBold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    text-transform: uppercase;
    margin-bottom: 50px;

}
.abc-content-text{
    display: flex;
    max-width: 975px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}
.abc-content-text p{
    color: #676363;
    font-family: Gilroy-SemiBold;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 0;
    max-width: 819px;
}
.abc-van {
    position: absolute;
    bottom: 3px;
    width: fit-content;
    animation: abcvan 5s linear forwards;
    animation-delay: 8s;
    z-index: 1;
  }
  
  @keyframes abcvan {
    0% {
     transform: translateX(0);
    }
    100% {
        transform: translateX(500%);
    }
  }
.abc-content-bottom{
    width: 100%;
    position: relative;
    margin-top: 50px;
}
.abc-plant{
    width: 100%;
    animation: plantabc 5s ;
    animation-delay: 5s;
    /* opacity: 0; */
}
@keyframes plantabc {
   0%{
     opacity: 0;
    }
    100% {
        opacity: 1;
    }
  }

  .abc-content-building svg{
    position: absolute;
    right: 0;
    bottom: 36px;
    z-index: 0;
  }
  
  .abc-cargo-header.affix {
    background: #E63732;
  }
  .abc-cargo-header .headerRow .navMenu .hamburger i, .flowers-header .headerRow .navMenu .hamburger i,.imagine-header .hamburger i{
      background-color:#fff !important;
  }
/* --------- ABC Cargo Styles end ------------ */


/*------------- Flowers case study start --------------*/

.flowers-banner{
    background: #E21221;
}
.flowers-header.affix{
  background:#E21221;
}
.flower-paralax{
    background-image: url(../../images/new/case-study/flowers/banner.jpg);
     background-repeat: no-repeat;
   height: 100vh;
   width: 100%;
   margin: 0;
   overflow: hidden;
    padding: 25px;
   display: flex;
   align-items: center;
  justify-content: center;
}
.flower-paralax  p {
    color: #FFF;
    text-align: center;
    font-family: 'Gilroy-Bold';
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.175px;
    /* max-width: 688px; */
    margin: auto;
    margin-bottom: 0;
}
.phone-app{
    min-height: 100vh;
    background: #303030;
    position: relative;
    padding: 110px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.phone-app-content{
    padding-right: 6rem;
}
.phone-app-content p{
    color: #FFF;
    font-family: Gilroy-Regular;
    font-size: 18px;
    line-height: 2.5;
    margin-bottom: 0;
}
.phone-app-box{
    position: absolute;
    right: 5rem;
    top: 14rem;
}
.phone-app-container{
    position: relative;
    z-index: 1;
}
.phone-shadow{
    position: absolute;
    width: 398px;
    height: 76%;
    content: '';
    bottom: -6rem;
    left: 7rem;
    background-color: #1B1B1B;
    border-radius: 76px;
    /* box-shadow: -86px 0 17px rgba(0,0,0,0.7); */
    transform: skewY(-3deg) skewX(43deg) rotate(161deg);
    z-index: 0;
    filter: blur(14px);
    opacity: 0.6;
}
.phone-app-box img{
    max-width: 100%;
    /* box-shadow: -86px 0 17px rgba(0,0,0,0.7); */
    z-index: 1;
    position: relative;
}
.app-mobile{
    background-color: #303030;
    min-height: 100vh;
    padding: 90px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.app-mobile .phone-app-content{
    padding-left: 2em;
}
.app-mobile .phone-app-content p{
    font-size: 17px;
}
.app-mobile-image{
    position: relative;
}
.app-mobile-shadow{
    position: absolute;
    width: 100%;
    height: 10px;
    border-radius: 50%;
    background-color: #05090C;
    filter: blur(10px);
    left: 13rem;
    bottom: 0;
}
.ott-platform{
    background: #303030;
    position: relative;
    overflow: hidden;
    padding-bottom: 106px;
}
.ott-platform h4{
    color: #FFF;
    font-family: Gilroy-SemiBold;
    font-size: 70px;
    line-height: 1.2;
    padding-bottom: 120px;
    margin-bottom: 0;
    max-width: 980px;
}

.ott-item{
    border-radius: 165px;
    border: 2px solid #8B8B8B;
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px 160px;
    width: 100%;
    transition: transform 1s ease;
    transform: translateX(45%);
    min-height: 330px;
}

.ott-number, .ott-head{
    color: #8B8B8B;
    font-family: Gilroy-SemiBold;
}
.ott-number{
    font-size: 110px;
    flex-shrink: 0;
    line-height: 1.5;
    transition: 0.3s linear;
    margin-right: 68px;
}
.ott-head{
    font-size: 60px;
    flex-shrink: 0;
    margin-right: 106px;
    max-width: 450px;
    width: 100%;
    line-height: 1.2;
    transition: 1.5s linear;
}
.ott-description{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 30px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: 1.5s linear;
}
.ott-content{
    display: flex;
    align-items: center;
}
.ott-item-wraper .ott-item:not(:last-child){
    margin-bottom: 36px;
}
/* .ott-item-wraper{
    min-height: 100vh;
} */
.ott-item.active{
    transform: translateX(0);
    background: #404040;
    border-color: #404040;
}
/* .ott-item:hover{
    background: #404040;
    border-color: #404040;
} */
.ott-item.active .ott-head{
    color: #F7C11B;
}
.ott-item.active .ott-number{
    opacity: 0;
    visibility: hidden;
    width: 0;
    margin-right: 0;
    transform: translateX(-5%);
}
.ott-item.active .ott-description{
    opacity: 1;
    visibility: visible;
}
.flowers-business{
    background: linear-gradient(80deg, #FCE288 23.97%, #FDF5D7 119.37%);
    padding-top: 0;
    min-height: 850px;
    display: flex;
}
.flowers-business p{
    color: #4E4D4D;
    font-family: Gilroy-SemiBold;
    font-size: 30px;
    line-height: 1.7;
    max-width: 835px;
}
.flowers-business .business-img{
    right: 0;
}
.flowers-business .business-img img{
    max-height: 778px;
}
.flowers-business .business-growth-content{
    padding: 140px 4rem 130px 0;
}
.mx-1366{
    width: 100%;
}
.app-mobile .phone-app-content {
    padding-left: 0;
}
/*------------- Flowers case study start --------------*/

.casestudy-listings img{
    height:588px;
}




/*-------------- Mvp landingpage new start ------------*/ 
.mvp-landing-header{
    background-color: transparent;
}
.mvp-landing-header.affix{
    background-color: #0621E9;
}
.mvp-banner{
    /* background-color: #0621E9; */
    padding-top: 230px;
    position: relative;
}
.mvp-banner-content{
    margin-bottom: 140px;
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}
.mvp-banner .banner-img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    object-fit: cover;
    object-position: center;
}
/* .mvp-banner::before{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0621E9;
    content: '';
    z-index: 1;
    opacity: 0.9;
} */
.mvp-banner h1{
    font-family: 'Gilroy-ExtraBold';
    font-size: 90px;
    line-height: 0.9;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.mvp-banner h1 span{
    font-family: 'Gilroy-Light';
    font-size: 64.407px;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.mvp-banner p{
    font-family: 'Gilroy-Regular';
    font-size: 24.2424px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 42px;
}
.get-a-quote-form-wraper{
    max-width: 460px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 7px 7px;
}
.get-a-quote-form-wraper input{
    outline: none;
    border: none;
    padding: 16px 20px;
}
.get-a-quote-form-wraper input[type="email"]{
    width: 100%;
}
.mvp-banner-btn{
    min-width: 170px;
    text-align: center;
    color: #fff;
    background: #18181B;
    font-size: 19px;
    font-family: 'Gilroy-SemiBold';
    line-height: 1;
    border-radius: 10px;
    display: inline-block;
    padding: 22px 28px;
    text-decoration: none;
    transition: 0.3s linear;
}
.mvp-banner-btn:hover{
    background-color: #fff;
    color: #040000;
}
/* .get-a-quote-form-wraper input[type="submit"]{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    min-width: 170px;
    text-align: center;
    color: #fff;
    background: #18181B;
    font-size: 18px;
    font-family: 'Gilroy-SemiBold';
    line-height: 1;
    border-radius: 10px;
} */
.mvp-new-banner-image-wraper{
    position: relative;
    overflow: hidden;
}
.mvp-new-banner-image-container{
    width: 720px;
    /* height: 100px; */
    /* background-color: red; */
    position: relative;
    margin-left: auto;
    transform: translateY(17px);
}
.vector-bar{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    max-width: 100%;
}
.image-main{
    position: relative;
    z-index: 2;
    max-width: 100%;
}
.vector-circle{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    animation: rotate 10s infinite linear;
    max-width: 100%;
}
@keyframes rotate{
    0%{
        transform: rotate(0);
    }
    50%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0);
    }
}
.need-us-for-item{
    max-width: 355px;
}
.need-us-for-item span{
    display: block;
    font-family: 'Gilroy-Bold';
    font-size: 40px;
    line-height: 30px;
    color: #142685;
    opacity: 0.1;
    margin-bottom: 12px;
}
.need-us-for-item h3{
    font-family: 'Gilroy-Bold';
    font-size: 25px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 4px;
}
.need-us-for{
    padding: 60px 0;
}
.need-us-for-item p{
    font-family: 'Gilroy-Medium';
    font-size: 18px;
    line-height: 1.4;
    color: #4B4949;
    margin-bottom: 0;
}
.need-us-for-container .row [class*="col-"]{
    margin-bottom: 12px;
}
.mvp-langingpage .section-head{
    font-family: 'Gilroy-Bold';
    font-size: 50px;
    line-height: 1.22;
    /*color: #A8A8A8;*/
    color: #4d4d4d;
    text-align: center;
    margin-bottom: 70px;
}
.need-us-for-container{
    max-width: 1290px;
    width: 100%;
    margin: auto;
    padding: 0 12px;
}
.need-us-for-content{
    padding-left: 1rem;
}
.need-us-for-item-img{
    margin-bottom: 25px;
    height: 240px;
    display: flex;
    align-items: flex-end;
}
.need-us-for-item-img img{
    max-width: 100%;
    max-height: 100%;
}
.idea{
    padding: 86px 0;
    background: #FFFBF4;
}
.idea h3{
    font-family: 'Gilroy-Bold';
    font-size: 65.5px;
    line-height: 1.24;
    text-align: center;
    color: #000000;
    margin-bottom: 0;
}
.build{
    padding: 90px 0;
}
.build .need-us-for-item-img{
    height: auto;
}
.build .need-us-for-content{
    padding-left: 0;
    max-width: 338px;
}

.process{
    position: relative;
    background: #0C33EB;
    padding: 60px 0;
}
.process .section-head{
    margin-bottom: 36px;
    color: #fff;
}
.process-item-wraper .row [class*='col-']{
    padding: 0;
    margin-bottom: 36px;
}
.process-item{
    padding: 20px 15px;
    background-color: transparent;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
    height: 100%;
    font-size: 15.1741px;
}
.process-item p{
    margin-bottom: 0;
}
.process-item-icon{
    height: 98px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-item-icon img{
    max-width: 100%;
    max-height: 100%;
}
.process-item.active{
    background-color: #fff;
    font-family: 'Gilroy-Medium';
    line-height: 23px;
    color: #0559FA;
}
.process-item-wraper h4{
    font-family: 'Gilroy-Regular';
    font-size: 30px;
    line-height: 1.5;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0;
}
.mvp-tech-section{
    padding: 100px 0 64px 0;
}
.mvp-tech-section .section-head{
    margin-bottom: 48px;
}
.tech-tab-wraper .nav-pills{
    justify-content: center;
    margin: auto !important;
    margin-bottom: 90px !important;
    border-bottom: 1px solid #040000;
    width: fit-content;
}
.tech-tab-wraper .nav-link{
    font-family: 'Gilroy-Regular';
    font-size: 27.139px;
    line-height: 1.2;
    color: #040000;
    padding: 7px 45px;
    border-radius: 0;
}
.tech-tab-wraper .nav-link.active{
    background: #040000;
}
.tech-logo-list{
    margin: auto;
    max-width: 800px;
}
.tech-logo-list ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
    margin-bottom: 0;
}
.tech-logo-list ul li{
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}
.tech-logo-list ul li img{
    max-width: 100%;
}

.develop-mvp{
    padding: 230px 0;
    position: relative;
}
.develop-mvp img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.develop-mvp::after{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    background-color: #0559FA;
    mix-blend-mode: hard-light;
    z-index: 1;
}
.develop-mvp .section-head{
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    margin-bottom: 36px;
    font-family: 'Gilroy-SemiBold';
}
.develop-mvp-content{
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-bottom: 36px;
}
.develop-mvp-content .row [class*="col-"]{
    /* padding: 0; */
    padding-right: 36px;
    /*border-right: 1px solid #fff;*/
}
.develop-mvp-content .row [class*="col-"]:last-child{
    /*padding-left: 36px;*/
    padding-left: 22px;
    border: none;
    padding-right: 0;
}
.develop-mvp-item p{
    font-family: 'Gilroy-Medium';
    font-size: 18px;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 0;
}
.app-calculator-btn{
    padding: 20px 20px;
    min-width: 296px;
    text-align: center;
    background-color: #ffcd37;
    border-radius: 15px;
    font-family: 'Gilroy-SemiBold';
    font-size: 20px;
    line-height: 1.2;
    color: #18181B;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #fff;
    transition: 0.3s linear;
}
.app-calculator-btn:hover{
    background: #0559FA;
    color: #fff;
}
.mvp-idea{
    padding: 90px 0;
    background: #FFFDFB;
    scroll-margin-top: 6rem;
    scroll-behavior: smooth;
}
.mvp-idea .section-head{
    font-family: 'Gilroy-SemiBold';
    font-size: 75px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #101828;
    margin-bottom: 20px !important;
}
.mvp-idea .section-para{
    font-family: 'Gilroy-SemiBold';
    font-size: 30px;
    line-height: 1.3;
    color: #667085;
    margin-bottom: 40px;
}
.idea-form-item label{
    display: block;
    font-family: 'Gilroy-SemiBold';
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    margin-bottom: 10px;
}
.idea-form-item input, .idea-form-item textarea{
    padding: 12px 16px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    width: 100%;
    outline: none;
}
.idea-form-item textarea{
    height: 140px;
}
.idea-form-wraper{
    max-width: 1175px;
    margin: auto;
}
.need-help-form-wrap{
    max-width:800px;
}
.idea-form-wraper .row [class*='col-']{
    margin-bottom: 15px;
}
.idea-form-item input[type="submit"]{
    min-width: 500px;
    background-color: #0C33EB;
    color: #fff;
    text-align: center;
    margin: auto;
    width: fit-content;
    margin-top: 40px;
    border: 1px solid #0C33EB;
    transition: 0.2s linear;
}
.idea-form-item input[type="submit"]:hover{
    background-color:#0524b9;
}
.mvp-faq{
    padding: 130px 0;
}
.mvp-faq .section-head{
    font-family: 'Gilroy-ExtraBold';
    font-size: 48px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: -0.02em;
    color: #101828;
    margin-bottom: 20px !important;
}
.mvp-faq .section-para{
    font-family: 'Gilroy-Light';
    font-size: 26.6667px;
    line-height: 1.5;
    text-align: center;
    color: #667085;
    margin-bottom: 80px;
}
.mvp-faq .accordion-button{
    font-family: 'Gilroy-ExtraBold';
    font-size: 24px;
    line-height: 1.55;
    color: #101828;
    padding: 0;
    position: relative;
    padding-right: 60px;
}
.mvp-faq .accordion-body{
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-right: 60px;
}
.mvp-faq .accordion-body p{
    font-family: 'Gilroy-Medium';
    font-size: 21.3333px;
    line-height: 1.5;
    color: #667085;
    margin-bottom: 0;
}
.mvp-faq .accordion-button:focus{
    box-shadow: none;
    border-color: transparent;
}
.mvp-faq .accordion-item{
    padding: 30px 0;
    border-left: none;
    border-right: none;
}
.mvp-faq .accordion-button:not(.collapsed){
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
}
.mvp-faq .accordion-item:first-of-type{
    border-radius: 0;
    border-top: none;
}
.mvp-faq .accordion-item:last-of-type{
    border-radius: 0;
    border-bottom: none;
}
/* .mvp-faq-wraper{
    max-width: ;
} */
.accordion-collapse-icon{
    height: 26px;
    width: 26px;
    border-radius: 50%;
    border: 2px solid #0A32EB;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
.accordion-collapse-icon::after{
    height: 12px;
    width: 2px;
    background: #0A32EB;
    content: '';
    position: absolute;
    transition: 0.2s linear;
}
.accordion-collapse-icon::before{
    height: 2px;
    width: 12px;
    background: #0A32EB;
    content: '';
    position: absolute;
}
.mvp-faq .accordion-button::after, .mvp-faq .accordion-button:not(.collapsed)::after{
    background: none;
}
.mvp-faq .accordion-button:not(.collapsed) .accordion-collapse-icon::after{
    opacity: 0;
}
.develop-mvp-item ul{
    margin: 20px 0;
}
.develop-mvp-item ul li{
    position: relative;
    margin-bottom: 12px;
    padding-left: 26px;
}
.develop-mvp-item ul li:last-child{
    margin-bottom: 0;
}
.develop-mvp-item ul li span{
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}
.header-mvp-btn{
    border-radius: 30px;
    padding: 17px 28px;
}
.mvp-landing-header.affix .header-mvp-btn{
    background: #fff;
    color: #18181B;
}
.mvp-thankyou-header{
    background: #0621E9;
}
/*-------------- Mvp landingpage new end ------------*/ 


/*--------------- Calculator page start --------------*/

.calculator-header{
    background-color: #292929;
}
.mvp-calculator-header{
    padding: 180px 0 36px 0;
    background-color: #292929;
}
.calculator-item{
    color: #fff;
}
.mvp-calculator h1{
    font-family: 'Gilroy-Bold';
    font-size: 30px;
    line-height: 37px;
    color: #6A6A6A;
    margin-bottom: 55px;
}
.mvp-calculator-result-wraper{
    background-color: #ffffff;
    position: relative;
}
.mvp-calculator-result-wraper .nav-link{
    font-family: 'Gilroy-Medium';
    font-size: 22px;
    line-height: 30px;
    color: #fff;
    max-width: 382px;
    width: 100%;
    text-align: center;
    border-radius: 0;
    background-color: #292929;
    border: none;
    padding: 20px 15px;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}
.mvp-calculator-tab-table {
    padding-left: 5rem;
}
.mvp-calculator-tab-box{
    background-color: #292929;
}
.mvp-calculator-tab-box .nav-tabs li:last-child .nav-link{
    border-right: 0;
}
.mvp-calculator-result-wraper .nav-tabs{
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    /* margin-top: -1rem; */
}
.mvp-calculator-result-wraper .nav-tabs li{
    width: 100%;
}
.mvp-calculator-tab-content .tab-pane{
    padding: 36px 30px;
    /*padding-top: 100px;*/
}
.mvp-calculator-tab-content h3{
    margin-bottom: 20px;
    font-family: 'Gilroy-SemiBold';
    font-size: 40px;
    line-height: 1.22;
    color: #000000;
}
.mvp-calculator-tab-content p{
    font-family: 'Gilroy-Regular';
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}
.mvp-calculator-tab-table-item{
    padding: 20px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.5);
    display: flex;
}
.mvp-calculator-tab-table .mvp-calculator-tab-table-item:first-child {
    border-top: none;
    padding-top: 0;
}

.mvp-calculator-tab-table h4{
    font-family: 'Gilroy-SemiBold';
    font-size: 26px;
    line-height: 1.23;
    color: #000000;
}
.mvp-calculator-tab-table-head{
    max-width: 260px;
    flex-shrink: 0;
    width: 100%;
}
.tab-desc{
    margin-bottom: 20px;
    font-family: 'Gilroy-Regular';
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    padding-right: 3rem;
}
.result-wraper{
    margin-bottom: 22px;
    max-width: 1100px;
}
.result-wraper p{
    font-family: 'Gilroy-Regular';
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;

}
.result-wraper p:not(:last-child){
    margin-bottom: 15px;
}

.detailed-estimate{
    background: #292929;
    padding: 90px 0 54px 0;
}
.detailed-estimate-content{
    max-width: 625px;
    width: 100%;
}
.detailed-estimate-content h4{
    font-family: 'Gilroy-SemiBold';
    font-size: 50px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 12px;
}
.detailed-estimate-content p{
    font-family: 'Gilroy-Regular';
    font-size: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}
.detailed-estimate-content p:not(:last-child){
    margin-bottom: 30px;
}
.e-form-grid{
    margin-bottom: 24px;
}
.e-form-grid label{
    display: block;
    font-family: 'Gilroy-SemiBold';
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.e-form-grid input, .e-form-grid textarea{
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    padding: 12px 20px;
    outline: none;
    border: none;
    font-size: 13px;
    color: #667085;
}
.e-form-grid textarea{
    height: 260px;
}
.estimate-form{
    max-width: 580px;
    margin-left: auto;
}
.form-note{
    font-family: 'Gilroy-Regular';
    font-size: 14px;
    line-height: 1.3;
    color: #FFFFFF;
}
.e-form-grid input[type='submit']{
    width: fit-content;
    font-family: 'Gilroy-SemiBold';
    font-size: 19.3939px;
    line-height: 24px;
    color: #000000;
    padding: 15px 30px;
    border-radius: 10px;
}



/* The container */
.custom-radio-btn {
    display: block;
    position: relative;
    margin-bottom: 16px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 20px 20px;
  }
  
  /* Hide the browser's default checkbox */
  .custom-radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .custom-radio-btn-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: 1px solid #fff;
    transition: 0.2s linear;
  }
  
  /* On mouse-over, add a grey background color */
  .custom-radio-btn:hover input ~ .custom-radio-btn-checkmark {
    background-color: #fff;
  }
  
  /* When the checkbox is checked, add a blue background */
  .custom-radio-btn input:checked ~ .custom-radio-btn-checkmark {
    background-color: #fff;
  }

  



.calculator-item h3{
    font-family: 'Gilroy-SemiBold';
    font-size: 40px;
    line-height: 49px;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.custom-radio-btn p{
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-family: 'Gilroy-Regular';
    font-size: 25px;
    line-height: 30px;
    color: #fff;
    transition: 0.2s linear;
  }
  .custom-radio-btn input:checked ~ p{
    color: #000;
  }
  .custom-radio-btn:hover p{
    color: #000;
  }

  .previous-question{
    font-family: 'Gilroy-Medium';
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    display: inline-block;
    text-decoration: none;
    position: relative;
  }
  .previous-question span{
    color: #fff;
  }
  .previous-question:hover{
    text-decoration: underline;
    text-decoration-thickness: 1px;
    color: #fff;
    text-underline-offset: 5px;
  }


  .mvp-calculator-tab-box{
    background: #f3f3f3;
    height: 100%;
  }
  .mvp-calculator-result-wraper .nav-tabs{
    display: block;
  }
  .mvp-calculator-result-wraper .nav-link{
    max-width: 100%;
    background-color: #f3f3f3;
    color: #292929;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    position: relative;
    
  }
  
  .mvp-calculator-result-wraper .nav-link.active::after{
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0px;
    bottom: 0;
    background: #f3f3f3;
    content: '';
  }
  .mvp-calculator-result-wraper .nav-link.active{
    background-color: #292929;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .mvp-calculator-tab-table{
    padding-left: 0;
  }
.mvp-calculator-tab-content{
    padding: 30px 0;
}
  /*--------------- Calculator page end --------------*/
  
  
  
  /* Image build grow styles */

.imagine-build-banner-sec{
    background: linear-gradient(63.57deg, #0B0B0B 40.24%, #191919 68.53%, #212121 75.93%, #242424 81.33%);
    padding: 125px 0 0;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 6rem;
  
  }
  .ibg-banner-wrap{
      height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .ibg-banner-head h1{
    font-family: Gilroy-Heavy;
    font-weight: 400;
    font-size: 80px;
    line-height:1;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom:10px
  }
  .ibg-banner-head h1 p{
    background: linear-gradient(275.02deg, #450FC2 20.97%, #0F72E2 78.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  
  }
  .ibg-banner-head{
    max-width: 367px;
    width: 100%;
  }
  .ibg-text{
    font-weight: 400;
    font-size: 25px;
    line-height:1.2;
    color: #FFFFFF;
    font-family: 'Gilroy-Regular';
  }
  .ibg-common-btn {
    font-weight: 400;
    background: linear-gradient(261.3deg, #7B45F6 26.18%, #338DF2 108.08%);
    border-radius: 22.5px;
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: fit-content;
  }
  .ibg-common-btn.with-arrow {
    padding-right: 54px;
  }
  .ibg-common-btn::after {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: '';
    position: absolute;
    background: linear-gradient(261.3deg, #338DF2 26.18%, #7B45F6 108.08%);
    z-index: 0;
    opacity: 0;
    transition: 0.2s linear;
  }
  .ibg-common-btn p {
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    font-family: 'Gilroy-Bold' !important;
    color: #FFFFFF !important;
    margin-bottom: 0 !important;
    line-height: 1 !important;
  
    position: relative;
    z-index: 1;
  }
  .ibg-common-btn .btn-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    position: relative;
    z-index: 1;
    position: absolute;
    right: 3px;
  }
  .ibg-common-btn:hover::after {
    opacity: 1;
  }
  .ibg-banner-img{
    /* position: absolute; */
    bottom: 0;
    display: flex;
    align-items: end;
    /* height: 100%; */
    /* right: 0; */
  }
  .ibg-banner-img img{
    object-fit: contain;
    object-position: center;
    height: 100%;
    width: 100%;
  }
  .ibg-banner-wrap .ibg-text{
    max-width: 537px;
    width: 100%;
    margin-bottom: 40px;
     font-family: 'Gilroy-Light';
  }
  .mx-1366 {
    width: 100%;
  }
  .are-you-worried-about{
    background-color: #090462;
    padding: 70px 0 140px;
  }
  .are-you-worried-about h2{
    font-family: 'Gilroy-SemiBold';
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 55px;
  }
  .ibg-story-img{
    max-width: 450px;
    max-height: 530px;
  }
  .ibg-story-img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
  }
  .ibg-worried-about-item{
    padding: 30px 37px;
    background: rgba(255, 255, 255, 0.15);
    border:1px solid #999999;
    /* backdrop-filter: blur(33.6077px); */
    border-radius: 25px;
  
  }
  .ibg-worried-about-item .ibg-text{
    font-family: 'Gilroy-Bold';
    margin-bottom: 0;
  }
  .ibg-worried-about-item svg{
    margin-bottom: 15px;
  }
  .ibg-worried-about-item:hover{
    background: #FFFFFF;
  
  }
  .ibg-worried-about-item:hover svg path{
    /* fill: linear-gradient(275.02deg, #450FC2 20.97%, #0F72E2 78.35%); */
    fill: #090462;
  }
  .ibg-worried-about-item:hover .ibg-text{
    color: #090462;
  
  }
  .ibg-collab-content p{
    font-family: 'Gilroy-Medium';
    font-size: 23px;
    max-width: 600px;
    width: 100%;
    margin-bottom:25px;
  }
  .ibg-collab-sec{
    background-color: #00000B;
    padding: 100px 0;
    background: url('../../images/new/image-build-grow/collabe-img.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .collab-call-wrap{
    background-color: #fff;
    padding: 60px 55px;
    border-radius: 30px;
    margin: auto;
    max-width: 595px;
  }
  .collab-call-wrap h3{
    font-family: 'Gilroy-ExtraBold';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    color: #090462;
  }
  .collab-call-wrap p{
    font-family: 'Gilroy-SemiBold';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #090462;
    margin-bottom: 25px;
  
  }
  /* .ibg-banner-wrap{
    padding-top:50px;
  } */
  .ibg-mobile-app{
    padding: 35px 0 100px;
    background-color: #090462;
  }
  .ibg-subhead{
    font-family: 'Gilroy-SemiBold';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.25;
    color: #FFFFFF;
    margin-bottom: 30px;
  }
  .ibg-mobile-app-head p{
    font-family: 'Gilroy-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    max-width: 617px;
    margin: auto;
    text-align: center;
  }
  .ibg-mob-app-service-item h5{
    font-family: 'Gilroy-SemiBold';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height:1.25;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 20px;
  }
  .ibg-mob-app-service-item .ibg-text{
    font-size: 16px;
    margin-bottom: 0;
    color: #d3d3d3;
    text-align: center;
  }
  .ibg-mob-app-service-item{
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(33.6077px);
    border-radius: 25px;
    padding: 29px 25px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .ibg-mob-app-service-item:hover{
    background-color:#fff;
  }
  .ibg-mob-app-service-item:hover .ibg-text,.ibg-mob-app-service-item:hover.ibg-mob-app-service-item h5{
    color: #090462;
  }
  .ibg-mob-app-service-item:hover svg path{
    fill: #090462;
    
  }
  .ibg-mob-app-service-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 417px;
  }
  .ibg-mobile-app-head{
    margin-bottom: 43px;
  }
  .ibg-mob-app-icon{
    margin-bottom: 35px;
    height: 106px;
    display: flex;
    align-items: end;
  }
  .ibg-tech-sec{
    padding: 60px 0 80px;
    /* background-color: #F5F5F5; */
  
  }
  .ibg-tech-sec h5{
    font-family: 'Gilroy-SemiBold';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.6;
    text-align: center;
    color: #707070;
    margin-bottom:22px;
  }
  .ibg-tech-sec .ibg-subhead{
    color: #090462;
    margin-bottom: 45px;
  }
  .ibg-tech-item{
    background: #FFFFFF;
    border: 1px solid #E1E7EE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 136px;
    width: 100%;
    height: 115px;
    margin-bottom: 20px;
  }
  .ibg-tech-wrap{
    margin: auto;
    max-width: 940px;
    width: 100%;
  }
  .ibg-process{
    background: linear-gradient(236.44deg, #090462 -7.97%, #1208C8 109.15%);
    padding: 90px 0 30px;
  }
  .ibg-process-steps{
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #999999;
    backdrop-filter: blur(33.6077px);
    border-radius: 25px;
    padding: 25px 38px;
    /* max-width: 353px; */
    width: 100%;
    margin-bottom: 60px;
    height: 240px;
  
  }
  .ibg-process-steps .ibg-text{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    
  }
  .ibg-process h5{
    font-family: 'Gilroy-Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom:10px;
  }
  .ibg-process-steps svg{
    margin-bottom: 15px;
  }
  .ibg-step-no{
    position: absolute;
    font-style: normal;
    font-weight: 700;
    font-size: 59px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.76);
    right: 2rem;
    top: 1rem;
  }
  .ibg-process .row [class*='col-']{
    padding:0 40px;
    margin: 0;
  
  }
  .ibg-process .ibg-subhead{
    margin-bottom: 50px;
  }
  .ibg-choose-content{
    background-color: #EEF9FF;
    padding: 53px;
    text-align: center;
    border-radius: 30px;
    height: 100%;
  }
  .ibg-choose-content img{
    margin-top: -9rem;
    margin-bottom: 20px;
  }
  .ibg-choose-content li{
    list-style-type:none;
    font-family: 'Gilroy-SemiBold';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height:1.4;
    text-align: center;
    color: #000000;
    border-bottom: 1px solid #AEAEAE;
    padding: 18px 0;
    
  }
  .ibg-choose-content ul{
    padding-left: 0;
    margin-bottom: 0;
  }
  .ibg-choose-content h5{
    font-family: 'Gilroy-SemiBold';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.2;
    text-align: center;
    color: #090462;
    margin-bottom: 0;
  
  }
  .ibg-why-choose{
    padding: 50px 0;
  }
  .ibg-why-choose .ibg-subhead{
    color: #090463;
    margin-bottom: 40px;
  }
  .ibg-choose-wrap{
    margin-top: 10rem;
      position: relative;
  }
  .ibg-choose-content ul li:last-child{
    border-bottom: 0;
    padding-bottom: 0;
  }
  .ibg-choose-content ul li i{
    color: #090462;
    font-size: 25px;
  }
  .ibg-success-story{
    background-color: #323232;
    padding: 64px 0;
  }
  .ibg-succes-head .ibg-text{
    font-family: 'Gilroy-Medium';
    font-size: 18px;
    line-height:1.6;
    text-align: center;
    max-width: 736px;
    margin: auto;
    margin-bottom: 50px;
  }
  /* .ibg-story-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
  } */
  .mx-1562{
      max-width: 1562px;
      margin: auto;
      padding:  0 15px;
      width: 100%;
  }
  .ibg-story-content{
    display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      margin-left: 46px;
  }
  .ibg-story-content h5{
    font-family: 'Gilroy-SemiBold';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height:1.5;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
  }
  .ibg-story-content .ibg-text{
    border-bottom: 1px solid #B0B0B0;
    padding-bottom: 20px;
  
  }
  .ibg-story-content p{
    font-family: 'Gilroy-Light';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 30px;
    max-width: 348px;
    width: 100%;
    
  
  }
  .ibg-story-wrap{
    width: 946px;
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(33.6077px);
    border-radius: 25px;
    padding: 18px 27px;
    margin-right: 20px;
    height:100%;
  
  }
  .ibg-icon-wrap{
    display: flex;
  }
  .ibg-user-count{
    margin-left: 15px;
  }
  .ibg-user-count span{
    font-family: 'Gilroy-SemiBold';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    color: #FFFFFF;
  }
  .ibg-user-count p{
    font-family: 'Gilroy-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height:1.5;
    display: flex;
    align-items: center;
    color: #FFFFFF;
  }
  .ibg-icon-sec{
    display: flex;
    justify-content: space-between;
    padding: 37px 0 0;
  }
  .ibg-success-container {
      display: flex;
      flex-wrap: nowrap;
  }
  #h_sucess {
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .highlights-our-hz{
    width: 100%;
    margin: auto;
    padding:  0 15px;
  }
  /*.custom-succes-btn{*/
  /*  background-color: #fff !important;*/
  /*  color: #000 !important;*/
  /*}*/
  .ibg-mobile-app .row [class*='col-']{
      padding:0 5px;
  }
  .ibg-collab-content .ibg-text:last-child{
      margin-bottom:0;
  }
  
.ibg-choose-wrap-mob{
  padding: 90px 0;
  border:  1px solid #D0D5DD;
  padding: 20px 15px;
  border-radius: 15px;
  margin-top:6rem;
}
.ibg-choose-mob-wrap{
  width: 100%;
  display: flex;
  align-items: center;
  margin: auto;
  flex-direction: column;
  text-align: center;
  margin-bottom: 15px;
}
.choose-mob-contenthead{
  background-color: #EEF9FF;
  text-align: center;
  border: 1px solid #E1E7EE;
  padding: 10px;
  width: 100%;
  font-family: 'Gilroy-Semibold';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height:1.4;
  color: #000000;
  margin-bottom:15px;
}
.ibg-choose-mob-wrap span .bi-x-circle-fill{
  color: red;
  font-size: 20px;

}
.ibg-choose-mob-wrap span .bi-check-circle-fill{
  color: green;
  font-size: 20px;

}
.choose-mob-text{
font-family: 'Gilroy-SemiBold';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 1.5;
color: #090462;
margin-bottom: 10px;
}
.ibg-choose-wrap-mob{
    display: none;
}
.mob-choose-img{
  display:none;
  justify-content: center;
  margin-top: -6rem;
  margin-bottom: 20px;
}
.imagine-header .hamburger{
    display:none !important;
}
.imagine-header {
    padding: calc(23px - 8px) 0 !important;
}
.text-bold .text-bold{
font-size:20px;
}
