@media (max-width: 1199.98px) {

    #main-page-wrapper {
        padding-top: 50px;
    }
    /* Mobile navbar - right side drawer */
    .socials-logos-mobile {
        display: block;
        padding-top: 1rem;
    }
    body.mobile-nav-open {
        overflow: hidden;
    }

    body.mobile-nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 9998;
    }

    #navigation_bar {
        background: transparent;
        overflow: visible;
        z-index: 9999;
    }

    #navigation_bar .navbar {
        background: #ffffff;
        padding: 16px 18px;
        border-bottom-left-radius: 26px;
        border-bottom-right-radius: 26px;
        overflow: visible;
        position: relative;
        z-index: 10001;
    }

    .navbar-toggler {
        position: relative;
        z-index: 10003;
    }

    /* Drawer panel */
    #navbarSupportedContent {
        position: fixed;
        top: 6px;
        right: 4px;

        width: min(92vw, 354px);
        height: calc(100vh - 12px);

        margin-top: 0;
        padding: 26px 24px 40px;

        background: #ffffff;

        border-radius: 14px;
        border-top-left-radius: 14px;
        border-bottom-left-radius: 14px;

        box-shadow: -18px 0 45px rgba(0, 0, 0, 0.14);

        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        transform: translateX(105%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            visibility 0.3s ease;

        z-index: 10002;
        overflow-y: auto;
    }

    /* Drawer open */
    #navbarSupportedContent.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Bootstrap collapse animation fix */
    #navbarSupportedContent.collapsing {
        height: 100vh !important;
        display: flex !important;
        overflow-y: auto;

        transition:
            transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    #navbarSupportedContent:not(.show).collapsing {
        transform: translateX(105%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    /* Nav list inside drawer */
    #navbarSupportedContent .navbar-nav {
        width: 100%;
        margin: 0 !important;
        padding: 0;
        gap: 0;
        align-items: stretch;
        justify-content: flex-start;
    }

    /* Each menu row */
    #navbarSupportedContent .nav-item {
        width: 100%;
        border-bottom: 1px solid #dddddd;
    }

    /* Main nav links */
    #navbarSupportedContent .nav-link {
        width: 100%;
        padding: 14px 0;
        border-radius: 0;

        color: var(--text-muted);
        background: transparent;

        font-family: var(--body-font);
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;

        text-align: left;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Remove purple block hover look */
    #navbarSupportedContent .nav-item:hover > .nav-link,
    #navbarSupportedContent .nav-item.active > .nav-link {
        background: transparent;
        color: var(--theme-color);
    }

    /* Media dropdown button */
    #navbarSupportedContent .nav-dropdown > .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    /* Arrow */
    #navbarSupportedContent .nav-dropdown-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    #navbarSupportedContent .nav-dropdown-arrow img {
        width: 11px;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
        transform: rotate(0deg);
    }

    /* Mobile dropdown menu inside drawer */
    #navigation_bar .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: unset;

        margin: 0;
        padding: 0 0 12px 24px;

        background: transparent;
        border-radius: 0;
        box-shadow: none;
        list-style: none;

        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    /* Show dropdown when Media is opened */
    #navigation_bar .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    /* Dropdown items */
    #navigation_bar .nav-dropdown-menu li {
        width: 100%;
    }

    #navigation_bar .nav-dropdown-menu li a {
        display: block;
        width: 100%;

        padding: 8px 0;

        color: var(--text-muted);
        background: transparent;
        border-radius: 0;

        font-family: var(--body-font);
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;

        text-align: left;
    }

    #navigation_bar .nav-dropdown-menu li a:hover {
        background: transparent;
        color: var(--theme-color);
    }

    /* Arrow rotation */
    #navigation_bar .nav-dropdown.open .nav-dropdown-arrow img {
        transform: rotate(180deg);
    }

    #navigation_bar .nav-dropdown:not(.open) .nav-dropdown-arrow img {
        transform: rotate(0deg);
    }

    /* Contact Us should look like normal menu item, not button */
    #navbarSupportedContent .main-cta {
        width: 100%;
        margin: 0;
        padding: 14px 0;

        background: transparent;
        border-radius: 0;
        border-bottom: 1px solid #dddddd;

        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    #navbarSupportedContent .main-cta:hover {
        background: transparent;
    }

    #navbarSupportedContent .main-cta .main-btn-label {
        color: var(--text-muted);
        font-family: var(--body-font);
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;
    }

    #navbarSupportedContent .main-cta:hover .main-btn-label {
        color: var(--theme-color);
    }

    /* Hide arrow inside Contact Us on mobile drawer */
    #navbarSupportedContent .main-cta .action-arrow {
        display: none;
    }
    .custom-toggler-icon {
        width: 32px;
        height: 32px;
        object-fit: contain;
        opacity: 1;
        transform: rotate(0deg) scale(1);
        transition:
            opacity 0.18s ease,
            transform 0.36s ease;
    }

    .custom-toggler-icon.is-changing {
        opacity: 0;
        transform: rotate(90deg) scale(0.75);
    }

    body.mobile-nav-open .custom-toggler-icon {
        transform: rotate(180deg) scale(1);
    }

    body.mobile-nav-open .navbar-toggler {
        position: fixed;
        top: 18px;
        right: 22px;
        z-index: 10004;
    }
}

@media (max-width: 992px) {
    

    #banner h1 {
        font-size: 76px;
        line-height: 1.2;
    }

    #banner .banner-content p {
        font-size: 20px;
        max-width: 550px;
    }

    #banner .banner-content br {
        display: none;
    }

    .section-header {
        padding-bottom: 30px;
    }

    #banner .below-banner-content-left h2 {
        margin-bottom: 3rem;
    }

    #banner .below-banner-content-right br {
        display: none;
    }

    .FV-content .section-header {
        margin-bottom: -1rem;
    }

    .FV-card {
        margin-bottom: -1rem;
    }

    #grade-consistency {
        padding: 25px 0 15px 0;
    }

    /* #quality-certified .section-header {
        margin-bottom: -2rem;
    } */

    .custom-solutions-right .section-header {
        margin-bottom: -1.5rem;
        text-align: center;
    }

    .custom-solutions-right .main-cta {
        margin-left: 3rem;
    }

    #supply-continuity {
        padding: 60px 0 90px 0;
    }

    .section-top {
        justify-content: center;
        padding-bottom: 0;
        text-align: center;
    }

    .section-bottom {
        flex-direction: column;
        gap: 25px;
    }

    .sup-con-card {
        gap: 10px;
    }

    .section-bottom .sup-con-card-top {
        flex-direction: column;
        justify-content: center;
    }

    .section-bottom .sup-con-card-bottom {
        align-items: center;
    }

    .sup-con-card {
        text-align: center;
    }

    .sup-con-card-top br {
        display: none;
    }

    #industrywide-impact-mobile .section-header {
        margin-bottom: 0rem;
    }

    #backed-by .backed-by-content {
        padding: 60px 10px;
    }

    .backed-by-content .section-header {
        text-align: center;
    }
    
    .backed-by-text p {
        text-align: center;
    }

    .ABM-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 1rem;
    }

    .backed-by-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .below-banner-content-left,
    .below-banner-content-right {
        text-align: center;
    }
}

@media (max-width: 767px) {
    #banner h1 {
        font-size: 52px;
        line-height: 1.2;
    }

    #banner .banner-content p {
        font-size: 15px;
        max-width: 350px;
    }

    br {
        display: none;
    }

    #footer .footer-bottom-mobile {
        flex-direction: column;
        justify-content: center;
    }

    #industrywide-impact-mobile {
        padding-right: 10px;
        padding-left: 10px;
    }

    .verifiable-quality-content {
        padding: 3rem;
    }
}

@media (max-width: 545px) {

    #banner .banner-content {
    margin-top: -3rem;        
    }
    #banner h1 {
        font-size: 45px;
        line-height: 1.2;
    }

    #banner .banner-content p {
        font-size: 15px;
        max-width: 280px;
    }

    #banner .swiper-navigations {
        display: none;
    }

    #banner .below-banner-content-left h2 {
        margin-bottom: 1.5rem;
    }

    #banner .below-banner-content-right {
        gap: 1rem;
    }
    #verifiable-quality .action-buttons {
        gap: 10px;
    }
    #backed-by .section-header br {
        display: block;
    }
}

@media (max-width: 390px) {
    #banner h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    #banner .banner-content p {
        font-size: 15px;
        max-width: 220px;
    }

    
}


/*========================================
    Responsive Fixes - About-us Page
========================================*/

@media (max-width: 992px) {
    .essel-mining-image {
        padding-bottom: 1.5rem;
    }
    .essel-mining-content {
        padding: 2rem;  
    }
    .global-legacy-content-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-bottom: 3rem;
    }
    .global-legacy-image {
        padding-bottom: 3rem;
    }
    .at-a-glance {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .metrics {
        display: flex;
        flex-direction: row;
        align-items: top;
        gap: 2rem;
    }
    #forged-in-pressure {
        padding: 0 2rem;
    }
    .forged-in-pressure-image-left {
        position: unset;
        padding-bottom: 2rem;
    }
    .forged-in-pressure-image-right {
        position: unset;
        padding-top: 2rem;
    }
    .forged-in-pressure-center-box {
        margin: 0;
        padding: 3rem;
    }
    #manufacturing-capabilities .section-top {
        flex-direction: column;
    }
    .step-bubbles {
        justify-content: center;
    }
    .quality-control-points {
        padding-bottom: 2rem;
    }
    .quality-control-content .section-header {
        text-align: center;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 767px) {
    .metrics {
        flex-direction : column;
    }
}


/*========================================
    Responsive Fixes - Sustainability Page
========================================*/


@media (max-width: 992px) {
    #green-FV {
        padding: 30px 0 0 0;
    }
    .green-FV-box {
        border: none;
        padding: 0;
        text-align: center;
        padding-bottom: 20px;
    }
    .sustainable-FV-content {
        margin-top: 20px;
    }
}


/*========================================
    Responsive Fixes - Applications Page
========================================*/

@media (max-width: 992px) {

    #verifiable-quality .section-header {
        padding-bottom: 10px;
    }

    #verifiable-quality .action-buttons {
        padding-top: 0;
    }

    #real-world-performance .section-top {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .application-content {
        align-items: center;
        text-align: center;
    }
}


@media (max-width: 400px) {
    .verifiable-quality-content .action-buttons {
        flex-wrap: wrap;
    }
}

/*========================================
    Responsive Fixes - Product Page
========================================*/

@media (max-width: 991.98px) {

    #product-list {
        padding-top: 20px;
    }

    #product-list .section-header {
        text-align: center;
        padding-bottom: 20px;
    }

    #product-list .section-header h2 {
        margin-bottom: 14px;
    }

    #product-list .section-header p {
        max-width: 650px;
        margin: 0 auto;
    }

    #product-list .product-listing {
        display: flex;
        flex-direction: column;
        padding: 28px 24px;
        margin: 35px 0;
        gap: 0;
        background-color: #EFEEFF;
        border-radius: 20px;
    }

    /*
        This lets the children inside these wrappers
        participate in the same mobile order.
    */
    #product-list .product-listing > .col-lg-5,
    #product-list .product-listing > .col-lg-7,
    #product-list .product-info,
    #product-list .product-overview,
    #product-list .overview-title {
        display: contents;
    }

    /* 1. Product title first */
    #product-list .overview-title h2 {
        order: 2;
        width: 100%;
        margin-bottom: 20px;
        color: var(--text-muted);
    }

    /* 2. Product image / swiper second */
    #product-list .product-swiper {
        order: 1;
        width: 100%;
        margin-bottom: 18px;
        overflow: hidden;
    }

    #product-list .product-swiper picture,
    #product-list .product-swiper img {
        width: 100%;
        height: auto;
        display: block;
    }

    #product-list .product-swiper-pagination {
        position: static;
        text-align: center;
        padding-top: 14px;
    }

    #product-list .product-swiper-pagination .swiper-pagination-bullet {
        margin: 0 10px !important;
    }

    /* 3. Explore CTA below image / swiper */
    #product-list .overview-title .main-cta {
        order: 6;
        justify-content: center;
        margin-top: 14px;
    }

    /* 4. Product details */
    #product-list .overview-content {
        order: 3;
        width: 100%;
        border-bottom: 2px solid var(--theme-color);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    #product-list .overview-content br {
        display: block;
    }

    #product-list .overview-content p {
        margin-bottom: 0;
    }

    /* 5. Applications */
    #product-list .product-applications {
        order: 4;
        width: 100%;
        border-bottom: 2px solid var(--theme-color);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    #product-list .product-applications .sub-heading h3 {
        text-align: center;
        padding-bottom: 18px;
        margin-bottom: 0;
    }

    #product-list .applications-rep {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding: 0;
    }

    #product-list .application-rep {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    #product-list .application-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #product-list .application-icon img {
        max-width: 42px;
        height: auto;
    }

    #product-list .application-rep p {
        font-size: 12px;
        line-height: 17px;
        margin-bottom: 0;
    }

    /* 6. Download buttons last */
    #product-list .action-buttons {
        order: 5;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-top: 0;
    }

    #product-list .action-buttons .main-cta {
        width: 100%;
        margin-right: 0 !important;
        justify-content: center;
    }

    #product-list .action-buttons .main-btn-label {
        text-align: center;
    }
}


@media (max-width: 575.98px) {

    #product-list .product-listing {
        padding: 22px 16px;
        margin: 28px 0;
        border-radius: 16px;
    }

    #product-list .overview-title h2 {
        margin-bottom: 16px;
    }

    #product-list .overview-title .main-cta {
        width: 100%;
    }

    #product-list .applications-rep {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 12px;
    }

    #product-list .product-swiper-pagination .swiper-pagination-bullet {
        margin: 0 8px !important;
    }
}


/*========================================
    Responsive Fixes - Case Study Page
========================================*/

@media (max-width: 991.98px) {
    .case-study-overview-text {
        padding-top: 2rem;
    }
    #media-filter-2 .media-filter-inner {
        flex-wrap: wrap;
        gap: 0px;
    }
}

@media (max-width: 545px) {
    #au-banner .banner-text h1 {
        font-size: 38px;
    }
    #au-banner .banner-text br {
        display: block;
    }
}

@media (max-width: 400px) {
    #au-banner .banner-text h1 {
        font-size: 32px;
    }
}




@media (max-width: 991.98px) {
    .contact-details {
        padding-top: 0;
    }
    #contact .section-header {
        padding-bottom: 0;
    }
    .contact-details-left {
        padding-bottom: 30px;
        width: 100%;
    }
    .send-a-message {
        padding: 2rem;
    }
    .faq-content {
        padding: 2rem;
    }
}



/* Keep card/image proportions on smaller laptops */
@media (max-width: 1199.98px) {
    .infrastructure-studies > .col-lg-6 {
        width: 100%;
    }

    .infrastructure-studies .r-w-p-card {
        max-width: 790px;
    }
}

/* Tablet/mobile: stack only when the screen cannot fit the fixed layout */
@media (max-width: 767.98px) {
    .infrastructure-studies .r-w-p-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        max-width: 376px;
    }

    .infrastructure-studies .r-w-p-image {
        flex-basis: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .infrastructure-studies .r-w-p-content {
        width: 100%;
    }
}


@media (max-width: 1199.98px) {
    #real-world-performance .r-w-p-image picture {
        aspect-ratio: calc(4/3);
    }
    #real-world-performance .r-w-p-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #real-world-performance .r-w-p-content {
        text-align: center;
        align-items: center;
    }
    #real-world-performance .r-w-p-content-inner {
        align-items: center;
    }
    
}

/* ========================================
   Case Studies card fix below 1300px
======================================== */

@media (min-width: 992px) and (max-width: 1299.98px) {
    #case-infrastructure .infrastructure-studies {
        --bs-gutter-x: 36px;
        --bs-gutter-y: 42px;
    }

    #case-infrastructure .r-w-p-card {
        display: grid;
        grid-template-columns: minmax(210px, 0.9fr) minmax(220px, 1fr);
        align-items: center;
        gap: 28px;
        width: 100%;
    }

    #case-infrastructure .r-w-p-image {
        width: 100%;
        max-width: none;
    }

    #case-infrastructure .r-w-p-image picture {
        display: block;
        width: 100%;
    }

    #case-infrastructure .r-w-p-image img {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
    }

    #case-infrastructure .r-w-p-content {
        width: 100%;
        min-width: 0;
        padding: 0;
    }

    #case-infrastructure .r-w-p-content-inner h3 {
        font-size: 24px;
        line-height: 1.18;
    }
}

@media (min-width: 992px) and (max-width: 1099.98px) {
    #case-infrastructure .r-w-p-card {
        grid-template-columns: minmax(190px, 0.85fr) minmax(200px, 1fr);
        gap: 22px;
    }

    #case-infrastructure .r-w-p-content-inner h3 {
        font-size: 22px;
        line-height: 1.2;
    }
}

@media (max-width: 991.98px) {
    #case-infrastructure .infrastructure-studies {
        row-gap: 36px;
    }

    #case-infrastructure .r-w-p-card {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 991.98px) {
    .sustainable-FV {
        padding-top: 0;
    }
    .sustainable-FV-image {
        padding: 30px 30px 0px 30px;
    }
}


/* ========================================
   Sustainability page responsive match
   Add at end of responsive.css
======================================== */

@media (max-width: 991.98px) {

    /* New Era section */
    #new-era {
        padding: 28px 18px 92px;
        border-radius: 0;
        background-color: #EFEEFF;
    }

    #new-era .container {
        max-width: 420px;
        padding-left: 0;
        padding-right: 0;
    }

    #new-era .section-header {
        padding-bottom: 24px;
    }

    #new-era .section-header h2 {
        max-width: 300px;
        margin: 0 auto 12px;
        font-size: 26px;
        line-height: 31px;
    }

    #new-era .section-header p {
        max-width: 330px;
        margin: 0 auto;
        font-size: 10px;
        line-height: 15px;
    }

    #new-era .section-header p br {
        display: none;
    }

    #new-era .row {
        display: flex;
        flex-direction: column;
    }

    .sustainability-highlights {
        padding-right: 0;
        margin-bottom: 22px;
    }

    .highlights-title {
        margin-bottom: 14px;
        text-align: left;
    }

    .highlights-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        min-height: unset;
        overflow: visible;
    }

    .tab-button,
    .tab-button.active {
        order: initial;
        width: 100%;
        height: 38px;
        margin: 0;
        padding: 0 10px;
        border-radius: 4px;
        background-color: #ffffff;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0;
        transform: none !important;
        animation: none !important;
    }

    .tab-button.active {
        background-color: var(--theme-color);
    }

    .tab-button .tab-icon,
    .tab-button.active .tab-icon,
    .tab-button .hrline,
    .tab-button.active .hrline {
        display: none;
    }

    .tab-button .tab-label,
    .tab-button.active .tab-label {
        font-family: var(--body-font);
        font-size: 10px;
        line-height: 13px;
        font-weight: 400;
    }

    .tab-button .tab-label {
        color: var(--text-muted);
    }

    .tab-button.active .tab-label {
        color: #ffffff;
    }

    .sustainability-visual {
        position: relative;
        padding-left: 0;
        padding-bottom: 58px;
    }

    .visual-image {
        max-width: 320px;
        margin: 0 auto;
        border-radius: 12px;
    }

    .visual-image img {
        width: 100%;
        aspect-ratio: 1 / 1.08;
        object-fit: cover;
        border-radius: 12px;
    }

    .visual-card {
        width: 198px;
        min-height: 146px;
        left: 50%;
        right: auto;
        bottom: 0;
        transform: translateX(-50%);
        padding: 18px 20px 16px;
        border-radius: 6px;
        box-shadow: 0 8px 24px rgba(102, 0, 204, 0.22);
    }

    .visual-card.is-changing {
        transform: translateX(-50%) translateY(12px);
    }

    .visual-card .card-icon {
        margin-bottom: 8px;
    }

    .visual-card .card-icon img {
        width: 24px;
    }

    .card-title {
        font-size: 13px;
        line-height: 16px;
    }

    .card-green-line {
        width: 40px;
        height: 3px;
        margin: 10px 0 8px;
    }

    .card-description {
        font-size: 9px;
        line-height: 13px;
    }

    /* Green Ferro Vanadium impact section */
    #green-FV {
        padding: 34px 0 20px;
    }

    #green-FV .container {
        max-width: 420px;
    }

    #green-FV .section-header {
        padding-bottom: 24px;
    }

    #green-FV .section-header h2 {
        max-width: 300px;
        margin: 0 auto;
        font-size: 26px;
        line-height: 31px;
    }

    .green-FV-content {
        gap: 0;
    }

    .green-FV-box {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 25px 0 25px;
        border-right: 0;
        border-bottom: 1px solid rgba(84, 84, 84, 0.35);
        text-align: center;
    }

    .green-FV-content > div:last-child .green-FV-box,
    .green-FV-box.border-less {
        border-bottom: 0 !important;
    }

    .green-FV-box h2 {
        font-size: 24px;
        line-height: 29px;
        color: var(--theme-color);
        margin-bottom: 4px;
    }

    .green-FV-box p {
        font-size: 10px;
        line-height: 15px;
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    #new-era {
        padding-left: 28px;
        padding-right: 28px;
    }

    #new-era .container,
    #green-FV .container {
        max-width: 360px;
    }

    .visual-image {
        max-width: 272px;
    }

    .visual-card {
        width: 195px;
    }
}

@media (max-width: 390px) {
    #new-era {
        padding-left: 18px;
        padding-right: 18px;
    }

    #new-era .section-header h2,
    #green-FV .section-header h2 {
        font-size: 24px;
        line-height: 29px;
    }

    .visual-image {
        max-width: 260px;
    }

    .visual-card {
        width: 188px;
    }

    .green-FV-box h2 {
        font-size: 22px;
        line-height: 27px;
    }
}



/* Hover effects removal for Mobile Devices */

/*========================================
  Tablet / Phone Hover Behaviour Fixes
========================================*/

@media (max-width: 991.98px) {

    /*
      CTAs should NOT have hover behaviour on tablets / phones.
      Keep them in their default state.
    */
    .main-cta:hover {
        background-color: var(--btn-color);
    }

    .main-cta.alt-cta:hover {
        background-color: var(--theme-color);
    }

    .btn-transparent:hover {
        background-color: transparent;
    }

    .btn-transparent:hover span {
        color: var(--text-muted);
    }

    .main-cta:hover .main-btn-label {
        color: var(--white-color);
    }

    #navbarSupportedContent .main-cta:hover {
        background: transparent;
    }

    #navbarSupportedContent .main-cta:hover .main-btn-label {
        color: var(--text-muted);
    }


    /*
      Other hover elements should show their hovered state
      by default on tablets / phones.
    */

    /* Zoom hover images */
    .zoom-hover picture img {
        transform: scale(1.1);
    }

    /* Right Partner cards */
    .right-partner-card .card-front {
        opacity: 0;
    }

    .right-partner-card .card-back {
        opacity: 1;
    }

    .right-partner-card .card-back-content {
        left: 35px;
        bottom: 55px;
        padding-right: 40px;
    }

    /* FV cards */
    .FV-card::before {
        opacity: 1;
    }

    .FV-card {
        box-shadow: 0px 30px 34px 0px #0000002E;
    }

    .FV-card h2,
    .FV-card p {
        color: var(--white-color);
    }

    /* Grade consistency cards */
    .gc-card .gc-card-front {
        opacity: 0;
    }

    .gc-card .gc-card-back {
        opacity: 1;
    }

    .gc-card-outer img.green-tilt {
        opacity: 1;
    }

    /* Sustainability wheel nav arrows */
    .swheel-nav-btn {
        transform: scale(1.1);
    }

    /* Back to top button */
    .back-to-top:hover {
        transform: translateY(0);
    }
}