/* =====================================================
                GLOBAL
===================================================== */

:root {

    --vbb-blue: #022C66;        /* Dark Blue */
    --vbb-dark-blue: #022C66;   /* Dark Blue */

    --vbb-sky-blue: #A5DEFF;    /* Sky Blue */
    --vbb-light-blue: #C5EAFF;  /* Light Blue */

    --vbb-yellow: #FEEC04;      /* Yellow Text */

    --vbb-white: #ffffff;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
}


/* =====================================================
                    TOP BAR
===================================================== */

/* =====================================================
                    TOP BAR
===================================================== */

/* =====================================================
                    VBB TOP BAR
===================================================== */

/* =====================================================
                TOPBAR
===================================================== */

.topbar {

    width: 100%;
    height: 44px;

    background: #022C66;

    color: var(--vbb-white);

    border-bottom: 1px solid rgba(255,255,255,0.15);

    position: relative;

    z-index: 9999;

    overflow: hidden;
}


/* =====================================================
                TOPBAR INNER
===================================================== */

.topbar-inner {

    width: 100%;
    height: 100%;

    padding: 0 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* =====================================================
                SOCIAL ICONS
===================================================== */

.top-social {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;
}


.top-social a {

    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 14px;

    text-decoration: none;

    transition: all .25s ease;
}


.top-social a:hover {

    color: #FEEC04;

    transform: translateY(-2px);
}


/* =====================================================
                REGISTRATION
===================================================== */

.top-notice {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: all .25s ease;
}


.top-notice i {

    color: #FEEC04;

    font-size: 14px;
}


.top-notice:hover {

    color: #FEEC04;
}


/* =====================================================
                    EMAIL
===================================================== */

.top-contact {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 7px;

    color: #ffffff;

    font-size: 13px;

    text-decoration: none;

    white-space: nowrap;

    min-width: 0;

    transition: all .25s ease;
}


.top-contact i {

    color: #FEEC04;

    font-size: 14px;

    flex-shrink: 0;
}


.top-contact:hover {

    color: #FEEC04;
}


.contact-email {

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =====================================================
                    1200 PX
===================================================== */

@media (max-width: 1200px) {

    .topbar-inner {

        padding: 0 3%;

        gap: 15px;
    }


    .top-social {

        gap: 15px;
    }


    .top-notice {

        font-size: 12px;
    }


    .top-contact {

        font-size: 12px;
    }

}


/* =====================================================
                    TABLET
===================================================== */

@media (max-width: 991px) {

    .topbar {

        height: 42px;
    }


    .topbar-inner {

        height: 42px;

        padding: 0 20px;
    }


    .top-social {

        gap: 14px;
    }


    .top-social a {

        font-size: 13px;
    }


    .top-notice {

        font-size: 11px;

        gap: 6px;
    }


    .top-contact {

        font-size: 11px;
    }

}


/* =====================================================
                MOBILE TOPBAR - 2 ROWS
===================================================== */

@media (max-width: 767px) {

    .topbar {

        height: auto;

        min-height: 72px;

        overflow: visible;

        background: #022C66;
    }


    .topbar-inner {

        height: auto;

        min-height: 72px;

        padding: 7px 12px;

        display: flex;

        flex-wrap: wrap;

        align-items: center;

        justify-content: center;

        gap: 5px 0;
    }


    /* =====================================
       ROW 1 - SOCIAL
    ===================================== */

    .top-social {

        width: 100%;

        height: 25px;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 18px;

        order: 1;
    }


    .top-social a {

        width: 20px;

        height: 20px;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 12px;

        color: #ffffff;
    }


    .top-social a:hover {

        color: #FEEC04;

    }


    /* =====================================
       ROW 2 - REGISTRATION
    ===================================== */

    .top-notice {

        width: auto;

        height: 25px;

        display: flex;

        align-items: center;

        justify-content: center;

        margin: 0;

        padding: 0 8px;

        gap: 4px;

        font-size: 8px;

        white-space: nowrap;

        order: 2;

        color: #FEEC04;
    }


    .top-notice i {

        font-size: 10px;

        color: #FEEC04;
    }


    /* =====================================
       ROW 2 - EMAIL
    ===================================== */

    .top-contact {

        width: auto;

        max-width: 65%;

        height: 25px;

        display: flex;

        align-items: center;

        justify-content: center;

        margin: 0;

        padding: 0 5px;

        gap: 5px;

        font-size: 8px;

        white-space: nowrap;

        order: 3;

        color: #ffffff;
    }


    .top-contact i {

        color: #FEEC04;

        font-size: 10px;

        flex-shrink: 0;
    }


    .contact-email {

        display: block;

        max-width: 230px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }

}


/* =====================================================
                    SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .topbar {

        min-height: 70px;

        background: #022C66;
    }


    .topbar-inner {

        min-height: 70px;

        padding: 6px 8px;
    }


    .top-social {

        gap: 16px;
    }


    .top-social a {

        font-size: 11px;
    }


    .top-notice {

        font-size: 7.5px;

        padding: 0 5px;

        color: #FEEC04;
    }


    .top-contact {

        max-width: 68%;

        font-size: 7px;

        gap: 4px;
    }


    .top-contact i {

        font-size: 9px;

        color: #FEEC04;
    }


    .contact-email {

        max-width: 200px;
    }

}


/* =====================================================
                VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .topbar {

        min-height: 68px;

        background: #022C66;
    }


    .topbar-inner {

        min-height: 68px;

        padding: 5px 5px;
    }


    .top-social {

        gap: 13px;
    }


    .top-social a {

        font-size: 10px;
    }


    .top-notice {

        font-size: 7px;

        padding: 0 3px;

        color: #FEEC04;
    }


    .top-contact {

        max-width: 70%;

        font-size: 6.5px;
    }


    .top-contact i {

        color: #FEEC04;
    }


    .contact-email {

        max-width: 175px;
    }

}

/* =========================================
        SCHOOL HEADER
========================================= */

/* =========================================
   MID HEADER
========================================= */

 /* =====================================================
        MID HEADER - VBB BLUE PREMIUM THEME
===================================================== */

/* =====================================================
        MID HEADER - VBB SKY BLUE THEME
===================================================== */

.school-header {

    width: 100%;

    background: #A5DEFF;

    position: relative;

    z-index: 1000;

    border-bottom: 1px solid rgba(2,44,102,.15);

    box-shadow:
        0 3px 15px rgba(2,44,102,.10);
}


/* =====================================================
        HEADER INNER
===================================================== */

.school-header-inner {

    width: 100%;

    min-height: 125px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =====================================================
        BRAND
===================================================== */

.school-brand {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;

    min-width: 0;
}


/* =====================================================
        LOGO
===================================================== */

.school-logo {

    width: 105px;

    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    text-decoration: none;
}


.school-logo img {

    width: 118px;

    height: 118px;

    object-fit: contain;

    display: block;
}


/* =====================================================
        SCHOOL NAME
===================================================== */

.school-name {

    min-width: 0;
}


.school-name h1 {

    margin: 0;

    color: #022C66;

    font-size: 28px;

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: .2px;

    white-space: nowrap;
}


.school-name span {

    display: block;

    margin-top: 6px;

    color: #022C66;

    font-size: 14px;

    font-weight: 600;
}


/* =====================================================
        YELLOW ACCENT
===================================================== */

.school-name::after {

    content: "";

    display: block;

    width: 65px;

    height: 4px;

    margin-top: 9px;

    background: #FEEC04;

    border-radius: 10px;
}


/* =====================================================
        HEADER LINKS
===================================================== */

.header-links {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 24px;

    flex-shrink: 0;
}


.header-links a {

    position: relative;

    color: #022C66;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;

    transition: all .3s ease;
}


.header-links a:hover {

    color: #ffffff;
}


/* =====================================================
        LINK UNDERLINE
===================================================== */

.header-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: #FEEC04;

    transition: width .3s ease;
}


.header-links a:hover::after {

    width: 100%;
}


/* =====================================================
        ADMISSION HIGHLIGHT
===================================================== */

.header-links .admission-link {

    padding: 11px 18px;

    background: #FEEC04;

    color: #022C66;

    border-radius: 25px;

    transition: all .3s ease;
}


.header-links .admission-link::after {

    display: none;
}


.header-links .admission-link:hover {

    background: #022C66;

    color: #FEEC04;

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(2,44,102,.20);
}


/* =====================================================
        1400+ LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .school-header-inner {

        min-height: 135px;

        gap: 40px;
    }


    .school-logo {

        width: 115px;

        height: 115px;
    }


    .school-logo img {

        width: 130px;

        height: 130px;
    }


    .school-name h1 {

        font-size: 31px;
    }


    .school-name span {

        font-size: 14px;
    }


    .header-links {

        gap: 28px;
    }


    .header-links a {

        font-size: 13px;
    }

}


/* =====================================================
        1200 PX
===================================================== */

@media (max-width: 1200px) {

    .school-header-inner {

        min-height: 110px;

        gap: 20px;
    }


    .school-brand {

        gap: 13px;
    }


    .school-logo {

        width: 85px;

        height: 85px;
    }


    .school-logo img {

        width: 95px;

        height: 95px;
    }


    .school-name h1 {

        font-size: 22px;
    }


    .school-name span {

        font-size: 11px;
    }


    .school-name::after {

        width: 50px;

        height: 3px;

        margin-top: 7px;
    }


    .header-links {

        gap: 16px;
    }


    .header-links a {

        font-size: 10px;
    }


    .header-links .admission-link {

        padding: 9px 13px;
    }

}


/* =====================================================
        TABLET
===================================================== */

@media (max-width: 991px) {

    .school-header-inner {

        min-height: 95px;

        gap: 14px;
    }


    .school-brand {

        gap: 9px;
    }


    .school-logo {

        width: 68px;

        height: 68px;
    }


    .school-logo img {

        width: 75px;

        height: 75px;
    }


    .school-name h1 {

        font-size: 17px;

        line-height: 1.15;

        white-space: normal;
    }


    .school-name span {

        font-size: 9px;
    }


    .school-name::after {

        width: 42px;

        height: 2px;

        margin-top: 5px;
    }


    .header-links {

        gap: 9px;
    }


    .header-links a {

        font-size: 8px;

        text-align: center;
    }


    .header-links .admission-link {

        padding: 7px 9px;
    }

}


/* =====================================================
        MOBILE
===================================================== */

@media (max-width: 767px) {

    .school-header {

        background: #A5DEFF;
    }


    .school-header-inner {

        min-height: 92px;

        padding: 7px 10px;

        gap: 8px;

        align-items: center;
    }


    /* =============================================
            BRAND
    ============================================= */

    .school-brand {

        gap: 7px;

        flex: 1 1 auto;

        min-width: 0;
    }


    /* =============================================
            LOGO
    ============================================= */

    .school-logo {

        width: 55px;

        height: 55px;
    }


    .school-logo img {

        width: 62px;

        height: 62px;
    }


    /* =============================================
            SCHOOL NAME
    ============================================= */

    .school-name {

        min-width: 0;
    }


    .school-name h1 {

        font-size: 11px;

        line-height: 1.2;

        white-space: normal;

        color: #022C66;
    }


    .school-name span {

        font-size: 7px;

        margin-top: 3px;
    }


    .school-name::after {

        width: 35px;

        height: 2px;

        margin-top: 4px;

        background: #FEEC04;
    }


    /* =============================================
            LINKS
    ============================================= */

    .header-links {

        display: flex;

        align-items: center;

        justify-content: flex-end;

        gap: 3px;

        flex: 0 0 auto;
    }


    .header-links a {

        display: block;

        width: 42px;

        max-width: 42px;

        color: #022C66;

        font-size: 6px;

        line-height: 1.2;

        font-weight: 800;

        white-space: normal;

        text-align: center;
    }


    .header-links a:hover {

        color: #ffffff;
    }


    .header-links a::after {

        display: none;
    }


    .header-links .admission-link {

        width: 42px;

        max-width: 42px;

        padding: 6px 3px;

        border-radius: 15px;

        background: #FEEC04;

        color: #022C66;
    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .school-header-inner {

        min-height: 82px;

        padding: 6px 7px;

        gap: 5px;
    }


    .school-logo {

        width: 47px;

        height: 47px;
    }


    .school-logo img {

        width: 54px;

        height: 54px;
    }


    .school-brand {

        gap: 5px;
    }


    .school-name h1 {

        font-size: 9px;

        max-width: 135px;
    }


    .school-name span {

        font-size: 6px;
    }


    .school-name::after {

        width: 30px;

        height: 2px;
    }


    .header-links {

        gap: 2px;
    }


    .header-links a {

        width: 37px;

        max-width: 37px;

        font-size: 5px;
    }


    .header-links .admission-link {

        width: 37px;

        max-width: 37px;

        padding: 5px 2px;
    }

}


/* =====================================================
        VERY SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .school-header-inner {

        min-height: 74px;

        padding: 5px;
    }


    .school-logo {

        width: 41px;

        height: 41px;
    }


    .school-logo img {

        width: 48px;

        height: 48px;
    }


    .school-name h1 {

        font-size: 8px;

        max-width: 110px;
    }


    .school-name span {

        font-size: 5px;
    }


    .header-links {

        gap: 1px;
    }


    .header-links a {

        width: 33px;

        max-width: 33px;

        font-size: 4.5px;
    }


    .header-links .admission-link {

        width: 33px;

        max-width: 33px;

        padding: 4px 1px;
    }

}

/* =========================================
        MAIN NAVBAR
========================================= */

/* =====================================================
   VBB MAIN NAVBAR
   COMPLETE RESPONSIVE CSS
===================================================== */


/* =====================================================
   MAIN NAVBAR
===================================================== */

.main-navbar {

    width: 100%;

    background: #022C66;

    border-top: 1px solid rgba(255,255,255,0.12);

    border-bottom: 3px solid #FEEC04;

    position: relative;

    z-index: 9999;

    overflow: visible !important;

    box-shadow: 0 4px 15px rgba(2,44,102,0.20);
}


/* =====================================================
   NAVBAR CONTAINER
===================================================== */

.main-navbar > .container {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    position: relative;

    overflow: visible !important;
}


/* =====================================================
   NAVBAR INNER
===================================================== */

.navbar-inner {

    width: 100%;

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;
}


/* =====================================================
   NAVBAR COLLAPSE
===================================================== */

.main-navbar .navbar-collapse {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: visible !important;
}


/* =====================================================
   NAV MENU
===================================================== */

.main-navbar .navbar-nav {

    width: auto;

    margin: 0 auto !important;

    padding: 0;

    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: center;

    gap: 4px;

    list-style: none;

    overflow: visible !important;
}


/* =====================================================
   NAV ITEM
===================================================== */

.main-navbar .nav-item {

    position: relative;

    display: flex;

    align-items: center;

    overflow: visible !important;
}


/* =====================================================
   NAV LINK
===================================================== */

.main-navbar .nav-link {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background: transparent;

    text-decoration: none;

    white-space: nowrap;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    padding: 20px 14px;

    border-radius: 3px;

    transition:
        color .3s ease,
        background .3s ease,
        padding .3s ease;
}


/* =====================================================
   NAV LINK HOVER
===================================================== */

.main-navbar .nav-link:hover {

    color: #FEEC04;

    background: rgba(165,222,255,0.12);
}


/* =====================================================
   ACTIVE
===================================================== */

.main-navbar .nav-link.active {

    color: #FEEC04;
}


/* =====================================================
   DROPDOWN ARROW
===================================================== */

.main-navbar .dropdown-toggle::after {

    display: inline-block;

    margin-left: 6px;

    vertical-align: middle;

    border-top-color: #FEEC04;

    transition: transform .3s ease;
}


/* =====================================================
   DROPDOWN ITEM
===================================================== */

.main-navbar .dropdown {

    position: relative;

    overflow: visible !important;
}


/* =====================================================
   DESKTOP DROPDOWN
===================================================== */

@media (min-width: 992px) {

    .main-navbar .dropdown-menu {

        position: absolute !important;

        top: 100% !important;

        bottom: auto !important;

        left: 50% !important;

        right: auto !important;

        margin: 0 !important;

        padding: 8px 0;

        min-width: 235px;

        transform: translateX(-50%) !important;

        background: #ffffff;

        border: 0;

        border-top: 3px solid #FEEC04;

        border-radius: 0 0 6px 6px;

        box-shadow: 0 12px 30px rgba(2,44,102,0.20);

        z-index: 999999;

        overflow: visible;

        animation: dropdownDown .25s ease;
    }


    /* =================================================
       BOOTSTRAP SHOW
    ================================================= */

    .main-navbar .dropdown-menu.show {

        top: 100% !important;

        bottom: auto !important;

        left: 50% !important;

        transform: translateX(-50%) !important;

        margin-top: 0 !important;
    }


    /* =================================================
       HOVER DROPDOWN
    ================================================= */

    .main-navbar .dropdown:hover > .dropdown-menu {

        display: block;
    }


    /* =================================================
       DROPDOWN ANIMATION
    ================================================= */

    @keyframes dropdownDown {

        from {

            opacity: 0;

            transform:
                translateX(-50%)
                translateY(-8px);
        }

        to {

            opacity: 1;

            transform:
                translateX(-50%)
                translateY(0);
        }

    }


    /* =================================================
       DROPDOWN ITEM
    ================================================= */

    .main-navbar .dropdown-item {

        display: block;

        width: 100%;

        padding: 11px 18px;

        color: #222222;

        background: #ffffff;

        font-size: 13px;

        font-weight: 500;

        line-height: 1.4;

        text-decoration: none;

        white-space: nowrap;

        transition:
            color .25s ease,
            background .25s ease,
            padding-left .25s ease;
    }


    /* =================================================
       DROPDOWN ITEM HOVER
    ================================================= */

    .main-navbar .dropdown-item:hover {

        color: #022C66;

        background: #C5EAFF;

        padding-left: 24px;
    }


    /* =================================================
       DROPDOWN ACTIVE
    ================================================= */

    .main-navbar .dropdown-item.active,

    .main-navbar .dropdown-item:active {

        color: #022C66;

        background: #C5EAFF;
    }

}


/* =====================================================
   MOBILE TOGGLE
===================================================== */

.navbar-toggler {

    display: none;

    width: 48px;

    height: 48px;

    padding: 5px;

    margin: 0;

    border: 0;

    border-radius: 4px;

    background: transparent;

    color: #ffffff;

    font-size: 30px;

    line-height: 1;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: color .3s ease;
}


.navbar-toggler:hover {

    color: #FEEC04;
}


.navbar-toggler:focus {

    outline: none;

    box-shadow: none;
}


/* =====================================================
   LARGE DESKTOP
   1400+
===================================================== */

@media (min-width: 1400px) {

    .main-navbar > .container {

        max-width: 1450px;
    }


    .main-navbar .navbar-nav {

        gap: 6px;
    }


    .main-navbar .nav-link {

        font-size: 12px;

        padding-left: 15px;

        padding-right: 15px;
    }

}


/* =====================================================
   DESKTOP
   1200 - 1399
===================================================== */

@media (min-width: 1200px) and (max-width: 1399px) {

    .main-navbar > .container {

        max-width: 1200px;
    }


    .main-navbar .navbar-nav {

        gap: 3px;
    }


    .main-navbar .nav-link {

        font-size: 14px;

        padding-left: 11px;

        padding-right: 11px;
    }

}


/* =====================================================
   SMALL DESKTOP / TABLET
   992 - 1199
===================================================== */

@media (min-width: 992px) and (max-width: 1199px) {

    .main-navbar > .container {

        max-width: 100%;

        padding-left: 15px;

        padding-right: 15px;
    }


    .main-navbar .navbar-nav {

        gap: 1px;
    }


    .main-navbar .nav-link {

        font-size: 10px;

        padding-left: 8px;

        padding-right: 8px;
    }

}


/* =====================================================
   TABLET / MOBILE
   BELOW 992
===================================================== */

@media (max-width: 991px) {

    .main-navbar {

        position: relative;

        z-index: 9999;

        overflow: visible !important;

        background: #022C66;
    }


    /* =================================================
       NAVBAR INNER
    ================================================= */

    .navbar-inner {

        min-height: 55px;

        justify-content: flex-end;

        padding: 0 15px;
    }


    /* =================================================
       TOGGLE
    ================================================= */

    .navbar-toggler {

        display: flex;

        margin-left: auto;
    }


    /* =================================================
       COLLAPSE
    ================================================= */

    .main-navbar .navbar-collapse {

        display: none;

        width: 100%;

        background: #022C66;

        overflow: visible !important;
    }


    .main-navbar .navbar-collapse.show {

        display: block;
    }


    /* =================================================
       NAV MENU
    ================================================= */

    .main-navbar .navbar-nav {

        width: 100%;

        margin: 0 !important;

        padding: 5px 0 10px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;
    }


    /* =================================================
       NAV ITEM
    ================================================= */

    .main-navbar .nav-item {

        width: 100%;

        display: block;
    }


    /* =================================================
       NAV LINK
    ================================================= */

    .main-navbar .nav-link {

        width: 100%;

        min-height: 46px;

        padding: 13px 18px;

        color: #ffffff;

        font-size: 13px;

        font-weight: 600;

        justify-content: space-between;

        text-align: left;

        border-radius: 0;

        border-bottom:
            1px solid rgba(165,222,255,0.15);
    }


    /* =================================================
       MOBILE HOVER
    ================================================= */

    .main-navbar .nav-link:hover {

        color: #FEEC04;

        background: rgba(165,222,255,0.12);

        padding-left: 23px;
    }


    /* =================================================
       MOBILE DROPDOWN
    ================================================= */

    .main-navbar .dropdown-menu {

        position: static !important;

        width: 100% !important;

        min-width: 100% !important;

        margin: 0 !important;

        padding: 5px 0;

        transform: none !important;

        background: #ffffff;

        border: 0;

        border-top:
            2px solid #FEEC04;

        border-radius: 0;

        box-shadow: none;

        animation: none;
    }


    /* =================================================
       MOBILE DROPDOWN ITEM
    ================================================= */

    .main-navbar .dropdown-item {

        width: 100%;

        padding: 11px 30px;

        color: #022C66;

        background: #ffffff;

        font-size: 12px;

        font-weight: 500;

        text-decoration: none;

        transition: all .25s ease;
    }


    /* =================================================
       MOBILE DROPDOWN HOVER
    ================================================= */

    .main-navbar .dropdown-item:hover {

        color: #022C66;

        background: #C5EAFF;

        padding-left: 36px;
    }

}


/* =====================================================
   MOBILE
   BELOW 768
===================================================== */

@media (max-width: 767px) {

    .navbar-inner {

        min-height: 52px;

        padding-left: 12px;

        padding-right: 12px;
    }


    .navbar-toggler {

        width: 45px;

        height: 45px;

        font-size: 29px;
    }


    .main-navbar .nav-link {

        min-height: 45px;

        padding: 12px 15px;

        font-size: 12px;
    }


    .main-navbar .dropdown-item {

        padding: 10px 28px;

        font-size: 12px;
    }

}


/* =====================================================
   SMALL MOBILE
   BELOW 576
===================================================== */

@media (max-width: 575px) {

    .navbar-inner {

        min-height: 50px;

        padding-left: 10px;

        padding-right: 10px;
    }


    .navbar-toggler {

        width: 42px;

        height: 42px;

        font-size: 28px;
    }


    .main-navbar .nav-link {

        min-height: 44px;

        padding: 11px 13px;

        font-size: 12px;
    }


    .main-navbar .dropdown-item {

        padding: 10px 25px;

        font-size: 11px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
   BELOW 400
===================================================== */

@media (max-width: 400px) {

    .navbar-inner {

        padding-left: 8px;

        padding-right: 8px;
    }


    .navbar-toggler {

        width: 40px;

        height: 40px;

        font-size: 26px;
    }


    .main-navbar .nav-link {

        padding: 10px 12px;

        font-size: 11px;
    }


    .main-navbar .dropdown-item {

        padding: 9px 22px;

        font-size: 11px;
    }

}





/* =====================================================
        VBB ADMISSION HERO - COMPACT
===================================================== */

.vbb-admission-hero {
    width: 100%;
    background: #A5DEFF;
    overflow: hidden;
    position: relative;
}


/* =====================================================
        HERO INNER
===================================================== */

.vbb-admission-hero-inner {
    width: 100%;

    min-height: 420px;

    padding: 22px 5%;

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    align-items: center;

    gap: 35px;

    box-sizing: border-box;
}


/* =====================================================
        LEFT CONTENT
===================================================== */

.vbb-admission-content {
    width: 100%;
    max-width: 720px;
    padding-left: 10px;
}


/* =====================================================
        MAIN HEADING
===================================================== */

.vbb-admission-content h1 {
    margin: 0;

    color: #022C66;

    font-size: 52px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: .5px;
}


/* =====================================================
        SESSION
===================================================== */

.vbb-admission-content h2 {
    margin: 6px 0 16px;

    color: #d71920;

    font-size: 32px;

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: 2px;
}


/* =====================================================
        DESCRIPTION
===================================================== */

.vbb-admission-content p {
    max-width: 650px;

    margin: 0 0 22px;

    color: #022C66;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.45;

    text-align: center;
}


/* =====================================================
        BUTTONS
===================================================== */

.vbb-admission-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: nowrap;
}


.vbb-admission-buttons a {
    min-height: 43px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    text-decoration: none;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;

    font-weight: 500;

    white-space: nowrap;

    transition: all .3s ease;

    box-sizing: border-box;
}


/* =====================================================
        ENROLL
===================================================== */

.vbb-enroll-btn {
    color: #022C66;

    background: transparent;

    border: 2px solid #022C66;
}


.vbb-enroll-btn:hover {
    background: #FEEC04;

    border-color: #FEEC04;

    color: #022C66;

    transform: translateY(-2px);
}


/* =====================================================
        CALL
===================================================== */

.vbb-call-btn {
    color: #022C66;

    background: transparent;

    border: 2px solid #022C66;
}


.vbb-call-btn:hover {
    background: #FEEC04;

    border-color: #FEEC04;

    color: #022C66;

    transform: translateY(-2px);
}


/* =====================================================
        RIGHT VIDEO
===================================================== */

.vbb-admission-video {
    width: 100%;

    height: 350px;

    position: relative;

    overflow: hidden;

    border-radius: 45px 95px 45px 95px;

    border: 6px solid #28B9E6;

    background: #022C66;

    box-sizing: border-box;
}


.vbb-admission-video video {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    background: #022C66;
}


/* =====================================================
        TAGLINE
===================================================== */

.vbb-admission-tagline {
    width: 100%;

    background: #022C66;

    border-top: 3px solid #FEEC04;

    border-bottom: 3px solid #A5DEFF;

    overflow: hidden;
}


.vbb-admission-tagline-inner {
    width: 100%;

    min-height: 46px;

    padding: 6px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    color: #FEEC04;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.25;

    text-align: center;

    box-sizing: border-box;
}


.vbb-admission-tagline-inner span {
    color: #FEEC04;

    font-weight: 600;
}


/* =====================================================
        LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .vbb-admission-hero-inner {
        min-height: 450px;

        padding-left: 6%;

        padding-right: 6%;

        gap: 45px;
    }


    .vbb-admission-content h1 {
        font-size: 60px;
    }


    .vbb-admission-content h2 {
        font-size: 36px;
    }


    .vbb-admission-content p {
        font-size: 18px;
    }


    .vbb-admission-video {
        height: 375px;
    }


    .vbb-admission-tagline-inner {
        font-size: 18px;
    }

}


/* =====================================================
        LAPTOP
===================================================== */

@media (max-width: 1200px) {

    .vbb-admission-hero-inner {
        min-height: 390px;

        padding: 20px 4%;

        gap: 25px;
    }


    .vbb-admission-content {
        padding-left: 0;
    }


    .vbb-admission-content h1 {
        font-size: 45px;
    }


    .vbb-admission-content h2 {
        font-size: 28px;

        letter-spacing: 1.5px;
    }


    .vbb-admission-content p {
        font-size: 14px;

        margin-bottom: 18px;
    }


    .vbb-admission-buttons {
        gap: 8px;
    }


    .vbb-admission-buttons a {
        min-height: 40px;

        padding: 0 15px;

        font-size: 13px;
    }


    .vbb-admission-video {
        height: 315px;

        border-radius: 40px 80px 40px 80px;
    }


    .vbb-admission-tagline-inner {
        min-height: 43px;

        font-size: 14px;
    }

}


/* =====================================================
        TABLET
        TEXT + VIDEO SAME ROW
===================================================== */

@media (max-width: 991px) {

    .vbb-admission-hero-inner {
        min-height: 350px;

        padding: 18px 25px;

        grid-template-columns: 1.15fr .85fr;

        gap: 18px;
    }


    .vbb-admission-content h1 {
        font-size: 36px;

        line-height: 1;
    }


    .vbb-admission-content h2 {
        font-size: 23px;

        margin: 5px 0 12px;
    }


    .vbb-admission-content p {
        font-size: 12px;

        line-height: 1.4;

        margin-bottom: 16px;
    }


    .vbb-admission-buttons {
        flex-wrap: nowrap;
    }


    .vbb-admission-buttons a {
        min-height: 36px;

        padding: 0 11px;

        font-size: 11px;

        border-width: 1.5px;
    }


    .vbb-admission-video {
        height: 285px;

        border-width: 5px;

        border-radius: 35px 70px 35px 70px;
    }


    .vbb-admission-tagline-inner {
        min-height: 40px;

        font-size: 12px;

        padding: 6px 15px;
    }

}


/* =====================================================
        MOBILE
        ONLY MOBILE GOES COLUMN
===================================================== */

@media (max-width: 767px) {

    .vbb-admission-hero-inner {
        min-height: auto;

        padding: 22px 15px 25px;

        display: flex;

        flex-direction: column;

        gap: 20px;
    }


    .vbb-admission-content {
        width: 100%;

        max-width: 100%;

        text-align: center;
    }


    .vbb-admission-content h1 {
        font-size: 32px;
    }


    .vbb-admission-content h2 {
        font-size: 21px;

        margin: 5px 0 12px;
    }


    .vbb-admission-content p {
        font-size: 13px;

        margin: 0 auto 18px;
    }


    .vbb-admission-buttons {
        justify-content: center;

        width: 100%;

        flex-wrap: wrap;

        gap: 8px;
    }


    .vbb-admission-buttons a {
        min-height: 40px;

        font-size: 12px;

        padding: 0 14px;
    }


    .vbb-admission-video {
        width: 100%;

        max-width: 550px;

        height: 255px;

        border-width: 5px;

        border-radius: 35px 70px 35px 70px;
    }


    .vbb-admission-tagline-inner {
        min-height: 52px;

        display: block;

        padding: 7px 12px;

        font-size: 11px;

        line-height: 1.35;
    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vbb-admission-hero-inner {
        padding: 18px 10px 22px;

        gap: 18px;
    }


    .vbb-admission-content h1 {
        font-size: 27px;
    }


    .vbb-admission-content h2 {
        font-size: 17px;

        letter-spacing: 1px;
    }


    .vbb-admission-content p {
        font-size: 11px;
    }


    .vbb-admission-buttons {
        flex-direction: row;

        flex-wrap: nowrap;

        gap: 6px;
    }


    .vbb-admission-buttons a {
        width: auto;

        min-height: 36px;

        padding: 0 10px;

        font-size: 10px;
    }


    .vbb-admission-video {
        height: 210px;

        border-radius: 28px 55px 28px 55px;
    }


    .vbb-admission-tagline-inner {
        min-height: 52px;

        font-size: 9px;
    }

}


/* =====================================================
        VERY SMALL MOBILE
===================================================== */

@media (max-width: 360px) {

    .vbb-admission-content h1 {
        font-size: 24px;
    }


    .vbb-admission-content h2 {
        font-size: 15px;
    }


    .vbb-admission-content p {
        font-size: 10px;
    }


    .vbb-admission-buttons a {
        padding: 0 8px;

        font-size: 9px;
    }


    .vbb-admission-video {
        height: 190px;
    }


    .vbb-admission-tagline-inner {
        font-size: 8px;
    }

}








/* =====================================================
        ABOUT SECTION - COMPACT & RESPONSIVE
===================================================== */

.about-section {
    position: relative;

    width: 100%;

    padding: 55px 0 50px;

    background: #ffffff;

    overflow: hidden;

    text-align: center;
}


/* =====================================================
        ABOUT BACKGROUND
===================================================== */

.about-bg {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.94),
            rgba(255,255,255,.94)
        ),
        url("../images/school-bg.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: 0;
}


.about-section .container {
    position: relative;

    z-index: 2;
}


/* =====================================================
        HEADING
===================================================== */

.about-heading {
    max-width: 1150px;

    margin: 0 auto 28px;
}


.about-heading h2 {
    margin: 0;

    color: #022C66;

    font-size: 31px;

    font-weight: 700;

    line-height: 1.35;

    letter-spacing: .1px;
}


/* =====================================================
        DESCRIPTION
===================================================== */

.about-description {
    max-width: 1080px;

    margin: 0 auto;
}


.about-description p {
    margin: 0;

    color: #444444;

    font-size: 18px;

    font-weight: 400;

    text-align: justify;

    line-height: 1.55;
}


/* =====================================================
        READ MORE
===================================================== */

.about-button {
    margin-top: 22px;
}


.about-button a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 170px;

    height: 48px;

    padding: 0 28px;

    border: 2px solid #FEEC04;

    border-radius: 30px;

    background: #ffffff;

    color: #022C66;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .8px;

    text-decoration: none;

    transition: all .3s ease;
}


.about-button a:hover {
    background: #FEEC04;

    color: #022C66;

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(2,44,102,.15);
}


/* =====================================================
        STATISTICS
===================================================== */

.about-stats {
    max-width: 1080px;

    margin: 42px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


/* =====================================================
        STAT CARD
===================================================== */

.stat-card {
    min-height: 145px;

    padding: 18px 12px;

    background: rgba(255,255,255,.92);

    border: 2px solid;

    border-radius: 11px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transition: all .3s ease;
}


.stat-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(2,44,102,.12);
}


/* =====================================================
        NUMBER
===================================================== */

.stat-number {
    font-size: 45px;

    font-weight: 700;

    line-height: 1;

    margin-bottom: 10px;
}


/* =====================================================
        TITLE
===================================================== */

.stat-title {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: .3px;
}


/* =====================================================
        CARD COLORS
===================================================== */

/* DARK BLUE */

.stat-green {
    border-color: #022C66;

    color: #022C66;
}


/* SKY BLUE */

.stat-brown {
    border-color: #A5DEFF;

    color: #022C66;
}


/* LIGHT BLUE */

.stat-purple {
    border-color: #C5EAFF;

    color: #022C66;
}


/* YELLOW */

.stat-blue {
    border-color: #FEEC04;

    color: #022C66;
}


/* =====================================================
        LARGE TABLET
===================================================== */

@media (max-width: 1200px) {

    .about-section {
        padding: 48px 0 45px;
    }


    .about-heading {
        max-width: 950px;
    }


    .about-heading h2 {
        font-size: 27px;
    }


    .about-description {
        max-width: 900px;
    }


    .about-description p {
        font-size: 17px;
    }


    .about-stats {
        max-width: 900px;

        gap: 20px;

        margin-top: 38px;
    }


    .stat-card {
        min-height: 135px;
    }


    .stat-number {
        font-size: 40px;
    }

}


/* =====================================================
        TABLET
===================================================== */

@media (max-width: 991px) {

    .about-section {
        padding: 42px 20px 45px;
    }


    .about-heading {
        margin-bottom: 25px;
    }


    .about-heading h2 {
        font-size: 24px;

        line-height: 1.4;
    }


    .about-description p {
        font-size: 16px;

        line-height: 1.55;
    }


    .about-button {
        margin-top: 20px;
    }


    .about-stats {
        grid-template-columns: repeat(2, 1fr);

        max-width: 600px;

        gap: 16px;

        margin-top: 35px;
    }


    .stat-card {
        min-height: 130px;
    }

}


/* =====================================================
        MOBILE
===================================================== */

@media (max-width: 767px) {

    .about-section {
        padding: 38px 15px 40px;
    }


    .about-heading {
        margin-bottom: 20px;
    }


    .about-heading h2 {
        font-size: 21px;

        line-height: 1.4;

        color: #022C66;
    }


    .about-description p {
        font-size: 14px;

        line-height: 1.6;
    }


    .about-button {
        margin-top: 18px;
    }


    .about-button a {
        min-width: 145px;

        height: 44px;

        padding: 0 22px;

        font-size: 12px;
    }


    .about-stats {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        margin-top: 30px;
    }


    .stat-card {
        min-height: 115px;

        padding: 14px 8px;

        border-radius: 9px;
    }


    .stat-number {
        font-size: 32px;

        margin-bottom: 8px;
    }


    .stat-title {
        font-size: 9px;

        line-height: 1.3;
    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .about-section {
        padding: 32px 12px 35px;
    }


    .about-heading h2 {
        font-size: 18px;

        line-height: 1.45;
    }


    .about-description p {
        font-size: 13px;

        line-height: 1.6;
    }


    .about-button a {
        min-width: 135px;

        height: 42px;

        font-size: 11px;
    }


    .about-stats {
        gap: 10px;

        margin-top: 27px;
    }


    .stat-card {
        min-height: 105px;
    }


    .stat-number {
        font-size: 28px;
    }


    .stat-title {
        font-size: 8px;
    }

}


/* =====================================================
        VERY SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .about-heading h2 {
        font-size: 17px;
    }


    .about-description p {
        font-size: 12px;
    }


    .stat-card {
        min-height: 100px;
    }


    .stat-number {
        font-size: 26px;
    }

}




/* =====================================================
        LATEST HAPPENINGS
===================================================== */

.latest-section {

    position: relative;

    width: 100%;

    padding: 65px 0 75px;

    background-color: #022C66;

    background-image:
        radial-gradient(
            rgba(165,222,255,.10) 1px,
            transparent 1px
        );

    background-size: 5px 5px;

    overflow: hidden;
}


/* =====================================================
        HEADING
===================================================== */

.latest-heading {

    text-align: center;

    margin-bottom: 55px;
}


.latest-heading h2 {

    margin: 0;

    color: #ffffff;

    font-size: 54px;

    font-weight: 700;

    line-height: 1.1;
}


/* =====================================================
        MAIN GRID
===================================================== */

.latest-grid {

    max-width: 1340px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(320px, .92fr);

    gap: 30px;

    align-items: stretch;
}


/* =====================================================
        FEATURED CARD
===================================================== */

.latest-featured {

    display: block;

    text-decoration: none;

    min-width: 0;

    border-radius: 15px;

    overflow: hidden;

    position: relative;

    background: #ffffff;
}


.latest-image {

    position: relative;

    width: 100%;

    height: 475px;

    overflow: hidden;

    background: #022C66;
}


.latest-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}


.latest-featured:hover .latest-image img {

    transform: scale(1.04);
}


/* =====================================================
        DARK OVERLAY
===================================================== */

.latest-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2,44,102,.82),
            rgba(2,44,102,.08) 65%
        );

    z-index: 1;
}


/* =====================================================
        EVENT LABEL
===================================================== */

.event-label {

    position: absolute;

    top: 15px;

    left: 15px;

    z-index: 3;

    background: #FEEC04;

    color: #022C66;

    padding: 8px 14px;

    font-size: 13px;

    font-weight: 700;

    line-height: 1;
}


/* =====================================================
        NUMBER
===================================================== */

.event-number {

    position: absolute;

    top: 14px;

    right: 15px;

    z-index: 3;

    color: #022C66;

    background: #ffffff;

    font-size: 16px;

    font-weight: 700;

    padding: 5px 8px;

    border-radius: 0 0 0 8px;
}


/* =====================================================
        FEATURED CONTENT
===================================================== */

.featured-content {

    position: absolute;

    left: 25px;

    right: 25px;

    bottom: 25px;

    z-index: 3;
}


.featured-content h3 {

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 31px;

    font-weight: 700;

    line-height: 1.15;
}


.featured-content span {

    color: #FEEC04;

    font-size: 13px;

    font-weight: 700;
}


/* =====================================================
        RIGHT SIDE
===================================================== */

.latest-side {

    display: flex;

    flex-direction: column;

    gap: 30px;
}


/* =====================================================
        SMALL CARD
===================================================== */

.latest-card {

    display: block;

    text-decoration: none;

    background: #ffffff;

    border-radius: 15px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.latest-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(2,44,102,.22);
}


/* =====================================================
        CARD IMAGE
===================================================== */

.latest-card-image {

    width: 100%;

    height: 190px;

    position: relative;

    overflow: hidden;
}


.latest-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s ease;
}


.latest-card:hover .latest-card-image img {

    transform: scale(1.04);
}


/* =====================================================
        CARD NUMBER
===================================================== */

.card-number {

    position: absolute;

    top: 10px;

    right: 12px;

    background: #ffffff;

    color: #022C66;

    font-size: 16px;

    font-weight: 700;

    padding: 4px 7px;

    border-radius: 0 0 0 7px;
}


/* =====================================================
        CARD CONTENT
===================================================== */

.latest-card-content {

    padding: 22px 25px 24px;
}


.latest-card-content h3 {

    margin: 0 0 12px;

    color: #022C66;

    font-size: 23px;

    font-weight: 700;

    line-height: 1.25;
}


.latest-card-content span {

    color: #022C66;

    font-size: 13px;

    font-weight: 700;
}


/* =====================================================
        VIEW ALL
===================================================== */

.latest-button {

    text-align: center;

    margin-top: 38px;
}


.latest-button a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 195px;

    height: 52px;

    padding: 0 30px;

    border: 2px solid #FEEC04;

    border-radius: 30px;

    background: #FEEC04;

    color: #022C66;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .5px;

    transition: all .3s ease;
}


.latest-button a:hover {

    background: #A5DEFF;

    border-color: #A5DEFF;

    color: #022C66;

    transform: translateY(-2px);
}


/* =====================================================
        1200px
===================================================== */

@media (max-width: 1200px) {

    .latest-section {

        padding: 55px 20px 65px;
    }


    .latest-heading h2 {

        font-size: 45px;
    }


    .latest-grid {

        gap: 22px;
    }


    .latest-image {

        height: 420px;
    }


    .featured-content h3 {

        font-size: 27px;
    }


    .latest-card-image {

        height: 165px;
    }


    .latest-card-content h3 {

        font-size: 20px;
    }

}


/* =====================================================
        TABLET
===================================================== */

@media (max-width: 991px) {

    .latest-section {

        padding: 45px 18px 55px;
    }


    .latest-heading {

        margin-bottom: 35px;
    }


    .latest-heading h2 {

        font-size: 38px;
    }


    .latest-grid {

        grid-template-columns: 1fr;

        max-width: 750px;
    }


    .latest-image {

        height: 430px;
    }


    .latest-side {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }


    .latest-card-image {

        height: 190px;
    }

}


/* =====================================================
        MOBILE
===================================================== */

@media (max-width: 767px) {

    .latest-section {

        padding: 38px 12px 45px;
    }


    .latest-heading {

        margin-bottom: 25px;
    }


    .latest-heading h2 {

        font-size: 30px;
    }


    .latest-grid {

        display: flex;

        flex-direction: column;

        gap: 18px;
    }


    .latest-image {

        height: 300px;
    }


    .featured-content {

        left: 17px;

        right: 17px;

        bottom: 18px;
    }


    .featured-content h3 {

        font-size: 21px;

        line-height: 1.2;
    }


    .featured-content span {

        font-size: 11px;
    }


    .event-label {

        top: 10px;

        left: 10px;

        padding: 7px 11px;

        font-size: 11px;
    }


    .event-number {

        top: 10px;

        right: 10px;

        font-size: 13px;
    }


    .latest-side {

        display: flex;

        flex-direction: column;

        gap: 18px;
    }


    .latest-card {

        display: grid;

        grid-template-columns: 42% 58%;

        min-height: 125px;
    }


    .latest-card-image {

        height: 100%;

        min-height: 125px;
    }


    .latest-card-content {

        padding: 15px;
    }


    .latest-card-content h3 {

        font-size: 16px;

        line-height: 1.25;

        margin-bottom: 8px;
    }


    .latest-card-content span {

        font-size: 10px;
    }


    .card-number {

        font-size: 12px;

        top: 7px;

        right: 7px;
    }


    .latest-button {

        margin-top: 25px;
    }


    .latest-button a {

        min-width: 155px;

        height: 44px;

        font-size: 12px;
    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .latest-heading h2 {

        font-size: 26px;
    }


    .latest-image {

        height: 260px;
    }


    .featured-content h3 {

        font-size: 18px;
    }


    .latest-card {

        grid-template-columns: 40% 60%;
    }


    .latest-card-content {

        padding: 12px;
    }


    .latest-card-content h3 {

        font-size: 14px;
    }


    .latest-card-content span {

        font-size: 9px;
    }

}





/* =====================================================
        IMPORTANT UPDATES - PREMIUM VBB THEME
===================================================== */

.important-updates {

    width: 100%;

    background: #C5EAFF;

    color: #022C66;

    padding: 50px 0 45px;

    position: relative;

    overflow: hidden;
}


/* =====================================================
        TOP DECORATIVE LINE
===================================================== */

.important-updates::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 4px;

    background: #FEEC04;
}


/* =====================================================
        CONTAINER
===================================================== */

.important-updates .container {

    max-width: 1350px;

    margin: auto;

    padding-left: 25px;

    padding-right: 25px;
}


/* =====================================================
        HEADER
===================================================== */

.updates-header {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.updates-header h2 {

    margin: 0;

    color: #022C66;

    font-size: 20px;

    font-weight: 700;

    letter-spacing: .3px;
}


/* =====================================================
        ARROWS
===================================================== */

.updates-arrows {

    display: flex;

    align-items: center;

    gap: 10px;
}


.updates-arrows button {

    width: 48px;

    height: 48px;

    border: 2px solid #FEEC04;

    border-radius: 50%;

    background: #ffffff;

    color: #022C66;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    cursor: pointer;

    transition: all .3s ease;
}


.updates-arrows button:hover {

    background: #FEEC04;

    color: #022C66;

    transform: translateY(-2px);
}


/* =====================================================
        LINE
===================================================== */

.updates-line {

    width: 100%;

    height: 1px;

    background: rgba(2,44,102,.18);

    margin-top: 16px;

    margin-bottom: 30px;
}


/* =====================================================
        UPDATES GRID
===================================================== */

.updates-wrapper {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    width: 100%;
}


/* =====================================================
        UPDATE ITEM
===================================================== */

.update-item {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 0 28px;

    border-right: 1px solid rgba(2,44,102,.18);

    text-decoration: none;

    color: #022C66;

    transition: all .3s ease;
}


.update-item:first-child {

    padding-left: 10px;
}


.update-item:last-child {

    border-right: 0;
}


/* =====================================================
        DATE
===================================================== */

.update-date {

    min-width: 68px;

    display: flex;

    flex-direction: column;

    align-items: center;

    line-height: 1;

    position: relative;

    padding-right: 18px;
}


.update-date::after {

    content: "";

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 1px;

    height: 48px;

    background: rgba(2,44,102,.20);
}


.update-date span {

    color: #022C66;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 5px;
}


.update-date strong {

    color: #022C66;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 36px;

    font-weight: 500;

    line-height: 1;
}


/* =====================================================
        UPDATE TEXT
===================================================== */

.update-text {

    color: #022C66;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 500;

    transition: all .3s ease;
}


.update-item:hover .update-text {

    color: #022C66;
}


.update-item:hover .update-date strong {

    color: #022C66;
}


/* =====================================================
        VIEW ALL
===================================================== */

.updates-view-all {

    text-align: center;

    margin-top: 38px;
}


.updates-view-all a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 185px;

    height: 52px;

    padding: 0 32px;

    background: #FEEC04;

    color: #022C66;

    border-radius: 28px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .4px;

    transition: all .3s ease;
}


.updates-view-all a:hover {

    background: #022C66;

    color: #FEEC04;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(2,44,102,.20);
}


/* =====================================================
        TABLET
===================================================== */

@media (max-width: 991px) {

    .important-updates {

        padding: 42px 0;

    }


    .updates-wrapper {

        grid-template-columns: 1fr;

    }


    .update-item {

        min-height: 78px;

        padding: 16px 5px;

        border-right: 0;

        border-bottom: 1px solid rgba(2,44,102,.15);

    }


    .update-item:first-child {

        padding-left: 5px;

    }


    .update-item:last-child {

        border-bottom: 0;

    }


    .update-text {

        font-size: 19px;

    }

}


/* =====================================================
        MOBILE
===================================================== */

@media (max-width: 767px) {

    .important-updates {

        padding: 35px 0;

    }


    .important-updates .container {

        padding-left: 15px;

        padding-right: 15px;

    }


    .updates-header h2 {

        font-size: 16px;

    }


    .updates-arrows {

        gap: 7px;

    }


    .updates-arrows button {

        width: 38px;

        height: 38px;

        font-size: 16px;

    }


    .updates-line {

        margin-top: 14px;

        margin-bottom: 12px;

    }


    .update-item {

        min-height: 72px;

        gap: 14px;

        padding: 14px 3px;

    }


    .update-date {

        min-width: 58px;

        padding-right: 13px;

    }


    .update-date::after {

        height: 42px;

    }


    .update-date span {

        font-size: 10px;

    }


    .update-date strong {

        font-size: 29px;

    }


    .update-text {

        font-size: 16px;

        line-height: 1.3;

    }


    .updates-view-all {

        margin-top: 25px;

    }


    .updates-view-all a {

        min-width: 150px;

        height: 46px;

        font-size: 13px;

    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .important-updates {

        padding: 30px 0;

    }


    .updates-header h2 {

        font-size: 15px;

    }


    .updates-arrows button {

        width: 34px;

        height: 34px;

        font-size: 14px;

    }


    .update-item {

        min-height: 68px;

    }


    .update-date {

        min-width: 52px;

    }


    .update-date strong {

        font-size: 27px;

    }


    .update-text {

        font-size: 15px;

    }

}






/* =====================================================
        ABOUT / INTRO SECTION
===================================================== */

.about-section {

    width: 100%;

    background: #ffffff;

    padding: 70px 0 65px;

    position: relative;

    overflow: hidden;
}


/* =====================================================
        TOP ACCENT
===================================================== */

.about-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 4px;

    background: #FEEC04;
}


/* =====================================================
        CONTAINER
===================================================== */

.about-section .container {

    max-width: 1400px;
}


/* =====================================================
        CONTENT LAYOUT
===================================================== */

.about-content {

    display: grid;

    grid-template-columns: 1.55fr .85fr;

    align-items: center;

    gap: 55px;
}


/* =====================================================
        LEFT CONTENT
===================================================== */

.about-text {

    padding-right: 15px;
}


/* =====================================================
        QUOTE
===================================================== */

.about-quote {

    position: relative;

    margin-bottom: 28px;

    padding: 28px 35px;

    background: #C5EAFF;

    border-left: 5px solid #FEEC04;

    border-radius: 0 35px 35px 0;

    color: #022C66;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;

    line-height: 1.35;

    font-weight: 500;
}


.about-quote span {

    color: #333333;
}


/* =====================================================
        QUOTE MARK
===================================================== */

.about-quote::before {

    content: "“";

    position: absolute;

    left: -5px;

    top: -22px;

    font-family: Georgia, serif;

    font-size: 100px;

    line-height: 1;

    color: rgba(2,44,102,.08);

    z-index: 0;
}


/* =====================================================
        DESCRIPTION
===================================================== */

.about-description {

    color: #333333;

    font-size: 16px;

    line-height: 1.85;

    margin-bottom: 25px;

    max-width: 900px;
}


/* =====================================================
        READ MORE
===================================================== */

.about-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 190px;

    height: 52px;

    padding: 0 30px;

    border: 2px solid #FEEC04;

    border-radius: 30px;

    background: #ffffff;

    color: #022C66;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .4px;

    transition: all .3s ease;
}


.about-btn:hover {

    background: #FEEC04;

    color: #022C66;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(2,44,102,.15);
}


/* =====================================================
        RIGHT IMAGE
===================================================== */

.about-image {

    position: relative;

    text-align: center;
}


.about-image img {

    width: 100%;

    max-width: 300px;

    height: 300px;

    object-fit: contain;

    display: block;

    margin: auto;

    border-radius: 2px;

    box-shadow: 0 12px 30px rgba(2,44,102,.12);
}


/* =====================================================
        BLUE BORDER EFFECT
===================================================== */

.about-image::before {

    content: "";

    position: absolute;

    width: 100%;

    max-width: 500px;

    height: 355px;

    top: 12px;

    left: 50%;

    transform: translateX(-47%);

    border: 3px solid #A5DEFF;

    border-radius: 4px;

    z-index: 0;
}


.about-image img {

    position: relative;

    z-index: 1;
}


/* =====================================================
        NAME
===================================================== */

.about-name {

    margin-top: 25px;

    color: #022C66;

    font-size: 18px;

    font-weight: 700;

    text-align: center;
}


.about-name::after {

    content: "";

    display: block;

    width: 55px;

    height: 3px;

    margin: 8px auto 0;

    background: #FEEC04;

    border-radius: 5px;
}


/* =====================================================
        TABLET
===================================================== */

@media (max-width: 991px) {

    .about-section {

        padding: 55px 0;
    }


    .about-content {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-text {

        padding-right: 0;
    }


    .about-quote {

        font-size: 24px;
    }


    .about-description {

        font-size: 15px;
    }


    .about-image img {

        max-width: 450px;

        height: 320px;
    }


    .about-image::before {

        max-width: 450px;

        height: 320px;
    }

}


/* =====================================================
        MOBILE
===================================================== */

@media (max-width: 767px) {

    .about-section {

        padding: 40px 0 45px;
    }


    .about-section .container {

        padding-left: 18px;

        padding-right: 18px;
    }


    .about-content {

        gap: 35px;
    }


    .about-quote {

        padding: 20px 22px;

        margin-bottom: 22px;

        border-left-width: 4px;

        border-radius: 0 22px 22px 0;

        font-size: 20px;

        line-height: 1.4;
    }


    .about-quote::before {

        font-size: 70px;

        top: -15px;
    }


    .about-description {

        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 22px;
    }


    .about-btn {

        min-width: 155px;

        height: 46px;

        font-size: 12px;
    }


    .about-image img {

        max-width: 100%;

        height: 270px;
    }


    .about-image::before {

        max-width: 100%;

        height: 270px;

        top: 8px;

        transform: translateX(-48%);
    }


    .about-name {

        margin-top: 18px;

        font-size: 16px;
    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .about-section {

        padding: 32px 0 38px;
    }


    .about-quote {

        padding: 17px 18px;

        font-size: 17px;
    }


    .about-description {

        font-size: 13px;

        line-height: 1.65;
    }


    .about-image img {

        height: 230px;
    }


    .about-image::before {

        height: 230px;
    }


    .about-name {

        font-size: 15px;
    }

}









/* =====================================================
        FORMER PRINCIPALS SECTION
===================================================== */

.former-principals {

    width: 100%;

    padding: 65px 0 75px;

    background: #C5EAFF;

    overflow: hidden;
}


/* =====================================================
        CONTAINER
===================================================== */

.former-principals .container {

    max-width: 1400px;

    margin: 0 auto;

    padding-left: 25px;
    padding-right: 25px;
}


/* =====================================================
        TITLE
===================================================== */

.former-title {

    text-align: center;

    margin-bottom: 48px;
}


.former-title h2 {

    margin: 0;

    color: #022C66;

    font-size: 46px;

    font-weight: 700;

    line-height: 1.2;
}


/* =====================================================
        SLIDER AREA
===================================================== */

.principal-slider {

    position: relative;

    width: 100%;

    display: flex;

    align-items: center;
}


/* =====================================================
        VIEWPORT
===================================================== */

.principal-viewport {

    width: 100%;

    overflow: hidden;

    padding: 8px 0 15px;
}


/* =====================================================
        TRACK
===================================================== */

.principal-track {

    display: flex;

    gap: 35px;

    width: max-content;

    transition:
        transform 0.55s cubic-bezier(.4, 0, .2, 1);

    will-change: transform;
}


/* =====================================================
        CARD
===================================================== */

.principal-card {

    flex: 0 0 calc(
        (min(1350px, 100vw - 50px) - 105px) / 4
    );

    min-width: 0;

    height: 335px;

    background: #ffffff;

    border-radius: 9px;

    padding: 30px 20px 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    text-align: center;

    box-shadow:
        0 5px 20px rgba(2,44,102,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* =====================================================
        CARD HOVER
===================================================== */

.principal-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(2,44,102,.16);
}


/* =====================================================
        ROUND IMAGE
===================================================== */

.principal-photo {

    width: 195px;

    height: 195px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 50%;

    margin-bottom: 23px;

    background: #A5DEFF;

    border: 4px solid #A5DEFF;
}


.principal-photo img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


/* =====================================================
        NAME
===================================================== */

.principal-card h3 {

    width: 100%;

    margin: 0 0 7px;

    color: #022C66;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.3;

    white-space: normal;
}


/* =====================================================
        DATE
===================================================== */

.principal-card p {

    margin: 0;

    color: #333333;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.4;
}


/* =====================================================
        ARROWS
===================================================== */

.principal-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 52px;

    height: 52px;

    border: 0;

    border-radius: 50%;

    background: #022C66;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    cursor: pointer;

    box-shadow:
        0 5px 15px rgba(2,44,102,.20);

    transition: all .3s ease;
}


/* =====================================================
        ARROW HOVER
===================================================== */

.principal-arrow:hover {

    background: #FEEC04;

    color: #022C66;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =====================================================
        DISABLED
===================================================== */

.principal-arrow.disabled {

    opacity: .35;

    cursor: default;

    pointer-events: none;
}


/* =====================================================
        LEFT
===================================================== */

.principal-prev {

    left: 5px;
}


/* =====================================================
        RIGHT
===================================================== */

.principal-next {

    right: 5px;
}


/* =====================================================
        TABLET
===================================================== */

@media (max-width: 1100px) {

    .former-principals {

        padding: 55px 0 65px;
    }


    .former-title {

        margin-bottom: 40px;
    }


    .former-title h2 {

        font-size: 38px;
    }


    .principal-track {

        gap: 25px;
    }


    .principal-card {

        flex-basis: calc(
            (100vw - 50px - 25px) / 2
        );

        height: 320px;
    }


    .principal-photo {

        width: 175px;

        height: 175px;
    }


    .principal-arrow {

        width: 46px;

        height: 46px;

        font-size: 18px;
    }

}


/* =====================================================
        MOBILE
===================================================== */

@media (max-width: 767px) {

    .former-principals {

        padding: 40px 0 50px;
    }


    .former-principals .container {

        padding-left: 15px;

        padding-right: 15px;
    }


    .former-title {

        margin-bottom: 30px;
    }


    .former-title h2 {

        font-size: 29px;
    }


    .principal-track {

        gap: 15px;
    }


    .principal-card {

        flex-basis: calc(100vw - 30px);

        height: 300px;

        padding: 25px 15px 22px;
    }


    .principal-photo {

        width: 155px;

        height: 155px;

        margin-bottom: 20px;

        border-width: 3px;
    }


    .principal-card h3 {

        font-size: 15px;
    }


    .principal-card p {

        font-size: 13px;
    }


    .principal-arrow {

        width: 40px;

        height: 40px;

        font-size: 16px;
    }


    .principal-prev {

        left: 2px;
    }


    .principal-next {

        right: 2px;
    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .former-principals {

        padding: 35px 0 45px;
    }


    .former-title h2 {

        font-size: 25px;
    }


    .principal-card {

        flex-basis: calc(100vw - 30px);

        height: 285px;
    }


    .principal-photo {

        width: 140px;

        height: 140px;
    }


    .principal-card h3 {

        font-size: 14px;
    }


    .principal-card p {

        font-size: 12px;
    }

}





/* =====================================================
                TOP ACHIEVERS
===================================================== */

.top-achievers {

    width: 100%;

    padding: 65px 0 75px;

    background: #C5EAFF;

    overflow: hidden;
}


/* =====================================================
        CONTAINER
===================================================== */

.top-achievers .container {

    max-width: 1400px;

    margin: auto;

    padding-left: 25px;

    padding-right: 25px;
}


/* =====================================================
                HEADING
===================================================== */

.achievers-heading {

    text-align: center;

    margin-bottom: 35px;
}


.achievers-heading h2 {

    margin: 0;

    color: #022C66;

    font-size: 46px;

    font-weight: 700;
}


/* =====================================================
                TABS
===================================================== */

.achiever-tabs {

    display: flex;

    justify-content: center;

    align-items: stretch;

    margin-bottom: 0;

    position: relative;

    z-index: 5;
}


.achiever-tab {

    border: 0;

    background: #ffffff;

    color: #022C66;

    padding: 15px 55px;

    font-size: 20px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
}


.achiever-tab:first-child {

    border-radius: 8px 0 0 0;
}


.achiever-tab:last-child {

    border-radius: 0 8px 0 0;
}


.achiever-tab.active {

    color: #022C66;

    border-top: 4px solid #FEEC04;

    background: #ffffff;
}


/* =====================================================
                CONTENT
===================================================== */

.achiever-content {

    display: none;
}


.achiever-content.active {

    display: block;
}


/* =====================================================
                SLIDER
===================================================== */

.achiever-slider {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;
}


/* =====================================================
                VIEWPORT
===================================================== */

.achiever-viewport {

    width: 100%;

    overflow: hidden;

    background: #ffffff;

    border-radius: 0 0 12px 12px;

    padding: 55px 0 45px;
}


/* =====================================================
                TRACK
===================================================== */

.achiever-track {

    display: flex;

    gap: 40px;

    width: max-content;

    transition:
        transform .6s cubic-bezier(.4,0,.2,1);

    will-change: transform;
}


/* =====================================================
                CARD
===================================================== */

.achiever-card {

    flex: 0 0 calc(
        (min(1350px, 100vw - 50px) - 80px) / 3
    );

    min-width: 0;

    text-align: center;

    position: relative;
}


/* =====================================================
                IMAGE
===================================================== */

.achiever-image {

    width: 250px;

    height: 250px;

    margin: 0 auto 22px;

    position: relative;

    border-radius: 50%;

    overflow: visible;
}


.achiever-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid #A5DEFF;
}


/* =====================================================
                RANK
===================================================== */

.rank-badge {

    position: absolute;

    right: -8px;

    top: 18px;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #FEEC04;

    color: #022C66;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 16px;

    font-weight: 700;

    box-shadow: 0 4px 10px rgba(2,44,102,.15);
}


/* =====================================================
                NAME
===================================================== */

.achiever-card h3 {

    margin: 0 0 5px;

    color: #022C66;

    font-size: 19px;

    font-weight: 700;
}


/* =====================================================
                CLASS
===================================================== */

.achiever-class {

    margin: 0 0 4px;

    color: #444444;

    font-size: 14px;

    font-weight: 600;
}


/* =====================================================
                MARKS
===================================================== */

.achiever-marks {

    margin: 0;

    color: #022C66;

    font-size: 18px;

    font-weight: 700;
}


/* =====================================================
                ARROWS
===================================================== */

.achiever-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 52px;

    height: 52px;

    border: 0;

    border-radius: 50%;

    background: #022C66;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(2,44,102,.18);

    transition: .3s ease;
}


.achiever-arrow:hover {

    background: #FEEC04;

    color: #022C66;

    transform:
        translateY(-50%)
        scale(1.08);
}


.achiever-prev {

    left: 10px;
}


.achiever-next {

    right: 10px;
}


/* =====================================================
                TABLET
===================================================== */

@media (max-width: 1100px) {

    .top-achievers {

        padding: 55px 0 65px;
    }


    .achievers-heading h2 {

        font-size: 38px;
    }


    .achiever-tab {

        padding: 14px 40px;

        font-size: 18px;
    }


    .achiever-track {

        gap: 30px;
    }


    .achiever-card {

        flex-basis: calc(
            (100vw - 50px - 30px) / 2
        );
    }


    .achiever-image {

        width: 210px;

        height: 210px;
    }

}


/* =====================================================
                MOBILE
===================================================== */

@media (max-width: 767px) {

    .top-achievers {

        padding: 40px 0 50px;
    }


    .top-achievers .container {

        padding-left: 15px;

        padding-right: 15px;
    }


    .achievers-heading {

        margin-bottom: 25px;
    }


    .achievers-heading h2 {

        font-size: 29px;
    }


    .achiever-tab {

        flex: 1;

        padding: 12px 10px;

        font-size: 14px;
    }


    .achiever-viewport {

        padding: 40px 0 35px;
    }


    .achiever-track {

        gap: 15px;
    }


    .achiever-card {

        flex-basis: calc(100vw - 30px);
    }


    .achiever-image {

        width: 175px;

        height: 175px;

        margin-bottom: 18px;
    }


    .achiever-image img {

        border-width: 3px;
    }


    .rank-badge {

        width: 45px;

        height: 45px;

        right: -5px;

        top: 10px;

        font-size: 13px;
    }


    .achiever-card h3 {

        font-size: 16px;
    }


    .achiever-class {

        font-size: 12px;
    }


    .achiever-marks {

        font-size: 16px;
    }


    .achiever-arrow {

        width: 40px;

        height: 40px;

        font-size: 16px;
    }


    .achiever-prev {

        left: 3px;
    }


    .achiever-next {

        right: 3px;
    }

}


/* =====================================================
                SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .achievers-heading h2 {

        font-size: 25px;
    }


    .achiever-tab {

        font-size: 12px;

        padding: 11px 7px;
    }


    .achiever-image {

        width: 155px;

        height: 155px;
    }


    .achiever-viewport {

        padding: 35px 0 30px;
    }

}


/* =====================================================
                SOME FACTS SECTION
===================================================== */

.dps-facts-section {

    width: 100%;

    padding: 70px 0 80px;

    background:
        linear-gradient(
            rgba(245, 250, 255, .94),
            rgba(245, 250, 255, .94)
        ),
        url("../images/bg-pattern.jpg");

    background-size: cover;

    background-position: center;

    overflow: hidden;
}


/* =====================================================
                CONTAINER
===================================================== */

.dps-facts-section .container {

    max-width: 1400px;

    margin: auto;

    padding-left: 25px;

    padding-right: 25px;
}


/* =====================================================
                HEADING
===================================================== */

.facts-heading {

    text-align: center;

    margin-bottom: 55px;
}


.facts-heading h2 {

    margin: 0;

    color: #022C66;

    font-size: 48px;

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: .3px;
}


/* =====================================================
                GRID
===================================================== */

.facts-grid {

    display: grid;

    grid-template-columns:
        1.65fr
        1fr
        1fr;

    grid-template-rows:
        325px
        325px;

    gap: 30px;
}


/* =====================================================
                FEATURE IMAGE
===================================================== */

.fact-feature {

    position: relative;

    overflow: hidden;

    border-radius: 14px;

    grid-column: 1;

    grid-row: 1;

    background: #022C66;
}


.fact-feature img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}


.fact-feature:hover img {

    transform: scale(1.04);
}


/* =====================================================
                IMAGE OVERLAY
===================================================== */

.feature-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 30px;

    background:
        linear-gradient(
            to top,
            rgba(2,44,102,.92),
            rgba(2,44,102,.05) 65%
        );
}


.feature-overlay h3 {

    margin: 0;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.3;

    font-weight: 700;

    text-shadow:
        0 2px 5px rgba(0,0,0,.35);
}


/* =====================================================
                FACT BOX
===================================================== */

.fact-box {

    min-height: 325px;

    border-radius: 14px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 25px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.fact-box:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(2,44,102,.12);
}


/* =====================================================
                NUMBERS
===================================================== */

.fact-number {

    color: #022C66;

    font-size: 52px;

    line-height: 1;

    font-weight: 700;

    margin-bottom: 15px;
}


/* =====================================================
                TITLE
===================================================== */

.fact-title {

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;

    line-height: 1.3;
}


/* =====================================================
                WHITE
===================================================== */

.fact-white {

    background: #ffffff;

    border: 1px solid #C5EAFF;
}


/* =====================================================
                SKY BLUE
===================================================== */

.fact-pink {

    background: #A5DEFF;
}


/* =====================================================
                LIGHT BLUE
===================================================== */

.fact-purple {

    background: #C5EAFF;
}


/* =====================================================
                DARK BLUE
===================================================== */

.fact-green {

    background: #022C66;
}


/* =====================================================
                DARK BLUE CONTENT
===================================================== */

.fact-green .fact-number {

    color: #FEEC04;
}


.fact-green .fact-title {

    color: #ffffff;
}


/* =====================================================
                GRID POSITIONING
===================================================== */

/* First row */

.fact-feature {

    grid-column: 1;

    grid-row: 1;
}


.fact-feature + .fact-box {

    grid-column: 2;

    grid-row: 1;
}


.fact-pink {

    grid-column: 3;

    grid-row: 1;
}


/* Second row */

.fact-purple {

    grid-column: 2;

    grid-row: 2;
}


.fact-green {

    grid-column: 3;

    grid-row: 2;
}


/* Teacher ratio automatically goes below image */

.facts-grid .fact-box:nth-child(4) {

    grid-column: 1;

    grid-row: 2;
}


/* =====================================================
                TABLET
===================================================== */

@media (max-width: 1100px) {

    .dps-facts-section {

        padding: 55px 0 65px;
    }


    .facts-heading {

        margin-bottom: 40px;
    }


    .facts-heading h2 {

        font-size: 40px;
    }


    .facts-grid {

        grid-template-columns:
            1.5fr
            1fr;

        grid-template-rows:
            300px
            300px
            300px;

        gap: 22px;
    }


    .fact-feature {

        grid-column: 1;

        grid-row: 1;
    }


    .facts-grid .fact-box:nth-child(2) {

        grid-column: 2;

        grid-row: 1;
    }


    .fact-pink {

        grid-column: 1;

        grid-row: 2;
    }


    .facts-grid .fact-box:nth-child(4) {

        grid-column: 2;

        grid-row: 2;
    }


    .fact-purple {

        grid-column: 1;

        grid-row: 3;
    }


    .fact-green {

        grid-column: 2;

        grid-row: 3;
    }


    .fact-box {

        min-height: 300px;
    }


    .feature-overlay h3 {

        font-size: 24px;
    }


    .fact-number {

        font-size: 44px;
    }


    .fact-title {

        font-size: 21px;
    }

}


/* =====================================================
                MOBILE
===================================================== */

@media (max-width: 767px) {

    .dps-facts-section {

        padding: 40px 0 50px;
    }


    .dps-facts-section .container {

        padding-left: 15px;

        padding-right: 15px;
    }


    .facts-heading {

        margin-bottom: 28px;
    }


    .facts-heading h2 {

        font-size: 28px;

        line-height: 1.2;
    }


    .facts-grid {

        display: flex;

        flex-direction: column;

        gap: 16px;
    }


    /* IMAGE */

    .fact-feature {

        width: 100%;

        height: 260px;

        min-height: 260px;

        order: 1;
    }


    /* STUDENTS */

    .facts-grid .fact-box:nth-child(2) {

        order: 2;
    }


    /* FACULTY */

    .fact-pink {

        order: 3;
    }


    /* RATIO */

    .facts-grid .fact-box:nth-child(4) {

        order: 4;
    }


    /* INTERNATIONAL */

    .fact-purple {

        order: 5;
    }


    /* YEARS */

    .fact-green {

        order: 6;
    }


    .fact-box {

        width: 100%;

        min-height: 190px;

        height: 190px;

        padding: 20px;

        border-radius: 12px;
    }


    .feature-overlay {

        padding: 20px;
    }


    .feature-overlay h3 {

        font-size: 20px;

        line-height: 1.3;
    }


    .fact-number {

        font-size: 40px;

        margin-bottom: 10px;
    }


    .fact-title {

        font-size: 19px;
    }

}


/* =====================================================
                SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .facts-heading h2 {

        font-size: 25px;
    }


    .fact-feature {

        height: 230px;

        min-height: 230px;
    }


    .fact-box {

        min-height: 165px;

        height: 165px;
    }


    .feature-overlay h3 {

        font-size: 17px;
    }


    .fact-number {

        font-size: 34px;
    }


    .fact-title {

        font-size: 17px;
    }

}



/* =====================================================
                CAMPUS TOUR SECTION
===================================================== */

.campus-tour-section {

    width: 100%;

    padding: 70px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
                MAIN CONTAINER
===================================================== */

.campus-tour-container {

    width: 100%;

    max-width: 1500px;

    min-height: 560px;

    margin: 0 auto;

    position: relative;

    overflow: hidden;
}


/* =====================================================
                IMAGE
===================================================== */

.campus-tour-media {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}


.campus-tour-media img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =====================================================
                DARK BLUE OVERLAY
===================================================== */

.campus-tour-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,44,102,.88) 0%,
            rgba(2,44,102,.68) 42%,
            rgba(2,44,102,.32) 72%,
            rgba(2,44,102,.18) 100%
        );
}


/* =====================================================
                CONTENT
===================================================== */

.campus-tour-content {

    position: relative;

    z-index: 2;

    min-height: 560px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 60px 100px;
}


/* =====================================================
                TEXT AREA
===================================================== */

.campus-tour-text {

    width: 58%;

    max-width: 720px;
}


.campus-tour-subtitle {

    display: inline-block;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;

    padding-left: 15px;

    border-left: 4px solid #FEEC04;
}


/* =====================================================
                HEADING
===================================================== */

.campus-tour-text h2 {

    margin: 0 0 22px;

    color: #FEEC04;

    font-size: 52px;

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: 1px;
}


/* =====================================================
                DESCRIPTION
===================================================== */

.campus-tour-text p {

    margin: 0;

    max-width: 650px;

    color: #ffffff;

    font-size: 23px;

    font-weight: 500;

    line-height: 1.55;
}


/* =====================================================
                ACTION AREA
===================================================== */

.campus-tour-action {

    width: 30%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 18px;
}


/* =====================================================
                PLAY BUTTON
===================================================== */

.campus-play-btn {

    width: 130px;

    height: 130px;

    border-radius: 50%;

    background: #FEEC04;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    position: relative;

    box-shadow:
        0 12px 35px rgba(0,0,0,.35);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.campus-play-btn:hover {

    transform: scale(1.08);

    background: #A5DEFF;

    box-shadow:
        0 15px 45px rgba(0,0,0,.45);
}


/* =====================================================
                PLAY ICON
===================================================== */

.play-icon {

    width: 0;
    height: 0;

    border-top: 20px solid transparent;

    border-bottom: 20px solid transparent;

    border-left: 32px solid #022C66;

    margin-left: 8px;
}


/* =====================================================
                LABEL
===================================================== */

.campus-tour-label {

    color: #ffffff;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =====================================================
                MODAL
===================================================== */

.campus-video-modal {

    background: #022C66;

    border: 0;

    border-radius: 10px;

    overflow: hidden;
}


.campus-video-modal .modal-header {

    border-bottom: 1px solid rgba(165,222,255,.20);

    padding: 15px 20px;
}


.campus-video-modal .modal-title {

    color: #ffffff;

    font-weight: 700;
}


.campus-video-modal .btn-close {

    filter: invert(1);
}


.campus-video-modal .modal-body {

    padding: 0;
}


/* =====================================================
                VIDEO
===================================================== */

.campus-video-wrapper {

    width: 100%;

    background: #022C66;
}


.campus-video-wrapper video {

    display: block;

    width: 100%;

    max-height: 75vh;

    object-fit: contain;
}


/* =====================================================
                LARGE TABLET
===================================================== */

@media (max-width: 1200px) {

    .campus-tour-container {

        min-height: 500px;
    }


    .campus-tour-content {

        min-height: 500px;

        padding: 50px 65px;
    }


    .campus-tour-text h2 {

        font-size: 43px;
    }


    .campus-tour-text p {

        font-size: 20px;
    }


    .campus-play-btn {

        width: 110px;

        height: 110px;
    }

}


/* =====================================================
                TABLET
===================================================== */

@media (max-width: 991px) {

    .campus-tour-section {

        padding: 45px 15px;
    }


    .campus-tour-container {

        min-height: 470px;

        border-radius: 12px;
    }


    .campus-tour-content {

        min-height: 470px;

        padding: 45px 45px;
    }


    .campus-tour-text {

        width: 65%;
    }


    .campus-tour-action {

        width: 30%;
    }


    .campus-tour-text h2 {

        font-size: 37px;
    }


    .campus-tour-text p {

        font-size: 18px;
    }


    .campus-play-btn {

        width: 95px;

        height: 95px;
    }


    .play-icon {

        border-top-width: 16px;

        border-bottom-width: 16px;

        border-left-width: 25px;
    }


    .campus-tour-label {

        font-size: 13px;
    }

}


/* =====================================================
                MOBILE
===================================================== */

@media (max-width: 767px) {

    .campus-tour-section {

        padding: 30px 12px;
    }


    .campus-tour-container {

        min-height: 560px;

        border-radius: 12px;
    }


    .campus-tour-media {

        position: absolute;
    }


    .campus-tour-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(2,44,102,.38),
                rgba(2,44,102,.90)
            );
    }


    .campus-tour-content {

        min-height: 560px;

        padding: 45px 25px;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        text-align: center;
    }


    .campus-tour-text {

        width: 100%;

        max-width: 500px;
    }


    .campus-tour-subtitle {

        font-size: 10px;

        letter-spacing: 1.5px;

        padding-left: 0;

        padding-bottom: 8px;

        border-left: 0;

        border-bottom: 3px solid #FEEC04;
    }


    .campus-tour-text h2 {

        font-size: 30px;

        line-height: 1.2;

        margin-bottom: 15px;
    }


    .campus-tour-text p {

        font-size: 16px;

        line-height: 1.5;
    }


    .campus-tour-action {

        width: 100%;

        margin-top: 30px;

        gap: 12px;
    }


    .campus-play-btn {

        width: 78px;

        height: 78px;
    }


    .play-icon {

        border-top-width: 13px;

        border-bottom-width: 13px;

        border-left-width: 21px;

        margin-left: 5px;
    }


    .campus-tour-label {

        font-size: 12px;
    }

}


/* =====================================================
                SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .campus-tour-section {

        padding: 20px 10px;
    }


    .campus-tour-container {

        min-height: 500px;
    }


    .campus-tour-content {

        min-height: 500px;

        padding: 35px 20px;
    }


    .campus-tour-text h2 {

        font-size: 25px;
    }


    .campus-tour-text p {

        font-size: 14px;
    }


    .campus-tour-subtitle {

        font-size: 9px;

        margin-bottom: 14px;
    }


    .campus-tour-action {

        margin-top: 22px;
    }


    .campus-play-btn {

        width: 68px;

        height: 68px;
    }


    .campus-tour-label {

        font-size: 10px;
    }

}


/* =====================================================
        INFRASTRUCTURE SECTION
===================================================== */

.vbb-infrastructure {

    width: 100%;

    padding: 75px 0 80px;

    background: #C5EAFF;

    position: relative;

    overflow: hidden;
}


/* =====================================================
        DECORATIVE BACKGROUND
===================================================== */

.vbb-infrastructure::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background: rgba(254,236,4,.10);

    top: -180px;

    left: -150px;
}


.vbb-infrastructure::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    border-radius: 50%;

    background: rgba(2,44,102,.06);

    bottom: -150px;

    right: -100px;
}


/* =====================================================
        HEADER
===================================================== */

.infra-header {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 38px;
}


/* =====================================================
        LEFT
===================================================== */

.infra-heading-wrap {

    position: relative;

    flex-shrink: 0;
}


.infra-small-title {

    display: block;

    color: #022C66;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 8px;
}


.infra-heading-wrap h2 {

    margin: 0;

    color: #022C66;

    font-size: 52px;

    font-weight: 700;

    line-height: 1.05;
}


/* =====================================================
        YELLOW LINE
===================================================== */

.infra-heading-wrap::after {

    content: "";

    display: block;

    width: 65px;

    height: 4px;

    margin-top: 14px;

    border-radius: 10px;

    background: #FEEC04;
}


/* =====================================================
        DESCRIPTION
===================================================== */

.infra-header p {

    max-width: 580px;

    margin: 0;

    color: #3d5368;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
        GRID
===================================================== */

.infra-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.35fr 1fr 1fr;

    grid-template-rows: 235px 235px;

    gap: 18px;
}


/* =====================================================
        COMMON CARD
===================================================== */

.infra-feature-card,
.infra-small-card {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 16px;

    text-decoration: none;

    background: #A5DEFF;

    box-shadow:
        0 8px 25px rgba(2,44,102,.10);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.infra-feature-card:hover,
.infra-small-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(2,44,102,.18);
}


/* =====================================================
        FEATURE CARD
===================================================== */

.infra-feature-card {

    grid-row: span 2;
}


/* =====================================================
        CARD IMAGE
===================================================== */

.infra-feature-card img,
.infra-small-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.infra-feature-card:hover img,
.infra-small-card:hover img {

    transform: scale(1.07);
}


/* =====================================================
        OVERLAY
===================================================== */

.infra-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2,44,102,.82) 0%,
            rgba(2,44,102,.30) 45%,
            rgba(2,44,102,.05) 100%
        );
}


/* =====================================================
        CARD CONTENT
===================================================== */

.infra-card-content {

    position: absolute;

    left: 22px;

    right: 22px;

    bottom: 20px;

    z-index: 2;
}


/* =====================================================
        NUMBER
===================================================== */

.infra-number {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    margin-bottom: 10px;

    border-radius: 50%;

    background: #FEEC04;

    color: #022C66;

    font-size: 12px;

    font-weight: 800;
}


/* =====================================================
        TITLE
===================================================== */

.infra-card-content h3 {

    margin: 0;

    color: #ffffff;

    font-size: 23px;

    font-weight: 700;

    line-height: 1.2;
}


/* =====================================================
        FEATURE TITLE
===================================================== */

.infra-feature-card .infra-card-content h3 {

    font-size: 32px;
}


/* =====================================================
        EXPLORE TEXT
===================================================== */

.infra-view {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 10px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    opacity: .95;
}


.infra-view i {

    color: #FEEC04;

    transition: transform .3s ease;
}


.infra-feature-card:hover .infra-view i {

    transform: translate(3px,-3px);
}


/* =====================================================
        BOTTOM CTA
===================================================== */

.infra-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 38px;
}


.infra-line {

    flex: 1;

    height: 1px;

    background: rgba(2,44,102,.20);
}


.infra-all-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 205px;

    height: 50px;

    padding: 0 25px;

    border: 2px solid #022C66;

    border-radius: 30px;

    color: #022C66;

    background: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .7px;

    transition: all .3s ease;
}


.infra-all-btn i {

    font-size: 15px;

    transition: transform .3s ease;
}


.infra-all-btn:hover {

    background: #FEEC04;

    border-color: #FEEC04;

    color: #022C66;

    transform: translateY(-2px);
}


.infra-all-btn:hover i {

    transform: translateX(4px);
}


/* =====================================================
        TABLET
===================================================== */

@media (max-width: 991px) {

    .vbb-infrastructure {

        padding: 60px 20px 65px;
    }


    .infra-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 30px;
    }


    .infra-heading-wrap h2 {

        font-size: 44px;
    }


    .infra-header p {

        max-width: 700px;

        font-size: 14px;
    }


    .infra-grid {

        grid-template-columns: 1.2fr 1fr;

        grid-template-rows:
            250px
            200px
            200px;
    }


    .infra-feature-card {

        grid-row: span 2;
    }


    .infra-small-card {

        min-height: 200px;
    }


    .infra-feature-card .infra-card-content h3 {

        font-size: 27px;
    }

}


/* =====================================================
        MOBILE
===================================================== */

@media (max-width: 767px) {

    .vbb-infrastructure {

        padding: 45px 15px 50px;
    }


    .infra-header {

        gap: 12px;

        margin-bottom: 25px;
    }


    .infra-small-title {

        font-size: 10px;

        letter-spacing: 2px;
    }


    .infra-heading-wrap h2 {

        font-size: 34px;
    }


    .infra-heading-wrap::after {

        width: 50px;

        height: 3px;

        margin-top: 10px;
    }


    .infra-header p {

        font-size: 13px;

        line-height: 1.6;
    }


    /* GRID */

    .infra-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            240px
            170px
            170px;

        gap: 12px;
    }


    /* FEATURE */

    .infra-feature-card {

        grid-column: span 2;

        grid-row: auto;
    }


    .infra-small-card {

        min-height: 170px;
    }


    /* CONTENT */

    .infra-card-content {

        left: 14px;

        right: 14px;

        bottom: 14px;
    }


    .infra-number {

        width: 30px;

        height: 30px;

        margin-bottom: 7px;

        font-size: 10px;
    }


    .infra-card-content h3 {

        font-size: 16px;
    }


    .infra-feature-card .infra-card-content h3 {

        font-size: 24px;
    }


    .infra-view {

        font-size: 10px;

        margin-top: 7px;
    }


    /* BUTTON */

    .infra-bottom {

        gap: 12px;

        margin-top: 25px;
    }


    .infra-line {

        display: none;
    }


    .infra-all-btn {

        width: 100%;

        height: 46px;

        font-size: 11px;
    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vbb-infrastructure {

        padding: 38px 12px 45px;
    }


    .infra-heading-wrap h2 {

        font-size: 30px;
    }


    .infra-header p {

        font-size: 12px;
    }


    .infra-grid {

        grid-template-rows:
            210px
            145px
            145px;

        gap: 10px;
    }


    .infra-feature-card .infra-card-content h3 {

        font-size: 21px;
    }


    .infra-small-card {

        min-height: 145px;
    }


    .infra-card-content h3 {

        font-size: 14px;
    }


    .infra-number {

        width: 26px;

        height: 26px;

        font-size: 9px;
    }

}
/* =====================================================
        CAMPUS CTA SECTION
===================================================== */

.campus-cta {

    position: relative;

    width: 100%;

    min-height: 390px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(2, 44, 102, .90),
            rgba(2, 44, 102, .90)
        ),
        url("../images/main-building.jpg");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

}


/* =====================================================
        DECORATIVE SHAPES
===================================================== */

.campus-cta::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    border: 1px solid rgba(165,222,255,.20);

    border-radius: 50%;

    left: -140px;

    top: -100px;
}


.campus-cta::after {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    border: 1px solid rgba(254,236,4,.22);

    border-radius: 50%;

    right: -190px;

    bottom: -200px;
}


/* =====================================================
        CONTENT
===================================================== */

.campus-cta .container {

    position: relative;

    z-index: 3;
}


.campus-cta-content {

    max-width: 750px;

    margin: 0 auto;

    text-align: center;

    padding: 55px 20px;
}


/* =====================================================
        SMALL TITLE
===================================================== */

.campus-cta-tag {

    display: inline-block;

    color: #FEEC04;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 14px;
}


/* =====================================================
        HEADING
===================================================== */

.campus-cta h2 {

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 50px;

    line-height: 1.1;

    font-weight: 700;
}


/* =====================================================
        DESCRIPTION
===================================================== */

.campus-cta p {

    max-width: 620px;

    margin: 0 auto 28px;

    color: rgba(255,255,255,.90);

    font-size: 16px;

    line-height: 1.7;
}


/* =====================================================
        BUTTON AREA
===================================================== */

.campus-cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


/* =====================================================
        COMMON BUTTON
===================================================== */

.campus-btn {

    min-width: 185px;

    height: 50px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .7px;

    transition: all .3s ease;
}


/* =====================================================
        YELLOW BUTTON
===================================================== */

.campus-btn-yellow {

    background: #FEEC04;

    color: #022C66;

    border: 2px solid #FEEC04;
}


.campus-btn-yellow:hover {

    background: #A5DEFF;

    border-color: #A5DEFF;

    color: #022C66;

    transform: translateY(-3px);
}


/* =====================================================
        OUTLINE BUTTON
===================================================== */

.campus-btn-outline {

    color: #ffffff;

    border: 2px solid rgba(255,255,255,.85);

    background: transparent;
}


.campus-btn-outline:hover {

    background: #A5DEFF;

    border-color: #A5DEFF;

    color: #022C66;

    transform: translateY(-3px);
}


.campus-btn i {

    font-size: 15px;
}


.campus-btn-outline i {

    transition: transform .3s ease;
}


.campus-btn-outline:hover i {

    transform: translateX(4px);
}


/* =====================================================
        TABLET
===================================================== */

@media (max-width: 991px) {

    .campus-cta {

        min-height: 350px;

        background-attachment: scroll;
    }


    .campus-cta-content {

        padding: 50px 20px;
    }


    .campus-cta h2 {

        font-size: 42px;
    }


    .campus-cta p {

        font-size: 15px;
    }

}


/* =====================================================
        MOBILE
===================================================== */

@media (max-width: 767px) {

    .campus-cta {

        min-height: 330px;
    }


    .campus-cta-content {

        padding: 45px 15px;
    }


    .campus-cta-tag {

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .campus-cta h2 {

        font-size: 34px;

        margin-bottom: 12px;
    }


    .campus-cta p {

        font-size: 13px;

        line-height: 1.6;

        margin-bottom: 23px;
    }


    .campus-cta-buttons {

        gap: 10px;
    }


    .campus-btn {

        width: 100%;

        max-width: 230px;

        height: 46px;

        font-size: 11px;
    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .campus-cta {

        min-height: 315px;
    }


    .campus-cta h2 {

        font-size: 29px;
    }


    .campus-cta p {

        font-size: 12px;
    }


    .campus-cta-tag {

        font-size: 8px;
    }

}



/* =========================================
   PRINCIPAL MESSAGE
========================================= */

.principal-message {

    padding: 90px 0;

    background: #C5EAFF;

    position: relative;

    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.principal-heading {

    text-align: center;

    margin-bottom: 55px;
}


.principal-heading span {

    display: block;

    color: #022C66;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.principal-heading h2 {

    margin: 0;

    color: #022C66;

    font-size: 42px;

    font-weight: 800;
}


.heading-line {

    width: 65px;

    height: 4px;

    background: #FEEC04;

    margin: 15px auto 0;

    border-radius: 10px;
}


/* =========================================
   MAIN CONTENT
========================================= */

.principal-content {

    display: grid;

    grid-template-columns: 1.25fr .75fr;

    align-items: center;

    gap: 70px;

    max-width: 1200px;

    margin: auto;
}


/* =========================================
   TEXT
========================================= */

.principal-text {

    position: relative;

    padding: 20px 10px;
}


.quote-mark {

    position: absolute;

    top: -45px;

    left: -5px;

    font-family: Georgia, serif;

    font-size: 110px;

    line-height: 1;

    color: rgba(2,44,102,.08);

    pointer-events: none;
}


.principal-text p {

    position: relative;

    margin: 0 0 20px;

    color: #333333;

    font-size: 17px;

    line-height: 1.85;

    text-align: justify;
}


/* =========================================
   SIGNATURE
========================================= */

.principal-sign {

    margin-top: 30px;

    padding-left: 18px;

    border-left: 4px solid #FEEC04;
}


.principal-sign strong {

    display: block;

    color: #022C66;

    font-size: 20px;

    font-weight: 800;
}


.principal-sign span {

    display: block;

    margin-top: 4px;

    color: #5d6b78;

    font-size: 13px;
}


/* =========================================
   IMAGE
========================================= */

.principal-image {

    display: flex;

    justify-content: center;
}


.image-frame {

    position: relative;

    width: 100%;

    max-width: 400px;

    padding: 12px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 15px 40px rgba(2,44,102,.14);
}


.image-frame::before {

    content: "";

    position: absolute;

    top: -12px;

    right: -12px;

    width: 75px;

    height: 75px;

    border-top: 5px solid #FEEC04;

    border-right: 5px solid #FEEC04;

    border-radius: 0 8px 0 0;
}


.image-frame img {

    width: 100%;

    height: auto;

    max-height: 400px;

    object-fit: contain;

    display: block;

    border-radius: 4px;
}


/* =========================================
   PRINCIPAL BUTTON
========================================= */

.principal-btn {

    margin-top: 28px;
}


.principal-btn a {

    display: inline-block;

    padding: 12px 30px;

    border: 2px solid #FEEC04;

    border-radius: 30px;

    color: #022C66;

    background: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .5px;

    transition: all .3s ease;
}


.principal-btn a:hover {

    background: #FEEC04;

    border-color: #FEEC04;

    color: #022C66;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(2,44,102,.12);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .principal-message {

        padding: 70px 0;
    }


    .principal-heading h2 {

        font-size: 36px;
    }


    .principal-content {

        grid-template-columns: 1fr .8fr;

        gap: 40px;
    }


    .principal-text p {

        font-size: 15px;

        line-height: 1.7;
    }


    .image-frame {

        max-width: 330px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .principal-message {

        padding: 55px 15px;
    }


    .principal-heading {

        margin-bottom: 35px;
    }


    .principal-heading span {

        font-size: 11px;
    }


    .principal-heading h2 {

        font-size: 30px;
    }


    .principal-content {

        display: flex;

        flex-direction: column-reverse;

        gap: 35px;
    }


    .principal-image {

        width: 100%;
    }


    .image-frame {

        width: 85%;

        max-width: 330px;
    }


    .principal-text {

        padding: 5px 0;
    }


    .principal-text p {

        font-size: 14px;

        line-height: 1.7;

        text-align: left;
    }


    .quote-mark {

        font-size: 80px;

        top: -30px;
    }


    .principal-sign {

        margin-top: 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .principal-message {

        padding: 45px 12px;
    }


    .principal-heading h2 {

        font-size: 27px;
    }


    .image-frame {

        width: 92%;
    }


    .principal-text p {

        font-size: 13.5px;
    }


    .principal-sign strong {

        font-size: 17px;
    }


    .principal-btn {

        margin-top: 22px;
    }


    .principal-btn a {

        padding: 11px 25px;

        font-size: 12px;
    }

}



/* =====================================================
   VICE PRINCIPAL MESSAGE - VBB BLUE THEME
===================================================== */

.vp-message-section {

    width: 100%;

    padding: 85px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.vp-heading {

    text-align: center;

    margin-bottom: 55px;
}


.vp-heading span {

    display: block;

    color: #022C66;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.vp-heading h2 {

    margin: 0;

    color: #022C66;

    font-size: 42px;

    font-weight: 800;

    line-height: 1.2;
}


.vp-heading-line {

    width: 65px;

    height: 4px;

    margin: 15px auto 0;

    background: #FEEC04;

    border-radius: 10px;
}


/* =====================================================
   MAIN AREA
===================================================== */

.vp-message-wrap {

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    align-items: center;

    gap: 70px;
}


/* =====================================================
   IMAGE
===================================================== */

.vp-photo-area {

    width: 100%;

    display: flex;

    justify-content: center;
}


.vp-photo-box {

    position: relative;

    width: 100%;

    max-width: 400px;

    padding: 12px;

    background: #ffffff;

    border: 1px solid #C5EAFF;

    border-radius: 8px;

    box-shadow:
        0 15px 40px rgba(2,44,102,.12);
}


.vp-photo-box::before {

    content: "";

    position: absolute;

    top: -10px;

    left: -10px;

    width: 65px;

    height: 65px;

    border-top: 5px solid #FEEC04;

    border-left: 5px solid #FEEC04;

    border-radius: 8px 0 0 0;
}


.vp-photo-box img {

    width: 100%;

    height: auto;

    max-height: 500px;

    object-fit: contain;

    display: block;

    border-radius: 4px;
}


/* =====================================================
   CONTENT
===================================================== */

.vp-content {

    position: relative;
}


.vp-quote {

    position: absolute;

    top: -50px;

    left: -15px;

    font-family: Georgia, serif;

    font-size: 110px;

    line-height: 1;

    color: rgba(2,44,102,.07);

    pointer-events: none;
}


.vp-content p {

    position: relative;

    margin: 0 0 18px;

    color: #444444;

    font-size: 16px;

    line-height: 1.8;

    text-align: justify;
}


/* =====================================================
   MAIN QUOTE
===================================================== */

.vp-main-quote {

    color: #022C66 !important;

    font-size: 20px !important;

    font-weight: 700;

    line-height: 1.5 !important;

    margin-bottom: 22px !important;
}


/* =====================================================
   READ MORE
===================================================== */

.vp-readmore {

    margin-top: 25px;
}


.vp-readmore a {

    display: inline-block;

    padding: 12px 30px;

    border: 2px solid #FEEC04;

    border-radius: 30px;

    background: #ffffff;

    color: #022C66;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .5px;

    transition: all .3s ease;
}


.vp-readmore a:hover {

    background: #FEEC04;

    border-color: #FEEC04;

    color: #022C66;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(2,44,102,.10);
}


/* =====================================================
   SIGNATURE
===================================================== */

.vp-signature {

    margin-top: 28px;

    padding-left: 18px;

    border-left: 4px solid #FEEC04;
}


.vp-signature strong {

    display: block;

    color: #022C66;

    font-size: 20px;

    font-weight: 800;
}


.vp-signature span {

    display: block;

    margin-top: 4px;

    color: #777777;

    font-size: 13px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .vp-message-section {

        padding: 65px 25px;
    }


    .vp-heading h2 {

        font-size: 36px;
    }


    .vp-message-wrap {

        grid-template-columns: 0.8fr 1.2fr;

        gap: 40px;
    }


    .vp-photo-box {

        max-width: 330px;
    }


    .vp-content p {

        font-size: 15px;

        line-height: 1.7;
    }


    .vp-main-quote {

        font-size: 18px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .vp-message-section {

        padding: 55px 15px;
    }


    .vp-heading {

        margin-bottom: 35px;
    }


    .vp-heading span {

        font-size: 11px;
    }


    .vp-heading h2 {

        font-size: 30px;
    }


    /* STACK */

    .vp-message-wrap {

        display: flex;

        flex-direction: column;

        gap: 35px;
    }


    /* IMAGE */

    .vp-photo-area {

        width: 100%;
    }


    .vp-photo-box {

        width: 88%;

        max-width: 330px;
    }


    /* CONTENT */

    .vp-content {

        width: 100%;
    }


    .vp-content p {

        font-size: 14px;

        line-height: 1.7;

        text-align: left;
    }


    .vp-main-quote {

        font-size: 18px !important;

        line-height: 1.5 !important;
    }


    .vp-quote {

        font-size: 80px;

        top: -35px;

        left: -5px;
    }


    /* BUTTON */

    .vp-readmore {

        margin-top: 20px;
    }


    .vp-readmore a {

        padding: 10px 25px;

        font-size: 12px;
    }


    /* SIGNATURE */

    .vp-signature {

        margin-top: 25px;
    }


    .vp-signature strong {

        font-size: 17px;
    }


    .vp-signature span {

        font-size: 12px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vp-message-section {

        padding: 45px 12px;
    }


    .vp-heading h2 {

        font-size: 27px;
    }


    .vp-photo-box {

        width: 94%;
    }


    .vp-content p {

        font-size: 13.5px;

        line-height: 1.65;
    }


    .vp-main-quote {

        font-size: 17px !important;
    }

}


/* =====================================================
   VIDYA BAL BHAWAN - PREMIUM FOOTER
   VBB NEW BLUE THEME
   All Classes Are Unique
===================================================== */

.vbb-footer-main {
    width: 100%;
    overflow: hidden;
}


/* =====================================================
   TOP FOOTER
===================================================== */

.vbb-footer-top {
    position: relative;

    min-height: 510px;

    padding: 55px 5% 10px;

    background:
        linear-gradient(
            180deg,
            #A5DEFF 0%,
            #A5DEFF 50%,
            #C5EAFF 100%
        );

    overflow: hidden;
}


/* =====================================================
   SOFT BACKGROUND EFFECT
===================================================== */

.vbb-footer-top::before {
    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    top: -500px;
    right: -200px;

    border-radius: 50%;

    background: rgba(255,255,255,0.25);
}


/* =====================================================
   FOOTER ROW
===================================================== */

.vbb-footer-row {
    position: relative;

    z-index: 2;

    align-items: flex-start;
}


/* =====================================================
   FOOTER TITLE
===================================================== */

.vbb-footer-title {
    color: #022C66;

    font-size: 17px;

    font-weight: 800;

    letter-spacing: 0.5px;

    margin: 0 0 35px;

    text-transform: uppercase;
}


/* =====================================================
   LOCATION / MAP
===================================================== */

.vbb-footer-map {
    position: relative;

    width: 100%;

    height: 360px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =====================================================
   WORLD MAP
===================================================== */

.vbb-footer-map-image {
    width: 90%;

    max-width: 680px;

    height: auto;

    object-fit: contain;

    opacity: 0.95;

    /*
       Existing map image ko white silhouette
       style mein display karne ke liye
    */

    filter: grayscale(1) brightness(0) invert(1);
}


/* =====================================================
   LOCATION CARD
===================================================== */

.vbb-footer-location-card {
    position: absolute;

    left: 22%;

    top: 50%;

    transform: translateY(-50%);

    width: 285px;

    padding: 20px 22px;

    background: #022C66;

    border-radius: 14px;

    text-align: center;

    box-shadow:
        0 12px 30px rgba(2,44,102,0.22);

    z-index: 5;
}


/* =====================================================
   LOCATION CARD ARROW
===================================================== */

.vbb-footer-location-card::after {
    content: "";

    position: absolute;

    right: -12px;

    top: 50%;

    transform: translateY(-50%);

    width: 0;

    height: 0;

    border-top: 12px solid transparent;

    border-bottom: 12px solid transparent;

    border-left: 12px solid #022C66;
}


/* =====================================================
   LOCATION CARD TITLE
===================================================== */

.vbb-footer-location-card h5 {
    margin: 0 0 10px;

    color: #FEEC04;

    font-size: 15px;

    font-weight: 800;
}


/* =====================================================
   LOCATION CARD TEXT
===================================================== */

.vbb-footer-location-card p {
    margin: 0;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 600;
}


/* =====================================================
   CARD LINE
===================================================== */

.vbb-footer-card-line {
    width: 100%;

    height: 1px;

    margin: 15px 0;

    background: rgba(165,222,255,0.25);
}


/* =====================================================
   VIEW MAP
===================================================== */

.vbb-footer-location-card a {
    color: #FEEC04;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition: 0.3s;
}


.vbb-footer-location-card a:hover {
    color: #A5DEFF;
}


/* =====================================================
   MAP DOT
===================================================== */

.vbb-footer-map-dot {
    position: absolute;

    width: 15px;

    height: 15px;

    border-radius: 50%;

    background: #FEEC04;

    border: 3px solid #022C66;

    top: 44%;

    right: 22%;

    z-index: 6;
}


/* =====================================================
   NAVIGATION + QUICK LINKS
===================================================== */

.vbb-footer-links {
    padding-left: 30px;

    padding-right: 20px;
}


.vbb-footer-links ul {
    list-style: none;

    margin: 0;

    padding: 0;
}


.vbb-footer-links ul li {
    margin-bottom: 12px;
}


.vbb-footer-links ul li a {
    color: #022C66;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    transition: all 0.3s ease;
}


.vbb-footer-links ul li a:hover {
    color: #022C66;

    padding-left: 5px;
}


/* =====================================================
   CAMPUS IMAGE
===================================================== */

.vbb-footer-campus-image {
    position: relative;

    width: 100%;

    height: 300px;

    overflow: hidden;

    background: #A5DEFF;
}


.vbb-footer-campus-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =====================================================
   CAMPUS IMAGE OVERLAY
===================================================== */

.vbb-footer-campus-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(2,44,102,0.08),
            rgba(2,44,102,0.28)
        );

    pointer-events: none;
}


/* =====================================================
   BOTTOM BAR
===================================================== */

.vbb-footer-bottom {
    background: #022C66;

    min-height: 62px;

    color: #ffffff;
}


.vbb-footer-bottom-inner {
    min-height: 62px;

    padding: 0 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* =====================================================
   COPYRIGHT
===================================================== */

.vbb-footer-copyright {
    font-size: 14px;

    color: #ffffff;
}


/* =====================================================
   BOTTOM LINKS
===================================================== */

.vbb-footer-bottom-links {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 18px;
}


.vbb-footer-bottom-links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s;
}


.vbb-footer-bottom-links a:hover {
    color: #FEEC04;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .vbb-footer-top {
        padding-left: 3%;

        padding-right: 3%;
    }


    .vbb-footer-location-card {
        left: 12%;

        width: 260px;
    }


    .vbb-footer-map-dot {
        right: 14%;
    }


    .vbb-footer-links {
        padding-left: 10px;

        padding-right: 10px;
    }


    .vbb-footer-links ul li a {
        font-size: 14px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .vbb-footer-top {
        min-height: auto;

        padding: 45px 20px 40px;
    }


    .vbb-footer-title {
        margin-bottom: 20px;

        font-size: 16px;
    }


    /* LOCATION */

    .vbb-footer-map {
        height: 290px;

        margin-bottom: 25px;
    }


    .vbb-footer-map-image {
        width: 100%;
    }


    .vbb-footer-location-card {
        left: 50%;

        top: 50%;

        transform: translate(-50%, -50%);

        width: 260px;
    }


    .vbb-footer-map-dot {
        display: none;
    }


    .vbb-footer-location-card::after {
        display: none;
    }


    /* LINKS */

    .vbb-footer-links {
        padding: 0 10px;

        margin-top: 25px;
    }


    .vbb-footer-links ul li {
        margin-bottom: 10px;
    }


    .vbb-footer-links ul li a {
        font-size: 14px;
    }


    /* CAMPUS IMAGE */

    .vbb-footer-campus-image {
        height: 230px;
    }


    /* BOTTOM */

    .vbb-footer-bottom {
        min-height: auto;
    }


    .vbb-footer-bottom-inner {
        padding: 18px 15px;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 12px;
    }


    .vbb-footer-copyright {
        font-size: 12px;
    }


    .vbb-footer-bottom-links {
        justify-content: center;

        gap: 8px 15px;
    }


    .vbb-footer-bottom-links a {
        font-size: 12px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vbb-footer-map {
        height: 260px;
    }


    .vbb-footer-location-card {
        width: 245px;

        padding: 18px;
    }


    .vbb-footer-location-card h5 {
        font-size: 14px;
    }


    .vbb-footer-location-card p {
        font-size: 13px;
    }


    .vbb-footer-campus-image {
        height: 200px;
    }

}





/* =====================================================
   VBB MULTIPLE IMAGE POPUP
   VBB NEW BLUE THEME
   Completely Separate Classes
===================================================== */


/* =====================================================
   VBB RESPONSIVE IMAGE POPUP
   POPUP SIZE = IMAGE SIZE
===================================================== */

.vbb-popup-wrapper {

    position: fixed;

    inset: 0;

    width: 100%;

    height: 100%;

    background: rgba(2, 44, 102, 0.78);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 99999;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    box-sizing: border-box;
}


/* =====================================================
   ACTIVE POPUP
===================================================== */

.vbb-popup-wrapper.vbb-popup-active {

    opacity: 1;

    visibility: visible;
}


/* =====================================================
   POPUP BOX
   WHITE AREA WILL WRAP IMAGE ONLY
===================================================== */

.vbb-popup-box {

    position: relative;

    width: auto;

    max-width: 92vw;

    max-height: 90vh;

    background: #ffffff;

    padding: 8px;

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(2,44,102,0.40);

    transform: scale(0.92);

    transition: transform 0.3s ease;

    overflow: visible;

    box-sizing: border-box;
}


/* =====================================================
   POPUP OPEN
===================================================== */

.vbb-popup-active .vbb-popup-box {

    transform: scale(1);
}


/* =====================================================
   IMAGE AREA
   NO FIXED HEIGHT
===================================================== */

.vbb-popup-image-area {

    position: relative;

    width: auto;

    height: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #ffffff;

    border-radius: 4px;

    box-sizing: border-box;
}


/* =====================================================
   IMAGE
   NATURAL RATIO
===================================================== */

.vbb-popup-image-area img {

    display: block;

    width: auto;

    height: auto;

    max-width: calc(92vw - 16px);

    max-height: calc(90vh - 16px);

    object-fit: contain;

    border-radius: 3px;

    user-select: none;

    -webkit-user-drag: none;

    box-sizing: border-box;
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.vbb-popup-close {

    position: absolute;

    right: -18px;

    top: -18px;

    width: 44px;

    height: 44px;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #022C66;

    font-size: 30px;

    line-height: 40px;

    cursor: pointer;

    z-index: 30;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 5px 20px rgba(2,44,102,0.25);

    transition: all 0.3s ease;
}


.vbb-popup-close:hover {

    background: #FEEC04;

    color: #022C66;

    transform: rotate(90deg);
}


/* =====================================================
   PREVIOUS / NEXT BUTTON
===================================================== */

.vbb-popup-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    background: rgba(2,44,102,0.95);

    color: #ffffff;

    font-size: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 20;

    transition: all 0.3s ease;

    box-shadow:
        0 4px 12px rgba(2,44,102,0.25);
}


/* =====================================================
   ARROW HOVER
===================================================== */

.vbb-popup-arrow:hover {

    background: #FEEC04;

    color: #022C66;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =====================================================
   LEFT
===================================================== */

.vbb-popup-prev {

    left: 15px;
}


/* =====================================================
   RIGHT
===================================================== */

.vbb-popup-next {

    right: 15px;
}


/* =====================================================
   DOTS
   KEEP INSIDE WHITE IMAGE AREA
===================================================== */

.vbb-popup-dots {

    position: absolute;

    left: 50%;

    bottom: 10px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    z-index: 25;

    padding: 5px 10px;

    border-radius: 20px;

    background: rgba(255,255,255,0.88);

    box-shadow:
        0 3px 10px rgba(2,44,102,0.12);
}


/* =====================================================
   DOT
===================================================== */

.vbb-popup-dot {

    width: 9px;

    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #A5DEFF;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* =====================================================
   ACTIVE DOT
===================================================== */

.vbb-popup-dot.active {

    width: 25px;

    border-radius: 10px;

    background: #022C66;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .vbb-popup-wrapper {

        padding: 15px;
    }


    .vbb-popup-box {

        max-width: 94vw;

        max-height: 90vh;

        padding: 7px;
    }


    .vbb-popup-image-area img {

        max-width: calc(94vw - 14px);

        max-height: calc(90vh - 14px);
    }


    .vbb-popup-arrow {

        width: 44px;

        height: 44px;

        font-size: 22px;
    }


    .vbb-popup-prev {

        left: 12px;
    }


    .vbb-popup-next {

        right: 12px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .vbb-popup-wrapper {

        padding: 12px;
    }


    .vbb-popup-box {

        max-width: 96vw;

        max-height: 88vh;

        padding: 6px;

        border-radius: 7px;
    }


    .vbb-popup-image-area img {

        max-width: calc(96vw - 12px);

        max-height: calc(88vh - 12px);
    }


    /* CLOSE */

    .vbb-popup-close {

        width: 36px;

        height: 36px;

        right: -8px;

        top: -8px;

        font-size: 25px;

        line-height: 32px;
    }


    /* ARROWS */

    .vbb-popup-arrow {

        width: 38px;

        height: 38px;

        font-size: 19px;
    }


    .vbb-popup-prev {

        left: 7px;
    }


    .vbb-popup-next {

        right: 7px;
    }


    /* DOTS */

    .vbb-popup-dots {

        bottom: 7px;

        gap: 6px;

        padding: 4px 8px;
    }


    .vbb-popup-dot {

        width: 8px;

        height: 8px;

        background: #A5DEFF;
    }


    .vbb-popup-dot.active {

        width: 20px;

        background: #022C66;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vbb-popup-wrapper {

        padding: 8px;
    }


    .vbb-popup-box {

        max-width: 97vw;

        max-height: 86vh;

        padding: 5px;
    }


    .vbb-popup-image-area img {

        max-width: calc(97vw - 10px);

        max-height: calc(86vh - 10px);
    }


    .vbb-popup-arrow {

        width: 34px;

        height: 34px;

        font-size: 17px;
    }


    .vbb-popup-prev {

        left: 5px;
    }


    .vbb-popup-next {

        right: 5px;
    }


    .vbb-popup-close {

        width: 33px;

        height: 33px;

        right: -6px;

        top: -6px;

        font-size: 23px;
    }


    .vbb-popup-dots {

        bottom: 5px;

        gap: 5px;

        padding: 3px 7px;
    }


    .vbb-popup-dot {

        width: 7px;

        height: 7px;
    }


    .vbb-popup-dot.active {

        width: 18px;
    }

}


/* about us  */

/* =====================================================
   VBB RESPONSIVE IMAGE SECTION
   VBB NEW BLUE THEME
===================================================== */

.vbb-responsive-image-section {

    width: 100%;

    padding: 45px 25px;

    background: #C5EAFF;

    overflow: hidden;

    box-sizing: border-box;
}


/* =====================================================
   IMAGE WRAPPER
===================================================== */

.vbb-responsive-image-container {

    width: 100%;

    max-width: 1450px;

    margin: 0 auto;

    padding: 10px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 8px 30px rgba(2,44,102,0.10);

    border: 1px solid rgba(2,44,102,0.10);

    box-sizing: border-box;

    overflow: hidden;
}


/* =====================================================
   IMAGE
===================================================== */

.vbb-responsive-image {

    display: block;

    width: 100%;

    max-width: 100%;

    height: auto;

    object-fit: contain;

    border-radius: 9px;

    box-sizing: border-box;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .vbb-responsive-image-section {

        padding: 55px 35px;
    }


    .vbb-responsive-image-container {

        max-width: 1500px;
    }

}


/* =====================================================
   DESKTOP / LAPTOP
===================================================== */

@media (min-width: 992px) and (max-width: 1399px) {

    .vbb-responsive-image-section {

        padding: 45px 25px;
    }


    .vbb-responsive-image-container {

        max-width: 100%;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .vbb-responsive-image-section {

        padding: 35px 20px;
    }


    .vbb-responsive-image-container {

        width: 100%;

        max-width: 100%;

        padding: 8px;

        border-radius: 12px;
    }


    .vbb-responsive-image {

        width: 100%;

        max-width: 100%;

        height: auto;

        border-radius: 7px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .vbb-responsive-image-section {

        width: 100%;

        padding: 25px 12px;
    }


    .vbb-responsive-image-container {

        width: 100%;

        max-width: 100%;

        padding: 6px;

        border-radius: 10px;

        box-shadow:
            0 5px 20px rgba(2,44,102,0.08);
    }


    .vbb-responsive-image {

        width: 100%;

        max-width: 100%;

        height: auto;

        border-radius: 6px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vbb-responsive-image-section {

        padding: 20px 10px;
    }


    .vbb-responsive-image-container {

        width: 100%;

        padding: 5px;

        border-radius: 8px;
    }


    .vbb-responsive-image {

        width: 100%;

        height: auto;

        border-radius: 5px;
    }

}


/* =====================================================
   VBB CONTENT + TWO IMAGE SECTION
   VBB NEW BLUE THEME
===================================================== */

.vbb-content-image-section {

    width: 100%;

    padding: 55px 25px;

    background: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.vbb-content-image-container {

    width: 100%;

    max-width: 1450px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.vbb-content-image-heading {

    width: 100%;

    margin-bottom: 25px;
}


.vbb-content-image-heading h2 {

    margin: 0;

    color: #022C66;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;
}


/* =====================================================
   HEADING LINE
===================================================== */

.vbb-content-image-heading span {

    display: block;

    width: 80px;

    height: 4px;

    margin-top: 12px;

    background: #FEEC04;

    border-radius: 5px;
}


/* =====================================================
   CONTENT TITLE
===================================================== */

.vbb-content-image-text {

    width: 100%;
}


.vbb-content-image-text h3 {

    width: 100%;

    margin: 0 0 12px;

    padding: 12px 18px;

    background: #022C66;

    color: #ffffff;

    font-size: 22px;

    font-weight: 500;

    line-height: 1.4;

    border-radius: 2px;

    box-sizing: border-box;
}


/* =====================================================
   PARAGRAPH
===================================================== */

.vbb-content-image-text p {

    margin: 0 0 35px;

    color: #222222;

    font-size: 18px;

    line-height: 1.6;

    font-weight: 400;
}


/* =====================================================
   TWO IMAGE GRID
===================================================== */

.vbb-content-two-images {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;

    align-items: stretch;
}


/* =====================================================
   IMAGE CARD
   FIXED HEIGHT
===================================================== */

.vbb-content-image-card {

    width: 100%;

    height: 380px;

    padding: 8px;

    background: #ffffff;

    border: 1px solid #A5DEFF;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 6px 22px rgba(2,44,102,0.09);

    box-sizing: border-box;
}


/* =====================================================
   IMAGE
===================================================== */

.vbb-content-image-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    border-radius: 6px;

    box-sizing: border-box;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .vbb-content-image-section {

        padding: 65px 35px;
    }


    .vbb-content-image-container {

        max-width: 1500px;
    }


    .vbb-content-two-images {

        gap: 30px;
    }


    .vbb-content-image-card {

        height: 400px;
    }

}


/* =====================================================
   DESKTOP / LAPTOP
===================================================== */

@media (min-width: 992px) and (max-width: 1399px) {

    .vbb-content-image-section {

        padding: 55px 25px;
    }


    .vbb-content-image-heading h2 {

        font-size: 36px;
    }


    .vbb-content-image-text h3 {

        font-size: 21px;
    }


    .vbb-content-image-text p {

        font-size: 17px;
    }


    .vbb-content-image-card {

        height: 360px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .vbb-content-image-section {

        padding: 45px 20px;
    }


    .vbb-content-image-heading {

        margin-bottom: 22px;
    }


    .vbb-content-image-heading h2 {

        font-size: 32px;
    }


    .vbb-content-image-heading span {

        width: 70px;

        height: 3px;
    }


    .vbb-content-image-text h3 {

        font-size: 20px;

        padding: 11px 16px;
    }


    .vbb-content-image-text p {

        font-size: 16px;

        line-height: 1.6;

        margin-bottom: 30px;
    }


    /* Two columns remain on tablet */

    .vbb-content-two-images {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .vbb-content-image-card {

        height: 320px;

        padding: 7px;

        border-radius: 9px;
    }


    .vbb-content-image-card img {

        border-radius: 6px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .vbb-content-image-section {

        padding: 35px 15px;
    }


    .vbb-content-image-container {

        width: 100%;
    }


    /* Heading */

    .vbb-content-image-heading {

        margin-bottom: 20px;
    }


    .vbb-content-image-heading h2 {

        font-size: 28px;

        line-height: 1.25;

        color: #022C66;
    }


    .vbb-content-image-heading span {

        width: 60px;

        height: 3px;

        margin-top: 9px;
    }


    /* Content Heading */

    .vbb-content-image-text h3 {

        font-size: 18px;

        line-height: 1.4;

        padding: 10px 14px;

        margin-bottom: 10px;

        background: #022C66;
    }


    /* Paragraph */

    .vbb-content-image-text p {

        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 25px;
    }


    /* Images one below another */

    .vbb-content-two-images {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* Fixed mobile height */

    .vbb-content-image-card {

        width: 100%;

        height: 280px;

        padding: 6px;

        border-radius: 8px;

        border-color: #A5DEFF;
    }


    .vbb-content-image-card img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position: center;

        border-radius: 5px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vbb-content-image-section {

        padding: 28px 10px;
    }


    .vbb-content-image-heading h2 {

        font-size: 25px;
    }


    .vbb-content-image-heading span {

        width: 55px;
    }


    .vbb-content-image-text h3 {

        font-size: 17px;

        padding: 9px 12px;
    }


    .vbb-content-image-text p {

        font-size: 14px;

        line-height: 1.6;

        margin-bottom: 22px;
    }


    .vbb-content-two-images {

        gap: 15px;
    }


    /* Same height for all small mobile images */

    .vbb-content-image-card {

        height: 240px;

        padding: 5px;

        border-radius: 7px;
    }


    .vbb-content-image-card img {

        height: 100%;

        border-radius: 4px;
    }

}


/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 360px) {

    .vbb-content-image-section {

        padding: 25px 8px;
    }


    .vbb-content-image-heading h2 {

        font-size: 23px;
    }


    .vbb-content-image-text h3 {

        font-size: 16px;
    }


    .vbb-content-image-text p {

        font-size: 13px;
    }


    .vbb-content-image-card {

        height: 220px;
    }

}




/* notices all  */




/* =====================================================
        VBB ALL NOTICES
===================================================== */

.vbb-all-notices {

    width: 100%;

    padding: 70px 20px 80px;

    background: #C5EAFF;

    position: relative;

    overflow: hidden;
}


/* =====================================================
        CONTAINER
===================================================== */

.vbb-notices-container {

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =====================================================
        HEADING
===================================================== */

.vbb-notices-heading {

    text-align: center;

    margin-bottom: 45px;
}


.vbb-notices-heading span {

    display: block;

    color: #022C66;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 8px;
}


.vbb-notices-heading h1 {

    margin: 0;

    color: #022C66;

    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;
}


.vbb-notices-heading-line {

    width: 70px;

    height: 4px;

    margin: 14px auto 15px;

    background: #FEEC04;

    border-radius: 10px;
}


.vbb-notices-heading p {

    max-width: 720px;

    margin: 0 auto;

    color: #3c5367;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
        NOTICE LIST
===================================================== */

.vbb-notices-list {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


/* =====================================================
        NOTICE CARD
===================================================== */

.vbb-notice-card {

    width: 100%;

    min-height: 105px;

    padding: 15px 20px;

    display: grid;

    grid-template-columns: 85px 1fr auto;

    align-items: center;

    gap: 22px;

    background: #ffffff;

    border: 1px solid #A5DEFF;

    border-radius: 12px;

    box-shadow:
        0 6px 20px rgba(2,44,102,.07);

    box-sizing: border-box;

    transition: all .3s ease;
}


.vbb-notice-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(2,44,102,.13);

    border-color: #022C66;
}


/* =====================================================
        DATE
===================================================== */

.vbb-notice-date {

    width: 70px;

    min-height: 75px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #022C66;

    border-radius: 10px;

    color: #ffffff;
}


.vbb-notice-date span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #FEEC04;
}


.vbb-notice-date strong {

    font-size: 28px;

    line-height: 1;

    margin: 3px 0;
}


.vbb-notice-date small {

    font-size: 10px;

    opacity: .9;
}


/* =====================================================
        NOTICE CONTENT
===================================================== */

.vbb-notice-content {

    min-width: 0;
}


.vbb-notice-category {

    display: inline-block;

    margin-bottom: 6px;

    color: #022C66;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.vbb-notice-content h3 {

    margin: 0 0 5px;

    color: #022C66;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.3;
}


.vbb-notice-content p {

    margin: 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.5;
}


/* =====================================================
        ACTION
===================================================== */

.vbb-notice-action {

    display: flex;

    align-items: center;

    gap: 8px;
}


/* VIEW */

.vbb-notice-view {

    min-width: 75px;

    height: 38px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 15px;

    background: #FEEC04;

    color: #022C66;

    border-radius: 20px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: all .3s ease;
}


.vbb-notice-view:hover {

    background: #022C66;

    color: #FEEC04;
}


/* DOWNLOAD */

.vbb-notice-download {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #C5EAFF;

    color: #022C66;

    text-decoration: none;

    font-size: 15px;

    transition: all .3s ease;
}


.vbb-notice-download:hover {

    background: #022C66;

    color: #FEEC04;
}


/* =====================================================
        BACK BUTTON
===================================================== */

.vbb-notices-back {

    text-align: center;

    margin-top: 35px;
}


.vbb-notices-back a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 170px;

    height: 45px;

    padding: 0 22px;

    background: #022C66;

    color: #ffffff;

    border-radius: 25px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: all .3s ease;
}


.vbb-notices-back a:hover {

    background: #FEEC04;

    color: #022C66;

    transform: translateY(-2px);
}


/* =====================================================
        TABLET
===================================================== */

@media (max-width: 991px) {

    .vbb-all-notices {

        padding: 55px 18px 65px;
    }


    .vbb-notices-heading h1 {

        font-size: 38px;
    }


    .vbb-notice-card {

        grid-template-columns: 75px 1fr auto;

        gap: 15px;

        padding: 13px 15px;
    }


    .vbb-notice-date {

        width: 65px;

        min-height: 70px;
    }


    .vbb-notice-content h3 {

        font-size: 18px;
    }

}


/* =====================================================
        MOBILE
===================================================== */

@media (max-width: 767px) {

    .vbb-all-notices {

        padding: 40px 12px 50px;
    }


    .vbb-notices-heading {

        margin-bottom: 30px;
    }


    .vbb-notices-heading span {

        font-size: 10px;

        letter-spacing: 2px;
    }


    .vbb-notices-heading h1 {

        font-size: 29px;
    }


    .vbb-notices-heading p {

        font-size: 13px;
    }


    .vbb-notices-list {

        gap: 12px;
    }


    .vbb-notice-card {

        grid-template-columns: 58px 1fr;

        gap: 12px;

        padding: 12px;

        min-height: auto;
    }


    .vbb-notice-date {

        width: 58px;

        min-height: 65px;
    }


    .vbb-notice-date strong {

        font-size: 24px;
    }


    .vbb-notice-date span {

        font-size: 9px;
    }


    .vbb-notice-content h3 {

        font-size: 15px;
    }


    .vbb-notice-content p {

        font-size: 11px;
    }


    .vbb-notice-category {

        font-size: 8px;

        margin-bottom: 4px;
    }


    .vbb-notice-action {

        grid-column: 2;

        justify-content: flex-start;

        margin-top: 3px;
    }


    .vbb-notice-view {

        min-width: 65px;

        height: 34px;

        font-size: 10px;
    }


    .vbb-notice-download {

        width: 34px;

        height: 34px;

        font-size: 13px;
    }

}


/* =====================================================
        SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vbb-all-notices {

        padding: 32px 10px 40px;
    }


    .vbb-notices-heading h1 {

        font-size: 25px;
    }


    .vbb-notices-heading p {

        font-size: 12px;
    }


    .vbb-notice-card {

        grid-template-columns: 52px 1fr;

        padding: 10px;

        gap: 10px;
    }


    .vbb-notice-date {

        width: 52px;

        min-height: 60px;
    }


    .vbb-notice-date strong {

        font-size: 21px;
    }


    .vbb-notice-content h3 {

        font-size: 14px;
    }


    .vbb-notice-content p {

        font-size: 10px;
    }


    .vbb-notice-action {

        gap: 6px;
    }

}








