/*--- 1. HOMEPAGE ---*/
/*--- 1.1 banner ---*/
/*--- 1.1 slider ---*/

/*--- banner ---*/
.home-banner-section {
    padding: 60px 0 90px 0;
    background: #F6FAFE;
}
p{
    /* text-justify: inter-ideograph !important;
    text-align: justify !important;*/
}
.home-banner-container h5 {
    max-width: 1100px;
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.3;
}

.home-banner-image {
    height: 480px;
}

.circle-arrow {
    height: 34px;
    width: 34px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    position: relative;
    margin-left: 10px;
    transition: 300ms;
}

.circle-arrow img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    width: auto;
}

.circle-arrow.two img {
    transform: translate(-50%, -50%) rotate(90deg);
}


.btn:hover .circle-arrow {
    border: 1px solid var(--light-blue);
    background-color: var(--light-blue);
    transform: translateX(17px) scale(1.15);
}

.btn:hover .circle-arrow.two {
    border: 1px solid var(--light-blue);
    background-color: var(--light-blue);
    transform: unset !important;
}

.home-banner-section .btn {
    height: 66px;
    width: 202px;
}

.parallax-image {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
}


/*--- slider ---*/
.home-slider-section {
    padding: 50px 0 100px 0;
    background: #F5F5F5;
}

.home-slider {
    position: relative;
}

.carousel-container {
    margin: 60px auto;
    width: 50vw;
    min-width: 300px;
    max-width: 780px;
    height: 500px;
    position: relative;
    perspective: 3500px;
}

.carousel {
    height: 100%;
    width: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s;
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 330px;
    width: 50vw;
    min-width: 300px;
    max-width: 780px;
    top: 50%;
    transition: 1000ms;
    /*border-radius: 24px;*/
}

.carousel .item img {
    object-fit: cover;
    margin: auto;
    width: 92%;
    border-radius: 24px;
    transition: 1000ms;
}

.carousel .item.active img {
    width: 95%;
}

.carousel .item.active {
    height: 380px;
}

.hidden {
    display: none;
}

:root {
    --z-trans: 920px;
}

.a {
    transform: rotateY(0deg) translateZ(var(--z-trans)) translateY(-50%);
}

.b {
    transform: rotateY(45deg) translateZ(var(--z-trans)) translateY(-50%);
}

.c {
    transform: rotateY(90deg) translateZ(var(--z-trans)) translateY(-50%);
}

.d {
    transform: rotateY(135deg) translateZ(var(--z-trans)) translateY(-50%);
}

.e {
    transform: rotateY(180deg) translateZ(var(--z-trans)) translateY(-50%);
}

.f {
    transform: rotateY(225deg) translateZ(var(--z-trans)) translateY(-50%);
}

.g {
    transform: rotateY(270deg) translateZ(var(--z-trans)) translateY(-50%);
}

.h {
    transform: rotateY(315deg) translateZ(var(--z-trans)) translateY(-50%);
}

.next, .prev {
    color: #444;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: var(--theme-blue);
    border-radius: 50%;
    height: 90px;
    width: 90px;
}

.nav-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
}

.next {
    right: 15%;
}

.prev {
    left: 15%;
}

/*--- home events/news section ---*/
.home-events-section {
    padding: 65px 0;
    background: #FAFAFA;
}

.home-events-section h6 {
    max-width: 550px;
}

.home-events-carousel-container {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
}

.home-events-section .btn {
    max-width: 252px;
    height: 66px;
}

.event-slide {
    padding: 45px 50px;
    background-position: center;
    background-size: cover;
}

.event-slide * {
    z-index: 2;
}

.event-slide .overlay {
    z-index: 1;
    background: linear-gradient(to top, #000000eb 5%, transparent 95%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.event-slide p {
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 400;
    margin-top: 13px;
}

.event-slide-clock {
    background-color: #ffffff1a;
    backdrop-filter: blur(12px) saturate(80%);
    border-radius: 20px;
    padding: 16px 22px;
    width: fit-content;
}

.event-slide-clock .title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

.event-slide-clock-element {
    margin-right: 33px;
}

.event-slide-clock-element .value {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
}

.event-slide-clock-element .unit {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    transform: scale(.91);
}

.home-events-carousel > *, .home-events-carousel > * > *, .home-events-carousel > * > * > * {
    height: 100%;
}

.home-events-carousel-nav {
    height: 56px;
    width: 56px;
    background-color: var(--light-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 3;
    cursor: pointer;
    transform: translateY(-50%);
}

.home-events-carousel-nav.left {
    left: 45px;
}

.home-events-carousel-nav.right {
    right: 45px;
}

.home-events-carousel-nav img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 14px;
    width: auto;
}

.home-events-carousel-nav.right img {
    transform: translate(-50%, -50%) rotate(180deg);
}

/*--- home media section ---*/
.home-media-section {
    padding: 50px 0;
    background: #F6FAFE;
}

.social-media-card {
    margin-bottom: 10px;
    transition: 400ms;
    cursor: pointer;
}

.social-media-posts {
    margin-top: 65px;
}

.social-media-card:not(last-child) {
    padding-right: 5%;
}

.social-media-card-caption {
    padding: 30px 40px 24px;
    background: #fff;
    border-radius: 0 0 18px 18px;
}

.social-media-icon {
    height: 34px;
    width: 34px;
    background: #ECF6FD;
    position: relative;
    border-radius: 50%;
    margin-right: 8px;
}

.social-media-icon > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-media-card-top {
    height: 300px;
    border-radius: 18px 18px 0 0;
    background-position: center;
    background-size: cover;
    padding: 22px 25px 0 25px;
}

.social-media-card-image img {
    border-radius: 14px 14px 0 0;

    transition: 1500ms;
}

.social-media-card-image {
    height: 100%;
    border-radius: 15px 15px 0 0;
    background: #fff;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
    overflow: hidden;
    width: 100%;
}

.social-media-card:hover .social-media-card-image img {
    transform: scale(1.1);
}

.social-media-card:hover {
    transform: translateY(-9px);
}


/*--- home commitment section ---*/
.home-commitment-section {
    background-color: #F5F5F5;
    padding: 50px 0;
}

.commitment-cards {
    margin-top: 65px;
}

.commitment-card {
    padding: 30px 40px;
    border-radius: 20px;
    cursor: pointer;
}

.commitment-card-type-1 {
    background-color: var(--theme-blue);
    transition: 450ms;
}

.commitment-card-type-1:hover {
    transform: translateY(-6px);
}

.commitment-card-type-2 {
    background-color: #F6FAFE;
    border: 1px solid #E1E1E1;
    cursor: default;
}

.commitment-link {
    height: 63px;
    width: 66px;
    background-color: #fff;
    position: relative;
    border-radius: 50%;
    transition: 300ms;
}

.commitment-link span {
    position: absolute;
    height: 23px;
    width: 23px;
    background-color: #81A9C6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: 300ms;
}

.commitment-link img {
    position: absolute;
    height: 18px;
    width: 18px;
    top: 38%;
    left: 62%;
    transform: translate(-50%, -50%);
    transition: 300ms;
}

.commitment-card:hover .commitment-link span {
    top: 45%;
    left: 55%;
}

.commitment-card:hover .commitment-link img {
    top: 55%;
    left: 45%;
}

.commitment-card-title {
    padding-bottom: 10px;
    border-bottom: 1px solid #81a9c64d;
    margin-bottom: 18px;
}

.commitment-card-type-2 .commitment-card-title {
    border-bottom: 1px solid #E1E1E1;
}

.commitment-card-type-1 p {
    color: #93A3B9;
    line-height: 1.3;
    margin-bottom: 23px;
}

.commitment-card-type-2 p {
    color: #93A3B9;
    line-height: 1.3;
    margin-bottom: 23px;
}

.commitment-card-image {
    height: 315px;
    width: 100%;
}

.commitment-card-image, .commitment-card-image img {
    border-radius: 20px;
}


/*--- home accreditations section ---*/
.home-accreditations-section {
    padding: 50px 0;
    background-color: #FAFAFA;
}

.company-rating-element .rating {
    font-size: 58px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    color: var(--light-blue);
    margin-bottom: 5px;
}

.company-rating-element img {
    height: 25px;
    width: auto;
    margin-bottom: 5px;
}

.company-rating-element .rating-text {
    font-size: 14px;
    text-align: center;
    color: #868686;
    font-weight: 400;
}

.award-element {
    margin: 35px 0;
    transition: 300ms;
    cursor: pointer;
}

.award-element:hover {
    transform: scale(1.06);
}

.award-element-image {
    height: 192px;
    width: 192px;
    padding: 31px 30px;
    border-radius: 20px;
}

.award-element-caption {
    max-width: 300px;
    margin-top: 23px;
}

/*--- home virtual tour ---*/
.home-virtual-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.virtual-container {
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    width: 100%;
    padding: 20px;
    border-radius: 30px;
    background: #F6FAFE;
    margin-top: 63px;
    position: relative;
}

.virtual-slider-item-image {
    height: 100%;
    width: 100%;
    border-radius: 12px;
}

.virtual-slider-item-image img {
    border-radius: 12px;
}

.virtual-carousel, .virtual-carousel * {
    height: 100%;
}

.virtual-carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.virtual-carousel-nav-btn {
    background-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 58px;
    padding: 8px;
}

.virtual-carousel-nav-btn > .angle-container {
    background-color: #2498EA;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    color: #fff;
}

.virtual-carousel-nav-element {
    background-color: #fff;
    margin-inline: 20px;
    border-radius: 40px;
    height: 58px;
    width: 273px;
    font-size: 14px;
}

/*--- home student section ---*/
.home-student-section {
    background-color: #F6FAFE;
    padding: 80px 0;
}

.home-testimonial-element {
    background: #fff;
    border-radius: 24px;
    padding: 38px 26px;
}

.home-testimonial-carousel-nav {
    position: absolute;
    top: 50%;

    height: 57px;
    width: 60px;
    background: var(--theme-blue);
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
}

.home-testimonial-carousel-nav.left {
    left: 0;
    transform: translate(-50%, -50%);
}

.home-testimonial-carousel-nav.right {
    right: 0;
    transform: translate(50%, -50%);
}

.home-testimonial-carousel-nav img {
    height: 16px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-testimonial-carousel-nav.right img {
    transform: translate(-50%, -50%) rotate(180deg);
}

.home-testimonial-image {
    height: 313px;
    width: 100%;
    border-radius: 24px;
}

.home-testimonial-image img {
    border-radius: 24px;
}

.home-testimonial-caption h6 {
    line-height: 1.3;
    margin-bottom: 26px;
    font-size: 22px;
    color: #93A3B9;
    max-height: 200px;
    overflow-y: scroll;
}

.change-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.change-scrollbar::-webkit-scrollbar-track {
    background: #F7F7F7;
    border-radius: 20px;
}

.change-scrollbar::-webkit-scrollbar-thumb {
    background: #2498EA;
    border-radius: 20px;
}

.change-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #2498EA90;
}

@media screen and (max-width: 700px) {
    .home-testimonial-caption h6 {
        font-size: 18px;
        margin-top: 15px;
    }

    .home-testimonial-carousel-nav.left {
        transform: translate(0%, -50%);
    }

    .home-testimonial-carousel-nav.right {
        transform: translate(0%, -50%);
    }

}

.home-testimonial-author-image {
    height: 53px;
    width: 53px;
    border-radius: 50%;
    margin-right: 10px;
}

.home-testimonial-author-image img {
    border-radius: 50%;
}

.home-testimonial-author-name h4 {
    font-size: 24px;
}

.home-testimonials-carousel {
    margin-top: 65px;
}

/*--- CONTACT SECTION ---*/
.contact-section {
    padding: 30px 0;
}

.contact-form-container {
    background: #fff;
    border-radius: 24px;
    padding: 32px 38px;
    max-width: 760px;
    margin-left: auto;
    z-index: 3;
    position: relative;
}

.contact-form-container * {
    z-index: 3;
}

.contact-form {
    margin-top: 22px;
}

.input-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.input-group input, .input-group textarea {
    height: 50px;
    width: 100%;
    border: 2px solid #F0F2F4;
    border-radius: 18px 18px 18px 18px !important;
    padding: 15px 17px;
    font-size: 14px;
    color: #667085;
    transition: 300ms;
}

.input-group textarea {
    height: 120px;
}

.input-group input:focus, .input-group textarea:focus {
    outline: unset;
    border: 2px solid var(--light-blue);
}

.input-group input::placeholder, .input-group textarea::placeholder {
    color: #96A2AF;
}

.b-inherit {
    border-radius: inherit !important;
}

.input-group label {
    color: #344054;
    font-size: 14px;
    margin-bottom: 6px;
}

.submit-btn {
    width: 100%;
    border-radius: 18px;
    margin-top: 32px;
}

.contact-section h1 {
    line-height: 1.3;
}

.contact-form-container > h6 {
    margin-bottom: 14px;
}

.contact-form-container > p {
    line-height: 1.3;
}

/*--- faq section ---*/
.faq-section {
    padding: 110px 0;
    background: #F5F5F5;
}

.faq-element {
    width: 100%;
    border-radius: 18px;
    border: 1px solid #e5e5e5;
    background: #F5F5F5;
    transition: 300ms;
    margin-bottom: 16px;
}

.faq-question {
    height: 90px;
    padding: 0 30px;
    cursor: pointer;
}

.faq-question h6 {
    color: #101828;
    font-size: 18px;
}

.faq-container {
    margin-top: 60px;
}

.faq-question img {
    height: 7px;
    width: auto;
}

.faq-element.active {
    background: #F6FAFE;
}

.faq-element.active .faq-angle {
    transform: rotate(180deg);
}

.faq-answer {
    height: 0;
    transition: 300ms;
    overflow: hidden;
}

.faq-answer > div {
    padding: 0 30px 30px 30px;
}

.faq-image {
    max-height: 460px;
    width: 100%;
    border-radius: 20px;
}

.faq-image img {
    max-height: 460px;
    border-radius: 20px;
}

/*-- schools section ---*/
.our-schools-container {
    background-position: center;
    background-size: cover;
    border-radius: 33px;
    padding: 64px 0 195px 0;
}

.our-schools-container > h1 {
    margin: 0 auto 20px auto;
}

.our-schools-container > p {
    line-height: 1.3;
}

.our-schools-element {
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
}

.our-schools-image {
    height: 125px;
    border-radius: 16px;
    width: 100%;
    overflow: hidden;
}

.our-schools-image img {
    border-radius: 16px;
    transition: 800ms;
}

.our-schools-element:hover .our-schools-image img {
    transform: scale(1.1);
}

.our-schools-title {
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    padding: 23px 0;
}

.our-schools-btn {
    width: 100%;
    height: 48px;
}

.our-schools-box {
    position: relative;
    top: -130px;
    max-width: 1200px;
    margin: auto !important;
}

@media screen and (max-width: 700px) {
    .carousel-container, .item, .carousel .item.active {
        height: 250px;
    }

    .next, .prev {
        height: 75px;
        width: 75px;
    }

    .home-events-carousel-container {
        width: 100%;
        position: relative;
        margin-top: 20px;
        height: 700px;
    }

    .event-slide {
        padding: 15px 25px;
    }

    .home-events-carousel-nav.left {
        left: 25px;
    }

    .home-events-carousel-nav.right {
        right: 25px;
    }

    .commitment-card-type-2 {
        margin-top: 20px;
    }

    .virtual-container {
        min-height: unset;
        max-height: unset;
        height: 40vh;
    }

    .our-schools-container {
        padding: 64px 20px 195px 20px;
    }

    .our-schools-element {
        padding: 14px;
        width: fit-content;
        margin: 20px auto;
    }

    .commitment-link {
        height: 50px;
        width: 78px;
    }

    .our-schools-title {
        padding: 18px 0;
    }

    .footer-logo {
        height: 66px;
    }

    .footer-list ul {
        padding: 0 !important;
        width: 50%;
        margin-top: 40px !important;
    }

    .w-sm-100 {
        width: 100% !important;
    }
}

@media screen and (max-width: 900px) {
    .mission-card {
        width: 100%;
    }
}

.about-cards-section {
    background-color: var(--theme-blue);
    padding: 50px 0 70px 0;
    background-blend-mode: color;
    margin-top: 230px;
}

.about-cards-image-box {
    height: 340px;
    position: relative;
}

.about-cards-image {
    position: absolute;
    top: 0;
    height: 600px;
    width: 100%;
    transform: translateY(-50%);
}

.about-cards-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 103%;
    height: 106%;
    backdrop-filter: blur(5px);
    background-color: #0A426A17;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-cards-image img, .story-block {
    z-index: 2;
}

.about-cards-image, .about-cards-image * {
    border-radius: 18px;
}

/*--- COMMITMENT PAGE ---*/
.commitment-head-section {
    padding: 80px 0;
    background-color: #fff;
}

.commitment-banner-image {
    height: 573px;
}

.commitment-section-1 {
    background: #fff;
    padding: 50px 0;
}

.commitment-section-1-image {
    height: 612px;
}

.career-counselling-section {
    background: #F6FAFE;
    padding: 50px 0;
}

.career-counselling-image {
    border-radius: 24px;
    height: 100%;
}

.career-counselling-image img {
    border-radius: 24px;
}

.check-list-element {
    background: #fff;
    border-radius: 12px;
    padding: 14px 12px;
    margin-bottom: 12px;
}

.check-list-element img {
    height: 22px;
    width: 22px;
    margin-right: 10px;
}

.check-list-element h6 {
    font-size: 20px;
}

.col-sm-6:has(.inclusion-element) {
    margin-bottom: 20px;
}

.inclusion-element {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 24px;
    padding: 28px 18px;
    height: 100%;
}

.inclusion-element:hover {
    background: #F6FAFE;

}

.inclusion-element img {
    height: 41px;
    width: 41px;
}

.commitment-inclusion-section {
    padding: 90px 0;
    background: #fff;
}

.commitment-facilities-section {
    padding: 60px 0 0 0;
    background: #FAFAFA;
}

.commitment-dropdowns-section {
    padding: 50px 0;
    background-color: #fff;
}

.health-dropdown-container {
    width: 100%;
    margin-top: 50px;
}

.health-dropdown {
    width: 100%;
    border-radius: 24px;
    padding: 26px 24px;
    transition: 300ms;
    margin-bottom: 20px;
    cursor: pointer;
}

.health-dropdown-title i {
    color: #000;
    font-size: 22px;
}

.health-dropdown-title h3 {
    font-size: 30px;
    color: #888888;
    margin-bottom: 0;
    font-weight: 500;
}

.health-dropdown-desc {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.health-dropdown-desc {
    height: 0;
    transition: 300ms;
}

.health-dropdown-desc > div {
    font-size: 18px;
    font-weight: 400 !important;
}

.health-dropdown.active .health-dropdown-desc {
    margin-top: 17px;
    opacity: 1;
    visibility: visible;
}

.health-dropdown.active {
    background: var(--light-blue);
}

.health-dropdown.active i {
    transform: rotate(180deg) translateY(25%);
}

.health-dropdown.active * {
    color: #fff !important;
}

.facility-item {
    padding: 40px;
    height: 700px;
    overflow: hidden;
    width: 102%;
}

.facility-item-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105%;
    height: 105%;
    transform: translate(-50%, -50%);
    z-index: 1;
    overflow: hidden;
}

.facility-item .overlay {
    background: linear-gradient(to top, #000000eb 5%, transparent 95%);
    height: 110%;
    width: 110%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.facility-item-caption {
    z-index: 3;
    position: relative;
}

.facility-item-image img {
    transition: 900ms;
}

.facility-item:hover .facility-item-image img {
    transform: scale(1.1);
}

.student-head-section {
    background-color: var(--theme-blue);
    padding: 80px 0;
}

.student-head-section * {
    z-index: 1;
    position: relative;
}

.student-head-section .bg-image {
    opacity: .3;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.student-head-section p {
    line-height: 1.3;
    max-width: 900px;
}

.student-head-section h1 {
    max-width: 900px;
}

.student-head-banner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 28vw;
}

.student-section-1 {
    padding: 70px 0;
}

.student-element {
    margin-bottom: 40px;
}

.student-element-image {
    height: 300px;
    border-radius: 20px;
    background: #f3f9fc;
}

.student-element-image img {
    object-fit: contain !important;
    height: 100%;
    position: relative;
    bottom: 0;
}

.student-element-image-bg {
    background: #F3F9FC;
}

.student-section-1 {
    background-color: #FAFAFA;
    padding: 80px 0;
}

.student-element-caption {
    padding-top: 18px;
}

.student-section-2 {
    padding: 80px 0;
    background: #F6FAFE;
}

.student-section-3 {
    padding: 50px 0;
    background: #fff;
}

.student-section-4 {
    padding: 50px 0;
    background: #FAFAFA;
}

/*--- Admission page ---*/
.admission-head-section {
    padding: 80px 0 260px 0;
    background: #F6FAFE;
}

.admission-script-caption {
    background: #fff;
    border-radius: 15px 15px 0 0;
    padding: 24px 26px;
}

.admission-script-caption p {
}

.admission-script-image {
    height: 259px;
    width: 100%;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.admission-script-image img {
    border-radius: 0 0 15px 15px;
    transition: 900ms;
}

.admission-script:hover img {
    transform: scale(1.1);
}

.admission-section-1 {
    background: #fff;
}

.admission-info-element {
    background: #F6FAFE;
    border-radius: 12px 0 0 12px;
    width: 50%;
    padding: 20px 10px 30px 10px;
}

.admission-info-element.two {
    border-radius: 0 12px 12px 0;
    border-left: 1px solid #CBDCD1;
}

.admission-info-image {
    height: 246px;
    border-radius: 24px;
    overflow: hidden;
    max-width: 500px;
    margin: auto;
}

.admission-info-image img {
    border-radius: 24px;
    transition: 1200ms;
}

.admission-info-element:hover .admission-info-image img {
    transform: scale(1.09);
}

.admission-section-3 {
    background: #fff;
    padding: 50px 0;
}

.admission-section-5 {
    background: #fff;
    padding: 92px 0;
}

.admission-section-banner {
    height: 70vh;
    width: 100%;
    position: relative;
    border-radius: 24px;
}

.admission-section-banner > div {
    border-radius: 24px;
}

.contact-element {
    background: #F6FAFE;
    border-radius: 24px;
    padding: 25px;
}

.contact-element-icon {
    height: 50px;
    width: 50px;
    background: var(--light-blue);
    position: relative;
    border-radius: 50%;
    margin-bottom: 16px;
    transition: 300ms;
}

.contact-element-icon > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
}

.contact-element:hover .contact-element-icon {
    background: var(--theme-blue);
    transform: scale(1.09);
}

.admission-contact-form {
    padding: 60px 0;
    background: #F6FAFE;
}

.admission-contact-form-image {
    height: 100%;
    position: relative;
    border-radius: 24px;
}

.admission-contact-form-image .parallax-image {
    border-radius: 24px;
}

.admission-contact-form input, .admission-contact-form textarea {
    background: #fff;
    border: 2px solid transparent;
}

.admission-section-2 {
    padding: 50px 0;
    background: #fff;
}

.admission-request-section {
    padding: 52px 0;
    background: var(--theme-blue);
}

.admission-request-section .head-text {
    max-width: 925px;
    line-height: 1.3;
    color: #e8e8e8;
    margin-bottom: 28px;
}

.request-form label {
    color: #fff;
}

.admission-contact-form .submit-btn {
    border-radius: 50px;
}

.admission-contact-form .submit-btn:hover {
    background-color: var(--light-blue) !important;
    border: 1px solid var(--light-blue);
}


.request-form input {
    background: #3b6685;
    color: #fff;
    border: unset;
    border-radius: 50px 50px 50px 50px !important;
}

.request-form input::placeholder {
    color: #ffffff90;
}

.newsletter-section {
    background: #fff;
    padding: 50px 0 40px 0;
}

.newsletter-icon {
    height: 80px;
    width: 80px;
    margin-bottom: 12px;
}

.coming-soon-section {
    height: 560px;
    background-color: #F6FAFE;
}

.coming-soon-image {
    height: 450px;
    width: 55%;
    border-radius: 24px 0 0 24px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.commitment-section-4 {
    padding: 60px 0;
}

.commitment-card-element {
    background-color: #e8f3fa;
    padding: 28px 32px 28px 32px;
    border-radius: 24px;
    height: 100%;
}

.col-sm-6:has(.commitment-card-element) {
    margin-bottom: 50px;
}

.commitment-card-element h5 {
    font-size: 24px;
}

.commitment-card-element h6 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.commitment-card-element.different {
    background: transparent;
    border: 1px solid #e8f3fa;
}

.student-hub {
    padding: 50px 0;
    background: #fff;
}

.student-hub-image {
    height: 100%;
    width: 100%;
    border-radius: 24px;
}

.student-hub-image img {
    border-radius: 24px;
}

.nav-active {
    font-weight: 700 !important;
}

.request-btn {
    border-radius: 50px;
    padding: 18px 0;
    height: 60px;
}

.request-btn span {
    transition: 300ms;
}

.request-btn:hover {
    background-color: var(--light-blue) !important;
    border-radius: 20px;
}

.request-btn:hover span {
    color: white !important;
}

.privacy-input-label {
    color: #667085;
    font-weight: 400;
    font-size: 15px;
}

.checkbox-input {
    height: 16px;
    width: 16px;
    margin-right: 8px;
}

.privacy-input-label a {
    font-weight: 600;
    color: #667085;
    text-decoration: underline;
}

/* STUDENT LIFE PAGE */
.student-life-section-1 {
    padding: 50px 0;
}

.student-life-element {
    padding: 20px 25px;
    border-radius: 24px;
    background-color: #F6FAFE;
    margin-bottom: 20px;
}

.student-life-element-img {
    height: 50px;
    width: auto;
    margin-right: 14px;
}

.student-life-element-text {
    color: #4D4D4D;
}

.student-life-section-2 {
    background-color: #024B76;
    padding: 50px 0;
}

.student-life-section-3 {
    padding: 50px 0;
}

.student-life-element-2-img {
    height: 280px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}

.student-life-element-2-img img {
    transition: 900ms;
}

.student-life-element-2:hover img {
    transform: scale(1.07);
}

.student-life-section-4 {
    padding: 50px 0;
}

/*ABOUT PAGE */
.aboutpage-leader-card {
    padding: 48px 20px;
    background: #c5e2f73b;
    border-radius: 24px;
    height: 100%;
}

.about-leaders-section .col-sm-6 {
    margin-bottom: 20px;
}

.about-leaders-section {
    padding: 70px 0 160px 0;
    background-color: #fff;
}

.aboutpage-leader-card h4 {
    font-weight: 800 !important;
}

.aboutpage-leader-card p {
    font-style: italic;
    color: var(--light-blue);
    margin-top: 10px;
}


/* CURRICULUM PAGE */
.curriculum-section-1 {
    padding: 50px 0;
}

/* LANDING PAGE */
.landing-btn {
    border-radius: unset;
    font-weight: 700;
    min-width: 240px;
    height: 60px;
    background: linear-gradient(to left, var(--theme-blue) 50%, var(--light-blue) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: unset;
    font-size: 18px;
}

.landing-btn:hover {
    background-position: left bottom;
    color: #fff;
    box-shadow: 0 0 18px 0 #d4d4d4;
}

.landing-btn img {
    height: 15px;
    margin-left: 22px;
    width: auto;
    transition: 300ms;
}

.landing-btn:hover img {
    transform: translateX(10px);
}

.landing-top-section {
    background: #fff;
    padding: 40px 0;
}

.landing-banner-section {
    height: 88vh;
    width: 100%;
    overflow: hidden;
}

.landing-banner-image, .landing-carousel-img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 300ms;
}

.landing-banner-image {
    opacity: 0;
    visibility: hidden;
}

.landing-banner-image.active {
    visibility: visible;
    opacity: 1;
}

.landing-banner-section .overlay, .landing-carousel-item .overlay {
    background: linear-gradient(to top, #5CADD630 5%, transparent 95%);
    position: absolute;
    top: 0;
    left: 0;
    height: 105%;
    width: 105%;
    z-index: 1;
}

.landing-carousel-item {
    height: 210px;
    min-width: 370px;
    position: relative;
    overflow: hidden;
}

.landing-carousel-text {
    position: absolute;
    bottom: 10px;
    left: 14px;
    width: 90%;
    z-index: 1;
}

.landing-banner-carousel-container {
    position: absolute;
    bottom: 36px;
    right: 0;
    z-index: 3;
    width: 36%;
    min-width: 430px;
}

.slide-progress {
    width: 0;
    max-width: 100%;
    height: 4px;
    background: #2498EA;
    z-index: 3;
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
}

#active-item .slide-progress {
    display: block;
}

.landing-carousel-nav {
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    width: 84px;
    height: 81px;
    cursor: pointer;
    transition: 200ms;
}

.landing-line {
    height: 1px;
    background: #fff;
    width: 82px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -100px;
    z-index: 1;
}

.landing-carousel-nav:hover {
    transform: scale(1.06);
}

.landing-banner-title {
    position: absolute;
    bottom: 100px;
    left: 100px;
    z-index: 4;

}

.landing-banner-title h4 {
    visibility: hidden;
    opacity: 0;
    transition: 300ms;
    display: none;
}

.landing-banner-title h4.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.landing-section-2 {
    padding: 80px 0;
    background: #fff;
}

.fancy-card {
    background: #F6FAFE;
    border: 1px solid #E1E1E1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17%;
    position: relative;
    padding: 0 0;
    transition: background 00ms, width 700ms, height 700ms;
    cursor: pointer;
}

.fancy-card-main-title {
    transform: rotate(-90deg);
    text-align: center;
    font-size: 38px;
    color: #818D9A;
    width: max-content;
    font-weight: 700;
    position: absolute;
    z-index: 3;
    max-width: 280px;
}

.fancy-card.active {
    background: var(--theme-blue);
    width: 49%;
    padding: 0px 45px;
    transition: 600ms;
    border: unset;
}

.fancy-card.active .fancy-card-main-title {
    visibility: hidden;
    opacity: 0;
}

.fancy-card-content {
    visibility: hidden;
    opacity: 0;
    transition: 50ms;
    transform: translateY(20px);

}

.fancy-card-content.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: 300ms;
}

.fancy-card-content img {
    padding-right: 20px;
}

.fancy-card-text {
    height: 180px;
    overflow: hidden;
    transition: 200ms;
}

.fancy-card-content h2 {
    font-size: 38px !important;
    margin-bottom: 15px !important;
}

.fancy-card-read-more {
    color: var(--light-blue);
    font-size: 17px;
    font-weight: 400 !important;
    margin-top: 10px;
    cursor: pointer;
}

.landing-card {
    padding: 20px 15px;
    border: 1px solid #ffffff40;
}

.landing-card h5 {
    font-size: 23px !important;
}

.landing-card img {
    height: 50px;
    width: 50px;
}

.landing-card-container {
    margin-top: 35px;
}

.trans-3 {
    transition: 300ms;
}

.landing-ceo-section {
    padding: 130px 0;
}

.sticky-column {
    position: sticky;
    top: 20%;
    height: fit-content;
}

.landing-ceo-image {
    height: 100%;
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    background: var(--light-blue);
    position: sticky;
    top: 0;
    overflow: hidden;
}

.landing-events-slider {
    right: unset;
    left: 0;
}

.landing-banner-caption {
    margin-right: 1rem !important;
}

.school-address img {
    height: 17px;
    width: auto;
}

.school-address {
    width: 100%;
    justify-content: start;
}

.school-address p {
    font-size: 9px;
    line-height: 1.3;
    transform: scale(0.9);
}

.landing-carousel-indication {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-140%);
}

.landing-schools {
    max-width: unset;
    top: -180px;
}

.floating-element-1 {
    position: absolute;
    top: -25px;
    right: 0;
    height: 50px;
    width: auto;
}

.landing-ceo-image img {
    position: absolute;
    height: auto;
    width: 100%;
    top: 0;
}

.landing-ceo-title {
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 11px 18px;
}


.footer-address {
    max-width: 400px;
}

.landing-schools-section {
    padding-top: 120px;
    background-color: #F6FAFE;
}

.map-section {
    top: -80px;
    background-color: #F6FAFE;
    overflow: visible;
}

.map-fill-space {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #F6FAFE;
    transform: translateY(100%);
}

@media screen and (max-width: 600px) {
    .landing-banner-section {
        height: 47vh;
        background: #fff;
    }

    .landing-banner-image {
        height: 280px;
        top: 0;
        transform: translate(-50%, 0);
    }

    .landing-banner-section .overlay {
        height: 280px;
    }

    .landing-banner-carousel-container {
        bottom: 5%;
        right: -19%;
    }

    .landing-carousel-item {
        height: 152px;
        width: 293px;
        min-width: unset;
    }

    .landing-banner-title {
        display: none !important;
    }

    .fancy-card {
        width: 100% !important;
        height: 150px;
    }

    .fancy-card-content h2 {
        font-size: 26px !important;
        margin-top: 20px;
    }


    .fancy-card-main-title {
        font-size: 25px;
        transform: unset !important;
    }

    .fancy-card-content img {
        padding: 0;
    }

    .fancy-card.active {
        padding: 35px 20px;
        height: auto;
    }

    .landing-card-section .home-events-carousel-container {
        height: 300px;
    }

    .landing-card-section {
        padding-bottom: 0;
    }

    .landing-schools .col {
        width: 50%;
        flex: unset;
        padding-inline: 10px;
    }

    .sticky-column {
        position: relative;
        top: 0 !important;
        margin-bottom: 70px;
        margin-top: 20px;
    }

    .landing-ceo-section.section-two {
        padding-top: 0;
    }


    .landing-btn {
        font-size: 16px;
    }

    .landing-btn img {
        display: none;
    }

    .nav-logo {
        height: 65px !important;
    }

    .floating-element-1 {
        top: -38px;
        height: 34px;
    }

    .reverse-sm {
        flex-direction: column-reverse;
    }

    .our-schools-image {
        height: 103px;
    }

    .map-section .container {
        padding: 0;
    }

    .map-section #contact-map {
        border-radius: unset !important;
    }

    .map-section {
        top: -110px;
    }

    .map-fill-space {
        height: 110px;
    }
}

/* ALUMNI PAGE */
.alumni-top-image {
    height: 570px;
    width: 100%;
    border-radius: 24px;
    margin-top: 50px;
}

.alumni-top-image img {
    border-radius: inherit;
}

.alumni-head-section {
    padding-top: 100px;
}

.alumni-section-1 {
    padding: 50px 0;
}

.student-story-img {
    height: 450px;
    background-color: #5CADD617;
    width: 100%;
    border-radius: 24px;
}

.student-story-img img {
    border-radius: inherit;
}

.student-story-caption {
    padding-top: 20px;
}

.student-story-caption p {
    font-size: 16px;
}

.student-stories-segment {
    margin-top: 60px !important;
}

.alumni-section-2-inner {
    padding: 80px 20px;
    background-color: #F6FAFE;
    border-radius: 24px;
}

.alumni-card {
    background: #fff;
    border-radius: 24px;
    transition: 300ms;
    padding: 56px 20px;
}

.alumni-card-caption h5 {
    font-size: 24px;
    color: #000;
    margin-top: 35px;
    margin-bottom: 16px;
    font-weight: 700;
    transition: 300ms;
}

.alumni-card-caption p {
    font-size: 18px;
    color: #1B4A58;
    transition: 300ms;
}

.alumni-card-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: #C8D3D6;
    position: relative;
    transition: 300ms;
}

.alumni-card-img svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 300ms;
}

.alumni-card-img svg path {
    transition: 300ms;
}

.alumni-card-container {
    margin-top: 50px !important;
}

.alumni-card:hover .alumni-card-caption h5, .alumni-card:hover .alumni-card-caption p {
    color: #fff;
}

.alumni-card:hover .alumni-card-img {
    background: #1B4A58;
}

.alumni-card:hover .alumni-card-img svg path {
    fill: #fff;
}

.alumni-card:hover {
    background: var(--light-blue);
    transform: translateY(-10px) scale(1.01);
}

@media screen and (max-width: 600px) {
    .alumni-card, .student-story-element {
        margin-bottom: 50px;
    }
}

.request-form-btn {
    border-radius: 30px;
    transition: 300ms;
}

.request-form-btn:hover {
    background-color: var(--light-blue) !important;
}

.request-form-btn:hover span {
    color: #fff !important;
}

.request-form input {
    border: 2px solid transparent;
}

/* enrollment process admission page */
.enrollment-process-section {
    padding: 60px 0;
    background-color: #F9FAFB;
}

.enrollment-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.enrollment-step {
    height: 180px;
    width: 180px;
    background-color: #ebf3f8;
    border: 1px solid #0A426A;
    position: relative;
    border-radius: 50%;
}

.enrollment-step span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.enrollment-caption h5 {
    color: #595959;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    margin-top: 27px;
}

.enrollment-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 20%;
}

.enrollment-caption p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-top: 12px;
    color: #838383;
    margin-bottom: 0 !important;
}

.enrollment-container {
    margin-top: 70px;
}

.enrollment-step-endpoint {
    height: 180px;
    width: 27px;
    position: relative;
}

.enrollment-box * {
    z-index: 3;
}


.enrollment-step-endpoint span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 18px;
    font-weight: 600;
    background: #0A426A;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    z-index: 4;
}

.enrollment-step-endpoint .dot-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #0A426A;
    border-radius: 50%;
    height: 29px;
    width: 29px;
    z-index: 3;
    background: #fff;
}

.endpoint-title {
    color: #000;
    text-align: left;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(calc(-100% - 24px));
    font-weight: 600;
    line-height: 1.3;
}

.enrollment-progress-line {
    width: 100%;
    height: 1px;
    background: #0A426A;
    position: absolute;
    top: 90px;
    z-index: 1;
}

.finish-end .endpoint-title {
    right: 0;
    text-align: right;
}

@media screen and (max-width: 992px) {
    .enrollment-box {
        flex-direction: column;
    }

    .enrollment-element {
        flex-direction: row;
        width: 100%;
        margin: 30px 0;
        justify-content: start;
    }

    .enrollment-caption {
        max-width: calc(100% - 200px);
        margin-left: 20px;
        margin-bottom: 30px;
    }

    .enrollment-caption * {
        text-align: left !important;
    }

    .enrollment-step-endpoint {
        width: 180px;
        height: 27px;
        margin-bottom: 30px;
    }

    .enrollment-step-endpoint.finish-end {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .endpoint-title {
        transform: translate(28px, -50%);
        left: 50%;
    }

    .enrollment-progress-line {
        height: 100%;
        width: 1px;
        top: 0;
        left: 90px;
    }

    .finish-end .endpoint-title {
        text-align: left !important;
    }
}

@media screen and (max-width: 600px) {
    .enrollment-step {
        width: 140px;
        height: 140px;
    }

    .enrollment-step-endpoint {
        width: 140px;
    }

    .enrollment-progress-line {
        left: 70px;
    }

    .enrollment-caption {
        max-width: calc(100% - 160px);
    }
}

@media screen and (max-width: 700px) {
    .admission-info-element {
        width: 100%;
    }

    .admission-info-element.two {
        border-left: unset;
    }

    .contact-element {
        margin-bottom: 20px;
    }

    .commitment-section-1-image {
        height: auto;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .admission-contact-form-image {
        padding-bottom: 20px;
    }

    .admission-section-banner {
        height: 40vh;
    }

    .admission-script-caption {
        padding: 20px;
    }

    .admission-script {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1420px) {
    .nav-item {
        margin-right: 6px;
    }
}

/* press section media center */
.press-section {
    padding: 90px 0;
    background: #fff;
}

.press-item-image {
    width: 50%;
    border-radius: 24px 0 0 24px;
}

.press-item-caption {
    width: 50%;
    background-color: #F6FAFE;
    border-radius: 0 24px 24px 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 30px;
}

@media screen and (max-width: 700px) {
    .press-item-image {
        width: 100%;
        border-radius: 24px 24px 0 0 !important;
    }

    .press-item-caption {
        width: 100%;
        border-radius: 0 0 24px 24px !important;
    }
}

.media-gallery-section {
    padding: 50px 0;
    background-color: #fff;
}

.parent-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 18px;
    grid-row-gap: 23px;
    height: auto;
    width: 100%;
}

.parent-2-div1, .parent-2-div2, .parent-2-div3, .parent-2-div4, .parent-2-div5 {
    
    transition: all .3s ease-in-out;
    border-radius: 18px;
    min-height: 300px;
}

.parent-2-div1 {
    grid-area: 1 / 1;
}

.parent-2-div2 {
    grid-area: 1 / 2 / 3 / 2;
}

.parent-2-div3 {
    grid-area: 1 / 3;
}

.parent-2-div4 {
    grid-area: 2 / 1;
}

.parent-2-div5 {
    grid-area: 2 / 3;
}

.parent-2-element:hover {
    filter: grayscale(0);
}

.parent-2-element img {
    border-radius: inherit !important;
}

@media screen and (max-width: 800px) {
    .parent-2-div1, .parent-2-div2, .parent-2-div3, .parent-2-div4, .parent-2-div5 {
        
        transition: all .3s ease-in-out;
        border-radius: 10px;
        min-height: 230px;
    }

    .parent-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        height: auto;
        width: 100%;
    }

    .parent-2-div1 {
        grid-area: 1 / 1;
    }

    .parent-2-div2 {
        grid-area: 1 / 2 / 3 / 2;
    }

    .parent-2-div3 {
        grid-area: 2 / 1;
    }

    .parent-2-div4 {
        grid-area: 3 / 1;
    }

    .parent-2-div5 {
        grid-area: 3 / 2;
    }

    .coming-soon-image {
        display: none;
    }

    .coming-soon-section {
        height: auto;
        padding: 40px 0;
    }

    .social-media-card {
        padding: 0 !important;
    }
}

.parents-head-section {
    padding: 90px 0;
    background: var(--theme-blue);
}

.parent-item {
    max-width: 305px;
    margin: auto;
}

.parent-item-image {
    height: 200px;
    border-radius: 24px;
    background: #F3F9FC;
    padding-top: 30px;
}

.parent-item-caption {
    padding: 20px 5px;
    background: #fff;
}

.parent-item-caption h5 {
    font-size: 22px;
    color: #101828;
    margin-bottom: 8px;
    text-align: center;
}

.parent-item-caption p {
    font-style: italic;
    margin-bottom: 0;
    text-align: center;
}

.parents-carousel {
    margin-top: 62px;
}

.fill-parents-space {
    background: #fff;
    height: 30%;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.parents-carousel-nav, .downloads-carousel-nav, .parent-testimonials-carousel-nav {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: var(--light-blue);
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.parents-carousel-nav img, .downloads-carousel-nav img, .parent-testimonials-carousel-nav img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    width: auto;
}

.parents-carousel-nav.right, .downloads-carousel-nav.right, .parent-testimonials-carousel-nav.right {
    right: 0;
    transform: translate(50%, -50%);
}

.parents-carousel-nav.left, .downloads-carousel-nav.left, .parent-testimonials-carousel-nav.left {
    left: 0;
    transform: translate(-50%, -50%);
}


.parents-carousel-nav.left img, .downloads-carousel-nav.left img, .parent-testimonials-carousel-nav.left img {
    transform: translate(-50%, -50%) rotate(180deg);
}

.documents-section {
    padding: 50px 0;
    background: #fff;
}

.download-btn {
    width: 80%;
    min-width: 200px;
    max-width: 300px;
    padding: 10px 0;
    height: 42px;
    background: var(--light-blue);
    border: 1px solid var(--light-blue);
}

.download-btn:hover {
    background: var(--theme-blue);
}

.document-item-image {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 1px solid var(--light-blue);
    position: relative;
    margin-bottom: 30px;
}

.document-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F6FAFE;
    border-radius: 24px;
    padding: 70px 10px;
}

.document-item-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: auto;
}

.document-item-caption {
    width: 100%;
}

.feedback-section {
    padding: 60px 0;
    background: #fff;
}

.feedback-item-caption {
    width: 50%;
    padding: 50px 80px;
    background: #F6FAFE;
}

.feedback-item-image {
    width: 50%;
    height: 100%;
}

.feedback-item {
    display: flex;
    flex-wrap: wrap;
}

.feedback-item-caption h3 {
    color: #101828;
    font-size: 48px;
}

.feedback-item-caption p {
    color: #000000;
    margin-bottom: 0px;
}

.feedback-item-caption .author {
    color: #101828;
    margin-top: 40px;
}

.feedback-carousel-nav {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: var(--light-blue);
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.feedback-carousel-nav img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    width: auto;
}

.feedback-carousel-nav.right {
    right: 50%;
    transform: translate(-50%, -50%);

}

.feedback-carousel-nav.left {
    right: 50%;
    transform: translate(-190%, -50%);
}

.feedback-carousel-nav.left img {
    transform: translate(-50%, -50%) rotate(180deg);
}

.parent-testimonial-image {
    height: 96px;
    width: 96px;
    border-radius: 50%;
    background-color: #F6FAFE;
    position: relative;
    margin-bottom: 20px;
}

.parent-testimonial-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50%;
    width: auto;
}

.parent-testimonial-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parent-testimonial-caption h3 {
    color: #000;
    font-size: 37px;
}

.parent-testimonial-caption p {
    color: black;
    
    font-size: 16px;
    max-width: 490px;
}

.parent-testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    border: 1px solid #EAECF0;
    border-radius: 20px;
    height: 100%;
    margin-bottom: 20px;
    margin-inline: 7px;
}

.parent-testimonial-caption .title {
    color: #000;
    margin: 10px 0;
}

.parent-testimonials-section {
    padding: 50px 0 160px 0;
    background-color: #fff;
}

.parent-testimonials-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

@media screen and (max-width: 600px) {
    .feedback-item-image {
        width: 100%;
    }

    .feedback-item-caption {
        width: 100%;
        padding: 40px 20px;
    }

    .feedback-item-caption h3 {
        font-size: 30px;
    }

    .feedback-carousel-nav {
        top: 40%;
    }

    .feedback-carousel-nav.left, .feedback-carousel-nav.right {
        right: 5%;
    }

    .col-sm-6 {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1000px) {
    .student-head-banner {
        display: none;
    }
}

.limit-this {
    height: 230px;
    overflow-y: scroll;
}

.extravity-person-image {
    height: 270px;
    width: 90%;
    border-radius: 24px;
    display: flex;
    align-items: end;
    margin-bottom: 20px;
    
}

.extravity-person-image img {
        position: relative;
    display: inline-block; /* Ensure it wraps around the image */
    width: 100%; /* Ensures it fills the container */

    /* Apply a gradient mask */
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
}
.extravity-person-element {
    position: relative;
}


.extravity-person-caption {
    position: absolute;
    top: 0; /* Adjust as needed */
    left: 10px; /* Adjust as needed */
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent background for better readability */
    color: white; /* Ensure text is visible */
    padding: 5px 10px;
    border-radius: 5px;
    width: 60%;
    height: 100%;
    z-index:4000;
    
   opacity: 0;
    visibility: hidden;
    transform: translateX(-20px); 
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    
}

.extravity-person-element-onhover:hover .extravity-person-caption {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);  Moves back to original position;
}




.parent3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    height: 684px;
    width: 100%;
}

.parent3 .div1 {
    grid-area: 1 / 1 / 2 / 2;
    position: relative;
    
    transition: all .3s ease-in-out;
    border-radius: 18px;
}

.parent3 .div2 {
    grid-area: 2 / 1 / 3 / 2;
    position: relative;
    
    transition: all .3s ease-in-out;
    border-radius: 18px;
}

.parent3 .div3 {
    grid-area: 1 / 2 / 3 / 3;
    position: relative;
    
    transition: all .3s ease-in-out;
    border-radius: 18px;
}

.parent3 img {
    border-radius: 18px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.parent3 div:hover {
    filter: unset !important;
}

.parent3 .div4 {
    grid-area: 1 / 3 / 2 / 4;
    position: relative;
    
    transition: all .3s ease-in-out;
    border-radius: 18px;
}

.parent3 .div5 {
    grid-area: 2 / 3 / 3 / 4;
    position: relative;
    
    transition: all .3s ease-in-out;
    border-radius: 18px;
}


@media screen and (min-width: 700px) {
    .student-hub-image, .feedback-item-image {
        position: relative;
    }

    .feedback-item-image {
        height: auto;
    }

    .student-hub-image img, .feedback-item-image img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.parent-portal-section {
    background: #fff;
    padding: 40px 0;
}

.parent-portal-section h1 {
    margin-bottom: 30px;
}

.parent-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    height: auto;
    width: 100%;
}

.parent-portal-item {
    background-color: #F1F7FD;
    padding: 24px 5px;
    border-radius: 24px;

}

.parent-portal-image {
    height: 100px;
}

.parent-portal-item h4 {
    margin: 12px 0 22px 0;
    text-align: center;
}

.parent-portal-item:first-child {
    grid-area: 1 / 1;
}

.parent-portal-item:nth-child(2) {
    grid-area: 1 / 2;
}

.parent-portal-item:nth-child(3) {
    grid-area: 2 / 1;
}

.parent-portal-item:nth-child(4) {
    grid-area: 2 / 2;
}

@media screen and (max-width: 800px) {
    .parent-portal-item a {
        width: auto !important;
    }

    .parent-portal-item h4 {
        font-size: 18px;
    }
}

.calendar-section {
    background: white;
    padding: 50px 0;
}

.section-padding-1 {
    padding: 90px 0;
}

.popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    padding: 8px 22px;
}

#videoModal .modal-title {
    font-weight: 800;
    color: var(--theme-blue);
    font-size: 24px;
}

#videoModal .modal-header {
    padding: 7px 17px;
}

#videoModal .modal-body {
    padding: 0;
    background: #000;
}

#videoModal .modal-dialog {
    width: 70vw;
    max-width: unset;
}

#videoModal iframe {
    object-fit: cover;
    top: 10px;
    height: 60vh;
    position: relative;
}

#videoModal .modal-content {
    height: 100%;
}

#videoModal .close {
    background: unset;
    border: unset;
    outline: unset;
    font-size: 28px;
}

.ab-padding-top {
    padding-top: 600px;
}

.slider-card2 {
    max-width: 550px;
    width: 100%;
}

.a-carousel .owl-item {
    justify-content: center;
    align-items: center;
    display: flex;
}

#curriculum-page > section {
    padding: 50px 0;
}

.curriculum-image-slider-section {
    background-color: #0A426A;
    padding: 45px 29px;
    border-bottom-right-radius: 18px;
    border-top-right-radius: 18px;
}

.curriculum-image-slider {
    height: 100% !important
}

.faq-element2 .faq-answer2 {
    transition: 300ms;
}

.faq-element2.active {
    background-color: #64AED3 !important;
}

.faq-element2.active h6 {
    color: #fff;
}

.faq-element2.active .plus-btn {
    background: white;
    border: 1px solid white;

}

.faq-element2.active .plus-btn span {
    color: #64AED3 !important;
    transform: translateY(-2px);
}

.faq-element2.active .faq-answer2 {
    height: 480px;
    overflow-y: scroll;
}

.parent3 > div {
    cursor: default !important;
}

@media screen and (max-width: 810px) {
    .curriculum-image-slider .owl-nav {
        left: 0;
        width: 126px;
        transform: unset;
        top: unset;
        bottom: -66px;
    }

    .curriculum-image-slider-section {
        margin-top: 90px;
    }

    .curriculum-image-slider .owl-nav button {
        height: 55px;
        width: 55px;
    }

    .curriculum-image-slider .owl-nav button span {
        transform: scale(2);
    }

    .curriculum-image-slider {
        margin-bottom: 20px !important;
    }

    .curriculum-image-slider-section {
        border-radius: 18px !important;
    }

    .curriculum-image-slider img {
        border-radius: 18px !important;
    }

    .section-padding-1.container-fluid {
        padding: 50px 14px !important;
    }

    .parent3 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: unset;
    }

    .parent3 .div4 {
        grid-area: 3 / 1 / 3 / 1;
    }

    .parent3 .div5 {
        grid-area: 3 / 2 / 3 / 2;
    }
}

@media screen and (max-width: 600px) {

    .abs-block {
        top: 15px;
        transform: unset;
        right: 15px;
        padding: 10px;
        width: unset;
        gap: 12px;
    }

    .abs-block .number {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .ab-padding-top {
        padding-top: 700px;
    }

    .story-block {
        top: -94%;
        right: 10px;
        width: 87%;
        left: 50%;
        position: relative !important;
        transform: translateX(-50%);
    }

    .glass {
        height: 264px;
        top: 46%;
        width: 97%;
    }

    #videoModal iframe {
        height: auto;
        min-height: 30vh;
        object-fit: contain;
    }

    #videoModal .modal-dialog {
        width: unset;
    }

    .container-fluid {
        padding: 0 14px !important;
    }

    .video-container {
        width: 100%;
        height: 178px;
    }

    .play-btn {
        height: 50px;
        width: 50px;
        padding: 13px;
    }

    .arch {
        width: 72px;
    }

    .about-m-np {
        padding: 0 14px !important;
    }

    .slider-card {
        width: 100%;
    }

    .about-service {
        padding: 90px 10px !important;
        width: 100vw;
    }

    .about-service > div {
        margin-bottom: 20px;
    }

    .vision-image {
        max-width: unset;
        width: 100%;
        padding: 0;
    }

    .about-service .arrow {
        width: 60px;
        height: 60px;
        position: relative;
    }

    .about-service .arrow svg {
        height: 45px;
        width: 45px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.event-slide-clock {
    visibility: hidden !important;
    opacity: 0 !important;
}

.input-not-validated {
    border: 2px solid red !important;
}

.footer-contact:hover {
    color: var(--theme-blue) !important;
}

.footer-contact:focus {
    color: var(--theme-blue) !important;
    border: unset;
    outline: unset;
    background: #fff !important;
}

.section-title-col-1 {
    height: fit-content;
}

.section-title-col-2 {
    max-width: 500px;
}

.section-title-col-2.col-lg-12 {
    max-width: unset;
}

.section-title-col-1 h1 {
    max-width: 920px;
    line-height: 1.3;
}

.n-max-width {
    max-width: unset !important;
}

.parent * {
    cursor: default !important;
}

.vision-image {
    height: 200px;
    max-width: unset;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.vision-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.senior-carousel .owl-item {
    display: flex;
    align-items: center;
}

.arrow-btn {
    background: var(--light-blue);
    color: white;
    font-size: 18px;
    height: 65px;
    width: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: 300ms;
}

.arrow-btn:hover {
    background: #c5cacd;
    transform: scale(1.05);
}
