/* ==========================================================================
   About Us CSS — Energofor Design
   All values extracted from Layton Construction reference
   ========================================================================== */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
    --au-font-serif: 'Nunito Sans', serif;
    --au-font-sans: 'Nunito Sans', sans-serif;
    --au-font-heading: 'Nunito Sans', sans-serif;
    --au-color-primary: #0e5d99;
    --au-color-dark: #242c36;
    --au-color-dark-mid: #3c5063;
    --au-color-light-border: #88c4ff;
    --au-color-blue-accent: #0e5d99;
    --au-color-card-bg: #f5f5f5;
    --au-color-gray-bg: #e6e8ea;
    --au-color-gray-light: #f5f5f5;
    --au-color-white: #ffffff;
    --au-color-black: #000000;
}

/* ---------- Global Resets ---------- */
.about-us,
.about-us *,
.about-us *::before,
.about-us *::after {
    box-sizing: border-box;
}

.about-us {
    font-family: var(--au-font-sans);
    color: var(--au-color-dark);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.625rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ---------- Shared Button Styles ---------- */
.au-btn--outline-white {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: var(--au-font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.188;
    padding: 12px 18px;
    text-decoration: none;
    text-transform: uppercase;
    width: fit-content;
    transition: all 0.2s ease;
}

.au-btn--outline-white:visited {
    color: inherit;
}

.au-btn--outline-white:hover {
    background-color: var(--au-color-primary);
    border: 1px solid var(--au-color-primary);
    color: #fff;
}

.au-btn--outline-blue {
    background-color: transparent;
    border: 1px solid var(--au-color-primary);
    border-radius: 10px;
    color: var(--au-color-dark);
    cursor: pointer;
    display: inline-block;
    font-family: var(--au-font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.188;
    padding: 12px 18px;
    text-decoration: none;
    text-transform: uppercase;
    width: fit-content;
    transition: all 0.2s ease;
}

.au-btn--outline-blue:visited {
    color: inherit;
}

.au-btn--outline-blue:hover {
    background-color: var(--au-color-primary);
    border: 1px solid var(--au-color-primary);
    color: #fff;
}

.au-btn--play-white {
    align-items: center;
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-family: var(--au-font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    justify-content: flex-start;
    line-height: 1rem;
    padding: 0;
    text-transform: uppercase;
}

.au-btn--play-white span {
    position: relative;
}

.au-btn--play-white span::after {
    background-color: #fff;
    content: "";
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 16px;
    transition: width 0.2s ease-in-out;
    width: 0;
    z-index: 0;
}

.au-btn--play-white:hover span::after {
    height: 1px;
    opacity: 1;
    width: 100%;
}

/* ==========================================================================
   SECTION 1: HERO WITH VIDEO
   Reference: .hero-with-video with .tinted-frost overlay
   ========================================================================== */
.au-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Desktop: Aspect ratio via pseudo-element */
@media screen and (min-width: 64rem) {
    .au-hero::before {
        content: "";
        display: block;
        padding-bottom: 56.25%;
        width: 100%;
    }
}

/* Video / image background */
.au-hero__video,
.au-hero__poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Mobile/Tablet: Video/image has its own aspect ratio container */
@media screen and (max-width: 63.99rem) {

    .au-hero__video,
    .au-hero__poster {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        display: block;
    }
}

/* Tinted frost overlay panel - Desktop */
.au-hero__frost {
    -webkit-backdrop-filter: blur(0.625rem) brightness(0.9);
    backdrop-filter: blur(0.625rem) brightness(0.9);
    background-color: rgba(29, 46, 60, 0.2);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

@media screen and (min-width: 64rem) {
    .au-hero__frost {
        width: 44%;
    }
}

/* Mobile/Tablet: Frost becomes solid background below content */
@media screen and (max-width: 63.99rem) {
    .au-hero__frost {
        position: relative;
        width: 100%;
        height: auto;
        background-color: #1d2e3c;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Copy wrapper inside frost */
.au-hero__copy {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: flex-start;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0 31px;
    text-align: left;
}

@media screen and (min-width: 90rem) {
    .au-hero__copy {
        padding: 0 60px;
    }
}

/* Mobile/Tablet: Copy wrapper adjustments */
@media screen and (max-width: 63.99rem) {
    .au-hero__copy {
        height: auto;
        padding: 31px;
    }
}

.au-hero__copy-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: relative;
}

/* Mobile/Tablet: Copy container adjustments */
@media screen and (max-width: 63.99rem) {
    .au-hero__copy-container {
        height: auto;
        width: 100%;
    }
}

/* Eyebrow label */
.au-hero__label {
    color: #fff;
    font-family: var(--au-font-sans);
    font-size: 0.875rem;
    font-weight: 450;
    line-height: 1.188;
    text-transform: uppercase;
    margin-bottom: 1.1875rem;
    padding-top: 3rem;
}

@media screen and (min-width: 48.0625rem) {
    .au-hero__label {
        padding-top: 0;
    }
}

/* Mobile/Tablet: Label smaller */
@media screen and (max-width: 63.99rem) {
    .au-hero__label {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        padding-top: 0;
    }
}

/* Hero heading */
.au-hero__title {
    font-family: var(--au-font-serif);
    font-size: 3rem;
    font-style: normal;
    font-weight: 350;
    line-height: 100%;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
}

@media screen and (min-width: 48.0625rem) {
    .au-hero__title {
        font-size: 3.75rem;
        line-height: 100%;
    }
}

/* Mobile/Tablet: Title smaller */
@media screen and (max-width: 63.99rem) {
    .au-hero__title {
        font-size: 2rem;
        line-height: 100%;
    }
}

/* Hero description text */
.au-hero__desc {
    color: #fff;
    font-family: var(--au-font-sans);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.625rem;
    margin-bottom: 2rem;
    margin-top: 0;
    padding-top: 34px;
}

@media screen and (min-width: 48.0625rem) {
    .au-hero__desc {
        padding-bottom: 10px;
    }
}

/* Mobile/Tablet: Description adjustments */
@media screen and (max-width: 63.99rem) {
    .au-hero__desc {
        padding-top: 20px;
        margin-bottom: 1.5rem;
        font-size: 0.9375rem;
        line-height: 1.5rem;
    }
}

/* Buttons wrapper */
.au-hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media screen and (min-width: 48.0625rem) {
    .au-hero__buttons {
        flex-direction: row;
        gap: 1.25rem;
    }
}

/* Mobile/Tablet: Buttons in a row */
@media screen and (max-width: 63.99rem) {
    .au-hero__buttons {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
}

/* ==========================================================================
   MOBILE OVERLAY (Label + Title on video)
   Visible only below 64rem
   ========================================================================== */
.au-hero__mobile-overlay {
    display: none;
}

@media screen and (max-width: 63.99rem) {
    .au-hero__mobile-overlay {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background-color: #1d2e3c33;
        /* height: 100%; */
        left: 0;
        position: absolute;
        top: 0;
        bottom: 24%;
        width: 100%;
        z-index: 1;
        display: block;
    }

    .au-hero__mobile-overlay__container {
        align-items: center;
        color: #fff;
        display: flex;
        flex-direction: row;
        height: 100%;
        justify-content: flex-start;
        margin-bottom: 0;
        margin-top: 0;
        padding: 0 31px;
        text-align: left;
    }

    .au-hero__mobile-overlay__inner {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        position: relative;
    }

    .au-hero__mobile-overlay .au-hero__label {
        margin-bottom: 0.75rem;
    }

    .au-hero__mobile-overlay .au-hero__title {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* ==========================================================================
   DESKTOP HEADER (Label + Title in frost overlay)
   Visible only at 64rem+
   ========================================================================== */
.au-hero__desktop-header {
    display: block;
}

@media screen and (max-width: 63.99rem) {
    .au-hero__desktop-header {
        display: none;
    }
}

/* Mobile: Content body (description + buttons) in dark section */
@media screen and (max-width: 63.99rem) {
    .au-hero__content-body .au-hero__desc {
        padding-top: 0;
    }
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.au-modal {
    display: none;
}

.au-modal.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.au-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.au-modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 5px;
    overflow: hidden;
}

.au-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.au-modal__content {
    position: relative;
    padding-bottom: 56.25%;
}

.au-modal__content iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   SECTION 2: THREE COLUMN GALLERY WITH COPY
   Reference: .three-col-w-copy
   ========================================================================== */
.au-process {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 60px 0 60px;
}

@media screen and (min-width: 48.0625rem) {
    .au-process {
        padding: 100px 0 100px;
    }
}

.au-process__container {
    display: flex;
    flex-direction: column;
    max-width: 90rem;
    width: 100%;
}

@media screen and (max-width: 64rem) {
    .au-process__container {
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 64rem) {
    .au-process__container {
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
}



.au-process__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 68rem;
    width: 100%;
}

@media screen and (min-width: 64rem) {
    .au-process__gallery {
        margin-right: 2rem;
    }
}

.au-process__img {
    position: relative;
}

.au-process__img:before {
    content: "";
    display: block;
    padding-bottom: 172.2972972973%;
    width: 100%;
}

.au-process__img img {
    bottom: 0;
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
    border-radius: .3rem;
}

.au-process__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media screen and (max-width: 64rem) {
    .au-process__copy {
        margin-bottom: 30px;
        padding: 0 31px;
    }
}

@media screen and (min-width: 64rem) {
    .au-process__copy {
        max-width: 400px;
        flex-shrink: 0;
    }
}

.au-process__title {
    font-family: 'Qaranta', serif;
    font-size: 1.75rem;
    font-weight: 350;
    line-height: 100%;
    color: var(--au-color-dark);
    margin: 0 0 1.5rem 0;
}

@media screen and (min-width: 48.0625rem) {
    .au-process__title {
        font-size: 2rem;
        line-height: 100%;
    }
}

.au-process__desc {
    font-family: var(--au-font-sans);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.625rem;
    color: var(--au-color-dark);
    margin: 0 0 1.5rem 0;
}

/* ==========================================================================
   SECTION 3: OFFICES CAROUSEL
   Reference: .ccw-carousel
   ========================================================================== */
.au-offices {
    width: 100%;
    padding: 60px 31px;
    background-color: var(--au-color-gray-light);
}

@media screen and (min-width: 48.0625rem) {
    .au-offices {
        padding: 100px 64px;
    }
}

.au-offices__container {
    max-width: 1400px;
    margin: 0 auto;
}

.au-offices__copy {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.au-offices__title {
    font-family: 'Qaranta', serif;
    font-size: 2rem;
    font-weight: 350;
    line-height: 100%;
    color: var(--au-color-dark);
    margin: 0 0 1.5rem 0;
    text-align: center;
}

@media screen and (min-width: 48.0625rem) {
    .au-offices__title {
        font-size: 2.75rem;
        line-height: 100%;
    }
}

.au-offices__desc {
    font-family: var(--au-font-sans);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.625rem;
    color: var(--au-color-dark);
    margin: 0;
    text-align: center;
}

.au-offices__carousel-wrap {
    position: relative;
}

.au-offices__swiper {
    overflow: hidden;
}

.au-offices__slide {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
}

.au-offices__image {
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    margin-bottom: 16px;
}

.au-offices__image::before {
    content: "";
    display: block;
    padding-bottom: 75%;
    width: 100%;
}

.au-offices__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.au-offices__slide:hover .au-offices__image img {
    transform: scale(1.05);
}

.au-offices__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(29, 46, 60, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    -webkit-backdrop-filter: blur(10px) brightness(.9);
    backdrop-filter: blur(10px) brightness(.9);
    border-radius: 5px 5px 0 0;
}

.au-offices__slide:hover .au-offices__overlay {
    opacity: 1;
    visibility: visible;
}

.au-offices__overlay-label {
    font-family: var(--au-font-sans);
    font-size: 0.875rem;
    font-weight: 450;
    line-height: 1.188;
    text-transform: uppercase;
    color: #fff;
    margin-top: 8px;
}

.au-offices__placeholder {
    position: absolute;
    inset: 0;
    background: var(--au-color-card-bg);
}

.au-offices__content {
    padding: 0 8px;
}

.au-offices__region {
    font-family: var(--au-font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    text-transform: uppercase;
    color: var(--au-color-dark);
    margin: 0 0 0.5rem 0;
}

.au-offices__locations {
    font-family: var(--au-font-sans);
    font-size: 0.875rem;
    font-weight: 450;
    line-height: 1.5rem;
    color: var(--au-color-dark-mid);
}

.au-offices__nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

/* 
.au-offices__arrow {
    width: 30px;
    height: 30px;
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: filter 0.2s ease;
}

.au-offices__arrow--prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005ab3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.au-offices__arrow--next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005ab3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.au-offices__arrow:hover:not(.swiper-button-disabled) {
    filter: brightness(70%);
}

.au-offices__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
} */

.au-offices__arrow {
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 1px solid #005ab3;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.au-offices__arrow--prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.au-offices__arrow--next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.au-offices__arrow:hover:not(.swiper-button-disabled) {
    background-color: #005ab3;
}

.au-offices__arrow:not(.swiper-button-disabled) {
    background-color: #005ab3;
}

.au-offices__arrow:hover(.swiper-button-disabled) {
    background-color: #8a96a2;
}

.au-offices__arrow.swiper-button-disabled {
    background-color: #8a96a2;
    border-color: #8a96a2;
}

.au-offices__arrow:hover:not(.swiper-button-disabled).au-offices__arrow--prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.au-offices__arrow:hover:not(.swiper-button-disabled).au-offices__arrow--next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.au-offices__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
}

/* ==========================================================================
   SECTION 4: PARTNERSHIPS TABS CAROUSEL
   Reference: .tabs-carousel
   ========================================================================== */
.au-partnerships {
    padding-top: 60px;
    justify-content: center;
}

@media screen and (min-width: 48.0625rem) {
    .au-partnerships {
        padding-top: 100px;
    }
}

.au-partnerships,
.au-partnerships__container {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
}

.au-partnerships__container {
    justify-content: flex-start;
    margin-bottom: 100px;
    max-width: 72.0625rem;
    width: 100%;
}

@media screen and (max-width: 1399px) {
    .au-partnerships__container {
        padding: 0 44px;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 48.0625rem) {
    .au-partnerships__container {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin: 0 0 60px;
        padding: 0 31px;
    }
}

.au-partnerships__tabs-container {
    max-width: 484px;
    width: 100%;
}

@media screen and (max-width: 48.0625rem) {
    .au-partnerships__tabs-container {
        max-width: 100%;
    }
}

.au-partnerships__title {
    font-family: 'Qaranta', serif;
    font-size: 2rem;
    font-weight: 350;
    line-height: 100%;
    color: var(--au-color-dark);
    margin: 0 0 2rem 0;
}

@media screen and (min-width: 48.0625rem) {
    .au-partnerships__title {
        font-size: 2.75rem;
        line-height: 100%;
    }
}

@media screen and (max-width: 48.0625rem) {
    .tabs-carousel__tabs {
        max-width: 48rem;
        overflow-x: auto;
    }
}

@media screen and (max-width: 48.0625rem) {
    .au-partnerships__tabs {
        align-items: flex-end;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
}

.au-partnerships__tab-btn {
    font-family: var(--au-font-heading);
    font-size: 1.25rem;
    font-weight: 350;
    line-height: 1.5rem;
    background: #fff;
    border: none;
    color: #3c5063;
    cursor: pointer;
    display: block;
    margin-bottom: 1.5625rem;
    padding: 0 0 16px;
    position: relative;
    text-align: left;
    transition: color .2s ease-in-out;
    width: 100%;
}

@media screen and (max-width: 48.0625rem) {
    .au-partnerships__tab-btn {
        margin-right: 1rem;
        white-space: nowrap;
    }
}

@media screen and (max-width: 48.0625rem) {
    .au-partnerships__tab-btn {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
}


.au-partnerships__tab-btn::after {
    background-color: #3c5063;
    bottom: 0;
    content: "";
    display: inline-block;
    height: .125rem;
    left: 0;
    max-width: 20.4375rem;
    position: absolute;
    transition: background-color .2s ease-in-out, max-width .2s ease-in-out;
    width: 100%;
    z-index: 0;
}

.au-partnerships__tab-btn.active,
.au-partnerships__tab-btn:hover,
.au-partnerships__tab-btn:focus {
    color: #005ab3;
    background-color: #ffffff;
}

.au-partnerships__tab-btn.active::after,
.au-partnerships__tab-btn:hover::after {
    background-color: #8dbbe2;
    bottom: 0;
    left: 0;
    max-width: 100%;
    position: absolute;
    right: 0;
    z-index: 0;
}

.au-partnerships__swiper {
    overflow: hidden;
    flex-grow: 1;
}

.au-partnerships__slide::before {
    content: "";
    display: block;
    padding-bottom: 80%;
    width: 100%;
}

@media screen and (max-width: 48rem) {
    .au-partnerships__slide::before {
        padding-bottom: 90%;
    }
}

.au-partnerships__slide {
    border: 2px solid #8dbbe2;
    border-radius: 5px;
    box-sizing: border-box;
    max-width: 100%;
    position: relative;
    width: 100%;
}

.au-partnerships__slide-content {
    bottom: 0;
    font-size: 1rem;
    height: 100%;
    left: 0;
    line-height: 1.5rem;
    max-width: 100%;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@media screen and (min-width: 90rem) {
    .au-partnerships__slide-content {
        font-size: 1.25rem;
        line-height: 2rem;
    }
}


.au-partnerships__slide-content .au-partnerships__inner-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: auto;
    margin-top: auto;
    max-width: 100%;
    padding: 22px;
}

@media screen and (min-width: 600px) {
    .au-partnerships__slide-content .au-partnerships__inner-container {
        padding: 44px;
    }
}

@media screen and (min-width: 90rem) {
    .au-partnerships__slide-content .au-partnerships__inner-container {
        padding: 94px;
    }
}


.au-partnerships__description {
    font-family: var(--au-font-sans);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.625rem;
    color: var(--au-color-dark);
    margin-bottom: 1.5rem;
}

.au-partnerships__description p {
    margin: 0 0 1rem 0;
}

.au-partnerships__description p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   SECTION 5: VALUES IMAGE STRIP CAROUSEL
   Reference: .img-strip-carousel
   ========================================================================== */
.au-values {
    position: relative;
    padding-bottom: 60px;
}

@media screen and (min-width: 64rem) {
    .au-values {
        padding-bottom: 100px;
    }
}

/* .au-values__swiper {
    overflow: hidden;
} */

.au-values__swiper {
    margin-bottom: 2.5rem;
    max-width: 90rem;
    width: 100%;
}

.au-values__slide {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 64rem) {
    .au-values__slide {
        flex-direction: row;
    }
}

.au-values__content {
    background: var(--au-color-gray-light);
    padding: 60px 31px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

@media screen and (min-width: 48.0625rem) {
    .au-values__content {
        padding: 80px 64px;
    }
}

@media screen and (min-width: 64rem) {
    .au-values__content {
        width: 45%;
        padding: 100px 80px;
    }
}

.au-values__icon {
    width: 100px;
    height: auto;
    margin-bottom: 24px;
}

.au-values__title {
    font-family: 'Qaranta', serif;
    font-size: 2rem;
    font-weight: 350;
    line-height: 100%;
    color: var(--au-color-dark);
    margin: 0 0 1.5rem 0;
}

@media screen and (min-width: 48.0625rem) {
    .au-values__title {
        font-size: 2.75rem;
        line-height: 100%;
    }
}

.au-values__desc {
    font-family: var(--au-font-sans);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.625rem;
    color: var(--au-color-dark);
    margin: 0 0 1.5rem 0;
}

.au-values__image {
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 64rem) {
    .au-values__image {
        display: none;
    }
}

@media screen and (min-width: 64rem) {
    .au-values__image {
        width: 55%;
    }
}

.au-values__image::before {
    content: "";
    display: block;
    padding-bottom: 75%;
    width: 100%;
}

@media screen and (min-width: 64rem) {
    .au-values__image::before {
        padding-bottom: 56.25%;
    }
}

.au-values__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.au-values__placeholder {
    position: absolute;
    inset: 0;
    background: var(--au-color-card-bg);
}

.au-values__nav {
    /* position: absolute; */
    /* bottom: 30px; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* display: flex; */
    /* gap: 15px; */
    /* z-index: 10; */
    align-items: center;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

/* @media screen and (min-width: 64rem) {
    .au-values__nav {
        left: 125px;
        transform: translateX(-50%);
        bottom: 40px;
    }
} */

.au-values__arrow {
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 1px solid #005ab3;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.au-values__arrow--prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.au-values__arrow--next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.au-values__arrow:hover:not(.swiper-button-disabled) {
    background-color: #005ab3;
}

.au-values__arrow:not(.swiper-button-disabled) {
    background-color: #005ab3;
}

.au-values__arrow:hover(.swiper-button-disabled) {
    background-color: #8a96a2;
}

.au-values__arrow.swiper-button-disabled {
    background-color: #8a96a2;
}

.au-values__arrow:hover:not(.swiper-button-disabled).au-values__arrow--prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.au-values__arrow:hover:not(.swiper-button-disabled).au-values__arrow--next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.au-values__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

/* ==========================================================================
   SECTION 6: PORTFOLIO CAROUSEL WITH CTA
   Reference: .portfolio-rw-carousel
   ========================================================================== */
.au-portfolio {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 0;
}

@media screen and (max-width: 64rem) {
    .au-portfolio {
        flex-direction: column-reverse;
        padding-top: 0px;
    }
}

@media screen and (min-width: 64rem) {
    .au-portfolio {
        display: grid;
        grid-template-columns: 1fr 410px;
        grid-template-rows: auto 1fr auto;
        padding: 0px 8% 100px 0px;
    }
}

.au-portfolio__swiper-wrap {
    max-width: 100vw;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 64rem) {
    .au-portfolio__swiper-wrap {
        grid-column: 1;
        grid-row: 1 / -1;
    }
}

.au-portfolio__swiper {
    overflow: hidden;
    border-radius: 5px;
}

.au-portfolio__swiper .swiper-wrapper {
    align-items: flex-end;
}

.au-portfolio__img {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.au-portfolio__img::before {
    content: "";
    display: block;
    padding-bottom: 96.0199%;
    width: 100%;
}

.au-portfolio__img>img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 5px;
}

.au-portfolio__slide-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 50px 0 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    text-decoration: none;
    color: var(--au-color-white);
    z-index: 1;
    backdrop-filter: blur(10px) brightness(0.9);
    -webkit-backdrop-filter: blur(10px) brightness(0.9);
    background-color: rgba(29, 46, 60, 0.2);
    border-radius: 5px;
}

.au-portfolio__img:hover .au-portfolio__slide-info {
    opacity: 1;
    visibility: visible;
}

.au-portfolio__slide-title {
    font-family: var(--au-font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem;
    text-transform: uppercase;
    color: var(--au-color-white);
}

@media screen and (min-width: 48.0625rem) {
    .au-portfolio__slide-title {
        font-size: 2.5rem;
        line-height: 2.813rem;
    }
}

.au-portfolio__slide-location {
    font-family: var(--au-font-sans);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.625rem;
    color: var(--au-color-white);
    border-bottom: 4px solid #8dbbe2;
    padding-bottom: 10px;
    width: 100%;
}

.au-portfolio__learn-more {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 40px;
    left: 50px;
}

.au-portfolio__learn-more-text {
    font-family: var(--au-font-sans);
    font-size: 0.875rem;
    font-weight: 450;
    line-height: 1.188;
    text-transform: uppercase;
    color: var(--au-color-white);
}

.au-portfolio__placeholder {
    position: absolute;
    inset: 0;
    background: var(--au-color-card-bg);
}

.au-portfolio__copy-wrap {
    display: flex;
    flex-direction: column;
    padding: 16px 31px 31px;
}

@media screen and (min-width: 64rem) {
    .au-portfolio__copy-wrap {
        grid-column: 2;
        grid-row: 1;
        padding: 0 30px 30px 60px;
    }
}

.au-portfolio__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.au-portfolio__title {
    font-family: 'Qaranta', serif;
    font-size: 2rem;
    font-weight: 350;
    line-height: 100%;
    margin: 0 0 1.875rem 0;
    color: var(--au-color-dark);
}

@media screen and (min-width: 48.0625rem) {
    .au-portfolio__title {
        font-size: 2.75rem;
        line-height: 100%;
    }
}

.au-portfolio__desc {
    font-family: var(--au-font-sans);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.625rem;
    margin: 0 0 30px 0;
    color: var(--au-color-dark);
}

.au-portfolio__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px 0;
    width: 100%;
}

@media screen and (min-width: 64rem) {
    .au-portfolio__nav {
        grid-column: 2;
        grid-row: 1;
        align-self: flex-start;
        justify-content: flex-start;
        gap: 15px;
        padding: 30px 29px 0px 0px;
        width: auto;
    }
}

.au-portfolio__arrow {
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 1px solid #005ab3;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.au-portfolio__arrow--prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.au-portfolio__arrow--next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.au-portfolio__arrow:hover:not(.swiper-button-disabled) {
    background-color: #005ab3;
}

.au-portfolio__arrow:not(.swiper-button-disabled) {
    background-color: #005ab3;
}

.au-portfolio__arrow:hover(.swiper-button-disabled) {
    background-color: #8a96a2;
}

.au-portfolio__arrow.swiper-button-disabled {
    background-color: #8a96a2;
    border-color: #8a96a2;
}

.au-portfolio__arrow:hover:not(.swiper-button-disabled).au-portfolio__arrow--prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.au-portfolio__arrow:hover:not(.swiper-button-disabled).au-portfolio__arrow--next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}


.au-portfolio__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
}

/* ==========================================================================
   PORTFOLIO COMING SOON OVERLAY
   ========================================================================== */
.au-portfolio__swiper-wrap {
    position: relative;
}

.au-portfolio__swiper-wrap--coming-soon {
    position: relative;
}

.au-portfolio__coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 46, 60, 0.2);
    backdrop-filter: blur(0.625rem) brightness(0.9);
    -webkit-backdrop-filter: blur(0.625rem) brightness(0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 5px;
    pointer-events: none;
}

.au-portfolio__coming-soon-text {
    font-family: 'Qaranta', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
}

@media screen and (max-width: 48.0625rem) {
    .au-portfolio__coming-soon-text {
        font-size: 1.75rem !important;
    }
}

/* Disabled button styles */
.au-btn--disabled,
.au-btn--disabled:hover,
.au-btn--disabled:focus,
.au-btn--disabled:active {
    background-color: transparent !important;
    border-color: #8a96a2 !important;
    color: #8a96a2 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.6;
}

/* Disabled arrow styles */
.au-portfolio__arrow--disabled,
.au-portfolio__arrow--disabled:hover,
.au-portfolio__arrow--disabled:focus,
.au-portfolio__arrow--disabled:active {
    background-color: #8a96a2 !important;
    border-color: #8a96a2 !important;
    cursor: not-allowed !important;
    opacity: 0.5;
}

.au-portfolio__arrow--disabled.au-portfolio__arrow--prev,
.au-portfolio__arrow--disabled.au-portfolio__arrow--next {
    background-color: #8a96a2 !important;
}

/* ==========================================================================
   SECTION 7: CONTACT CTA
   Reference: .contact-cta
   ========================================================================== */
.au-contact-cta {
    width: 100%;
    padding: 0px 31px 80px 31px;
}

/* 
.au-contact-cta__container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

@media screen and (min-width: 64rem) {
    .au-contact-cta {
        padding: 120px 64px;
    }

    .au-contact-cta__container {
        text-align: center;
        align-items: center;
        max-width: 800px;
    }
} */



.au-contact-cta__title {
    font-family: var(--au-font-heading);
    font-size: 2rem;
    font-weight: 350;
    line-height: 2.25rem;
    color: var(--au-color-dark);
    margin: 0 0 2rem 0;
}

@media screen and (min-width: 48.0625rem) {
    .au-contact-cta__title {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

/* ==========================================================================
   RESPONSIVE: TABLET (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .au-hero__title {
        font-size: 2rem;
        line-height: 100%;
    }

    /* .au-values__nav {
    left: 0px;
    transform: none;
    width: 100%;
    justify-content: center;
} */
}

/* ==========================================================================
   RESPONSIVE: MOBILE (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
    .au-hero__title {
        font-size: 2rem;
        line-height: 100%;
    }

    .au-hero__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .au-partnerships__tab-btn {
        font-size: 1rem;
        padding: 8px 0;
    }

    /* .au-values__nav {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    } */

    .au-values__arrow {
        width: 36px;
        height: 36px;
    }

    .au-portfolio__slide-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .au-portfolio__slide-info {
        padding: 30px 25px;
    }

    .au-portfolio__learn-more {
        left: 25px;
        bottom: 25px;
    }
}