@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --white-color: #ffffff;   
    --theme-color: #2B4742;   
    --grey-color: #E2DFD6;   
    --light-grey-color: #CACACA;   
    --dark-grey-color: #D9D9D9;   
    --orange-color: #F15929;   
    --light-orange-color: #EF7559;   
    --black-color: #000000; 
}
/* color setup */
.z-1{z-index: 1;}
.text-white{color:var(--white-color);}
.text-theme{color:var(--theme-color);}
.text-grey{color:var(--grey-color);}
.text-light-grey{color:var(--light-grey-color);}
.text-dark-grey{color:var(--dark-grey-color);}
.text-orange{color:var(--orange-color);}
.text-light-orange{color:var(--light-orange-color);}
.text-black{color:var(--black-color);}
.bg-white{background-color: var(--white-color);}
.bg-theme{background-color: var(--theme-color);}
.bg-grey{background-color: var(--grey-color);}
.bg-light-grey{background-color: var(--light-grey-color);}
.bg-dark-grey{background-color: var(--dark-grey-color);}
.bg-orange{background-color: var(--orange-color);}
.bg-light-orange{background-color: var(--light-orange-color);}
.bg-black{background-color: var(--black-color);}
/* comman css starts */
html{ 
    scroll-behavior: smooth;
    font-size: 62.5%;
}
body{
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.8rem;
    color: #3A3A3A;
    font-family: "Noto Sans", sans-serif;
}
.noto-sans{
    font-family: "Noto Sans", sans-serif;
}
.noto-serif{
    font-family: "Noto Serif", serif;
}
.fw-200{
    font-weight: 200;
}
.fw-300{
    font-weight: 300;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
h1,.h1 ,h2,.h2{
    font-size: 4.8rem;
    line-height: 5.2rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
}
h3,.h3{
    font-size: 3.0rem;
    line-height: 3.3rem;
    font-weight: 700;
    font-family: "Noto Serif", serif;
}
h4,.h4{
    font-size: 2.4rem;
    line-height: 2.7rem;
}
h5,.h5{
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: 500;
}
h6,.h6{
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 600;
}
.theme-btn{
    background-color: #0E9789;
    border: 1px solid #0E9789;
    color: var(--white-color);
    font-size: 1.8rem;
    line-height: 1.6rem;
    font-weight: 400;
    padding: 1.4rem;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    min-width: 26rem;
}
.theme-btn2{
    background-color: transparent;
    border: 1px solid var(--white-color);
}
.form-control{
    font-size: 1.8rem;
    line-height: 2.8rem;
    font-weight: 500;
    padding: 1.2rem 1.4rem;
    color: #575757;
    border: 2px solid var(--theme-color);
    border-radius: 0;
    background-color: var(--white-color);
}
:focus-visible ,.form-control:focus,.form-select:focus{
    outline: none;
    box-shadow: none;
    border-color: var(--theme-color);
}
.form-control::-webkit-input-placeholder { 
    color: var(--white-color);
}
.form-control::-moz-placeholder { 
    color: var(--white-color);
}
.form-control:-ms-input-placeholder { 
    color: var(--white-color);
}
.form-control:-moz-placeholder { 
    color: var(--white-color);
}
.bg-img{
    background-size: cover;
    background-repeat: no-repeat;
}
a{
    text-decoration: none;
}
/* comman css ends */
/* scrollbar css starts */ 
html,
body {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 5px;
    height: 7px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgb(198, 198, 198);
}
/* Different delays for natural motion */
.dot {
    width: 5px;
    height: 5px;
     position: absolute;
    top: 48px;
    left: 87px;
    border-radius: 50%;
    animation: floatMove 6s ease-in-out infinite alternate;
    animation-delay: 0s;
}
.dot.dot2 {
    width: 15px;
    height: 15px;
    top: 40%;
    left: 42%;
    animation-delay: 2s;
}
.dot.dot3 {
    width: 15px;
    height: 15px;
    top: auto;
    bottom: 55px;
    left: 77px;
    animation-delay: 4s;
}
.circle-section .dot.dot2 {
    left: 0;
    top: 35%;
}
.dot.small-dot2 {
    left: auto;
    right: 50px;
    animation-delay: 2.5s;
}
.dot.small-dot3 {
    top: 80px;
    left: auto;
    right: 250px;
    animation-delay: 1.5s;
}
@keyframes floatMove {
    0% {
        transform: translate(0, 0);
        scale: 0.7;
    }
    25% {
        transform: translate(20px, -15px);
        scale: 1.1;
    }
    50% {
        transform: translate(-25px, 20px);
        scale: 1.7;
    }
    75% {
        transform: translate(15px, 25px);
        scale: 0.8;
    }
    100% {
        transform: translate(-20px, -10px);
        scale: 1;
    }
}
/* scrollbar css ends */
/* header css starts */ 
a:hover {
    color: inherit;
    transition: all .2s linear;
}
p{
    margin-bottom: 1.5rem;
}
.top-header{
    padding: 4rem 0;
    transition: all .4s linear;
    position: absolute;
    z-index: 99;
}
.top-header .nav-item .nav-link{
   margin-left: 4rem;
   padding: 0;
   font-size: 1.9rem;
}
.top-header .nav-item .nav-link:hover{
    color: var(--theme-color);
}
.top-header .nav-item .menu-btn{
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--white-color);
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-top: 0.4rem;
}
.theme-btn:hover{
    background-color: var(--orange-color);
    border-color: var(--orange-color);
    color: var(--white-color);
}
.top-header .header-bg{
    z-index: 9;
    transition: all .4s linear;
    padding: 1.7rem 0;
}
/* .top-header.fixed{
    background-color: var(--white-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 0;
} */
.top-header .navbar-brand{
    width: 17rem;
}
.navbar-toggler:focus{
    box-shadow: none;
}
/* banner section  */
.banner-section {
    padding: 43.4rem 0 16.8rem;
    overflow: hidden;
    height: 90rem;
}
.banner-section:before {
    content: "";
    position: absolute;
    background: linear-gradient(180.98deg, rgba(217, 217, 217, 0) 0.84%, rgba(90, 120, 114, 0.5) 26.94%, rgba(62, 82, 78, 0.5) 53.04%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.banner-text{
    max-width: 53.8rem;
}
.banner-img {
    /* top: 3px;
    left: 56px; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover;
}
.banner-img.desktop-banner ,.banner-img.xl-banner , .banner-img.mobile-banner{
    display: none;
}
.carousel-indicators {
    margin-bottom: 16.8rem;
    margin-right: 0;
    justify-content: start;
    gap: 13px;
}
.carousel-indicators [data-bs-target] {
    width: 1rem;
    height: 1rem;
    background-color: #B8D9D6;
    border-radius: 50%;
    opacity: 1;
    margin: 0;
}
.carousel-indicators [data-bs-target].active {
    background-color: var(--orange-color);
}
/* connect section  */
.connect-section{
    padding: 9.7rem 0;
}
.score-section{
    padding: 16.8rem 0 21.3rem;
}
.quiz-dots-img{
    margin-top: 16.7rem;
}
.score-section .dot.dot2 {
    left: 35%;
    top: 47%;
}
/* circle section  */
.circle-section {
    padding: 13.8rem 0;
    background-color: #DFD7BE;
}
.circle-right {
    background-color: #F159291C;
    height: 62rem;
    width: 62rem;
}
.circle-diagram{
    height: 49rem;
    width: 49rem;
}
.circle-diagram .circle-item {
    position: absolute;
    width: 18.8rem;
    height: 18.8rem;
    padding: 20px;
}
.circle-diagram .circle-item1{
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.circle-diagram .circle-item2{
    top: 116px;
    right: 0px;
}
.circle-diagram .circle-item3{
    bottom: 0px;
    right: 56px;
}
.circle-diagram .circle-item4{
    bottom: 0px;
    left: 56px;
}
.circle-diagram .circle-item5{
    top: 116px;
    left: 0px;
}
.circle-diagram .circle-item:before {
    content: "";
    background: rgb(241 89 41 / 64%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
}
.circle-diagram .circle-item2:before {
    background: rgb(64 120 108 / 64%);
}
.circle-diagram .circle-item3:before {
    background: rgb(14 151 137 / 64%);
}
.circle-diagram .circle-item4:before {
    background: rgb(250 192 24 / 64%);
}
.circle-diagram .circle-item5:before {
    background: rgb(58 58 58 / 64%);
}

/* service section */
.service-section {
    padding: 9.7rem 0;
}
.service-slider.owl-carousel .owl-stage {
    display: flex;
}
.service-slider.owl-carousel .owl-stage .item {
    height: 100%;
}
.service-slider{
    padding-top: 6rem;
}
.single-service {
    background-color: #EEEEEE;
    border-radius: 28px;
    padding: 33px 25px 25px;
    width: 27.3rem;
    height: 100%;
}
.single-service .theme-btn {
    min-width: 100%;
    font-size: 1.6rem;
    line-height: 1;

}
.single-service .h5{
    font-weight: 300;
    font-size: 1.7rem;
    line-height: 2.2rem;
}
.single-service img{
   height: 160px;
   object-fit: contain; 
}
.custom-width-slide {
    width: 24rem;
}
.service-slider .owl-stage-outer {
    padding-left: calc(50vw - 600px);
}
.service-slider .owl-nav {
    position: absolute;
    top: -8rem;
    right: 0;
    padding-right:  calc(50vw - 600px);
    display: flex;
    gap: 3rem;
}
.owl-theme.service-slider .owl-nav [class*=owl-]:hover {
    background: transparent;
}

/* founder section  */
.founder-section{
    padding: 15.4rem 0 18.8rem;
}
.founder-left {
    width: 40.7rem;
    max-width: 100%;
}
.founder-left .founder-info {
    padding-top: 5.4rem;
}
.founder-right .dot.dot2 {
    left: 0;
}
.founder-section > .dot.dot2 {
    top: 90px;
    left: auto;
    right: 80px;
    animation-delay: 3.5s;
}
.collaboration-section{
    padding: 9rem 0;
    background-color: #DFD7BE;
}
.collaboration-section .dot.dot2 {
    left: 63%;
    top: 97px;
}
.collaboration-section .dot.small-dot1{
    top: 43%;
    left: 23%;
}
.collaboration-section .dot.small-dot2{
    top: 50%;
    left: 30%;
}
.collaboration-section .dot.small-dot3{
    top: 64%;
    left: 18%;
}
.collaboration-section .dot.small-dot4{
    top: 74%;
    left: 28%;
}
.collab-form {
    display: none;
}
.theme-form label {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 15px;
}
.theme-form .form-control {
    border: 1px solid #3A3A3A;
    border-radius: 50px;
    background-color: transparent;
    margin-bottom: 2.4rem;
}
.theme-form .theme-btn{
    padding: 1.9rem;
    width: 32.2rem;
    max-width: 100%;
}
.form-check .form-check-input {
    border: 2px solid #3A3A3A;
    background-color: transparent;
}
.form-check .form-check-input:focus {
    box-shadow: none;
}
.form-check-input:checked[type=checkbox] {
    background-image: url('data:image/svg+xml,<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 1.65667L12.355 0L4.66667 7.68833L1.65667 4.69L0 6.335L4.66667 10.99L14 1.65667Z" fill="%233A3A3A"/></svg>');
    background-size: 13px;
}
.collab-check input:hover, .collab-check label:hover{
    cursor: pointer;
}
.collab-form .theme-btn {
    margin-top: 4.5rem;
}
/* contact section  */
.contact-section{
    padding: 13.2rem 0 13.5rem;
}
.contact-section .dot.dot1 {
    top: 4px;
    animation-delay: 1.2s;
    left: 31rem;
}
.footer-links a{
    color: #3E524E;
    font-size: 2.2rem;
    line-height: 3rem;
}
/* why matters section  */
.why-matters-container{
    max-width: 1440px;
    margin: 0 auto;
}
.why-matters-container .container{
    min-height: 90rem;
}
.why-matters-container .container .row{
    flex: 1;
}
.min-h-100{
    min-height: 100%;
}
.why-matters-content{
    padding: 10rem 0;
}
.why-matters-section .dot.dot2 {
    left: 0;
    top: 45%;
}
.connect-animation{
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 71.5rem;
    background-image: url(../images/Vector.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ECEAE3;
    position: absolute;
}
.connect-animation .theme-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5.3rem;
}
.connect-animation .custom-animation {
    top: 100px;
    position: absolute;
}

.anim-dot-div .anim-dot {
    background-color: var(--orange-color);
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
}
.anim-dot-div {
    display: flex;
    align-items: center;
    top: 0;
    position: absolute;
    color: #5B5B5B;
}
.aos-animate ~ .anim-dot-div1{
    animation: animName 0.5s ease;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}
.aos-animate ~ .anim-dot-div2{
animation: animName2 0.5s ease;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
}
.aos-animate ~ .anim-dot-div3{
animation: animName3 0.5s ease;
    animation-fill-mode: forwards;
    animation-delay: 3s;
}
.aos-animate ~ .anim-dot-div4{
 animation: animName4 0.5s ease;
    animation-fill-mode: forwards;
    animation-delay: 4.5s;
}
.anim-dot-div1 {
    left: 250px;
    top: 33px;
    
}
@keyframes animName {
 0%{
    left: 250px;
    top: 33px;
   }
100%{
    left: 226px;
    top: 88px;
   }
}
.anim-dot-div2 {
    left: 297px;
    top: 232px;
    
}
.anim-dot-div2 .h5 {
    position: absolute;
    top: -46px;
    left: 20px;
}
@keyframes animName2 {
 0%{
    left: 297px;
    top: 232px;
   }
100%{
    left: 364px;
    top: 270px;
   }
}
.anim-dot-div3 {
    left: 232px;
    top: 270px;
    
}
.anim-dot-div3 .h5 {
    position: absolute;
    top: -65px;
    left: -64px;
     min-width: 153px;
}
@keyframes animName3 {
 0%{
    left: 232px;
    top: 270px;
   }
100%{
    left: 278px;
    top: 461px;
   }
}
.anim-dot-div4 {
    left: 598px;
    top: 460px;
   
}
.anim-dot-div4 .h5 {
    position: absolute;
    top: -52px;
    left: -119px;
    text-align: right;
}
@keyframes animName4 {
 0%{
    left: 598px;
    top: 460px;
   }
100%{
    left: 520px;
    top: 565px;
   }
}
.anim-dot-div .h5{
    opacity: 0;
}
.aos-animate ~ .anim-dot-div1 .h5{
    animation: showDiv 0s linear 1s forwards;
}
@keyframes showDiv {
  to {
    opacity: 1;
  }
}
.aos-animate ~ .anim-dot-div2 .h5{
    animation: showDiv2 0s linear 2.1s forwards;
}
@keyframes showDiv2 {
  to {
    opacity: 1;
  }
}
.aos-animate ~ .anim-dot-div3 .h5{
    animation: showDiv3 0s linear 3.6s forwards;
}
@keyframes showDiv3 {
  to {
    opacity: 1;
  }
}
.aos-animate ~ .anim-dot-div4 .h5{
    animation: showDiv4 0s linear 5.1s forwards;
}
@keyframes showDiv4 {
  to {
    opacity: 1;
  }
}
.wpcf7-not-valid-tip {
    color: #9D0000;
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: 600;
    position: absolute;
    bottom: -20px;
}
.theme-form .form-control.wpcf7-not-valid {
    border-color: #9D0000;
}
.contact-section .thankyou-msg {
    padding: 0 0 6.8rem;
}
.theme-form .row > p {
    margin: 0;
}
.wpcf7-spinner {
    margin: 10px 0;
    left: 50%;
    position: absolute;
    bottom: -25px;
}
.collab-form .col-12.text-center {
    position: relative;
}
.anim-dot-div{
    display: none;
}