.navbar-expand-lg {
    padding: 5px 0;
    transition: 0.3s ease-in;
}

header {
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    background: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.navbar-brand img {
    height: 150px;
    transition: 0.3s ease-in;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    padding: 0;
    font-size: 16px;
    transition: 0.3s ease-in;
    text-transform: uppercase;
}



.navbar-expand-lg .navbar-nav .nav-link:hover::before {
    left: 0;
    right: auto;
    width: 100%;
}

.sticky-header {
    background: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sticky-header .navbar-brand img {
    height: 100px;
}

.sticky-header .navbar-collapse {
    padding-top: 0;
}

.sticky-header .nav-wrap {
    padding: 0;
    border-radius: 0;
}

.sticky-header .navbar {
    align-items: center !important;
}

.sticky-header .navbar-brand {
    padding: 0;
}

main {
    /* padding-top: 110px; */
}

.get-intouch-box {
    padding: 30px;
    border-radius: 20px;
    background-color: var(--primary-color);

}

.get-intouch-box h4 {
    color: #fff;
    margin-block-end: 18px;
    font-size: 30px;
    line-height: 1.2;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.address-box i {
    background: #fff;
    color: var(--primary-color);
    font-size: 22px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.address-box h5 {
    color: var(--white);
    margin-bottom: 0;
}

.get-intouch-box h6 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 25px;
}

.get-intouch-box ul li a {
    display: flex;
    border-radius: 50% 50% 50% 50%;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-color: #FFFFFF;
}

.get-intouch-box ul li {
    flex-shrink: 0;
}

.address-box p {
    margin-bottom: 0;
    color: var(--white);
    font-weight: 400;
}

.address-box p a {
    color: var(--white);
    font-weight: 400;
}

.contact-form {
    background-image: url(../images/bg-contact.webp);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
}

.contact-form h4 {
    margin-block-end: 18px;
    font-size: 30px;
    line-height: 1.2;
    color: var(--primary-color);
}

.contact-form form input,
.contact-form form textarea {
    padding: 10px 16px 10px 16px;
    border: 1px solid #eee;
    border-radius: 50px;
}

.contact-form form textarea {
    border-radius: 10px;
}

.masonry {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    padding: 0;
    -moz-column-gap: 1.5em;
    -webkit-column-gap: 1.5em;
    column-gap: 1.5em;
    font-size: 0.85em;
    position: relative;
}

@media only screen and (max-width: 320px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 321px) and (max-width: 768px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media only screen and (min-width: 1201px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

.masonry .gallery-items {
    width: 100%;
    transition: 0.3s ease-in-out;
    /* box-shadow: 0 22px 30px -10px rgb(0 0 0 / 40%); */
    /* padding: 5px; */
    /* margin-top: 25px; */
    /* background: #fecb6a; */
    margin-bottom: 23px;
    position: relative;
    border: 5px solid var(--green3);
    border-radius: 30px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .masonry .gallery-items {
        margin-bottom: 1.5em;
    }
}

.gallery-text {
    position: absolute;
    top: 50%;
    display: flex;
    width: 70px;
    height: 70px;
    left: 50%;
    background: #ffffff;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in;
    transform: translate(-50%, -50%);
}

.gallery-text i {
    color: var(--primary-color);
    font-size: 20px;
}

.gallery-img-wrap:hover .gallery-text {
    opacity: 1;
    visibility: visible;
}

.value-box h3 {
    margin-top: 25px;
    /* font-weight: 700; */
}

.value-box p {
    margin-bottom: 0;
}

.bg-blue {
    background-image: url("../images/sm-bg-grid.png");
    background-repeat: repeat;
    background-attachment: scroll;
    background-size: auto auto;
    background-position: center center;
    background-color: #DFF3FF;
}

.bg-pattern {
    background-image: url("../images/sm-bg-grid.png");
    background-repeat: repeat;
    background-attachment: scroll;
    background-size: auto auto;
    background-position: center center;
}

.divider svg {
    height: 70px;
    transform: rotatex(180deg);
    width: 100%;
}

.divider svg path {
    fill: #eff7e6;
}

.divider {
    margin-bottom: -5px;
}

.why-us-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 2px solid var(--ac-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ac-color);
}

.why-us-boxes h3 {
    color: var(--ac-color);
    font-size: 20px;
}

.why-us-boxes {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.why-us-boxes p {
    margin-bottom: 0;
}

.why-images-1 {
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 6px solid var(--accent-color);
    overflow: hidden;
    flex-shrink: 0;
}

.why-images-2 {
    width: 35%;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--orange-color);
    overflow: hidden;
    flex-shrink: 0;
}

.why-images {
    grid-column-gap: 25px !important;
}

.why-images-1 img,
.why-images-2 img {
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #123d7d45;
    display: flex;
    justify-content: end;
    align-items: end;
    padding-bottom: 100px;
}

.banner-img {
    height: 100dvh;
    overflow: hidden;
}

.banner-img img {
    height: 100%;
    object-fit: cover;
}

.banner-text h2 {
    font-size: 6dvw;
    color: var(--white);
    filter: drop-shadow(0 0 0.75rem #011e496b);
    line-height: 1;
    margin-bottom: 0;
}

.banner-text p {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 0.75rem #00000094);
}

.navbar-collapse {
    padding-top: 25px;

}

.nav-wrap {
    padding: 5px 25px;
    padding-right: 5px;
    background: var(--white);
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.school-img {
    /* max-width: 200px;
    position: relative;
    -webkit-mask-image: url(../images/service2-mask1.png);
    mask-image: url(../images/service2-mask1.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
    margin: auto; */
    max-width: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    border: 6px solid var(--accent-color);
    z-index: 1;
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
}

.school-img img {
    height: 100%;
    object-fit: cover;
}

.school-box {
    text-align: center;
    padding: 0 25px;
}

.school-box h2 {
    margin-top: 10px;
    /* color: var(--primary-color); */
}

.school-box h4 {
    font-family: var(--paragraph-font);
    font-size: 14px;
    color: var(--accent-color);
    background: rgb(255 224 240);
    display: inline-block;
    margin: 0 auto;
    padding: 5px 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 700;
}

.school-box p {
    margin-bottom: 25px;
}

.waves {
    position: relative;
    width: 100%;
    height: 16vh;
    margin-bottom: -30px;
    min-height: 100px;
    max-height: 150px
}

.waves.no-animation .moving-waves>use {
    animation: none
}

.wave-rotate {
    transform: rotate(180deg)
}

.moving-waves>use {
    animation: f 10s cubic-bezier(.55, .5, .45, .5) infinite
}

.moving-waves>use:first-child {
    animation-delay: -2s;
    animation-duration: 11s
}

.moving-waves>use:nth-child(2) {
    animation-delay: -4s;
    animation-duration: 13s
}

.moving-waves>use:nth-child(3) {
    animation-delay: -3s;
    animation-duration: 15s
}

.moving-waves>use:nth-child(4) {
    animation-delay: -4s;
    animation-duration: 20s
}

.moving-waves>use:nth-child(5) {
    animation-delay: -4s;
    animation-duration: 25s
}

.moving-waves>use:nth-child(6) {
    animation-delay: -3s;
    animation-duration: 30s
}

@keyframes f {
    0% {
        transform: translate3d(-90px, 0, 0)
    }

    to {
        transform: translate3d(85px, 0, 0)
    }
}

.wave-wrapper {
    top: -100px;
}

.school-sec {
    padding-bottom: 170px;
    padding-top: 70px;
    padding-top: 70px;
}

.banner-swiper-wrapper {
    border-radius: 0 0 100px 100px;
    overflow: hidden;
}

.banner-area {
    background: var(--lightgrey);
}

.about-img {
    border-radius: 35px;
    border: 4px solid var(--white);
    overflow: hidden;
}

.about-img-wrapper {
    padding: 30px;
    background: var(--primary-color);
    border-radius: 43px;
}

.about-img::before {
    width: 93%;
    height: 93%;
    border-radius: 30px;
    border: 2px dashed var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    position: absolute;
}

.school-img-pattern img {
    width: 100%;
}

.school-img-pattern {
    /* position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%); */
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

.about-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    animation: upDown 2s ease-in-out infinite;
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        /* move up */
    }

    100% {
        transform: translateY(0);
        /* back down */
    }
}

.sprouts-evalutate-text {}

.sprouts-evalutate-img {
    margin: 0 auto;
    margin-bottom: 25px;
    text-align: center;
    width: 120px;
    height: 120px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 3px solid var(--orange-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;

}

.sprouts-evalutate-img img {
    width: 60px;
    transition: 0.3s ease-in;
}

.sprouts-evalutate-item:hover .sprouts-evalutate-img img {
    transform: rotateY(360deg);
}

.sprouts-evaluate-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-row-gap: 25px
}

.sprouts-evalutate-item:nth-child(4),
.sprouts-evalutate-item:last-child {
    flex-direction: row-reverse;
}

.sprouts-evalutate-item {
    width: 25%;
    text-align: center;
    padding: 0 50px;
    text-align: center;
    margin-top: 35px;
}

.sprouts-evalutate-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 22px;
}

.sprouts-evalutate-item p {
    font-size: 14px;
    margin-bottom: 0;
}

.bg-grey3 {
    background: #fbd4e8;
}

.date-celeb {
    position: absolute;
    bottom: 0;
    padding: 8px 25px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 0 8px 0 0;
}

.date-celeb .date {
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.date-celeb .month {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.news-text {
    padding: 25px;
    background: var(--white);
}

.news-card {
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    /* border: 2px solid var(--accent-color); */
}

.news-card h3 a {
    color: var(--primary-color);
}

.news-card h3 {
    margin-bottom: 15px;
    font-size: 30px;
}

.news-img {
    /* border-bottom: 2px solid var(--accent-color); */

}

.news-img a {
    height: 300px;
}

.news-img img {
    height: 100%;
    object-fit: cover;
}

.news-swiper {
    padding-bottom: 70px;
}

.news-swiper .swiper-pagination-bullet {
    background: var(--primary-color);
    width: 0.8rem;
    height: 0.8rem;
    transition: 0.7s all ease;
    border-radius: 2rem;
}

.school-logo {
    position: absolute;
    width: 50px;
    top: 25px;
    right: 25px;
}

.footer {
    position: relative;
    background-color: var(--primary-color);
    padding-top: 70px;
}




.footer-widget h3 {
    color: var(--orange-color);
    font-size: 1.4375rem;
    line-height: 1.6956521739;
    letter-spacing: -0.25px;
    margin-bottom: 20px;
}

.footer-widget ul {
    margin-bottom: 0;
    padding-left: 0;
}

.footer-widget ul li {
    list-style: none;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-widget ul li a {
    font-size: 0.9375rem;
    line-height: 1.2;
    color: var(--white);
}

.social-footer ul {
    display: flex;
    gap: 10px;
}

.social-footer ul li a {
    /* display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border: 1px solid #fff;
    border-radius: 100px; */
    border-radius: 50%;
    display: flex;
    width: 40px;
    background: #fff;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.social-footer ul li a svg {



    color: var(--accent-color);

}

.copy-footer {
    margin-top: 50px;
}

/* .social-footer ul li .social-fb svg,
.inner-footer .social-footer ul li a.social-fb {
    background: #1877F2
}

.social-footer ul li .social-yt svg,
.inner-footer .social-footer ul li a.social-yt {
    background: #FF0000
}

.social-footer ul li .social-insta svg,
.inner-footer .social-footer ul li a.social-insta {
    background: #833ab4;
    background: linear-gradient(to right,
            #833ab4,
            #fd1d1d,
            #fcb045);
} */

.inner-banner-text {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #123d7d45;
    display: flex;
    justify-content: end;
    align-items: end;
    padding-bottom: 100px;
}

.inner-banner {
    border-radius: 0 0 100px 100px;
    overflow: hidden;
    text-align: center;
}

.breadcrumb {
    justify-content: center;
    display: inline-flex !important;
    padding: 8px 25px;
    background: var(--white);
    border-radius: 100px;
}

.inner-banner h2 {
    font-size: 3dvw;
    color: var(--white);
    filter: drop-shadow(0 0 0.75rem #011e496b);
    margin-bottom: 15px;
}

.breadcrumb-item a {
    color: var(--black2);
    font-weight: 600;
}

.breadcrumb-item.active {
    color: var(--accent-color);
    font-weight: 600;
}

.mission-img {
    border: 6px solid var(--accent-color);
}

.cta-box {

    background-image: url(../images/bg-contact2.webp);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    border-radius: 35px;
    color: var(--white);
    background-color: var(--blue2);
    padding: 35px;
}

.cta-box .main-title {
    color: var(--white);
}

.cta-box .main-title span {
    color: var(--orange-color);
}

.why-images-1-1 {
    border: 6px solid var(--green2);
    width: 65%;
}

.mission-img {
    border-radius: 50%;
    max-width: 60%;
    margin: 0 auto;
}

.sprouts-evaluate-flex2 .sprouts-evalutate-img {
    position: relative;
    transform: none;
    border: none;
    border-radius: 0;
    background: transparent;
    left: unset;
    bottom: unset;
    margin-bottom: 35px;
}

.sprouts-evaluate-flex2 .sprouts-evalutate-img::before {
    content: '';
    position: absolute;
    border: 3px solid var(--orange-color);
    background: #ffffff;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
    border-radius: 10px;
}

.sprouts-evaluate-flex2 .sprouts-evalutate-img img {
    position: relative;
}

.bubble {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
    will-change: transform, opacity;
}

.floating-circle {
    width: 100px;
    /* height: 100px;
    border-radius: 50%; */
   animation: shapePluse 6s linear infinite;
    position: absolute;
}

.floating-circle1 {
    /* background: var(--orange-color); */
    top: -50px;
    left: 100px;
}

.floating-circle2 {
    /* background: var(--accent-color);
    width: 100px;
    height: 100px; */
   animation: shapePluse 6s linear infinite;
    position: absolute;
    right: 150px;
    top: -50px;
    z-index: 1;
}
@keyframes shapePluse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.why-us-box-wrap .why-us-boxes:first-child {
    --ac-color: var(--green2)
}

.why-us-box-wrap .why-us-boxes:last-child {
    --ac-color: var(--accent-color)
}

.why-us-box-wrap .why-us-boxes:nth-child(2) {
    --ac-color: var(--orange-color)
}

.footer-widget ul li a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-widget ul li a svg {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 8px;
    background: var(--blue);
}

.social-footer ul li a svg {
    background: transparent;
    width: auto;
    height: auto;
}

.top-icc {
    top: 0;
    right: 0;
}.floating-circle3{
    animation: rotateShape 10s linear infinite;
}@keyframes rotateShape {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}.floating-circle3{
       width: 50px;
    left: -25px;
    top: 25px;
}.whys-iss{
        width: 385px;
    right: 0;
    top: -55%;

}.floating-circle4{
        right: 100px;
    top: 50%;
    width: 120px;
}.about-pattern2{
    bottom: unset;top: 50%;right: 100px;
}.top-icc2{
    right: unset;left: 0;width: 350px;
}.divider2 svg {
    transform: none;
}.divider2 svg path {
    fill: #fbd4e8;
}.divider2 {
    margin-top: -5px;
}/* Wrapper */
.circle-wrapper {
  
}
.z-1{
    z-index: 1;
}
.circle-card {
   aspect-ratio: 1;
    border-radius: 50%;
    /* color: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    position: relative;    background: #fff0f8;
}

/* .circle-card:first-child {
    margin-right: -25px;
    z-index: 2;
} */
.circle-light {
  /* background: linear-gradient(31deg, var(--green) 0%, var(--green2) 50%, var(--green3) 100%); */
}

.circle-dark {
    /* background: linear-gradient(31deg, var(--blue) 0%, var(--blue2) 100%); */
}
.circle-light h2 {
  background: linear-gradient(31deg, var(--green) 0%, var(--green2) 50%, var(--green3) 100%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.circle-dark h2 {
    background: linear-gradient(31deg, var(--blue) 0%, var(--blue2) 100%);
      -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.circle-card h2 {
    font-weight: 500;
    /* color: #fff; */
    margin: 10px 0;font-size: 2.3rem;
}

.circle-card p {
    font-size: 14px;
    margin-bottom: 0;min-height: 65px;
}

.circle-card .theme-btn {
   margin-top:25px;
    font-size: 14px;padding: 10px 15px;
}.st-img{
        animation: upDown 2s ease-in-out infinite;
}.rs-logo{
   text-align: center;margin-bottom: 10px;
}.rs-logo img{
   width: 85px;
}.about-pattern-n {
    right: unset;
    left: 0;
    bottom: unset;
    top: 30%;
    width: 230px;
}.apply-form{
    padding: 35px;border-radius: 30px;    background: #eff7e6;
}.apply-form input, .apply-form select, .apply-form textarea{
    width: 100%;
    border: 1px solid #70707020;
    padding: 15px 25px;
    border-radius: 20px;
    appearance: none;
    position: relative;
}.apply-form label{
    color: var(--primary-color);font-weight: 600;
}.about-pattern-ns{
    width: 50px;    animation: rotateShape 10s linear infinite;
}.navbar-brand p {
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
}.sticky-header .navbar-brand p{
    color: var(--black2);
}.footer-logo{
    text-align: center;padding-right: 25px;
}.footer-logo img{
    width: 170px;margin-bottom: 15px;
}.line-bf{
    position: absolute;top: 0;left: 15%;
    height: 100%;
    width: 100%;
}.line-bf{
      height: 100%;
    width: 100%;object-fit: cover;
}.circle-card-wraps{
    padding: 20px;
}.circle-card-wraps .circle-card-bgs{
    position: absolute;width: 100%;top: 0;left: 0;    animation: rotateShape 50s linear infinite;
}.team-card {
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.team-card .team-img {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100% - 40px * 2);
  mask-size: contain;
  mask-repeat: no-repeat;
  z-index: 2;
}

.team-card .team-img img {
  width: 100%;
}


.team-card .team-info {
  border-radius: 30px;
  /* box-shadow: 0px 13px 16px 0px rgba(226, 222, 208, 0.07); */
  background-color: rgb(255, 240, 248);
  text-align: center;
  padding: 180px 40px 35px 40px;
  margin-top: -155px;
}
.team-card .team-title {
  color: var(--primary-color);
  margin-bottom: 0;font-size: 1.3rem;
}

.team-card .team-title:hover {
  color: var(--blue);
}.team-card .team-desig{
    color: var(--accent-color);
}
.conts{
        display: flex;color: #fff;
    gap: 16px;
}.conts svg{
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 8px;
    background: var(--blue);color: #fff;
}.footer-widget ul li.conts span a{
    display: inline-block;
}