/*
Theme Name: Monson TNT
Theme URI: https://www.pixouls.com/
Author: Pixouls
Author URI: https://www.pixouls.com/
Description: Custom WordPress theme for Monson TNT
Version: 7.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: basics
Tags:
*/

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $RESET
--------------------------------------------------------|
--------------------------------------------------------|
*/
*, *::before, *::after { box-sizing: border-box; }
::selection { color: var(--c-b); background-color: var(--c-y); text-shadow: none; }
audio, canvas, iframe, img, svg, video { max-width: 100%; vertical-align: middle; }
button { background-color: transparent; border: none; margin: 0; padding: 0; text-align: inherit; font: inherit; border-radius: 0; appearance: none; cursor: pointer; }
hr { display: block; height: .2rem; border: 0; border-top: .2rem solid var(--c-10); margin: 4.0rem 0; padding: 0;}
code { line-height: 1.5; color: var(--c-75); }
[id] { scroll-margin-top: 8.0rem; }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $GLOBAL
--------------------------------------------------------|
--------------------------------------------------------|
*/
:root {
    /* Width */
    --w-xs: min(70%, 51.2rem);
    --w-sm: min(70%, 76.8rem);
    --w-md: min(80%, 89.6rem);
    --w-lg: min(90%, 102.4rem);
    --w-xl: min(100%, 140.8rem);

    /* Spacing */
    --s-xxs: .8rem;
    --s-xs: 1.6rem;
    --s-sm: 2.4rem;
    --s-md: 4.0rem;
    --s-lg: 8.0rem;
    --s-xl: 16.0rem;
    --s-xxl: 20.0rem;

    /* Grid */
    --g-xs: repeat(auto-fit, minmax(6.4rem, 1fr));
    --g-sm: repeat(auto-fit, minmax(12.8rem, 1fr));
    --g-md: repeat(auto-fit, minmax(19.2rem, 1fr));
    --g-lg: repeat(auto-fit, minmax(25.6rem, 1fr));
    --g-xl: repeat(auto-fit, minmax(32.0rem, 1fr));

    /* Color - Brand */
    --c-pri: #B43F3F;
    --c-sec: hsl(240, 100%, 40%);
    --c-ter: hsl(240, 100%, 60%);

    /* Color - Utilities */
    --c-y: yellow;
    --c-r: red;
    --c-g: green;
    --c-b: #222222;
    --c-w: #F8EDED;

    /* Color - Light/Dark */
    --c-bg: light-dark(#F8EDED, #222222);
    --c-fg: light-dark(#222222, #F8EDED);
    --c-bd: light-dark(rgba(255, 255, 255, .75), rgba(0, 0, 0, .75));
    --c-bd-50: rgba(34, 34, 34, .5);
    --c-75: light-dark(rgba(0, 0, 0, .75), rgba(255, 255, 255, .75));
    --c-50: light-dark(rgba(0, 0, 0, .50), rgba(255, 255, 255, .50));
    --c-25: light-dark(rgba(0, 0, 0, .25), rgba(255, 255, 255, .25));
    --c-10: light-dark(rgba(0, 0, 0, .10), rgba(255, 255, 255, .10));
    --c-05: light-dark(rgba(0, 0, 0, .05), rgba(255, 255, 255, .05));
}
[data-theme="light"] {
    color-scheme: light;
}
[data-theme="dark"] {
    color-scheme: dark;
}
html {
    -webkit-tap-highlight-color: transparent;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scroll-behavior: smooth;
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
}
    body {
        background: var(--c-pri);
        margin: 0;
        min-height: 100vh;
        color: var(--c-fg);
        font-size: 1.6rem;
        line-height: 1;
    }
        .app {
            position: relative;
            background: var(--c-bg);
        }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $VIEW-TRANSITIONS
--------------------------------------------------------|
--------------------------------------------------------|
*/
@view-transition {
    navigation: auto;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $TYPE
--------------------------------------------------------|
--------------------------------------------------------|
*/
.helvetica {
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 400; /* 100, 200, 300, 400, 500, 700 */
    font-style: normal; /* normal, italic */
}
.helvetica-condensed {
    font-family: "helvetica-neue-lt-pro-cond", sans-serif;
    font-weight: 700; /* 700, 900 */
    font-style: normal;
}
h1, h2, h3, h4, h5 {
    margin: 4.8rem 0 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    text-wrap: pretty;
    color: var(--c-fg);
}
h1 { 
    font-size: 6.4rem;
    text-wrap: balance;
}
h2 {
    font-size: 4.0rem;
    font-family: "helvetica-neue-lt-pro-cond", sans-serif;
    font-weight: 700; /* 700, 900 */
    font-style: normal;
}
h3 {
    font-size: 2.4rem;
}
h4 {
    font-size: 1.6rem;
}
h5 {
    font-size: 1.2rem;
}
p             { line-height: 1.5; margin: 0 0 2.4rem; text-wrap: pretty; color: var(--c-75); }
p strong      { color: var(--c-fg); }
b, strong     { font-weight: 700; }
a            { color: var(--c-pri); text-decoration: none; }
/* a:link        { color: var(--c-pri);    }
a:visited    { color: var(--c-pri);    }
a:hover        { color: var(--c-pri);    }
a:active    { color: var(--c-pri);    } */

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $ANIMATIONS
--------------------------------------------------------|
--------------------------------------------------------|
*/
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $SKIP-LINK
--------------------------------------------------------|
--------------------------------------------------------|
*/
.skip-link {
    /* Visually hidden off-screen */
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    /* Ensure it's still in the document flow for screen readers */
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}
/* Make it clearly visible when focused (e.g. with Tab) */
.skip-link:focus {
    left: auto;
    width: auto;
    height: 3.2rem;
    padding: 0 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    clip: auto;
    overflow: visible;
    /* Some visual styling for clarity */
    background: var(--c-pri);
    color: var(--c-w);
    font-size: 1.4rem;
    text-decoration: none;
    z-index: 10000; /* Ensures it's on top */
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $HEADER
--------------------------------------------------------|
--------------------------------------------------------|
*/
.hdr {
    z-index: 900;
    position: sticky;
    top: 0;
    background: var(--c-bg);
}
    .hdr__inner {
        width: var(--w-lg);
        height: 8.0rem;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 4.0rem;
    }
        .hdr__logo {
            display: flex;
            align-items: center;
            margin-right: auto;
        }
            .hdr__logo-img {
                height: 4.8rem;
                width: auto;
            }
                .hdr__logo-img-circle {
                    fill: var(--c-pri);
                }
                .hdr__logo-img-m {
                    fill: var(--c-fg);
                }
        .hdr__search {
            display: flex;
            align-items: center;
            height: 100%;
        }
            .hdr__search-icon {
                width: 2.4rem;
                height: auto;
                fill: var(--c-pri);
            }
        .hdr__theme-toggle {
            display: flex;
            align-items: center;
            height: 100%;
        }
            .hdr__theme-toggle-icon {
                width: 2.4rem;
                height: 2.4rem;
                fill: var(--c-pri);
            }
                .hdr__theme-toggle-icon-sun {
                    display: none;
                }
                [data-theme="dark"] .hdr__theme-toggle-icon-moon {
                    display: none;
                }
                [data-theme="dark"] .hdr__theme-toggle-icon-sun {
                    display: inline;
                }
        .hdr__nav-toggle {
            display: none;
            justify-content: center;
            align-items: center;
            height: 100%;
        }
            .hdr__nav-toggle-icon {
                position: relative;
                width: 3.2rem;
                height: 3.2rem;
                margin: auto;
            }
                .hdr__nav-toggle-icon-rect {
                    fill: var(--c-pri);
                    transform-origin: center;
                    transition: transform .3s ease, fill .15s linear, opacity .15s linear;
                }
                    .hdr__nav-toggle--open .hdr__nav-toggle-icon-rect--top {
                        transform: rotate(225deg) translateY(8px);
                    }
                    .hdr__nav-toggle--open .hdr__nav-toggle-icon-rect--mid {
                        opacity: 0;
                    }
                    .hdr__nav-toggle--open .hdr__nav-toggle-icon-rect--bot {
                        transform: rotate(-225deg) translateY(-8px);
                    }
@media only screen and (max-width: 768px) {
    .hdr__nav-toggle {
        display: flex;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $NAV
--------------------------------------------------------|
--------------------------------------------------------|
*/
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
    .nav__list {
        list-style: none;
        margin: auto;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 1.6rem;
    }
        .nav__item {
            position: relative;
        }
        .nav__item--active {

        }
        .nav__item--sep {
            margin-right: 4.0rem;
        }
            .nav__item::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: .4rem;
                background: var(--c-10);
                transform-origin: center right;
                transform: scale3d(0,1,1);
                transition: transform .6s cubic-bezier(.19,1,.22,1), background-color 0.3s ease;
            }
            .nav__item:hover::after {
                transform-origin: center left;
                transform: scale3d(1,1,1);
            }
            .nav__item--active::after {
                transform-origin: center left;
                transform: scale3d(1,1,1);
                background: var(--c-pri);
            }
            .nav__link,
            .nav__button {
                display: flex;
                align-items: center;
                gap: 0.8rem;
                font-size: 1.6rem;
                height: 8rem;
                padding: 0 0.4rem;
                color: var(--c-pri);
            }
            .nav__button {
                text-transform: uppercase;
                font-family: "helvetica-neue-lt-pro-cond", sans-serif;
                font-weight: 700;
                font-style: normal;
            }
                .nav__button-text {
                    color: var(--c-fg);
                }
                .nav__button-icon {
                    width: 1.2rem;
                    height: 1.2rem;
                    fill: currentColor;
                    transition: transform 0.3s ease;
                }
                .nav__button[aria-expanded="true"] .nav__button-icon {
                    transform: rotate(180deg);
                }
            .nav__sub {
                position: absolute;
                top: calc(100% + 1.6rem);
                left: 50%;
                background: var(--c-bg);
                border-radius: 0.8rem;
                box-shadow: 0 0.4rem 1.6rem rgba(0,0,0,0.1);
                transform: translate(-50%,1.6rem);
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease;
            }
            .nav__sub[hidden] {
                display: block;
            }
            .nav__button[aria-expanded="true"] + .nav__sub {
                opacity: 1;
                visibility: visible;
                transform: translate(-50%,0);
                transition-delay: 0s;
            }
                .nav__sub::before {
                    content: '';
                    position: absolute;
                    top: -0.8rem;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 0;
                    height: 0;
                    border-left: 0.8rem solid transparent;
                    border-right: 0.8rem solid transparent;
                    border-bottom: 0.8rem solid var(--c-bg);
                }
                .nav__sub::after {
                    content: '';
                    position: absolute;
                    top: -1.6rem;
                    left: 0;
                    width: 100%;
                    height: 1.6rem;
                }
                .nav__sub-inner {
                    min-width: 20.8rem;
                    padding: 1.6rem;
                }
                .nav__sub-inner--grid {
                    min-width: 48rem;
                    display: grid;
                    grid-template-columns: 2fr 1fr;
                    gap: 2.4rem;
                }
                    /* Sub List */  
                    .nav__sub-list {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                    }
                        /* .nav__sub-item:not(:last-child) {
                            border-bottom: 0.2rem dotted var(--c-10);
                        } */
                            .nav__sub-link {
                                display: block;
                                padding: 1.6rem;
                                font-size: 1.4rem;
                                line-height: 1.5;
                                transition: background-color 0.15s linear;
                            }
                            .nav__sub-link:hover,
                            .nav__sub-link:focus {
                                background: var(--c-05);
                                border-radius: 0.4rem;
                            }
                    /* Sub Group */     
                    .nav__sub-group {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                    }
                        /* .nav__sub-group-item:not(:last-child) {
                            border-bottom: 0.2rem dotted var(--c-10);
                        } */
                            .nav__sub-group-link {
                                padding: 1.6rem;
                                display: block;
                                transition: background-color 0.15s linear;
                            }
                            .nav__sub-group-link:hover,
                            .nav__sub-group-link:focus {
                                background: var(--c-05);
                                border-radius: 0.4rem;
                            }
                                .nav__sub-group-heading {
                                    display: block;
                                    font-size: 1.4rem;
                                    font-weight: 700;
                                    color: var(--c-pri);
                                    margin-bottom: 0.8rem;
                                }
                                .nav__sub-group-text {
                                    font-size: 1.2rem;
                                    line-height: 1.5;
                                    color: var(--c-75);
                                    margin: 0;
                                }
                    /* Sub Social */
                    .nav__sub-social {
                        list-style: none;
                        margin: 0;
                        padding: 1.6rem;
                    }
                        .nav__sub-social-item:not(:last-child) {
                            margin-bottom: .8rem;
                        }
                            .nav__sub-social-link {
                                display: flex;
                                align-items: center;
                                gap: 0.8rem;
                                padding: 0.8rem;
                                border-radius: 0.4rem;
                                transition: background-color 0.15s linear;
                            }
                            .nav__sub-social-link:hover {
                                background: var(--c-05);
                            }
                                .nav__sub-social-icon {
                                    width: 1.6rem;
                                    height: 1.6rem;
                                    fill: var(--c-pri);
                                }
                                .nav__sub-social-text {
                                    font-size: 1.2rem;
                                }
@media only screen and (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--c-bd);
        backdrop-filter: saturate(180%) blur(1.6rem);
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.86,0,0.07,1);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .nav--open {
        transform: translateX(0);
    }
        .nav__list {
            flex-direction: column;
            width: 100%;
            padding: 8rem 4.0rem;
            gap: 0;
        }
        .nav__item {
            width: 100%;
            border-bottom: 0.2rem solid var(--c-10);
        }
        .nav__item::after {
            display: none;
        }
            .nav__link,
            .nav__button {
                width: 100%;
                justify-content: space-between;
                font-size: 2.4rem;
                text-transform: none;
            }
                .nav__button-icon {
                    width: 2.4rem;
                    height: 2.4rem;
                }
            .nav__sub {
                position: static;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                margin-top: 0;
                background: transparent;
            }
            .nav__sub[hidden] {
                display: none;
            }
            .nav__button[aria-expanded="true"] + .nav__sub {
                transform: translate(0,0);
            }
                .nav__sub::before,
                .nav__sub::after {
                    display: none;
                }
                .nav__sub-inner {
                    width: 100%;
                    padding: 0 0 2.4rem;
                }
                .nav__sub-inner--grid {
                    grid-template-columns: 1fr;
                }
                    /* Sub List */  
                    .nav__sub-list {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                    }
                        .nav__sub-link {
                            font-size: 1.6rem;
                            padding: 2.4rem;
                        }
                    /* Sub Group */
                    .nav__sub-group {
                        padding: 0;
                    }
                        .nav__sub-group-heading {
                            font-size: 1.8rem;
                        }
                        .nav__sub-group-text {
                            font-size: 1.4rem;
                        }
                    /* Sub Social */
                    .nav__sub-social {
                        padding: 0;
                    }
                        .nav__sub-social-link {
                            padding: 1.2rem;
                        }
                            .nav__sub-social-icon {
                                width: 2.4rem;
                                height: 2.4rem;
                            }
                            .nav__sub-social-text {
                                font-size: 1.6rem;
                            }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $MAIN
--------------------------------------------------------|
--------------------------------------------------------|
*/
.main {
    position: relative;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $HERO
--------------------------------------------------------|
--------------------------------------------------------|
*/
.hero {
    position: relative;
    background: var(--c-05);
    display: grid;
    width: var(--w-xl);
    margin: 0 auto;
    --ar: 21/9;
    aspect-ratio: var(--ar);
}
.hero--home {
    --ar: 16/9;
}
    .hero__img-wrap {
        position: relative;
        grid-area: 1/1;
        contain: paint;
        overflow: clip;
    }
        .hero__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: var(--ar);
        }
        .hero__img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .1) 80%, rgba(0, 0, 0, .5) 100%);
        }
    .hero__vid-wrap {
        position: relative;
        grid-area: 1/1;
        contain: paint;
        overflow: clip;
    }
        .hero__vid,
        .hero__vid-fallback {
            object-fit: cover;
            height: 100%;
            width: 100%;
            aspect-ratio: var(--ar);
        }
        [data-theme="dark"] .hero__vid,
        [data-theme="dark"] .hero__vid-fallback {
            filter: invert(1) hue-rotate(180deg);
        }
        .hero__vid-wrap::after {
            display: none;
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .1) 80%, rgba(0, 0, 0, .5) 100%);
        }
        @supports (animation-timeline: scroll()) {
            .hero__vid,
            .hero__vid-fallback,
            .hero__img {
                animation: p-1 linear forwards;
                animation-timeline: scroll();
                animation-range: 0 100svh;
            }
            @keyframes p-1 {
                to { transform: translate3d(0,50svh,0); }
            }
        }
    .hero__content {
        position: relative;
        grid-area: 1/1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        margin: 0 auto;
        padding: 16.0rem 0 8.0rem;
        width: var(--w-md);
    }
    .hero:has(.hero__img-wrap) .hero__content {
        color: var(--c-w);
    }
        .hero__title {
            margin: 0;
        }
        .hero__details {
            margin-top: 2.4rem;
        }
@media only screen and (max-width: 768px) {
    .hero,
    .hero--home {
        --ar: 3/4;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $FLX
--------------------------------------------------------|
--------------------------------------------------------|
*/
.flx {
    position: relative;
    background: center / cover no-repeat scroll transparent;
}
    .flx__inner {
        display: flex;
        margin-inline: auto;
    }
        .flx__col {
            position: relative;
            flex: 1;
            min-width: 0;
            width: 100%;
        }
        .flx__col--group {
            display: flex;
            flex-direction: column;
        }
            .flx__col > *:first-child {
                margin-top: 0;
            }
            .flx__col > *:last-child {
                margin-bottom: 0;
            }
            /* Overrides */
            .flx .gal-swiper,
            .flx .team {
                margin: 0 !important;
            }
            .flx .gform_footer {
                display: flex;
                justify-content: center;
            }
        /* $FLX-EDITORIAL */
        .flx__col--editorial {

        }
            .flx__col--editorial a {
                color: var(--c-fg);
                text-decoration: underline;
                -webkit-text-decoration-color: var(--c-pri);
                text-decoration-color: var(--c-pri);
                text-decoration-thickness: .16em;
                text-underline-offset: .16em;
            }
            .flx__col--editorial ul {
                line-height: 1.5;
                padding: 0;
                margin: 0 0 2.4rem;
                list-style: none;
                color: var(--c-75);
            }
                .flx__col--editorial ul li {
                    border-left: .2rem solid var(--c-25);
                    margin: 0;
                    padding: .8rem 1.6rem .8rem 2.4rem;
                    position: relative;
                }
                    .flx__col--editorial ul li:before {
                        content: '';
                        position: absolute;
                        top: 2.0rem;
                        left: 0;
                        height: .2rem;
                        width: 1.6rem;
                        background: var(--c-25);
                    }
                    .flx__col--editorial ul li strong {
                        color: var(--c-fg);
                    }

/*
--------------------------------------------------------| $UTILITIES
*/
/* Width */
.flx-w-xs { width: var(--w-xs); }
.flx-w-sm { width: var(--w-sm); }
.flx-w-md { width: var(--w-md); }
.flx-w-lg { width: var(--w-lg); }
.flx-w-xl { width: var(--w-xl); }

/* Margin Top */
.flx-mt-0  { margin-top: 0; }
.flx-mt-md { margin-top: var(--s-md); }
.flx-mt-lg { margin-top: var(--s-lg); }
.flx-mt-xl { margin-top: var(--s-xl); }
.flx-mt-xxl { margin-top: var(--s-xxl); }

/* Margin Bottom */
.flx-mb-0  { margin-bottom: 0; }
.flx-mb-md { margin-bottom: var(--s-md); }
.flx-mb-lg { margin-bottom: var(--s-lg); }
.flx-mb-xl { margin-bottom: var(--s-xl); }
.flx-mb-xxl { margin-bottom: var(--s-xxl); }

/* Padding Top */
.flx-pt-0   { padding-top: 0; }
.flx-pt-md  { padding-top: var(--s-md); }
.flx-pt-lg  { padding-top: var(--s-lg); }
.flx-pt-xl  { padding-top: var(--s-xl); }
.flx-pt-xxl { padding-top: var(--s-xxl); }

/* Padding Bottom */
.flx-pb-0   { padding-bottom: 0; }
.flx-pb-md  { padding-bottom: var(--s-md); }
.flx-pb-lg  { padding-bottom: var(--s-lg); }
.flx-pb-xl  { padding-bottom: var(--s-xl); }
.flx-pb-xxl { padding-bottom: var(--s-xxl); }

/* Flexbox Layout */
.flx-d-row       { flex-direction: row; }
.flx-d-col       { flex-direction: column; }
.flx-a-start     { align-items: flex-start; }
.flx-a-center    { align-items: center; }
.flx-a-end       { align-items: flex-end; }
.flx-j-start     { justify-content: flex-start; }
.flx-j-center    { justify-content: center; }
.flx-j-end       { justify-content: flex-end; }
.flx-g-sm        { gap: var(--s-sm); }
.flx-g-md        { gap: var(--s-md); }
.flx-g-lg        { gap: var(--s-lg); }

/* Column Sizing */
.flx-1 { flex: 1; }
.flx-2 { flex: 2; }
.flx-3 { flex: 3; }
.flx-4 { flex: 4; }

/* Background Color */
.flx-bg-pri { background-color: var(--c-pri); }
.flx-bg-sec { background-color: var(--c-sec); }
.flx-bg-ter { background-color: var(--c-ter); }
.flx-bg-10  { background-color: var(--c-10); }
.flx-bg-05  { background-color: var(--c-05); }

/* Color Scheme Mode */
.flx-mode-d  { color-scheme: dark; }
.flx-mode-l { color-scheme: light; }

/*
--------------------------------------------------------| $FLX-BTNS
*/
.flx-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
    .flx-btns__btn {
        align-items: center;
        gap: var(--s-xxs);
        white-space: nowrap;
    }
        .flx-btns__btn-text {
            
        }
        .flx-btns__btn svg {

        }
        .flx-btns__btn svg:first-child {
            height: 2.4rem;
            width: auto;
        }
        .flx-btns__btn svg:last-child {
            
        }
/*
--------------------------------------------------------| $FLX-GRID
*/
.flx-grid {
    display: grid;
}
    .flx-grid-cols-lg { grid-template-columns: var(--g-lg); }
    .flx-grid-cols-md { grid-template-columns: var(--g-md); }
    .flx-grid-cols-sm { grid-template-columns: var(--g-sm); }

    .flx-grid__item {
        display: flex;
        flex-direction: column;
        gap: var(--s-xs);
    }
    .flx-grid--center .flx-grid__item {
        align-items: center;
        text-align: center;
    }
    .flx-grid--end .flx-grid__item {
        align-items: flex-end;
        text-align: right;
    }
    .flx-grid--start .flx-grid__item {
        align-items: flex-start;
        text-align: left;
    }
        .flx-grid__item > * {
            margin: 0;
        }
        .flx-grid__item svg {
            height: 4.0rem;
            width: auto;
            color: var(--c-pri);
        }
        .flx-grid__item img {
            width: 100%;
            height: auto;
        }
/*
--------------------------------------------------------| $FLX-ACCORDION
*/
.flx-acc {
    display: grid;
    border-top: .2rem solid var(--c-10);
}
    .flx-acc__item {
        border-bottom: .2rem solid var(--c-10);
    }
        .flx-acc__title {
            position: relative;
            padding: 3.2rem 4.8rem 3.2rem 0;
            font-size: 2.4rem;
            line-height: 1.25;
            font-weight: 400;
            color: var(--c-fg);
            cursor: pointer;
            list-style: none;
        }
            .flx-acc__title::after {
                content: "+";
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                font-size: 2.4rem;
                color: var(--c-55);
                transition: transform 0.3s ease, color 0.3s ease;
            }
            .flx-acc__title:hover::after,
            .flx-acc__item[open] .flx-acc__title::after {
                color: var(--c-pri);
            }
            .flx-acc__item[open] .flx-acc__title::after {
                transform: translateY(-50%) rotate(45deg);
            }
            .flx-acc__item--action .flx-acc__title::after {
                display: none;
            }
        .flx-acc__content {
            padding: 0 4.8rem 3.2rem 0;
            font-size: 1.6rem;
            line-height: 1.5;
        }
            .flx-acc__content p:last-child {
                margin-bottom: 0;
            }
/*
--------------------------------------------------------| $FLX-CINEMAGRAPH
*/
.flx-cinemagraph {
    aspect-ratio: var(--ar);
    position: relative;
}

/*
--------------------------------------------------------| $FLX-DETAILS
*/
.flx-details {
    width: 100%;
}
    .flx-details__summary {
        background: var(--c-05);
        padding: 2.4rem;
        border-radius: 1.6rem;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
        .flx-details__summary::after {
            content: '+';
            font-size: 4.0rem;
            color: var(--c-55);
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .flx-details__summary:hover::after {
            color: var(--c-pri);
        }
        .flx-details[open] .flx-details__summary::after {
            transform: rotate(45deg);
            color: var(--c-pri);
        }
        /* .details__summary h2 {
            color: var(--c-pri);
        } */
    .flx-details__content {
        padding: 4.0rem;
    }
/*
--------------------------------------------------------| $FLX-CUSTOM
*/
body:not(.home) .flx--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c-bd-50);
}
body:not(.home) .flx--hero > div {
    position: relative;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $AUDIO-PLAYER
--------------------------------------------------------|
--------------------------------------------------------|
*/
.audio-player {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 0.8rem 1.6rem;
    border: 0.2rem solid var(--c-pri);
    border-radius: 4.0rem;
    font-family: sans-serif;
    cursor: pointer;
}
.audio-player__controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    pointer-events: none;
}
.audio-player__button {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-pri);
}
.audio-player__button:hover {
    color: #0073aa;
}
.audio-player__icon svg {
    display: block;
    width: auto;
    height: 2.4rem;
    fill: currentColor;
}
.audio-player__animation {
    display: flex;
    align-items: flex-end;
    height: 2.4rem;
    gap: 0.2rem;
}
.audio-player__animation span {
    display: inline-block;
    width: 0.4rem;
    background-color: var(--c-pri);
    animation: audioPlayerSoundwave 1.2s infinite ease-in-out alternate;
}
.audio-player__animation span:nth-child(1) { height: 0.6rem; animation-delay: 0s; }
.audio-player__animation span:nth-child(2) { height: 1.6rem; animation-delay: 0.2s; }
.audio-player__animation span:nth-child(3) { height: 0.8rem; animation-delay: 0.4s; }
.audio-player__animation span:nth-child(4) { height: 1.6rem; animation-delay: 0.6s; }

@keyframes audioPlayerSoundwave {
    0% { height: 0.4rem; opacity: 0.7; }
    50% { opacity: 1; }
    100% { height: 2.4rem; opacity: 0.7; }
}
.audio-player__title {
    font-size: 0.9em;
    font-weight: bold;
    color: #333;
    pointer-events: none;
}
.audio-player__element {
    display: none !important;
}




/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $TITLE
--------------------------------------------------------|
--------------------------------------------------------|
*/
.title {
    text-align: center;
    background: var(--c-05);
}
    .title__heading {
        width: var(--w-md);
        margin: 0 auto;
        padding: 12.0rem 0;
    }
        .title__permalink {

        }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $CONTENT
--------------------------------------------------------|
--------------------------------------------------------|
*/
.content {
    margin-block: 8.0rem;
    margin-inline: auto;
}
.content--utility {
    width: var(--w-xs);
}
    .content > * {
        margin-inline: auto;
    }
    /* Default Content Width */
    .content > h1,
    .content > h2,
    .content > h3,
    .content > h4,
    .content > h5,
    .content > h6,
    .content > p,
    .content > ul,
    .content > ol {
        width: var(--w-md);
    }
    .content > .wp-block-group,
    .content > .wp-block-columns {
        width: var(--w-md);
    }
    /* Width Utilities */
    .content > .w-xs {
        width: var(--w-xs);
    }
    .content > .w-sm {
        width: var(--w-sm);
    }
    .content > .w-md {
        width: var(--w-md);
    }
    .content > .w-lg {
        width: var(--w-lg);
    }
    .content > .w-xl {
        width: var(--w-xl);
    }
    /* Block Spacing */
    .content > * + * {
        /* margin-block-start: 2.4rem; */
    }
    /* Larger spacing for major section breaks */
    .content > .wp-block-group,
    .content > .wp-block-columns,
    .content > hr,
    .content > .wp-block-separator {
        margin-block: 8.0rem;
    }
    /* First and Last Child Margin */
    .wp-block-group > *:first-child,
    .wp-block-column > *:first-child {
        margin-top: 0;
    }
    .wp-block-group > *:last-child,
    .wp-block-column > *:last-child {
        margin-bottom: 0;
    }
    /* Overrides for shortcodes/custom blocks when nested as non-direct children */
    .content .gal-swiper:not(.content > .gal-swiper),
    .content .gal-grid:not(.content > .gal-grid),
    .content .cta:not(.content > .cta),
    .content .team:not(.content > .team),
    .content .testimonials:not(.content > .testimonials) {
        width: 100% !important;
        margin-block: 0;
    }
    /* List Styles */
    ul.wp-block-list {
        line-height: 1.5;
        padding: 0;
        margin: 0 0 2.4rem;
        list-style: none;
    }
        ul.wp-block-list li {
            border-left: .2rem solid var(--c-25);
            margin: 0;
            padding: .8rem 1.6rem .8rem 2.4rem;
            position: relative;
        }
            ul.wp-block-list li:before {
                content: '';
                position: absolute;
                top: 2.0rem;
                left: 0;
                height: .2rem;
                width: 1.6rem;
                background: var(--c-25);
            }
    /* Separator Styles */
    .wp-block-separator,
    hr {
        border-top: .2rem solid var(--c-pri);
        width: var(--w-lg);
    }
    /* Post Meta */
    .post-meta {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8.0rem;
        width: var(--w-md);
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $ARCHIVE
--------------------------------------------------------|
--------------------------------------------------------|
*/
.arc {
    padding: 0 0 4.0rem;
    background: var(--c-05);
    width: var(--w-xl);
    margin-inline: auto;
}
    .arc__arrows {
        margin: 8.0rem auto;
        width: var(--w-sm);
        display: flex;
        justify-content: space-between;
    }
    .arc__item {
        display: flex;
        flex-wrap: wrap;
        gap: 8.0rem;
        padding: 4.0rem 0;
        margin: 0 auto;
        width: var(--w-md);
        border-bottom: .2rem solid var(--c-10);
    }
    .arc__item:first-child {
        border-top: .2rem solid var(--c-10);
    }
        .arc__item-date {
            font-weight: 700;
            margin-top: .8rem;
        }
        .arc__item-link {
            flex: 1;
            display: flex;
            justify-content: space-between;
            gap: 8.0rem;
        }
            .arc__item-title {
                margin-top: 0;
                color: var(--c-pri);
            }
            .arc__item-arrow {
                flex-shrink: 0;
                width: 4.0rem;
                height: 4.0rem;
                border-radius: 50%;
                border: .2rem solid var(--c-pri);
                margin-left: auto;
                display: flex;
                justify-content: center;
                align-items: center;
                transition: background-color .15s linear;
            }
            .arc__item-link:hover .arc__item-arrow,
            .arc__item-link:focus-within .arc__item-arrow {
                background-color: var(--c-pri);
            }
                .arc__item-arrow-icon {
                    fill: var(--c-pri);
                    width: 2.4rem;
                    height: auto;
                    transition: fill .15s linear;
                }
                .arc__item-link:hover .arc__item-arrow-icon,
                .arc__item-link:focus-within .arc__item-arrow-icon {
                    fill: var(--c-w);
                }
@media only screen and (max-width: 768px) {
    .arc__item {
        gap: 2.4rem;
    }
        .arc__item-date {
            width: 100%;
        }
        .arc__item-link {
            gap: 2.4rem;
        }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $ARROWS
--------------------------------------------------------|
--------------------------------------------------------|
*/
.arr {
    margin: 8.0rem auto;
    width: var(--w-md);
    display: flex;
    justify-content: space-between;
}
.arr--index {
    gap: 4.0rem;
}
    .arr__item {
        display: flex;
        gap: .8rem;
        align-items: center;
    }
    .arr__item--index-next {
        margin-left: auto;
    }
        .arr__arrow {
            flex-shrink: 0;
            width: 4.0rem;
            height: 4.0rem;
            border-radius: 50%;
            border: .2rem solid var(--c-pri);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color .15s linear;
        }
        .arr__item:hover .arr__arrow,
        .arr__item:focus-within .arr__arrow {
            background-color: var(--c-pri);
        }
            .arr__arrow-icon {
                fill: var(--c-pri);
                width: 2.4rem;
                height: auto;
                transition: fill .15s linear;
            }
            .arr__item:hover .arr__arrow-icon,
            .arr__item:focus-within .arr__arrow-icon {
                fill: var(--c-w);
            }
        .arr__text {

        }
@media only screen and (max-width: 768px) {
    .arr__text {
        display: none;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $BAR
--------------------------------------------------------|
--------------------------------------------------------|
*/
.notif {
    width: 100%;
    padding: 0 2.4rem;
    background-color: var(--c-pri);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    font-size: 1.2rem;
    line-height: 3.2rem;
    color: var(--c-w);
    transition: background-color .15s linear;
}
.notif:hover {
    /* background-color: var(--c-sec); */
}
    .notif__text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .notif__button {
        font-weight: 700;
        padding: 0 1.6rem;
        white-space: nowrap;
        background-color: var(--c-10);
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $VIM
--------------------------------------------------------|
--------------------------------------------------------|
*/
.vim {
    position: relative;
    color-scheme: dark;
    --ar: 16/9;
}
    .vim__iframe {
        aspect-ratio: var(--ar);
        background: transparent;
        border: 0;
    }
.vim--bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
    .vim--bg .vim__iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-height: 100%;
        min-width: 100%;
        max-width: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .vim--bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--c-bd-50);
    }
.vim--content {
    
}
    .vim--content .vim__iframe {
        width: 100%;
    }
    @media (prefers-reduced-motion: reduce) {
        .vim--bg .vim__iframe {
            display: none;
        }
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $VIM-TRIGGER
--------------------------------------------------------|
--------------------------------------------------------|
*/
.vim-trigger {
    color-scheme: dark;
    color: var(--c-fg);
    pointer-events: none;
    position: absolute;
    inset: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: opacity .3s ease, visibility .3s ease;
    -o-transition: opacity .3s ease, visibility .3s ease;
    transition: opacity .3s ease, visibility .3s ease;
}
    .vim-trigger .vim--bg {
        pointer-events: none;
    }
    .vim-trigger__play-icon {
        position: relative;
        width: 10.4rem;
        height: 10.4rem;
    }
    .vim-trigger__loading-icon {
        display: none;
        width: 104px;
        height: 104px;
        -webkit-animation: spin 1s linear infinite;
                animation: spin 1s linear infinite;
    }
    @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
    @keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $CTA
--------------------------------------------------------|
--------------------------------------------------------|
*/
.ctas {
    margin-inline: auto;
    margin-block: 8.0rem;
    --ar: 16/9;
    color-scheme: dark;
    color: var(--c-fg);
}
.ctas--grid {
    display: grid;
    grid-template-columns: var(--g-md);
}
.ctas--swiper {

}
.cta {
    display: grid;
}
    .cta__img {
        aspect-ratio: var(--ar);
        grid-area: 1/1;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .cta__content {
        position: relative;
        grid-area: 1/1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 4.0rem;
        background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .1) 80%, rgba(0, 0, 0, .0) 100%);
    }
        .cta__content::before,
        .cta__content::after {
            content: '';
            height: .2rem;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            transition: transform .6s cubic-bezier(.19,1,.22,1);
            transform-origin: left;
        }
        .cta__content::before {
            background: var(--c-10);
        }
        .cta__content::after {
            background: var(--c-pri);
            transform: scaleX(0);
        }
        .cta:hover .cta__content::after {
            transform: scaleX(1);
        }
        .cta__title {
            margin: 0 0 .8rem;
        }
        .cta__link {
            margin: 0;
        }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $TEAM
--------------------------------------------------------|
--------------------------------------------------------|
*/
.team {
    margin-inline: auto;
    margin-block: 8.0rem;
}
.team--grid {
    display: grid;
    grid-template-columns: var(--g-md);
    gap: var(--s-md);
}
.team--pop {

}
.team--swiper {

}
    .team-member {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 4.0rem;
        gap: 1.6rem;
        background: var(--c-05);
        border-radius: .8rem;
    }
    .team--pop .team-member {
        cursor: pointer;
    }
        .team-member__photo {
            width: 100%;
            height: auto;
            border-radius: 50%;
            box-shadow: 0 0 0 .2rem var(--c-bg), 0 0 0 .4rem var(--c-pri);
        }
            .team-member__photo-img {
                aspect-ratio: 1/1;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 50%;
            }
        .team-member__content {
            display: flex;
            flex-direction: column;
            gap: .4rem;
        }
            .team-member__name {
                margin: 0;
            }
            .team-member__title {
                margin: 0;
                font-size: 1.2rem;
                color: var(--c-50);
            }
            .team-member__bio {
                margin: 0;
            }
                .team-member__bio p:last-child {
                    margin-bottom: 0;
                }
    /* Team-Swiper overrides */
    .team-swiper {
        background: var(--c-05);
        border-radius: .8rem;
    }
    .team-swiper .team-member {
        display: flex;
        flex-direction: row;
        text-align: left;
        padding: 8rem;
        gap: 4rem;
        background: transparent;
        border-radius: 0;
    }
        .team-swiper .team-member__photo {
            flex: 1;
            align-self: flex-start;
        }
        .team-swiper .team-member__content {
            flex: 2;
            gap: 0;
        }
            .team-swiper .team-member__title {
                font-size: 1.6rem;
                margin: .8rem 0 2.4rem;
            }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $TESTIMONIALS
--------------------------------------------------------|
--------------------------------------------------------|
*/
.testimonials {
    margin-inline: auto;
    margin-block: 8.0rem;
}
.testimonials--grid {
    display: grid;
    grid-template-columns: var(--g-lg);
    gap: var(--s-md);
}
.testimonials--swiper {

}
    .testimonial {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 4.0rem;
        gap: 2.4rem;
        background: var(--c-05);
        border-radius: .8rem;
    }
        .testimonial__photo {
            display: none;
            width: 12.0rem;
            height: 12.0rem;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 0 0 .2rem var(--c-bg), 0 0 0 .4rem var(--c-pri);
        }
            .testimonial__photo-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 50%;
            }
        .testimonial__stars {
            display: flex;
            gap: .4rem;
        }
            .testimonial__star {
                width: 1.6rem;
                height: 1.6rem;
                fill: var(--c-pri);
            }
        .testimonial__quote {
            line-height: 1.5;
            margin: 0;
            font-style: italic;
            color: var(--c-75);
        }
        .testimonial__content {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: .4rem;
        }
            .testimonial__name {
                font-size: 1.6rem;
                margin: 0;
            }
            .testimonial__title {
                margin: 0;
                font-size: 1.2rem;
                color: var(--c-75);
            }
    /* Testimonials-Swiper overrides */
    .testimonials-swiper {
        background: var(--c-05);
        border-radius: .8rem;
    }
    .testimonials-swiper .testimonial {
        padding: 4.0rem 8.0rem 8.0rem;
        background: transparent;
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $GAL
--------------------------------------------------------|
--------------------------------------------------------|
*/
.gal-grid {
    display: grid;
    grid-template-columns: var(--g-sm);
    gap: var(--s-xs);
    margin-inline: auto;
    margin-block: 8.0rem;
    --ar: 16/9;
}
    .gal-grid a {

    }
        .gal-grid img {
            aspect-ratio: var(--ar);
            object-fit: cover;
            width: 100%;
            height: 100%;
            border-radius: .8rem;
        }
.gal-swiper {
    --ar: 16/9;
    aspect-ratio: var(--ar);
    margin-inline: auto;
    margin-block: 8.0rem;
    color-scheme: dark;
}
    .gal-swiper .swiper-slide {
        
    }
        .gal-swiper .swiper-slide img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            border-radius: .8rem;
        }
        .gal-swiper__caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2.4rem;
            font-size: 1.2rem;
            margin: 0;
        }
.gal-swiper--basic {
    
}
.gal-swiper--auto {

}
    .gal-swiper--auto .swiper-slide {
        width: auto;
    }
        .gal-swiper--auto .swiper-slide img {
            height: 100%;
            width: auto;
        }
.gal-swiper--thumbs {
    margin-block: 8.0rem 0;
}
.gal-swiper--thumbs-nav {
    aspect-ratio: auto;
    margin-block: 0 8.0rem;
} 
    .gal-swiper--thumbs-nav .swiper-slide {
        padding: .4rem .4rem 0 0;
        cursor: pointer;
        opacity: .25;
        transition: opacity .15s linear;
    }
    .gal-swiper--thumbs-nav .swiper-slide:last-child {
        padding-right: 0;
    }
    .gal-swiper--thumbs-nav .swiper-slide-thumb-active {
        opacity: 1;
    }
        .gal-swiper--thumbs-nav .swiper-slide img {
            aspect-ratio: var(--ar);
        }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $SWIPER-ARR
--------------------------------------------------------|
--------------------------------------------------------|
*/
.swiper-arr {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2.4rem;
    flex-shrink: 0;
    width: 4.0rem;
    height: 4.0rem;
    border-radius: 50%;
    border: .2rem solid var(--c-pri);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color .15s linear;
}
.swiper-arr--next {
    left: auto;
    right: 2.4rem;
}
.swiper-arr.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}
.swiper-arr:hover {
    background-color: var(--c-pri);
}
    .swiper-arr__arrow-icon {
        fill: var(--c-pri);
        width: 2.4rem;
        height: auto;
        transition: fill .15s linear;
    }
    .swiper-arr:hover .swiper-arr__arrow-icon {
        fill: var(--c-w);
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $SWIPER-PAGINATION
--------------------------------------------------------|
--------------------------------------------------------|
*/
.swiper-pagination {
    bottom: 2.4rem !important;
}
    .swiper-pagination-bullet {
        margin: 0 .4rem !important;
        width: .8rem !important;
        height: .8rem !important;
        background: var(--c-25) !important;
        opacity: 1 !important;
    }
    .swiper-pagination-bullet-active {
        background: var(--c-pri) !important;
        opacity: 1 !important;
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $FOOTER
--------------------------------------------------------|
--------------------------------------------------------|
*/
.ftr {
    background: var(--c-05);
    padding-block: 8.0rem;
    width: var(--w-xl);
    margin-inline: auto;
}
    .ftr a {
        text-decoration: underline;
        text-decoration-style: dotted;
        text-underline-offset: .5em;
        text-decoration-color: var(--c-10);
        text-decoration-thickness: .2rem;
        transition: text-decoration-color .15s linear;
    }
    .ftr a:hover {
        text-decoration-color: var(--c-25);
    }
    .ftr__inner {
        width: var(--w-lg);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 4.0rem;
    }
        .ftr__rolo {
            display: flex;
            flex-wrap: wrap;
            gap: 4.0rem;
        }
            .ftr__rolo-item {
                display: flex;
                flex-direction: column;
                gap: .8rem;
            }
                .ftr__rolo-title {
                    font-weight: 700;
                }
                .ftr__rolo-link {

                }
        .ftr__colophon {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
            .ftr__colophon-cr {
                display: flex;
                gap: 1.6rem;
            }
            .ftr__colophon-by {
                display: flex;
                align-items: center;
                gap: .8rem;
            }
                .pix {
                    height: 1.6rem;
                    width: auto;
                    fill: var(--c-pri);
                }
                    .pix__01,
                    .pix__02,
                    .pix__03,
                    .pix__04 {
                        visibility: hidden;
                        animation-delay: 2s;
                        animation-duration: 4s;
                        animation-iteration-count: infinite;
                        animation-direction: alternate;
                        animation-timing-function: step-end;
                    }
                    .pix__01 { visibility: visible; animation-name: slide1; }
                    .pix__02 { animation-name: slide2; }
                    .pix__03 { animation-name: slide3; }
                    .pix__04 { animation-name: slide4; }
                    @keyframes slide1 { 0%, 45% { visibility: visible; } 45%, 100% { visibility: hidden; } }
                    @keyframes slide2 { 0%, 45% { visibility: hidden; } 45%, 50% { visibility: visible; } 50%, 100% { visibility: hidden; } }
                    @keyframes slide3 { 0%, 50% { visibility: hidden; } 50%, 55% { visibility: visible; } 55%, 100% { visibility: hidden; } }
                    @keyframes slide4 { 0%, 55% { visibility: hidden; } 55%, 100% { visibility: visible; } }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $SEARCH
--------------------------------------------------------|
--------------------------------------------------------|
*/
.s-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
}
    .s-form__input {
        width: 100%;
    }
    .s-form__button {

    }
.s-results {
    margin-block: 8.0rem;
}
    .s-results__count {
        margin-bottom: 4.0rem;
    }
    .s-results__item {
        margin: 0;
        margin-bottom: 2.4rem;
        border-radius: .8rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .s-results__item:hover {
        transform: translateY(-.4rem);
        box-shadow: 0 .4rem 1.6rem var(--c-10);
    }
        .s-results__item-link {
            display: block;
            padding: 1.6rem;
            color: inherit;
            text-decoration: none;
            border: .2rem solid var(--c-10);
            border-radius: .8rem;
            color: var(--c-fg);
            line-height: 1.5;
        }
            .s-results__title {
                color: var(--c-pri);
                margin: 0 0 .8rem;
            }
            .s-results__url {
                margin-bottom: .8rem;
                font-size: 1.2rem;
            }
            .s-results__description {
                margin-bottom: .8rem;
            }
            .s-results__meta {
                font-size: 1.2rem;
            }
            .search-highlight {
                background-color: var(--c-y);
                color: var(--c-b);
            }
    .s-results__pagination {
    }
        .s-results__pagination .nav-links {
            display: flex;
            justify-content: center;
            gap: .8rem;
        }
            .s-results__pagination .page-numbers {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 2.4rem;
                height: 2.4rem;
                border-radius: .4rem;
                background-color: var(--c-05);
            }
            .s-results__pagination .prev,
            .s-results__pagination .next {
                display: none;
            }
.s-results-none {
    text-align: center;
    margin-block: 8.0rem;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $POP
--------------------------------------------------------|
--------------------------------------------------------|
*/
.pop {
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 4.0rem 0;
    background-color: var(--c-bd);
    -webkit-backdrop-filter: saturate(180%) blur(1.6rem);
    backdrop-filter: saturate(180%) blur(1.6rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    transition: opacity 0.3s ease, left 0s ease 0.3s;
}
.pop--active {
    left: 0;
    opacity: 1;
    transition: opacity 0.3s ease, left 0s ease 0s;
}
    .pop__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }
    .pop__item {
        position: relative;
        margin: auto;
        background: var(--c-bg);
        border-radius: 0.8rem;
        width: var(--w-xs);
        transform: scale3d(0.9, 0.9, 1);
        transition: transform 0.3s ease;
    }
    .pop--active .pop__item {
        transform: scale3d(1, 1, 1);
    }
        .pop__close {
            z-index: 1;
            position: absolute;
            top: 0;
            right: 0;
            width: 7.2rem;
            height: 7.2rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
        }
            .pop__close-icon {
                width: 2.4rem;
                height: 2.4rem;
                fill: var(--c-pri);
            }
/* Pop Search */
.pop--search {

}
    .p-search {
        padding: 8rem;
        text-align: center;
    }
        .p-search__title {
            margin: 0 0 2.4rem;
        }
/* Pop Video */
.pop--video {

}
    .pop--video .pop__item {
        width: var(--w-md);
    }
    .p-video {

    }
        .p-video__video {
            width: 100%;
            height: auto;
            border-radius: 0.8rem;
        }
/* Pop Promo */
.pop--promo {

}
    .p-promo {
        display: block;
        outline: none;
    }
        .p-promo__img {
            max-width: 100%;
            width: 100%;
            height: auto;
            border-top-left-radius: 0.8rem;
            border-top-right-radius: 0.8rem;
        }
        .p-promo__content {
            text-align: center;
        }
            .p-promo__content-inner {
                position: relative;
                padding: 4rem;
            }
            .p-promo__content-inner:has(.p-promo__btn) {
                padding: 0 4rem 4rem;
            }
                .p-promo__btn {
                    transform: translateY(-50%);
                }
                .p-promo__title {
                    margin-top: 0;
                    text-align: center;
                    color: var(--c-fg);
                    margin-bottom: 1.6rem;
                }
                .p-promo__text {
                    text-wrap: pretty;
                    margin: 0;
                }
                .p-promo__form {
                    margin-top: 2.4rem;
                    text-align: left;
                }
                    .p-promo__form .gform_footer {
                        justify-content: center;
                    }
                    .p-promo__form .gform_confirmation_message {
                        text-align: center;
                    }
/* Pop Team */
.pop--team {

}
    .pop--team .pop__item {
        width: var(--w-md);
    }
    .p-team {

    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $FORMS
--------------------------------------------------------|
--------------------------------------------------------|
*/
/*-------------------------------------| $Gravity-Forms
*/
.app .gform_wrapper.gravity-theme {

}
    /*General*/
    .app .gform_wrapper.gravity-theme .gfield_required {
        font-size: .9em;
    }
    /*Heading*/
    .app .gform_wrapper.gravity-theme .gform_heading {

    }
        .app .gform_wrapper.gravity-theme .gform_required_legend {
            display: none;
        }
            .app .gform_wrapper.gravity-theme .gform_required_legend .gfield_required {

            }
    /*Body*/
    .app .gform_wrapper.gravity-theme .gform_body {

    }
        .app .gform_wrapper.gravity-theme .gform_fields {
            grid-row-gap: 2.4rem;
        }
            .app .gform_wrapper.gravity-theme .gfield {

            }
            .app .gform_wrapper.gravity-theme .gsection {
                border-bottom: .2rem solid var(--c-10);
                padding: 0 1.6rem .8rem 0;
            }
            .app .gform_wrapper.gravity-theme fieldset {

            }
                .app .gform_wrapper.gravity-theme .gfield_label {
                    font-size: 1.6rem;
                    margin-bottom: .8rem;
                    color: var(--c-fg);
                }
                .app .gform_wrapper.gravity-theme .gfield_header_item,
                .app .gform_wrapper.gravity-theme .gform_fileupload_rules,
                .app .gform_wrapper.gravity-theme .ginput_complex label {
                    font-size: 1.2rem;
                    padding-top: 0.4rem;
                    margin-bottom: 0.8rem;
                }
                .app .gform_wrapper.gravity-theme input[type=color],
                .app .gform_wrapper.gravity-theme input[type=date],
                .app .gform_wrapper.gravity-theme input[type=datetime-local],
                .app .gform_wrapper.gravity-theme input[type=datetime],
                .app .gform_wrapper.gravity-theme input[type=email],
                .app .gform_wrapper.gravity-theme input[type=month],
                .app .gform_wrapper.gravity-theme input[type=number],
                .app .gform_wrapper.gravity-theme input[type=password],
                .app .gform_wrapper.gravity-theme input[type=search],
                .app .gform_wrapper.gravity-theme input[type=tel],
                .app .gform_wrapper.gravity-theme input[type=text],
                .app .gform_wrapper.gravity-theme input[type=time],
                .app .gform_wrapper.gravity-theme input[type=url],
                .app .gform_wrapper.gravity-theme input[type=week],
                .app .gform_wrapper.gravity-theme select,
                .app .gform_wrapper.gravity-theme textarea {
                    font-size: 1.6rem;
                    padding: .8rem;
                }
                .app .gform_wrapper.gravity-theme .description,
                .app .gform_wrapper.gravity-theme .gfield_description,
                .app .gform_wrapper.gravity-theme .gsection_description,
                .app .gform_wrapper.gravity-theme .instruction {
                    font-size: 1.2rem;
                    padding-top: 1.6rem;
                }
                .app .gsection_title {
                    margin: 2.4rem 0 0;
                }
                .app .gform_wrapper.gravity-theme .field_sublabel_above .description,
                .app .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description,
                .app .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description {
                    margin-top: .4rem;
                }
                .app .gform_wrapper.gravity-theme .field_description_above .description,
                .app .gform_wrapper.gravity-theme .field_description_above .gfield_description,
                .app .gform_wrapper.gravity-theme .field_description_above .gsection_description,
                .app .gform_wrapper.gravity-theme .field_description_above .instruction {
                    padding-bottom: .8rem;
                }
                .app .gform_wrapper.gravity-theme .gfield textarea.small {
                    height: 9.6rem;
                }
                .app .gform_wrapper.gravity-theme .gfield textarea.medium {
                    height: 19.2rem;
                }
                .app .gform_wrapper.gravity-theme .gfield textarea.large {
                    height: 28.8rem;
                }
                /*Drop Area*/
                .app .gform_wrapper.gravity-theme .gform_drop_area {
                    background-color: var(--c-05);
                    border: 0.2rem dotted var(--c-10);
                    border-radius: 0;
                    margin-bottom: .8rem;
                    padding: 3.2rem;
                    text-align: center;
                    color: var(--c-50);
                }
                    .app .gform_wrapper.gravity-theme .gform_drop_area .button {
                        background-color: var(--c-05);
                        border: 0.2rem solid var(--c-10);
                        color: var(--c-50);
                    }
                /*Checkbox & Radio*/
                .app .gfield_checkbox,
                .app .gfield_radio {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 2.4rem;
                    margin: 1.6rem 0;
                }
                    .app .gchoice {
                        position: relative;
                    }
                        .app .gform_wrapper.gravity-theme .gfield-choice-input {
                            position: absolute;
                            appearance: none;
                            inset: 0;
                            margin: 0;
                        }
                        .app .gform_wrapper.gravity-theme .gfield-choice-input:checked {

                        }
                        .app .gform_wrapper.gravity-theme .gfield_checkbox label,
                        .app .gform_wrapper.gravity-theme .gfield_radio label {
                            position: relative;
                            display: flex !important;
                            flex-direction: row-reverse;
                            justify-content: flex-end;
                            align-items: center;
                            gap: .8rem;
                            width: 100%;
                            max-width: 100% !important;
                            font-size: 1.6rem !important;
                            cursor: pointer;
                            transition: color .15s linear;
                        }
                        .app .gform_wrapper.gravity-theme .gfield-choice-input:checked + label {

                        }
                            .app .gform_wrapper.gravity-theme .gfield_checkbox label::after,
                            .app .gform_wrapper.gravity-theme .gfield_radio label::after {
                                content: "";
                                background: center / 0 0 no-repeat scroll var(--c-05);
                                width: 3.2rem;
                                height: 3.2rem;
                                border: 0.2rem solid var(--c-10);
                                z-index: 2;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                transition: all .15s linear;
                            }
                            .app .gform_wrapper.gravity-theme .gfield_checkbox label::after {

                            }
                            .app .gform_wrapper.gravity-theme .gfield_radio label::after {
                                border-radius: 50%;
                            }
                            .app .gform_wrapper.gravity-theme .gfield-choice-input:checked + label::after {
                                border: .2rem solid var(--c-pri);
                                background-size: 2.0rem 2.0rem;
                            }
                            .app .gform_wrapper.gravity-theme .gfield_checkbox .gfield-choice-input:checked + label::after {
                                background-image: url('assets/img/icon-check.svg');
                            }
                            .app .gform_wrapper.gravity-theme .gfield_radio .gfield-choice-input:checked + label::after {
                                background-image: url('assets/img/icon-radio.svg');
                            }
    /*Footer*/
    .app .gform_wrapper.gravity-theme .gform_footer {
        position: relative;
        margin: 2.4rem 0 0;
        padding: 0;
    }
        .app .gform_wrapper.gravity-theme .gform_footer button,
        .app .gform_wrapper.gravity-theme .gform_footer input,
        .app .gform_wrapper.gravity-theme .gform_page_footer button,
        .app .gform_wrapper.gravity-theme .gform_page_footer input {
            margin-bottom: 0;
        }
        .app .gform_wrapper.gravity-theme .gform-loader {
            width: 2.4rem;
            height: 2.4rem;
            border-top: .4rem solid var(--c-pri);
            border-right: .4rem solid var(--c-pri);
            border-bottom: .4rem solid var(--c-25);
            border-left: .4rem solid var(--c-25);
            margin-left: 1.6rem;
        }
        .app .gform_confirmation_message {
            line-height: 1.5;
        }
    /*Validation Errors*/
    .app .gform_wrapper.gravity-theme .gform_validation_errors {
        background: transparent;
        border: .2rem dotted var(--c-10);
        border-radius: 0;
        box-shadow: none;
        margin-block-end: .8rem;
        margin-block-start: .8rem;
        padding-block: 1.6rem;
        padding-inline-end: 1.6rem;
        padding-inline-start: 4.8rem;
    }
        .app .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
            border-width: 0.2rem;
        }
        .app .gform_wrapper.gravity-theme .gfield_validation_message,
        .app .gform_wrapper.gravity-theme .validation_message {
            background: transparent;
            border: .2rem dotted var(--c-10);
            margin-block-start: .8rem !important;
            padding: 1.6rem 2.4rem !important;
        }
    /* Previous & Save Buttons */
    .app .gform_wrapper.gravity-theme .gform_previous_button.button,
    .app .gform_wrapper.gravity-theme .gform_save_link.button {
        background-color: var(--c-pri);
        color: var(--c-w);
    }
    /* Progress Bar */
    .app .gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blue {
        background-color: var(--c-pri);
    }

/*-------------------------------------| $Buttons
*/
.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    padding: 1.6rem 3.2rem;
    margin: 0;
    background-color: var(--c-pri);
    color: var(--c-w);
    text-align: center;
    font-size: 1.6rem;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    border-radius: .8rem;
    border: 0.2rem solid var(--c-pri);
    cursor: pointer;
    box-sizing: border-box;
}
.button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    
}
.button--sec,
input[type="submit"].button--sec,
input[type="reset"].button--sec,
input[type="button"].button--sec {
    color: var(--c-fg);
    background-color: transparent;
    border-color: var(--c-pri);
}
.button--sec:hover,
input[type="submit"].button--sec:hover,
input[type="reset"].button--sec:hover,
input[type="button"].button--sec:hover,
.button--sec:focus,
button.button--sec:focus,
input[type="submit"].button--sec:focus,
input[type="reset"].button--sec:focus,
input[type="button"].button--sec:focus {
    
}

/*-------------------------------------| $Fields
*/
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--c-05);
    border: 0.2rem solid var(--c-10);
    box-shadow: none;
    color: var(--c-fg);
    font: inherit;
    font-size: 1.6rem;
    padding: 0.8rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
 }
textarea {
    line-height: 1.5;
    resize: vertical;
}
select {
    background: right 1.6rem center / 1.6rem auto no-repeat scroll var(--c-05);
    background-image:  url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224 397.3l22.6-22.6 160-160L429.3 192 384 146.7l-22.6 22.6L224 306.7 86.6 169.4 64 146.7 18.7 192l22.6 22.6 160 160L224 397.3z" fill="%23333333"/></svg>');
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: var(--c-pri);
    outline: 0;
}
::placeholder {
    color: var(--c-25);
    opacity: 1;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $RESPONSIVE
--------------------------------------------------------|
--------------------------------------------------------|
*/
/* Option 2: Scale 16:9 (1152x648) to 2x in 10% increments
@media only screen and (min-height: 713px) and (min-width: 1267px) { html { font-size: 11px; } }
@media only screen and (min-height: 777px) and (min-width: 1382px) { html { font-size: 12px; } }
@media only screen and (min-height: 843px) and (min-width: 1498px) { html { font-size: 13px; } }
@media only screen and (min-height: 907px) and (min-width: 1613px) { html { font-size: 14px; } }
@media only screen and (min-height: 972px) and (min-width: 1728px) { html { font-size: 15px; } }
@media only screen and (min-height: 1037px) and (min-width: 1843px) { html { font-size: 16px; } }
@media only screen and (min-height: 1101px) and (min-width: 1958px) { html { font-size: 17px; } }
@media only screen and (min-height: 1167px) and (min-width: 2074px) { html { font-size: 18px; } }
@media only screen and (min-height: 1231px) and (min-width: 2189px) { html { font-size: 19px; } }
@media only screen and (min-height: 1296px) and (min-width: 2304px) { html { font-size: 20px; } } */

/* Option 2: Scale as octal design pattern in increments of 128 */
@media only screen and (max-width: 896px) { html { font-size: 9.5px; } }
@media only screen and (max-width: 768px) { html { font-size: 9px; } }
@media only screen and (max-width: 640px) { html { font-size: 8.5px; } }
@media only screen and (max-width: 512px) { html { font-size: 8px; } }
@media only screen and (min-height: 720px)     and (min-width: 1280px) { html { font-size: 11px; } }
@media only screen and (min-height: 792px)     and (min-width: 1408px) { html { font-size: 12px; } }
@media only screen and (min-height: 864px)     and (min-width: 1536px) { html { font-size: 13px; } }
@media only screen and (min-height: 936px)     and (min-width: 1664px) { html { font-size: 14px; } }
/* @media only screen and (min-height: 1008px) and (min-width: 1792px) { html { font-size: 15px; } }
@media only screen and (min-height: 1080px) and (min-width: 1920px) { html { font-size: 16px; } }
@media only screen and (min-height: 1152px) and (min-width: 2048px) { html { font-size: 17px; } } */

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $PRINT
--------------------------------------------------------|
--------------------------------------------------------|
*/
@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,::after,::before{background:#fff!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]::after{content:" (" attr(href) ")"}abbr[title]::after{content:" (" attr(title) ")"}a[href^="#"]::after,a[href^="javascript:"]::after{content:""}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #999}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}