/*==============================================================
ADMISSION BANNER
==============================================================*/

.admission-banner {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    background: linear-gradient(
        135deg,
        #0F4C81 0%,
        #1768B3 100%
    );

    color: #fff;
}

.admission-banner .container {
    position: relative;
    z-index: 2;
}

.admission-banner .row {
    position: relative;
    z-index: 2;
}


/*==============================================================
DECORATIVE CIRCLES
==============================================================*/

.admission-banner::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .06);

    top: -220px;
    right: -170px;

    pointer-events: none;
}

.admission-banner::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .04);

    left: -120px;
    bottom: -120px;

    pointer-events: none;
}


/*==============================================================
TAG
==============================================================*/

.admission-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 24px;

    background: #FFC107;
    color: #0F4C81;

    border-radius: 50px;

    font-size: 15px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: .5px;

    margin-bottom: 28px;
}


/*==============================================================
HEADING
==============================================================*/

.admission-banner h2 {
    font-size: 56px;
    line-height: 1.15;

    font-weight: 800;

    margin: 0 0 28px;

    color: #fff;

    overflow-wrap: anywhere;
}


/*==============================================================
DESCRIPTION
==============================================================*/

.admission-banner p {
    max-width: 760px;

    margin: 0 0 45px;

    font-size: 20px;
    line-height: 1.9;

    color: rgba(255, 255, 255, .92);
}


/*==============================================================
BUTTONS
==============================================================*/

.admission-buttons {
    display: flex;
    align-items: center;

    gap: 22px;

    flex-wrap: wrap;
}


/*==============================================================
APPLY BUTTON
==============================================================*/

.admission-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 240px;
    min-height: 62px;

    padding: 0 36px;

    border-radius: 60px;

    background: #FFC107;
    color: #0F4C81;

    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    box-shadow: 0 15px 35px rgba(255, 193, 7, .35);

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.admission-btn:hover {
    background: #FFD54F;
    color: #0F4C81;

    transform: translateY(-5px);

    box-shadow: 0 22px 45px rgba(255, 193, 7, .45);
}

.admission-btn i {
    font-size: 18px;
}


/*==============================================================
PROSPECTUS BUTTON
==============================================================*/

.prospectus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 280px;
    min-height: 62px;

    padding: 0 36px;

    border: 2px solid rgba(255, 255, 255, .85);

    border-radius: 60px;

    background: transparent;

    color: #fff !important;

    text-decoration: none !important;

    font-size: 18px;
    font-weight: 600;

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.prospectus-btn:hover {
    background: #fff;
    color: #0F4C81 !important;

    border-color: #fff;

    transform: translateY(-5px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}

.prospectus-btn i {
    font-size: 18px;
}


/*==============================================================
IMAGE
==============================================================*/

.admission-banner .text-center {
    text-align: right !important;
}

.admission-banner img {
    display: block;

    width: 100%;
    max-width: 560px;

    height: auto;

    margin-left: auto;

    object-fit: contain;

    animation: floatImage 5s ease-in-out infinite;
}


/*==============================================================
IMAGE ANIMATION
==============================================================*/

@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}


/*==============================================================
TABLET
==============================================================*/

@media (max-width: 1199px) {

    .admission-banner {
        padding: 90px 0;
    }

    .admission-banner h2 {
        font-size: 48px;
    }

    .admission-banner p {
        font-size: 18px;
        line-height: 1.8;
    }

    .admission-banner img {
        max-width: 460px;
    }

}


/*==============================================================
TABLET / MOBILE
==============================================================*/

@media (max-width: 991px) {

    .admission-banner {
        padding: 75px 0;

        text-align: center;
    }


    /* Text */

    .admission-banner .col-lg-7 {
        width: 100%;
    }

    .admission-banner .col-lg-5 {
        width: 100%;
    }

    .admission-tag {
        margin-bottom: 20px;

        font-size: 14px;
        padding: 11px 21px;
    }

    .admission-banner h2 {
        max-width: 700px;

        margin-left: auto;
        margin-right: auto;

        font-size: 42px;
        line-height: 1.15;
    }

    .admission-banner p {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;

        font-size: 17px;
        line-height: 1.75;

        margin-bottom: 35px;
    }


    /* Buttons */

    .admission-buttons {
        justify-content: center;
    }


    /* Image */

    .admission-banner .text-center {
        text-align: center !important;

        margin-top: 45px;
    }

    .admission-banner img {
        max-width: 420px;

        margin-left: auto;
        margin-right: auto;
    }

}


/*==============================================================
MOBILE
==============================================================*/

@media (max-width: 576px) {

    .admission-banner {
        padding: 55px 0 50px;
    }

    .admission-banner .container {
        padding-left: 16px;
        padding-right: 16px;
    }


    /* Decorative shapes */

    .admission-banner::before {
        width: 280px;
        height: 280px;

        top: -130px;
        right: -130px;
    }

    .admission-banner::after {
        width: 170px;
        height: 170px;

        left: -90px;
        bottom: -80px;
    }


    /* Tag */

    .admission-tag {
        padding: 10px 17px;

        font-size: 12px;

        margin-bottom: 18px;
    }


    /* Heading */

    .admission-banner h2 {
        max-width: 100%;

        font-size: 32px;
        line-height: 1.15;

        margin-bottom: 18px;
    }


    /*
     * The desktop <br> should not force a
     * large unwanted gap on mobile.
     */
    .admission-banner h2 br {
        display: none;
    }


    /* Description */

    .admission-banner p {
        font-size: 15px;
        line-height: 1.7;

        margin-bottom: 28px;
    }


    /* Buttons */

    .admission-buttons {
        flex-direction: column;

        gap: 12px;

        width: 100%;
    }

    .admission-btn,
    .prospectus-btn {
        width: 100%;
        min-width: 0;

        min-height: 52px;

        padding: 0 20px;

        font-size: 15px;
    }


    /* Image */

    .admission-banner .text-center {
        margin-top: 30px;
    }

    .admission-banner img {
        width: 100%;
        max-width: 320px;

        margin: 0 auto;
    }

}


/*==============================================================
VERY SMALL MOBILE
==============================================================*/

@media (max-width: 380px) {

    .admission-banner {
        padding: 48px 0 42px;
    }

    .admission-banner .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .admission-banner h2 {
        font-size: 28px;
    }

    .admission-banner p {
        font-size: 14px;
        line-height: 1.65;
    }

    .admission-tag {
        font-size: 11px;
        padding: 9px 14px;
    }

    .admission-banner img {
        max-width: 280px;
    }

}