/*=========================================================
    SHAHU'S GARDEN HIGH SCHOOL & JUNIOR COLLEGE
    COMPLETE RESPONSIVE CSS
=========================================================*/


/*=========================================================
    GLOBAL RESPONSIVE SAFETY
=========================================================*/

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/*=========================================================
    LARGE TABLETS / SMALL LAPTOPS
    MAX WIDTH: 1200px
=========================================================*/

@media (max-width: 1200px) {

    .container {
        width: 92%;
    }

    .school-type-container {
        width: calc(100% - 70px);
        gap: 35px;
    }

    .school-type-image {
        height: 450px;
    }

    .trusted-parents-container {
        width: calc(100% - 40px);
    }

    .trusted-parents-content {
        padding-left: 40px;
    }

    .trusted-parents-image {
        width: 100%;
    }

    .methodology-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .methodology-card-bottom {
        margin-top: 70px;
    }

    .navbar ul {
        gap: 22px;
    }

    .navbar ul li a {
        font-size: 14px;
    }

    .btn-admission {
        padding: 12px 20px;
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*=========================================================
    TABLETS
    MAX WIDTH: 991px
=========================================================*/

@media (max-width: 991px) {

    section {
        padding: 70px 0;
    }


    /*-----------------------------------------------------
        MODERN HEADER
    -----------------------------------------------------*/

    .top-school-bar {
        display: none;
    }

    .nav-inner {
        min-height: 70px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }

    .nav-admission-button {
        margin-left: auto;
    }


    /*-----------------------------------------------------
        OLD HEADER SUPPORT
    -----------------------------------------------------*/

    .top-header {
        display: none;
    }

    .header {
        top: 0;
        background: var(--primary-color, #980227);
        padding: 12px 0;
    }

    .header .container {
        width: 92%;
    }

    .logo img {
        height: 55px;
    }

    .navbar {
        display: none;
    }

    .btn-admission {
        display: none;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white, #fff);
        font-size: 25px;
    }

    .navbar.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color, #980227);
        padding: 20px 5%;
        box-shadow: 0 10px 20px rgba(0,0,0,.15);
        z-index: 1000;
    }

    .navbar.active ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .navbar.active ul li {
        width: 100%;
    }

    .navbar.active ul li a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 15px;
    }

    .navbar.active ul li a::after {
        display: none;
    }


    /*-----------------------------------------------------
        HOME HERO - TABLET
        IMPORTANT:
        Do not modify the desktop hero image.
    -----------------------------------------------------*/

    .home-hero-modern {
        min-height: 620px;
    }

    .home-hero-container {
        display: block;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .home-hero-content {
        max-width: 760px;
    }

    .home-hero-content h1 {
        font-size: clamp(44px, 7vw, 62px);
        letter-spacing: -1.5px;
    }

    .home-hero-content p {
        max-width: 620px;
        font-size: 17px;
    }

    .hero-admission-card {
        display: none;
    }


    /*-----------------------------------------------------
        SCHOOL TYPE
    -----------------------------------------------------*/

    .school-type-section {
        padding: 28px 0 50px;
    }

    .school-type-container {
        width: calc(100% - 50px);
        gap: 25px;
    }

    .school-type-card-header {
        min-height: 125px;
        padding: 18px 15px;
    }

    .school-type-card-header h2 {
        font-size: 27px;
    }

    .school-type-actions {
        gap: 25px;
    }

    .school-type-actions a {
        font-size: 15px;
    }

    .school-type-image {
        height: 390px;
    }


    /*-----------------------------------------------------
        STUDENT ACHIEVEMENT
    -----------------------------------------------------*/

    .student-achievement-section {
        padding: 70px 0 75px;
    }

    .student-achievement-container {
        width: calc(100% - 60px);
    }

    .student-achievement-heading h2 {
        font-size: 38px;
    }

    .student-achievement-card {
        flex-basis: 285px;
        height: 205px;
    }

    .student-slider-prev {
        left: -18px;
    }

    .student-slider-next {
        right: -18px;
    }


    /*-----------------------------------------------------
        TRUSTED PARENTS
    -----------------------------------------------------*/

    .trusted-parents-section {
        height: auto;
        padding-bottom: 50px;
    }

    .trusted-parents-section::before {
        top: 30px;
        height: calc(100% - 80px);
    }

    .trusted-parents-container {
        width: calc(100% - 40px);
        height: auto;
        grid-template-columns: 1fr;
    }

    .trusted-parents-content {
        padding: 70px 30px 35px;
    }

    .trusted-parents-content h2 {
        font-size: clamp(36px, 6vw, 48px);
    }

    .trusted-parents-image {
        width: 100%;
        height: 400px;
        margin-top: 0;
    }


    /*-----------------------------------------------------
        WHY CHOOSE US
    -----------------------------------------------------*/

    .why-school-section {
        padding: 85px 0;
    }

    .why-school-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /*-----------------------------------------------------
        SCHOOL LIFE
    -----------------------------------------------------*/

    .school-life-section {
        padding: 80px 0;
    }

    .school-life-grid {
        grid-template-columns: 1fr 1fr;
    }

    .school-life-card,
    .school-life-card:not(.school-life-large) {
        height: 400px;
    }

    .school-life-overlay {
        padding: 28px;
    }

    .school-life-overlay h3 {
        font-size: 27px;
    }


    /*-----------------------------------------------------
        STATS
    -----------------------------------------------------*/

    .school-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .school-stat:nth-child(2) {
        border-right: 0;
    }

    .school-stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.18);
    }


    /*-----------------------------------------------------
        FACILITIES
    -----------------------------------------------------*/

    .facilities-home-section {
        padding: 85px 0;
    }

    .facility-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-image {
        height: 260px;
    }


    /*-----------------------------------------------------
        HOME GALLERY
    -----------------------------------------------------*/

    .home-gallery-section {
        padding: 85px 0;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-gallery-card {
        height: 300px;
    }


    /*-----------------------------------------------------
        METHODOLOGY
    -----------------------------------------------------*/

    .methodology-section {
        padding: 40px 20px 50px;
    }

    .methodology-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 20px;
        padding: 0 15px;
    }

    .methodology-card,
    .methodology-card-bottom {
        height: 290px;
        margin-top: 0;
    }

    .methodology-card-title {
        font-size: 21px;
    }

    .methodology-letter {
        font-size: 165px;
    }

    .methodology-student {
        max-width: 220px;
        max-height: 285px;
    }


    /*-----------------------------------------------------
        ADMISSION CTA
    -----------------------------------------------------*/

    .home-admission-cta {
        padding: 75px 0;
    }

    .home-admission-content {
        gap: 30px;
    }

    .home-admission-content h2 {
        font-size: clamp(36px, 5vw, 50px);
    }


    /*-----------------------------------------------------
        OLD HERO
    -----------------------------------------------------*/

    .hero {
        height: 85vh;
        min-height: 600px;
    }

    .hero-content {
        width: 90%;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content p {
        font-size: 16px;
    }


    /*-----------------------------------------------------
        OLD HOME
    -----------------------------------------------------*/

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .welcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admission-content {
        padding: 45px;
    }

    .admission-content h2 {
        font-size: 30px;
    }


    /*-----------------------------------------------------
        FOOTER
    -----------------------------------------------------*/

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }


    /*-----------------------------------------------------
        ABOUT
    -----------------------------------------------------*/

    .page-hero {
        min-height: 380px;
        padding: 120px 0 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-highlight {
        min-height: 350px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }


    /*-----------------------------------------------------
        ACADEMICS
    -----------------------------------------------------*/

    .academic-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .academic-intro-content h2 {
        font-size: 36px;
    }

    .academic-intro-card {
        min-height: 340px;
    }

    .academic-level-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: auto;
    }

    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .academic-highlight-grid {
        grid-template-columns: 1fr;
    }


    /*-----------------------------------------------------
        ADMISSION
    -----------------------------------------------------*/

    .admission-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .admission-intro-content h2 {
        font-size: 36px;
    }

    .admission-intro-card {
        min-height: 330px;
    }

    .admission-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .admission-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admission-enquiry-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .admission-enquiry-buttons {
        width: 100%;
    }


    /*-----------------------------------------------------
        FACULTY
    -----------------------------------------------------*/

    .faculty-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faculty-approach-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faculty-approach-content h2 {
        font-size: 36px;
    }

    .faculty-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }


    /*-----------------------------------------------------
        FACILITIES
    -----------------------------------------------------*/

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-development-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .facility-development-content h2 {
        font-size: 36px;
    }

    .facilities-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }


    /*-----------------------------------------------------
        GALLERY
    -----------------------------------------------------*/

    .school-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-image-box {
        height: 280px;
    }

    .gallery-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }


    /*-----------------------------------------------------
        EVENTS
    -----------------------------------------------------*/

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-development-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .events-development-content h2 {
        font-size: 36px;
    }

    .events-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }


    /*-----------------------------------------------------
        NEWS
    -----------------------------------------------------*/

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-information-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .news-information-content h2 {
        font-size: 36px;
    }

    .news-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }


    /*-----------------------------------------------------
        CONTACT
    -----------------------------------------------------*/

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-information {
        padding: 40px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    .contact-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}


/*=========================================================
    MOBILE
    MAX WIDTH: 767px
=========================================================*/

@media (max-width: 767px) {

    body {
        font-size: 15px;
    }

    .container {
        width: calc(100% - 28px);
    }

    section {
        padding: 60px 0;
    }


    /*-----------------------------------------------------
        MODERN HEADER
    -----------------------------------------------------*/

    .nav-inner {
        min-height: 64px;
        gap: 12px;
    }

    .school-logo img {
        width: 145px;
        max-height: 50px;
    }

    .nav-admission-button {
        padding: 10px 14px;
        font-size: 11px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
        font-size: 21px;
    }


    /*-----------------------------------------------------
        OLD HEADER
    -----------------------------------------------------*/

    .header {
        padding: 10px 0;
    }

    .logo img {
        height: 48px;
    }

    .mobile-menu {
        font-size: 24px;
    }


    /*-----------------------------------------------------
        HOME HERO CONTENT
        KEEP EXISTING WEBSITE DESIGN
    -----------------------------------------------------*/

    .home-hero-container {
        width: calc(100% - 28px);
        padding-top: 95px;
        padding-bottom: 70px;
    }

    .home-hero-content {
        max-width: none;
    }

    .hero-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 1.4px;
        line-height: 1.5;
    }

    .home-hero-content h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .home-hero-content p {
        margin: 20px 0 24px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        padding: 0 18px;
        font-size: 13px;
    }


    /*-----------------------------------------------------
        SCHOOL TYPE
    -----------------------------------------------------*/

    .school-type-section {
        padding: 18px 0 35px;
    }

    .school-type-container {
        width: calc(100% - 22px);
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .school-type-card {
        border-radius: 16px;
    }

    .school-type-card-header {
        min-height: 118px;
        padding: 17px 12px;
    }

    .school-type-card-header h2 {
        font-size: 24px;
        margin-bottom: 13px;
    }

    .school-type-actions {
        gap: 12px;
        justify-content: space-between;
    }

    .school-type-actions a {
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }

    .school-type-actions i {
        font-size: 10px;
    }

    .school-type-image {
        height: 280px;
    }


    /*-----------------------------------------------------
        STUDENT ACHIEVEMENT
    -----------------------------------------------------*/

    .student-achievement-section {
        padding: 55px 0 60px;
    }

    .student-achievement-container {
        width: calc(100% - 28px);
    }

    .student-achievement-heading {
        margin-bottom: 25px;
    }

    .student-achievement-heading span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .student-achievement-heading h2 {
        font-size: 28px;
        line-height: 1.12;
    }

    .student-achievement-heading p {
        font-size: 13px;
        line-height: 1.6;
    }

    .student-slider-wrapper {
        padding: 0 3px;
    }

    .student-achievement-slider {
        gap: 14px;
        padding: 8px 0 20px;
    }

    .student-achievement-card {
        flex: 0 0 min(285px, calc(100vw - 55px));
        height: 185px;
        border-radius: 11px;
    }

    .student-card-image {
        width: 52%;
    }

    .student-card-info {
        width: 55%;
        padding: 28px 13px 15px;
    }

    .student-card-info h3 {
        font-size: 16px;
    }

    .student-card-info span {
        font-size: 9px;
        margin-bottom: 7px;
    }

    .student-card-info strong {
        font-size: 21px;
    }

    .student-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .student-slider-prev {
        left: -6px;
    }

    .student-slider-next {
        right: -6px;
    }

    .student-slider-dots {
        margin-top: 4px;
    }


    /*-----------------------------------------------------
        TRUSTED PARENTS
    -----------------------------------------------------*/

    .trusted-parents-section {
        padding-bottom: 25px;
    }

    .trusted-parents-section::before {
        top: 18px;
        height: calc(100% - 43px);
    }

    .trusted-parents-container {
        width: calc(100% - 20px);
    }

    .trusted-parents-content {
        padding: 48px 18px 28px;
    }

    .trusted-parents-label {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .trusted-parents-content h2 {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.05;
    }

    .trusted-parents-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .trusted-parents-button {
        min-height: 44px;
        padding: 0 18px;
        font-size: 13px;
    }

    .trusted-parents-image {
        height: 280px;
    }


    /*-----------------------------------------------------
        MODERN SECTION HEADINGS
    -----------------------------------------------------*/

    .section-heading-modern {
        margin-bottom: 35px;
    }

    .section-heading-modern > span,
    .home-section-top span,
    .school-life-heading span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .section-heading-modern h2,
    .home-section-top h2 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.1;
    }

    .section-heading-modern p {
        font-size: 14px;
    }


    /*-----------------------------------------------------
        WHY SCHOOL
    -----------------------------------------------------*/

    .why-school-section {
        padding: 65px 0;
    }

    .why-school-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-school-card {
        padding: 25px 22px;
    }

    .why-school-card h3 {
        font-size: 18px;
    }

    .why-school-card p {
        font-size: 13px;
    }


    /*-----------------------------------------------------
        SCHOOL LIFE
    -----------------------------------------------------*/

    .school-life-section {
        padding: 65px 0;
    }

    .school-life-heading {
        margin-bottom: 30px;
    }

    .school-life-heading h2 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .school-life-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .school-life-card,
    .school-life-card:not(.school-life-large) {
        height: 320px;
        border-radius: 14px;
    }

    .school-life-overlay {
        padding: 23px;
    }

    .school-life-overlay h3 {
        font-size: 25px;
    }


    /*-----------------------------------------------------
        STATS
    -----------------------------------------------------*/

    .school-stats {
        grid-template-columns: 1fr 1fr;
    }

    .school-stat {
        padding: 32px 12px;
    }

    .school-stat strong {
        font-size: 32px;
    }

    .school-stat span {
        font-size: 11px;
    }


    /*-----------------------------------------------------
        FACILITIES
    -----------------------------------------------------*/

    .facilities-home-section {
        padding: 65px 0;
    }

    .facility-home-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .facility-image {
        height: 240px;
    }

    .facility-content {
        padding: 20px 22px;
    }

    .facility-content h3 {
        font-size: 21px;
    }

    .facility-content i {
        right: 22px;
        top: 30px;
    }


    /*-----------------------------------------------------
        HOME GALLERY
    -----------------------------------------------------*/

    .home-gallery-section {
        padding: 65px 0;
    }

    .home-section-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 28px;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-gallery-card {
        height: 280px;
        border-radius: 13px;
    }

    .home-gallery-caption {
        padding: 20px;
    }

    .home-gallery-caption h3 {
        font-size: 19px;
    }


    /*-----------------------------------------------------
        METHODOLOGY
    -----------------------------------------------------*/

    .methodology-section {
        padding: 35px 15px 45px;
    }

    .methodology-heading {
        margin-bottom: 30px;
    }

    .methodology-heading h2 {
        font-size: 26px;
        line-height: 1.25;
    }

    .methodology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 12px;
        padding: 0;
    }

    .methodology-card,
    .methodology-card-bottom {
        height: 245px;
        margin-top: 0;
        border-radius: 12px;
    }

    .methodology-card-title {
        font-size: 17px;
        line-height: 1.05;
        padding: 13px 6px 0;
        min-height: 50px;
    }

    .methodology-letter {
        top: 58px;
        font-size: 135px;
    }

    .methodology-student {
        max-width: 185px;
        max-height: 225px;
    }


    /*-----------------------------------------------------
        ADMISSION CTA
    -----------------------------------------------------*/

    .home-admission-cta {
        padding: 60px 0;
    }

    .home-admission-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .home-admission-content h2 {
        font-size: clamp(30px, 8vw, 40px);
        line-height: 1.08;
    }

    .home-admission-content p {
        font-size: 14px;
    }

    .cta-gold-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }


    /*-----------------------------------------------------
        OLD / OTHER PAGES
    -----------------------------------------------------*/

    .hero {
        height: 80vh;
        min-height: 520px;
    }

    .hero-content {
        width: 92%;
    }

    .hero-content h1 {
        font-size: 35px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 14px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 14px;
    }

    .welcome-grid,
    .highlight-grid,
    .faculty-grid,
    .facilities-grid,
    .school-gallery-grid,
    .events-grid,
    .news-grid,
    .learning-grid,
    .admission-steps,
    .admission-benefit-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .admission-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .admission-content h2 {
        font-size: 27px;
    }

    .admission-content p {
        font-size: 14px;
    }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .footer-bottom p {
        font-size: 13px;
        line-height: 1.6;
    }


    /*-----------------------------------------------------
        ABOUT
    -----------------------------------------------------*/

    .page-hero {
        min-height: 360px;
        padding: 110px 0 55px;
    }

    .page-hero-content h1 {
        font-size: 34px;
    }

    .page-hero-content p {
        font-size: 14px;
    }

    .about-introduction,
    .vision-mission,
    .values-section,
    .about-why {
        padding: 65px 0;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-highlight {
        min-height: 300px;
        padding: 20px;
    }

    .about-highlight-inner {
        padding: 35px 20px;
    }

    .about-highlight-inner h3 {
        font-size: 25px;
    }

    .vision-card {
        padding: 35px 25px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 25px;
    }

    .about-cta {
        padding: 50px 0;
    }

    .about-cta-content {
        padding: 35px 25px;
    }

    .about-cta-content h2 {
        font-size: 28px;
    }

    .about-cta-content .btn-gold {
        width: 100%;
        max-width: 220px;
    }


    /*-----------------------------------------------------
        ACADEMICS
    -----------------------------------------------------*/

    .academic-introduction,
    .academic-levels,
    .learning-approach,
    .academic-highlights {
        padding: 65px 0;
    }

    .academic-intro-content h2 {
        font-size: 30px;
    }

    .academic-intro-content p {
        font-size: 14px;
    }

    .academic-intro-card {
        min-height: 300px;
        padding: 30px 20px;
    }

    .academic-intro-card h3 {
        font-size: 25px;
    }

    .academic-level-card {
        padding: 35px 25px;
    }

    .academic-highlight {
        padding: 25px;
    }


    /*-----------------------------------------------------
        ADMISSION
    -----------------------------------------------------*/

    .admission-introduction,
    .admission-process,
    .admission-benefits,
    .admission-documents,
    .admission-enquiry {
        padding: 65px 0;
    }

    .admission-intro-content h2 {
        font-size: 30px;
    }

    .admission-intro-content p {
        font-size: 14px;
    }

    .admission-intro-card {
        min-height: 300px;
        padding: 30px 20px;
    }

    .admission-intro-card h3 {
        font-size: 25px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .admission-enquiry-content h2 {
        font-size: 29px;
    }

    .admission-enquiry-buttons {
        flex-direction: column;
    }

    .admission-enquiry-buttons a {
        width: 100%;
        justify-content: center;
    }


    /*-----------------------------------------------------
        FACULTY
    -----------------------------------------------------*/

    .faculty-introduction,
    .faculty-members,
    .faculty-approach {
        padding: 65px 0;
    }

    .faculty-values {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .faculty-value {
        padding: 30px 25px;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
    }

    .faculty-image {
        height: 250px;
    }

    .faculty-approach-content h2 {
        font-size: 30px;
    }

    .faculty-cta {
        padding: 60px 0;
    }

    .faculty-cta-content h2 {
        font-size: 29px;
    }

    .faculty-cta-buttons,
    .facilities-cta-buttons,
    .gallery-cta-buttons,
    .news-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .faculty-cta-buttons a,
    .facilities-cta-buttons a,
    .gallery-cta-buttons a,
    .news-cta-buttons a {
        width: 100%;
        text-align: center;
    }


    /*-----------------------------------------------------
        FACILITIES
    -----------------------------------------------------*/

    .facilities-introduction {
        padding: 65px 0 25px;
    }

    .facilities-grid-section {
        padding: 25px 0 65px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .facility-card-visual {
        height: 210px;
    }

    .facility-icon {
        width: 90px;
        height: 90px;
        font-size: 35px;
    }

    .facility-card-content {
        padding: 25px 22px;
    }

    .facility-development {
        padding: 65px 0;
    }

    .facility-development-content h2 {
        font-size: 30px;
    }

    .facility-development-point {
        padding: 18px;
        gap: 13px;
    }

    .facilities-cta {
        padding: 60px 0;
    }

    .facilities-cta-content h2 {
        font-size: 29px;
    }


    /*-----------------------------------------------------
        GALLERY
    -----------------------------------------------------*/

    .gallery-introduction {
        padding: 65px 0 30px;
    }

    .school-gallery-section {
        padding: 30px 0 65px;
    }

    .gallery-filters {
        gap: 8px;
        margin-bottom: 30px;
    }

    .gallery-filter {
        padding: 9px 17px;
        font-size: 13px;
    }

    .school-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image-box {
        height: 280px;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay > div {
        transform: translateY(0);
    }

    .gallery-cta {
        padding: 60px 0;
    }

    .gallery-cta-content h2 {
        font-size: 29px;
    }

    .gallery-lightbox {
        padding: 15px;
    }

    .gallery-lightbox-content {
        width: 95vw;
    }

    .gallery-lightbox-close {
        top: 15px;
        right: 15px;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }


    /*-----------------------------------------------------
        EVENTS / NEWS
    -----------------------------------------------------*/

    .events-introduction,
    .news-introduction {
        padding: 65px 0 30px;
    }

    .events-list-section,
    .news-list-section {
        padding: 30px 0 65px;
    }

    .events-section-heading,
    .news-section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 35px;
    }

    .events-section-heading h2,
    .news-section-heading h2 {
        font-size: 30px;
    }

    .events-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .event-image,
    .school-news-image {
        height: 250px;
    }

    .events-development,
    .news-information {
        padding: 65px 0;
    }

    .events-development-content h2,
    .news-information-content h2 {
        font-size: 30px;
    }

    .event-development-point,
    .news-information-point {
        padding: 18px;
        gap: 13px;
    }

    .event-development-point h3,
    .news-information-point h3 {
        font-size: 15px;
    }

    .events-cta,
    .news-cta {
        padding: 60px 0;
    }

    .events-cta-content h2,
    .news-cta-content h2 {
        font-size: 29px;
    }

    .event-content {
        padding: 22px 20px;
    }

    .school-news-content {
        padding: 24px 22px;
    }


    /*-----------------------------------------------------
        CONTACT
    -----------------------------------------------------*/

    .contact-introduction {
        padding: 65px 0 30px;
    }

    .contact-main-section {
        padding: 30px 0 65px;
    }

    .contact-information {
        padding: 30px 25px;
    }

    .contact-information h2 {
        font-size: 30px;
    }

    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .contact-form-header h2 {
        font-size: 28px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group-full,
    .form-submit {
        grid-column: auto;
    }

    .contact-map-section {
        padding-bottom: 65px;
    }

    .contact-map-heading h2 {
        font-size: 30px;
    }

    .contact-map iframe {
        height: 350px;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .contact-cta-content h2 {
        font-size: 29px;
    }
}


/*=========================================================
    SMALL MOBILE
    MAX WIDTH: 480px
=========================================================*/

@media (max-width: 480px) {

    .container {
        width: calc(100% - 20px);
    }


    /*-----------------------------------------------------
        HEADER
    -----------------------------------------------------*/

    .school-logo img {
        width: 125px;
        max-height: 45px;
    }

    .nav-admission-button {
        padding: 9px 11px;
        font-size: 10px;
    }

    .mobile-menu-button {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .logo img {
        height: 43px;
    }

    /*-----------------------------------------------------
        HERO CONTENT
    -----------------------------------------------------*/

    .home-hero-container {
        width: calc(100% - 20px);
        padding-top: 85px;
        padding-bottom: 60px;
    }

    .hero-eyebrow {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .home-hero-content h1 {
        font-size: 32px;
    }

    .home-hero-content p {
        font-size: 13px;
    }

    .hero-btn {
        min-height: 46px;
        font-size: 12px;
    }


    /*-----------------------------------------------------
        SCHOOL TYPE
    -----------------------------------------------------*/

    .school-type-container {
        width: calc(100% - 14px);
    }

    .school-type-card-header {
        min-height: 120px;
    }

    .school-type-card-header h2 {
        font-size: 22px;
    }

    .school-type-actions {
        gap: 8px;
    }

    .school-type-actions a {
        font-size: 11px;
    }

    .school-type-image {
        height: 245px;
    }


    /*-----------------------------------------------------
        STUDENTS
    -----------------------------------------------------*/

    .student-achievement-section {
        padding: 50px 0 55px;
    }

    .student-achievement-container {
        width: calc(100% - 20px);
    }

    .student-achievement-heading h2 {
        font-size: 25px;
    }

    .student-achievement-heading p {
        font-size: 12px;
    }

    .student-achievement-card {
        flex-basis: calc(100vw - 40px);
        height: 175px;
    }

    .student-card-info {
        padding: 24px 11px 12px;
    }

    .student-card-info h3 {
        font-size: 14px;
    }

    .student-card-info span {
        font-size: 8px;
    }

    .student-card-info strong {
        font-size: 19px;
    }

    .student-slider-prev {
        left: -4px;
    }

    .student-slider-next {
        right: -4px;
    }


    /*-----------------------------------------------------
        TRUSTED PARENTS
    -----------------------------------------------------*/

    .trusted-parents-content {
        padding: 43px 15px 25px;
    }

    .trusted-parents-content h2 {
        font-size: 30px;
    }

    .trusted-parents-content p {
        font-size: 13px;
    }

    .trusted-parents-image {
        height: 240px;
    }


    /*-----------------------------------------------------
        INDEX HEADINGS
    -----------------------------------------------------*/

    .section-heading-modern h2,
    .home-section-top h2 {
        font-size: 27px;
    }


    /*-----------------------------------------------------
        WHY
    -----------------------------------------------------*/

    .why-school-card {
        padding: 23px 19px;
    }


    /*-----------------------------------------------------
        SCHOOL LIFE
    -----------------------------------------------------*/

    .school-life-card,
    .school-life-card:not(.school-life-large) {
        height: 280px;
    }

    .school-life-overlay {
        padding: 19px;
    }

    .school-life-overlay h3 {
        font-size: 22px;
    }


    /*-----------------------------------------------------
        STATS
    -----------------------------------------------------*/

    .school-stats {
        grid-template-columns: 1fr;
    }

    .school-stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .school-stat:last-child {
        border-bottom: 0;
    }

    .school-stat strong {
        font-size: 29px;
    }


    /*-----------------------------------------------------
        FACILITIES
    -----------------------------------------------------*/

    .facility-image {
        height: 210px;
    }

    .facility-content {
        padding: 18px;
    }

    .facility-content h3 {
        font-size: 19px;
    }


    /*-----------------------------------------------------
        GALLERY
    -----------------------------------------------------*/

    .home-gallery-card {
        height: 245px;
    }


    /*-----------------------------------------------------
        METHODOLOGY
    -----------------------------------------------------*/

    .methodology-section {
        padding: 32px 10px 42px;
    }

    .methodology-heading h2 {
        font-size: 23px;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .methodology-card,
    .methodology-card-bottom {
        width: min(255px, 100%);
        height: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .methodology-card-title {
        font-size: 18px;
    }

    .methodology-letter {
        font-size: 145px;
    }

    .methodology-student {
        max-width: 195px;
        max-height: 235px;
    }


    /*-----------------------------------------------------
        CTA
    -----------------------------------------------------*/

    .home-admission-cta {
        padding: 55px 0;
    }

    .home-admission-content h2 {
        font-size: 28px;
    }


    /*-----------------------------------------------------
        OTHER PAGES
    -----------------------------------------------------*/

    section {
        padding: 50px 0;
    }

    .hero {
        height: 75vh;
        min-height: 480px;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .btn,
    .btn-outline {
        padding: 11px 22px;
        font-size: 13px;
    }

    .admission-content {
        padding: 35px 20px;
    }

    .admission-content h2 {
        font-size: 24px;
    }

    .footer-column h3 {
        font-size: 18px;
    }


    /*-----------------------------------------------------
        ABOUT
    -----------------------------------------------------*/

    .page-hero-content h1 {
        font-size: 29px;
    }

    .page-hero-content > span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .about-content h2,
    .academic-intro-content h2,
    .admission-intro-content h2,
    .facility-development-content h2,
    .events-development-content h2,
    .news-information-content h2 {
        font-size: 26px;
    }

    .about-highlight {
        min-height: 270px;
    }

    .vision-card h3 {
        font-size: 21px;
    }

    .about-cta-content h2,
    .admission-enquiry-content h2,
    .facilities-cta-content h2,
    .events-cta-content h2,
    .news-cta-content h2,
    .contact-cta-content h2 {
        font-size: 25px;
    }


    /*-----------------------------------------------------
        FACULTY
    -----------------------------------------------------*/

    .faculty-content {
        padding: 24px 20px;
    }

    .faculty-image {
        height: 220px;
    }

    .faculty-placeholder {
        width: 105px;
        height: 105px;
        font-size: 43px;
    }

    .faculty-approach-point {
        padding: 18px;
        gap: 12px;
    }

    .faculty-approach-point h3 {
        font-size: 15px;
    }


    /*-----------------------------------------------------
        FACILITIES
    -----------------------------------------------------*/

    .facility-card-visual {
        height: 190px;
    }

    .facility-icon {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

    .facility-card-content h3 {
        font-size: 19px;
    }

    .facility-card-content p {
        font-size: 13px;
    }

    .facility-development-point h3 {
        font-size: 15px;
    }


    /*-----------------------------------------------------
        GALLERY
    -----------------------------------------------------*/

    .gallery-filter {
        padding: 8px 14px;
        font-size: 12px;
    }

    .gallery-image-box {
        height: 250px;
    }

    .gallery-overlay {
        padding: 20px;
    }

    .gallery-overlay h3 {
        font-size: 18px;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }


    /*-----------------------------------------------------
        EVENTS / NEWS
    -----------------------------------------------------*/

    .event-image,
    .school-news-image {
        height: 220px;
    }

    .event-content,
    .school-news-content {
        padding: 20px;
    }

    .event-content h3,
    .school-news-content h3 {
        font-size: 19px;
    }

    .event-content p,
    .school-news-content p {
        font-size: 13px;
    }

    .event-date,
    .school-news-date {
        width: 57px;
        min-height: 60px;
    }

    .event-date strong,
    .school-news-date strong {
        font-size: 21px;
    }


    /*-----------------------------------------------------
        CONTACT
    -----------------------------------------------------*/

    .contact-information {
        padding: 25px 20px;
    }

    .contact-form-wrapper {
        padding: 25px 18px;
    }

    .contact-detail {
        gap: 12px;
    }

    .contact-detail-icon {
        width: 38px;
        height: 38px;
    }

    .contact-map iframe {
        height: 300px;
    }
}


/*=========================================================
    VERY SMALL DEVICES
    MAX WIDTH: 360px
=========================================================*/

@media (max-width: 360px) {

    .school-logo img {
        width: 112px;
    }

    .nav-admission-button {
        display: none;
    }

    .home-hero-content h1 {
        font-size: 29px;
    }

    .school-type-card-header h2 {
        font-size: 20px;
    }

    .school-type-actions a {
        font-size: 10px;
    }

    .student-achievement-card {
        flex-basis: calc(100vw - 34px);
    }

    .trusted-parents-content h2 {
        font-size: 27px;
    }
}


/*=========================================================
    SHAHU'S GARDEN
    RESPONSIVE HEADER
=========================================================*/


@media (max-width: 900px) {

    .main-site-header .top-school-bar {
        display: block;
        min-height: 70px;
    }

    .main-site-header .top-school-bar-inner {
        width: calc(100% - 28px);
        min-height: 70px;
        gap: 15px;
    }

    .main-site-header .school-brand {
        gap: 9px;
    }

    .main-site-header .school-brand-logo {
        width: 52px;
        height: 52px;
    }

    .main-site-header .school-brand-name {
        max-width: 220px;
        font-size: 14px;
    }

    .main-site-header .top-school-actions {
        gap: 10px;
    }

    .main-site-header .top-admission-button {
        min-height: 40px;
        padding: 0 11px;
        font-size: 10px;
    }

    .main-site-header .top-info-link,
    .main-site-header .language-selector {
        display: none;
    }

    .main-site-header .nav-inner {
        width: calc(100% - 28px);
        min-height: 66px;
        gap: 10px;
    }

    .main-site-header .mobile-school-brand {
        display: none !important;
    }

    .main-site-header .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 10px 20px 20px;
        background: #ffffff;
        border-top: 1px solid #eeeeee;
        box-shadow: 0 15px 30px rgba(0,0,0,.14);
        z-index: 2000;
    }

    .main-site-header .nav-links.mobile-nav-open {
        display: flex;
    }

    .main-site-header .nav-links a {
        width: 100%;
        min-height: 46px;
        padding: 12px 5px;
        border-bottom: 1px solid #eeeeee;
        font-size: 14px;
    }

    .main-site-header .nav-links a:last-child {
        border-bottom: 0;
    }

    .main-site-header .nav-links a::after {
        display: none;
    }

    .main-site-header .nav-links a:hover {
        color: #980227;
        background: #fff7f8;
    }

    .main-site-header .nav-admission-button {
        margin-left: auto;
        min-height: 40px;
        padding: 0 14px;
        font-size: 10px;
    }

    .main-site-header .mobile-menu-button {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
    }
}


@media (max-width: 767px) {

    .main-site-header .top-school-bar {
        min-height: 62px;
    }

    .main-site-header .top-school-bar-inner {
        width: calc(100% - 20px);
        min-height: 62px;
    }

    .main-site-header .school-brand-logo {
        width: 45px;
        height: 45px;
    }

    .main-site-header .school-brand-name {
        max-width: 180px;
        font-size: 12px;
    }

    .main-site-header .top-admission-button {
        min-height: 36px;
        padding: 0 9px;
        font-size: 9px;
    }

    .main-site-header .nav-inner {
        width: calc(100% - 20px);
        min-height: 60px;
    }

    .main-site-header .mobile-school-brand span {
        display: none;
    }

    .main-site-header .mobile-school-brand img {
        width: 42px;
        height: 42px;
    }

    .main-site-header .nav-admission-button {
        min-height: 37px;
        padding: 0 11px;
        font-size: 9px;
    }

    .main-site-header .mobile-menu-button {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}


@media (max-width: 520px) {

    .main-site-header .school-brand-name {
        max-width: 145px;
        font-size: 10px;
        line-height: 1.15;
    }

    .main-site-header .school-brand-logo {
        width: 40px;
        height: 40px;
    }

    .main-site-header .top-admission-button {
        font-size: 8px;
        padding: 0 8px;
    }

    .main-site-header .top-school-bar-inner {
        width: calc(100% - 14px);
        gap: 8px;
    }

    .main-site-header .nav-inner {
        width: calc(100% - 14px);
    }

    .main-site-header .nav-admission-button {
        padding: 0 9px;
        font-size: 8px;
    }

    .main-site-header .mobile-menu-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}


@media (max-width: 360px) {

    .main-site-header .school-brand-name {
        max-width: 115px;
        font-size: 9px;
    }

    .main-site-header .school-brand-logo {
        width: 35px;
        height: 35px;
    }

    .main-site-header .top-admission-button {
        display: none;
    }

    .main-site-header .nav-admission-button {
        display: none;
    }
}


/*=========================================================
    EXPLORE LABORATORIES
=========================================================*/

@media (max-width: 991px) {

    .explore-labs-section {
        padding: 75px 0 85px;
    }

    .explore-labs-container {
        width: calc(100% - 40px);
    }

    .explore-labs-heading {
        margin-bottom: 38px;
    }

    .explore-labs-heading h2 {
        font-size: clamp(30px, 5vw, 40px);
    }

    .explore-labs-heading p {
        font-size: 15px;
        max-width: 720px;
    }

    .explore-labs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .explore-lab-card {
        height: 330px;
        border-radius: 20px;
    }

    .explore-lab-caption {
        left: 28%;
        min-height: 68px;
        padding: 12px 17px 12px 22px;
    }

    .explore-lab-caption h3 {
        font-size: 16px;
    }

    .explore-lab-diamond {
        left: -26px;
        width: 50px;
        height: 50px;
    }

    .explore-lab-diamond::after {
        font-size: 22px;
    }
}


@media (max-width: 767px) {

    .explore-labs-section {
        padding: 60px 0 70px;
    }

    .explore-labs-container {
        width: calc(100% - 28px);
    }

    .explore-labs-heading {
        margin-bottom: 30px;
    }

    .explore-labs-heading h2 {
        margin-bottom: 12px;
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.1;
    }

    .explore-labs-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .explore-labs-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .explore-lab-card {
        height: 300px;
        border-radius: 16px;
    }

    .explore-lab-caption {
        left: 25%;
        right: 0;
        min-height: 64px;
        padding: 10px 15px 10px 20px;
    }

    .explore-lab-caption h3 {
        font-size: 15px;
        line-height: 1.2;
    }

    .explore-lab-diamond {
        left: -23px;
        width: 45px;
        height: 45px;
    }

    .explore-lab-diamond::after {
        font-size: 20px;
    }
}


@media (max-width: 480px) {

    .explore-labs-section {
        padding: 50px 0 60px;
    }

    .explore-labs-container {
        width: calc(100% - 22px);
    }

    .explore-labs-heading {
        margin-bottom: 25px;
    }

    .explore-labs-heading h2 {
        font-size: 27px;
    }

    .explore-labs-heading p {
        font-size: 13px;
        line-height: 1.6;
    }

    .explore-lab-card {
        height: 255px;
        border-radius: 14px;
    }

    .explore-lab-caption {
        left: 24%;
        min-height: 58px;
        padding: 9px 12px 9px 17px;
    }

    .explore-lab-caption h3 {
        font-size: 13px;
    }

    .explore-lab-diamond {
        left: -20px;
        width: 39px;
        height: 39px;
    }

    .explore-lab-diamond::after {
        font-size: 17px;
    }
}

/*=========================================================
    FINAL MOBILE HERO FIX
    SHOW COMPLETE IMAGE - NO CROPPING
=========================================================*/

@media (max-width: 767px) {

    .home-hero-modern {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;

        /*
         * Keep the hero ratio consistent.
         */
        aspect-ratio: 16 / 9 !important;

        overflow: hidden !important;
    }


    .home-hero-modern .hero-slideshow {
        position: absolute !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
    }


    .home-hero-modern .hero-slide {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        /*
         * IMPORTANT:
         * contain shows the COMPLETE image.
         */
        background-size: contain !important;

        /*
         * Center the complete image.
         */
        background-position: center center !important;

        background-repeat: no-repeat !important;

        /*
         * Prevent any unwanted zoom/crop.
         */
        transform: none !important;

        filter: none !important;

        /*
         * Do not let opacity/transform animations
         * change the actual image size.
         */
        background-color: transparent !important;
    }

}

/* =========================================================
   FINAL MOBILE HERO FIX
   SHOW COMPLETE SLIDE IMAGE - NO CROPPING
   ========================================================= */

@media screen and (max-width: 767px) {

    /* -----------------------------------------------------
       HERO CONTAINER

       IMPORTANT:
       The slide images are wide banner images.
       Therefore the mobile hero must keep the same
       image aspect ratio instead of using 250px/420px.
    ----------------------------------------------------- */

    .home-hero-modern {
        position: relative !important;

        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        aspect-ratio: 16 / 7 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        box-sizing: border-box !important;
    }


    /* -----------------------------------------------------
       SLIDESHOW
    ----------------------------------------------------- */

    .home-hero-modern .hero-slideshow {
        position: absolute !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        box-sizing: border-box !important;

        z-index: 0 !important;
    }


    /* -----------------------------------------------------
       EACH SLIDE

       COVER = FILLS ENTIRE CONTAINER
       No black spaces on sides.
    ----------------------------------------------------- */

    .home-hero-modern .hero-slide {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        background-size: cover !important;

        background-position: center center !important;

        background-repeat: no-repeat !important;

        background-color: transparent !important;

        filter: none !important;

        transform: none !important;

        box-sizing: border-box !important;
    }


    /* -----------------------------------------------------
       ACTIVE SLIDE
    ----------------------------------------------------- */

    .home-hero-modern .hero-slide.active {
        opacity: 1 !important;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   KEEP EXACT SAME IMAGE BEHAVIOUR
   ========================================================= */

@media screen and (max-width: 480px) {

    .home-hero-modern {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        aspect-ratio: 16 / 7 !important;
    }

    .home-hero-modern .hero-slideshow {
        height: 100% !important;
    }

    .home-hero-modern .hero-slide {
        height: 100% !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 360px) {

    .home-hero-modern {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        aspect-ratio: 16 / 7 !important;
    }

    .home-hero-modern .hero-slide {
        height: 100% !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

}