/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* ==========================================================
   00. SITE HEADER
========================================================== */


/* ==========================================================
   00.1 HEADER CONTAINER
========================================================== */

.alba-site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #143c65;
}

.alba-site-header > .fusion-builder-row {
    width: 100%;
    max-width: 1404px !important;
    min-height: 88px;
    margin: 0 auto !important;
    padding: 0 20px;
    align-items: center !important;
    justify-content: space-between;
    flex-wrap: nowrap !important;
}


/* ==========================================================
   00.2 REMOVE AVADA COLUMN SPACING
========================================================== */

.alba-site-header__logo,
.alba-site-header__navigation,
.alba-header-utility,
.alba-header-primary {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.alba-site-header__logo {
    width: 25% !important;
}

.alba-site-header__navigation {
    width: 75% !important;
}

.alba-site-header__logo > .fusion-column-wrapper,
.alba-site-header__navigation > .fusion-column-wrapper,
.alba-header-utility > .fusion-column-wrapper,
.alba-header-primary > .fusion-column-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================
   00.3 LOGO
========================================================== */

.alba-site-header__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.alba-site-header__logo > .fusion-column-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.alba-site-header__logo .fusion-image-element {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.alba-header-logo {
    display: block;
    width: 142px;
    max-width: 100%;
    margin: 0;
}

.alba-header-logo img {
    display: block;
    width: 100%;
    height: auto !important;
    max-height: none !important;
}


/* ==========================================================
   00.4 NAVIGATION COLUMN
========================================================== */

.alba-site-header__navigation > .fusion-column-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 11px;
    width: 100%;
}

.alba-site-header__navigation .fusion-builder-row-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.alba-header-utility,
.alba-header-primary {
    width: 100% !important;
}


/* ==========================================================
   00.5 MENU RESET
========================================================== */

.alba-header-utility .awb-menu,
.alba-header-primary .awb-menu {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.alba-header-utility .awb-menu {
    --awb-font-size: 13px !important;
    --awb-line-height: 1.2 !important;
}

.alba-header-primary .awb-menu {
    --awb-font-size: 15px !important;
    --awb-line-height: 1.2 !important;
}

.alba-header-utility .awb-menu__main-ul,
.alba-header-primary .awb-menu__main-ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin: 0;
    padding: 0;
}

.alba-header-utility .awb-menu__main-li,
.alba-header-primary .awb-menu__main-li {
    margin: 0;
}

.alba-header-utility .awb-menu__main-a,
.alba-header-primary .awb-menu__main-a {
    min-height: 0;
    padding: 0;
    background: transparent;
}

.alba-header-utility .menu-text,
.alba-header-primary .awb-menu__main-li_regular .menu-text {
    color: #fff;
    letter-spacing: 0;
}


/* ==========================================================
   00.6 UTILITY MENU
========================================================== */

.alba-header-utility .awb-menu__main-ul {
    gap: 26px;
}

.alba-header-utility .awb-menu__main-a {
    transition: color 180ms ease;
}

.alba-header-utility .awb-menu__main-a:hover .menu-text,
.alba-header-utility .current-menu-item .menu-text {
    color: #f89829;
}


/* ==========================================================
   00.7 PRIMARY MENU
========================================================== */

.alba-header-primary .awb-menu__main-ul {
    gap: 32px;
}

.alba-header-primary .awb-menu__main-li_regular .menu-text {
    text-transform: uppercase;
}

.alba-header-primary .awb-menu__main-li_regular .awb-menu__main-a {
    transition: color 180ms ease;
}

.alba-header-primary .awb-menu__main-li_regular .awb-menu__main-a:hover .menu-text,
.alba-header-primary .awb-menu__main-li_regular.current-menu-item .menu-text {
    color: #f89829;
}


/* ==========================================================
   00.8 GET IN TOUCH BUTTON
========================================================== */

.alba-header-primary .awb-menu__li_button {
    margin-left: 2px;
}

.alba-header-primary .awb-menu__li_button .awb-menu__main-a {
    padding: 0;
}

.alba-header-primary .awb-menu__li_button .fusion-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #f89829;
    color: #fff;
    box-shadow: none;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.alba-header-primary .awb-menu__li_button .fusion-button:hover {
    background: #fff;
    color: #143c65;
    transform: translateY(-1px);
}


/* ==========================================================
   00.9 STICKY HEADER
========================================================== */

.alba-site-header.fusion-sticky-container,
.alba-site-header.fusion-container-stuck {
    width: 100% !important;
    background: #143c65;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}


/* ==========================================================
   END OF 00. SITE HEADER
========================================================== */


/* ==========================================================
   00.10 MOBILE MENU COLOURS
========================================================== */

/* Top-level Menu text */
.alba-mobile-nav .awb-menu__main-a,
.alba-mobile-nav .awb-menu__main-a .menu-text {
    color: #fff !important;
}

/* Stop Avada applying the active green colour */
.alba-mobile-nav .current-menu-item > .awb-menu__main-a,
.alba-mobile-nav .current-menu-parent > .awb-menu__main-a,
.alba-mobile-nav .current-menu-ancestor > .awb-menu__main-a,
.alba-mobile-nav .current-menu-item > .awb-menu__main-a .menu-text,
.alba-mobile-nav .current-menu-parent > .awb-menu__main-a .menu-text,
.alba-mobile-nav .current-menu-ancestor > .awb-menu__main-a .menu-text {
    color: #fff !important;
}

/* Submenu links */
.alba-mobile-nav .awb-menu__sub-a,
.alba-mobile-nav .awb-menu__sub-a span {
    color: #fff !important;
}

/* Current submenu page */
.alba-mobile-nav .awb-menu__sub-li.current-menu-item > .awb-menu__sub-a,
.alba-mobile-nav .awb-menu__sub-li.current-menu-item > .awb-menu__sub-a span {
    color: #f89829 !important;
}

/* Hover */
.alba-mobile-nav .awb-menu__main-a:hover,
.alba-mobile-nav .awb-menu__main-a:hover .menu-text,
.alba-mobile-nav .awb-menu__sub-a:hover,
.alba-mobile-nav .awb-menu__sub-a:hover span {
    color: #f89829 !important;
}

/* ==========================================================
   00.10 MOBILE FLYOUT MENU
========================================================== */

/* Flyout background */
.alba-mobile-nav .awb-menu__sub-ul {
    background: #073b65 !important;
}

/* Remove any white panels */
.alba-mobile-nav .awb-menu__sub-li,
.alba-mobile-nav .awb-menu__sub-a {
    background: transparent !important;
}

/* Hover */
.alba-mobile-nav .awb-menu__sub-a:hover {
    background: rgba(255,255,255,.08) !important;
}

/* ==========================================================
   END OF 00.10 MOBILE FLYOUT MENU
========================================================== */


/* ==========================================================
   END OF 00.10 MOBILE MENU COLOURS
========================================================== */

/* ==========================================================
   06. ALBA NEWSLETTER
========================================================== */


/* ==========================================================
   06.1 SECTION LAYOUT
========================================================== */

.alba-newsletter {
    background: #f4f5f7;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
}

.alba-newsletter > .fusion-row {
    display: flex !important;
    align-items: center !important;
}

.alba-newsletter-heading,
.alba-newsletter-form {
    width: 50% !important;
    margin-bottom: 0 !important;
}


/* ==========================================================
   06.2 HEADING COLUMN
========================================================== */

.alba-newsletter-heading > .fusion-column-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100%;
    text-align: center;
}

.alba-newsletter-heading .fusion-title {
    margin: 0 !important;
}

/* ==========================================================
   06.3 GRAVITY FORMS RESET
========================================================== */

.alba-newsletter-form .gform_wrapper {
    width: 100% !important;
    margin: 0 !important;
}

.alba-newsletter-form form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
    align-items: center !important;
}

.alba-newsletter-form .gform-body,
.alba-newsletter-form .gform_fields,
.alba-newsletter-form #field_1_3 {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.alba-newsletter-form .gform_fields {
    display: block !important;
}

.alba-newsletter-form .gform-footer {
    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================
   06.4 ACCESSIBLE FIELD LABEL
========================================================== */

.alba-newsletter-form #field_1_3 > .gfield_label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* ==========================================================
   06.5 EMAIL FIELD
========================================================== */

.alba-newsletter-form input[type="email"] {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 18px !important;

    border: 2px solid #f89829 !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: none !important;

    color: #143c65 !important;
    font-size: 15px !important;
    line-height: 1 !important;
}

.alba-newsletter-form input[type="email"]::placeholder {
    color: #667085 !important;
    opacity: 1 !important;
}

.alba-newsletter-form input[type="email"]:focus {
    border-color: #143c65 !important;
    box-shadow: 0 0 0 3px rgba(20, 60, 101, 0.12) !important;
    outline: none !important;
}


/* ==========================================================
   06.6 SUBSCRIBE BUTTON
========================================================== */

.alba-newsletter-form input[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 130px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 28px !important;

    border: 0 !important;
    border-radius: 999px !important;
    background: #f89829 !important;
    box-shadow: none !important;

    color: #fff !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-transform: none !important;

    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.alba-newsletter-form input[type="submit"]:hover,
.alba-newsletter-form input[type="submit"]:focus {
    background: #143c65 !important;
    color: #fff !important;
    transform: translateY(-2px);
}


/* ==========================================================
   06.7 LEGAL TEXT
========================================================== */

.alba-newsletter-legal {
    width: 100% !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    text-align: center;
}

.alba-newsletter-legal .fusion-column-wrapper,
.alba-newsletter-legal .fusion-text {
    margin: 0 !important;
    padding: 0 !important;
}

.alba-newsletter-legal p {
    margin: 0 !important;
    color: #536273 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.alba-newsletter-legal a {
    color: #143c65 !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ==========================================================
   06.8 VALIDATION
========================================================== */

.alba-newsletter-form .gfield_error input[type="email"] {
    border-color: #b42318 !important;
}

.alba-newsletter-form .validation_message {
    margin-top: 6px !important;
    color: #b42318 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
}

.alba-newsletter-form .gform_validation_errors {
    margin: 0 0 12px !important;
}


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

@media (max-width: 1024px) {

    .alba-newsletter {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .alba-newsletter-form form {
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 10px !important;
    }

    .alba-newsletter-form input[type="submit"] {
        min-width: 115px !important;
        padding: 0 20px !important;
    }
}


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

@media (max-width: 800px) {

    .alba-newsletter > .fusion-row {
        display: block !important;
    }

    .alba-newsletter-heading,
    .alba-newsletter-form,
    .alba-newsletter-legal {
        width: 100% !important;
    }

    .alba-newsletter-heading {
        margin-bottom: 22px !important;
    }

    .alba-newsletter-form form {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .alba-newsletter-form input[type="email"],
    .alba-newsletter-form input[type="submit"] {
        width: 100% !important;
        height: 50px !important;
    }

    .alba-newsletter-legal {
        margin-top: 12px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .alba-newsletter-legal p {
        font-size: 11px !important;
    }
}


/* ==========================================================
   END OF 06. ALBA NEWSLETTER
========================================================== */


/* ==========================================================
   05. ALBA GLOBAL DISTRIBUTION
========================================================== */


/* ==========================================================
   05.1 SECTION LAYOUT
========================================================== */

.alba-global {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    background:
        linear-gradient(
            112deg,
            #f89829 0%,
            #f89829 47.5%,
            #143c65 47.6%,
            #143c65 100%
        ) !important;
}

.alba-global > .fusion-row {
    position: relative;
    display: flex !important;
    align-items: stretch !important;
}

.alba-global-map,
.alba-global-content {
    position: relative;
    width: 50% !important;
    min-height: 330px;
    margin-bottom: 0 !important;
}



/* ==========================================================
   05.2 MAP COLUMN
========================================================== */

.alba-global-map {
    position: relative;
    z-index: 2;
}

.alba-global-map > .fusion-column-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 330px;
    padding: 34px 38px 34px 0 !important;
}

.alba-global-map .fusion-image-element,
.alba-global-map .fusion-imageframe {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
}

.alba-global-map img {
    display: block !important;
    width: 100% !important;
    max-width: 620px !important;
    height: auto !important;
    margin: 0 auto;
}


/* ==========================================================
   05.3 MOBILE LAYOUT
========================================================== */

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

    .alba-global {
        background: #143c65 !important;
    }

    .alba-global > .fusion-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .alba-global-map,
    .alba-global-content {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
    }

    .alba-global-map {
        background: #f89829 !important;
    }

    .alba-global-map > .fusion-column-wrapper {
        min-height: 0 !important;
        padding: 28px 20px !important;
    }

    .alba-global-map .fusion-image-element,
    .alba-global-map .fusion-imageframe {
        width: 100% !important;
    }

    .alba-global-map img {
        width: 100% !important;
        max-width: 420px !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .alba-global-content {
        background: #143c65 !important;
    }

    .alba-global-content > .fusion-column-wrapper {
        min-height: 0 !important;
        padding: 32px 24px 36px !important;
    }
}
/* ==========================================================
   05.3 NAVY PANEL AND DIAGONAL
========================================================== */

.alba-global::before,
.alba-global::after,
.alba-global-content::before,
.alba-global-content::after {
    display: none !important;
}

.alba-global-content {
    background: transparent !important;
}


/* ==========================================================
   END OF 05.3 NAVY PANEL AND DIAGONAL
========================================================== */
/* ==========================================================
   05.4 CONTENT
========================================================== */

.alba-global-content > .fusion-column-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    min-height: 330px;
    padding: 45px 0 45px 72px !important;
}

.alba-global-content .fusion-title {
    margin-top: 0 !important;
}

.alba-global-content .fusion-title:nth-child(1) {
    margin-bottom: 6px !important;
}

.alba-global-content .fusion-title:nth-child(2) {
    margin-bottom: 14px !important;
}

.alba-global-content .fusion-title:nth-child(3) {
    margin-bottom: 0 !important;
}

.alba-global-content h2 {
    max-width: 650px;
}

.alba-global-content .fusion-title:nth-child(1) h2 {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1.1 !important;
}

.alba-global-content .fusion-title:nth-child(2) h2 {
    color: #f89829 !important;
    font-size: clamp(32px, 3vw, 44px) !important;
    line-height: 1 !important;
}

.alba-global-content .fusion-title:nth-child(3) h2 {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}


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

@media (max-width: 1024px) {

    .alba-global-map,
    .alba-global-content,
    .alba-global-map > .fusion-column-wrapper,
    .alba-global-content > .fusion-column-wrapper {
        min-height: 290px;
    }

    .alba-global-map > .fusion-column-wrapper {
        padding: 30px 30px 30px 0 !important;
    }

    .alba-global-content::before {
        left: -65px;
        width: 130px;
    }

    .alba-global-content > .fusion-column-wrapper {
        padding: 38px 20px 38px 52px !important;
    }

    .alba-global-content .fusion-title:nth-child(3) h2 {
        font-size: 16px !important;
    }
}


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

@media (max-width: 800px) {

    .alba-global > .fusion-row {
        display: block !important;
    }

    .alba-global-map,
    .alba-global-content {
        width: 100% !important;
        min-height: 0;
    }

    .alba-global-map > .fusion-column-wrapper {
        min-height: 0;
        padding: 30px 22px !important;
    }

    .alba-global-map img {
        max-width: 520px !important;
    }

    .alba-global-content::before,
    .alba-global-content::after {
        display: none;
    }

    .alba-global-content > .fusion-column-wrapper {
        min-height: 0;
        padding: 34px 24px 38px !important;
    }

    .alba-global-content .fusion-title:nth-child(1) h2 {
        font-size: 18px !important;
    }

    .alba-global-content .fusion-title:nth-child(2) h2 {
        font-size: 30px !important;
        line-height: 1.03 !important;
    }

    .alba-global-content .fusion-title:nth-child(3) h2 {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
}


/* ==========================================================
   END OF 05. ALBA GLOBAL DISTRIBUTION
========================================================== */

/* ==========================================================
   04. ALBA INDUSTRIES
========================================================== */
.alba-industries {
    padding-top: 42px !important;
    padding-bottom: 48px !important;
}

/* ==========================================================
   04.1 SECTION LAYOUT
========================================================== */

.alba-industries {
    background: #fff;
    padding-top: 42px !important;
    padding-bottom: 48px !important;
}

.alba-industries > .fusion-row {
    display: flex !important;
    align-items: stretch !important;
}

.alba-industries-heading,
.alba-industry {
    margin-bottom: 0 !important;
}


/* ==========================================================
   04.2 MOBILE — TWO INDUSTRY COLUMNS
========================================================== */

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

    .alba-industries > .fusion-row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
    }

    .alba-industries .alba-industry {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;

        --awb-width-small: 50% !important;
        --awb-spacing-left-small: 3% !important;
        --awb-spacing-right-small: 3% !important;

        margin-bottom: 28px !important;
    }

    .alba-industries .alba-industry img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .alba-industries .alba-industry .fusion-title-heading {
        font-size: 16px !important;
        line-height: 1.15 !important;
    }
}



/* ==========================================================
   04.2 SECTION HEADING
========================================================== */

.alba-industries-heading {
    width: 100% !important;
}

.alba-industries-heading .fusion-title {
    margin: 0 0 32px !important;
}

.alba-industries-heading h2 {
    margin: 0 !important;
    color: #143c65 !important;
    text-align: center !important;
    line-height: 1.05 !important;
}


/* ==========================================================
   04.3 INDUSTRY COLUMNS
========================================================== */

.alba-industry {
    display: flex !important;
    text-align: center;
}

.alba-industry > .fusion-column-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
    height: 100%;
}

.alba-industry .fusion-title {
    width: 100%;
    margin: 0 0 7px !important;
}

.alba-industry h2 {
    margin: 0 !important;
    color: #143c65 !important;
    font-size: 19px !important;
    line-height: 1.12 !important;
    text-align: center !important;
}

.alba-industry h2 p {
    margin: 0 !important;
}

.alba-industry .fusion-text {
    width: 100%;
    max-width: 220px;
    margin: 0 auto !important;
}

.alba-industry .fusion-text p {
    margin: 0 !important;
    color: #143c65;
    font-size: 16px;
    line-height: 1.28;
    text-align: center;
}


/* ==========================================================
   04.4 INDUSTRY ICONS
========================================================== */

.alba-industry .fusion-image-element{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100%;
    height:155px;
    margin-bottom:15px;
}

.alba-industry .fusion-imageframe{
    display:block !important;
    width:145px !important;
    max-width:145px !important;
}

.alba-industry .fusion-imageframe img{
    display:block !important;
    width:145px !important;
    height:145px !important;
    max-width:none !important;
    object-fit:contain;
}

/* ==========================================================
   END OF 04.4 INDUSTRY ICONS
========================================================== */


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

@media (max-width: 1024px) {

    .alba-industries {
        padding-top: 38px !important;
        padding-bottom: 38px !important;
    }

    .alba-industries > .fusion-row {
        justify-content: center !important;
        row-gap: 30px !important;
    }

    .alba-industry {
        width: 33.3333% !important;
        max-width: 33.3333% !important;
    }

    .alba-industry .fusion-image-element {
        height: 130px;
    }

    .alba-industry .fusion-imageframe,
    .alba-industry .fusion-imageframe img {
        width: 120px !important;
        height: 120px !important;
        max-width: 120px !important;
    }

    .alba-industry h2 {
        font-size: 18px !important;
    }

    .alba-industry .fusion-text p {
        font-size: 15px;
    }
}


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

@media (max-width: 800px) {

    .alba-industries {
        padding-top: 32px !important;
        padding-bottom: 34px !important;
    }

    .alba-industries-heading .fusion-title {
        margin-bottom: 25px !important;
    }

    .alba-industries-heading h2 {
        font-size: 30px !important;
    }

    .alba-industries > .fusion-row {
        display: flex !important;
        row-gap: 24px !important;
    }

    .alba-industry {
        width: 50% !important;
        max-width: 50% !important;
        margin-bottom: 0 !important;
    }

    .alba-industry .fusion-image-element {
        height: 105px;
        margin-bottom: 10px;
    }

    .alba-industry .fusion-imageframe,
    .alba-industry .fusion-imageframe img {
        width: 95px !important;
        height: 95px !important;
        max-width: 95px !important;
    }

    .alba-industry h2 {
        font-size: 16px !important;
        line-height: 1.1 !important;
    }

    .alba-industry .fusion-text {
        max-width: 170px;
    }

    .alba-industry .fusion-text p {
        font-size: 14px;
        line-height: 1.25;
    }
}


/* ==========================================================
   04.7 SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .alba-industry {
        width: 100% !important;
        max-width: 100% !important;
    }

    .alba-industry .fusion-image-element {
        height: 120px;
    }

    .alba-industry .fusion-imageframe,
    .alba-industry .fusion-imageframe img {
        width: 110px !important;
        height: 110px !important;
        max-width: 110px !important;
    }

    .alba-industry h2 {
        font-size: 18px !important;
    }

    .alba-industry .fusion-text {
        max-width: 240px;
    }

    .alba-industry .fusion-text p {
        font-size: 15px;
    }
}


/* ==========================================================
   END OF 04. ALBA INDUSTRIES
========================================================== */






/* ==========================================================
   03. ALBA MANUFACTURED
========================================================== */


/* ==========================================================
   03.1 SECTION LAYOUT
========================================================== */

.alba-manufactured {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    background: #143c65;
}

.alba-manufactured > .fusion-row {
    display: flex !important;
    align-items: stretch !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

.alba-manufactured > .fusion-row > .fusion-layout-column {
    width: 50% !important;
    max-width: 50% !important;

    margin: 0 !important;
    padding: 0 !important;

    --awb-spacing-left-large: 0 !important;
    --awb-spacing-right-large: 0 !important;
    --awb-margin-bottom-large: 0 !important;
}


/* ==========================================================
   03.2 IMAGE COLUMN
========================================================== */

.alba-manufactured-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 390px;
}

.alba-manufactured-image > .fusion-column-wrapper {
    min-height: 390px;

    margin: 0 !important;
    padding: 0 !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.alba-manufactured-image .fusion-empty-dims-img-placeholder {
    display: none !important;
}


/* ==========================================================
   03.3 DIAGONAL JOIN
========================================================== */

.alba-manufactured-image::after {
    content: "";
    position: absolute;
    z-index: 3;

    top: -5%;
    right: -88px;

    width: 175px;
    height: 110%;

    background: #143c65;
    transform: skewX(-21deg);
    pointer-events: none;
}


/* ==========================================================
   03.4 CONTENT COLUMN
========================================================== */

.alba-manufactured-content {
    position: relative;
    z-index: 2;
    min-height: 390px;
    background: #143c65;
}

.alba-manufactured-content > .fusion-column-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    min-height: 390px;

    margin: 0 !important;
    padding: 48px 9vw 48px 68px !important;
}

.alba-manufactured-content .fusion-title {
    margin-top: 0 !important;
}

.alba-manufactured-content .fusion-title:nth-child(1) {
    margin-bottom: 8px !important;
}

.alba-manufactured-content .fusion-title:nth-child(2) {
    margin-bottom: 16px !important;
}

.alba-manufactured-content .fusion-title:nth-child(3) {
    margin-bottom: 0 !important;
}

.alba-manufactured-content h2 {
    max-width: 650px;
}

.alba-manufactured-content .fusion-title:nth-child(1) h2 {
    color: #fff !important;
}

.alba-manufactured-content .fusion-title:nth-child(2) h2 {
    color: #f89829 !important;
}

.alba-manufactured-content .fusion-title:nth-child(3) h2 {
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
}


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

@media (max-width: 1024px) {

    .alba-manufactured-image,
    .alba-manufactured-content,
    .alba-manufactured-image > .fusion-column-wrapper,
    .alba-manufactured-content > .fusion-column-wrapper {
        min-height: 330px;
    }

    .alba-manufactured-image::after {
        right: -65px;
        width: 130px;
    }

    .alba-manufactured-content > .fusion-column-wrapper {
        padding: 38px 40px 38px 54px !important;
    }

    .alba-manufactured-content .fusion-title:nth-child(3) h2 {
        font-size: 16px !important;
    }
}


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

@media (max-width: 800px) {

    .alba-manufactured > .fusion-row {
        display: block !important;
    }

    .alba-manufactured > .fusion-row > .fusion-layout-column {
        width: 100% !important;
        max-width: 100% !important;
    }

    .alba-manufactured-image,
    .alba-manufactured-content {
        min-height: 0;
    }

    .alba-manufactured-image > .fusion-column-wrapper {
        min-height: 250px;
    }

    .alba-manufactured-image::after {
        display: none;
    }

    .alba-manufactured-content > .fusion-column-wrapper {
        min-height: 0;
        padding: 34px 24px 38px !important;
    }

    .alba-manufactured-content .fusion-title:nth-child(1) {
        margin-bottom: 6px !important;
    }

    .alba-manufactured-content .fusion-title:nth-child(2) {
        margin-bottom: 14px !important;
    }

    .alba-manufactured-content .fusion-title:nth-child(2) h2 {
        font-size: 30px !important;
        line-height: 1.05 !important;
    }

    .alba-manufactured-content .fusion-title:nth-child(3) h2 {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
}


/* ==========================================================
   END OF 03. ALBA MANUFACTURED
========================================================== */



/* ==========================================================
   02. ALBA PRODUCTS
========================================================== */


/* ==========================================================
   02.1 SECTION LAYOUT
========================================================== */

.alba-products,
.alba-products-grid {
    background: #fff;
}

.alba-products {
    padding-top: 2% !important;
    padding-bottom: 0% !important;
}

.alba-products-grid {
    padding-top: 2% !important;
    padding-bottom: 2% !important;
}

.alba-products > .fusion-row,
.alba-products-grid > .fusion-row {
    align-items: stretch;
}

.alba-products-heading,
.alba-products-view-all,
.alba-product-card {
    margin-bottom: 0 !important;
}


/* ==========================================================
   02.2 SECTION HEADINGS
========================================================== */

.alba-products-heading .fusion-title {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.alba-products-heading .fusion-title:first-child {
    margin-bottom: 3px !important;
}

/* ==========================================================
   02.3 VIEW ALL PRODUCTS BUTTON
========================================================== */

/* Align both heading columns by their bottom edges */
.alba-products > .fusion-row {
    align-items: flex-end !important;
}

/* Push the button to the right */
.alba-products-view-all {
    align-self: flex-end !important;
}

.alba-products-view-all > .fusion-column-wrapper {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
}

.alba-products-view-all .fusion-button {
    width: auto !important;
    min-width: 0 !important;
    padding: 15px 30px !important;

    background: #f89829 !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: none !important;

    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.alba-products-view-all .fusion-button:hover {
    background: #143c65 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

@media (max-width: 800px) {

    .alba-products > .fusion-row {
        align-items: flex-start !important;
    }

    .alba-products-view-all {
        align-self: flex-start !important;
    }

    .alba-products-view-all > .fusion-column-wrapper {
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .alba-products-view-all .fusion-button {
        width: 100% !important;
    }
}

/* ==========================================================
   END OF 02.3 VIEW ALL PRODUCTS BUTTON
========================================================== */
/* ==========================================================
   02.4 PRODUCT CARDS
========================================================== */

.alba-product-card {
    display: flex !important;
}

.alba-product-card > .fusion-column-wrapper {
    width: 100%;
    min-height: 100%;
    display: flex !important;
    flex-direction: column !important;
    background: #f4f5f7;
    overflow: hidden;
}

.alba-product-card .fusion-image-element,
.alba-product-card .fusion-imageframe {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
}

.alba-product-card .fusion-imageframe img {
    display: block !important;
    width: 100% !important;
    height: auto;
    aspect-ratio: 801 / 535;
    object-fit: cover;
}

.alba-product-card .fusion-title {
    margin: 0 !important;
    padding: 18px 24px 5px;
}

.alba-product-card h2 {
    margin: 0 !important;
    color: #f89829 !important;
    font-size: 21px !important;
    line-height: 1.15 !important;
}

.alba-product-card .fusion-text {
    flex-grow: 1;
    margin: 0 !important;
    padding: 0 24px 22px;
}

.alba-product-card .fusion-text p {
    margin: 0 !important;
    color: #143c65;
    font-size: 18px;
    line-height: 1.3;
}

.alba-product-card .fusion-text a {
    display: inline-block;
    margin-top: 5px;
    color: #143c65;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.alba-product-card .fusion-text a:hover {
    color: #f89829;
}


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

@media (max-width: 1024px) {

    .alba-products {
        padding-top: 42px !important;
    }

    .alba-products-view-all .fusion-button {
        padding: 14px 24px !important;
        font-size: 16px !important;
    }

    .alba-product-card .fusion-title {
        padding: 16px 18px 5px;
    }

    .alba-product-card h2 {
        font-size: 18px !important;
    }

    .alba-product-card .fusion-text {
        padding: 0 18px 20px;
    }

    .alba-product-card .fusion-text p {
        font-size: 16px;
    }
}


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

@media (max-width: 800px) {

    .alba-products {
        padding-top: 34px !important;
        padding-bottom: 20px !important;
    }

    .alba-products-heading,
    .alba-products-view-all {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .alba-products-view-all > .fusion-column-wrapper {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-top: 14px;
        padding-bottom: 0;
    }

    .alba-products-view-all .fusion-button {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
    }

    .alba-products-grid {
        padding-bottom: 38px !important;
    }

    .alba-products-grid > .fusion-row {
        row-gap: 22px !important;
    }

    .alba-product-card {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .alba-product-card .fusion-title {
        padding: 16px 18px 4px;
    }

    .alba-product-card h2 {
        font-size: 19px !important;
    }

    .alba-product-card .fusion-text {
        padding: 0 18px 19px;
    }

    .alba-product-card .fusion-text p {
        font-size: 16px;
        line-height: 1.3;
    }
}


/* ==========================================================
   END OF 02. ALBA PRODUCTS
========================================================== */


/* ==========================================================
   ALBA BENEFITS
========================================================== */

/* Equalise top/bottom spacing */
.alba-benefits .fusion_builder_column,
.alba-benefits .fusion_builder_column_inner {
    margin-bottom: 0 !important;
}

.alba-benefits {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
}

.alba-benefits {
    background: #f4f5f7;
}

/* -------------------------
   Mobile only
-------------------------- */

@media (max-width: 800px) {

    .alba-benefits {
        padding-top: 32px !important;
    }

    /* Space between the three benefit items */
    .alba-benefits > .fusion-row {
        row-gap: 5px !important;
    }

    /* Remove Avada's mobile column bottoms */
    .alba-benefits > .fusion-row > .fusion-layout-column {
        margin-bottom: 0 !important;
    }

    /* Each icon/text item */
    .alba-benefits .fusion-builder-row-inner {
        display: grid !important;
        grid-template-columns: 64px minmax(0, 1fr) !important;
        align-items: center !important;
        column-gap: 14px !important;

        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Override Avada's inline nested-column widths */
    .alba-benefits .fusion-builder-row-inner > .fusion-layout-column {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Icon column */
    .alba-benefits .fusion-builder-row-inner > .fusion-layout-column:first-child {
        grid-column: 1;
        justify-self: center;
    }

    /* Text column */
    .alba-benefits .fusion-builder-row-inner > .fusion-layout-column:last-child {
        grid-column: 2;
        min-width: 0;
    }

    /* Make all icons exactly equal */
    .alba-benefits .fusion-image-element,
    .alba-benefits .fusion-imageframe {
        display: block !important;
        width: 54px !important;
        max-width: 54px !important;
        margin: 0 auto !important;
    }

    .alba-benefits .fusion-imageframe img {
        display: block !important;
        width: 54px !important;
        height: 54px !important;
        max-width: none !important;
        object-fit: contain;
    }

    /* Tighten title and text on mobile only */
    .alba-benefits .fusion-title {
        margin-top: 0 !important;
        margin-bottom: 3px !important;
    }

    .alba-benefits h2 {
        margin: 0 !important;
        font-size: 20px !important;
        line-height: 1.05 !important;
    }

    .alba-benefits .fusion-text,
    .alba-benefits .fusion-text p {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .alba-benefits .fusion-text p {
        font-size: 15px !important;
        line-height: 1.25 !important;
    }
}


/* Blue section */
.alba-diagonal-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;

    background: #143C65; /* ALBA Navy */

    clip-path: polygon(
        12% 0,
        100% 0,
        100% 100%,
        0 100%
    );

    z-index: 1;
}

/* Keep content above colours */
.alba-diagonal-banner > * {
    position: relative;
    z-index: 2;
}




/* Avada container background slider: mild Ken Burns without layout break */
.kb-bgslider .awb-background-slider{
  overflow: hidden;
}

/* Baseline zoom on ALL images so no “drop back” */
.kb-bgslider .awb-background-slider__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;

  /* this is the trick: use transition, not keyframes */
  transform: scale(1.04);
  transition: transform 5s linear;
  will-change: transform;
}

/* While a slide is active, gently zoom a bit more */
.kb-bgslider .swiper-slide-active .awb-background-slider__image{
  transform: scale(1.08);
}

/* Optional: mobile + accessibility */
@media (max-width: 800px), (prefers-reduced-motion: reduce){
  .kb-bgslider .awb-background-slider__image{
    transition: none !important;
    transform: none !important;
  }
}

/* Gradient overlay ABOVE the background slider images */
.kb-bgslider{
  position: relative;
}

/* The overlay itself */
/* The overlay itself */
.kb-bgslider::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

background: linear-gradient(
  90deg,
  rgba(255,255,255,1) 0%,
  rgba(255,255,255,0.95) 20%,
  rgba(255,255,255,0.75) 40%,
  rgba(255,255,255,0.25) 60%,
  rgba(255,255,255,0) 80%
);
}

/* Make sure the slider stays behind the overlay */
.kb-bgslider .awb-background-slider{
  position: absolute; /* Avada often already does this; harmless if duplicated */
  inset: 0;
  z-index: 1;
}

/* Make sure your actual content sits above the overlay */
.kb-bgslider > *{
  position: relative;
  z-index: 3;
}

/* White overlays won’t show if the slider is multiply */
.kb-bgslider .awb-background-slider{
  mix-blend-mode: normal !important;
}

/* --- END Avada BG slider: subtle Ken Burns + gradient overlay (no layout break) --- */



/* Header Contact / Get in Touch style */
.awb-menu .awb-menu__li_button .awb-menu__main-a_button {
    padding: 0 !important;
    background: transparent !important;
}

.awb-menu .awb-menu__li_button .fusion-button {
    background: #ff9226 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    border: 0 !important;

    padding: 10px 15px !important;
    min-height: 0 !important;

    font-family: inherit !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    text-transform: uppercase !important;

    box-shadow: none !important;
}

.awb-menu .awb-menu__li_button .fusion-button:hover {
    background: #ff7f00 !important;
    color: #ffffff !important;
}
