/*
Theme Name: Apparatus
Theme URI: https://www.pixouls.com/
Author: Pixouls
Author URI: https://www.pixouls.com/
Description: The technical machinery needed for building a website.
Version: 8.0.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: apparatus
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 - Utilities */
    --c-b: #000000;
    --c-w: #FFFFFF;
    --c-y: #FACC15;
    --c-r: #EF4444;
    --c-g: #22C55E;

    /* Color - Light/Dark */
    --c-bg: light-dark(var(--c-l), var(--c-d));
    --c-fg: light-dark(var(--c-d), var(--c-l));
    --c-75: color-mix(in srgb, light-dark(var(--c-b), var(--c-w)) 75%, transparent);
    --c-50: color-mix(in srgb, light-dark(var(--c-b), var(--c-w)) 50%, transparent);
    --c-25: color-mix(in srgb, light-dark(var(--c-b), var(--c-w)) 25%, transparent);
    --c-10: color-mix(in srgb, light-dark(var(--c-b), var(--c-w)) 10%, transparent);
    --c-05: color-mix(in srgb, light-dark(var(--c-b), var(--c-w)) 5%, transparent);

    /* Color - Backdrop */
    --c-bd: color-mix(in srgb, var(--c-bg) 90%, transparent);
}
[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);
        }
/* Tablet Landscape */
@media only screen and (max-width: 1024px) {
    
}
/* Tablet Portrait */
@media only screen and (max-width: 768px) {
    
}
/* Mobile */
@media only screen and (max-width: 512px) {
    :root {
        /* Width */
        --w-xs: 80%;
        --w-sm: 80%;
        --w-md: 85%;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $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;
}
h2 {
    font-size: 4.0rem;
}
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); }
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;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $ACCESSIBILITY-UTILS
--------------------------------------------------------|
--------------------------------------------------------|
*/
.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 */
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $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.0rem;
                width: auto;
                fill: var(--c-pri);
            }
        .hdr__search {
            display: flex;
            align-items: center;
            height: 100%;
            margin-left: auto;
        }
            .hdr__search-icon {
                width: 2.4rem;
                height: auto;
                fill: var(--c-pri);
            }
        .hdr__cta.button {
            
        }
        .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::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.2rem;
                text-transform: uppercase;
                font-weight: 700;
                height: 8rem;
                padding: 0 0.4rem;
                color: var(--c-pri);
            }
                .nav__button-text {

                }
                .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;
                }
                .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: 1.6rem;
                    }
                        .nav__sub-link {
                            display: block;
                            padding: 1.6rem;
                            font-size: 1.2rem;
                            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 Util */  
                    .nav__sub-util {
                        list-style: none;
                        margin: 0;
                        padding: 1.6rem;
                        background: var(--c-05);
                        border-bottom-left-radius: 0.8rem;
                        border-bottom-right-radius: 0.8rem;
                    }
                        .nav__sub-util-item {
                            margin: 0;
                        }
                            .nav__sub-util-link {
                                display: flex;
                                justify-content: space-between;
                                align-items: flex-start;
                                gap: 0.8rem;
                                padding: .8rem 1.6rem;
                                font-size: 1.2rem;
                                line-height: 1.25;
                                color: var(--c-w);
                                border-radius: 0.3rem;
                                -webkit-transition: all 0.15s linear;
                                -o-transition: all 0.15s linear;
                                transition: all 0.15s linear;
                            }
                                .nav__sub-util-link:hover,
                                .nav__sub-util-link:focus {
                                    background: var(--c-05);
                                    color: var(--c-pri);
                                }
                                .nav__sub-util-icon {
                                    width: 1.6rem;
                                    height: 1.6rem;
                                    fill: var(--c-pri);
                                    flex-shrink: 0;
                                }
                    /* Sub Group */     
                    .nav__sub-group {
                        list-style: none;
                        margin: 0;
                        padding: 1.6rem;
                    }
                        /* .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;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $FLX
--------------------------------------------------------|
--------------------------------------------------------|
*/
.flx {
    position: relative;
    background: center / cover no-repeat scroll transparent;
}
    .flx__backdrop {
        position: absolute;
        inset: 0;
        background-color: var(--c-bd);
    }
    .flx__inner {
        position: relative;
        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;
            }

/*
--------------------------------------------------------| $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-stretch   { align-items: stretch; }
.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-qua { background-color: var(--c-qua); }
.flx-bg-qui { background-color: var(--c-qui); }
.flx-bg-d   { background-color: var(--c-d); }
.flx-bg-l   { background-color: var(--c-l); }
.flx-bg-75  { background-color: var(--c-75); }
.flx-bg-50  { background-color: var(--c-50); }
.flx-bg-25  { background-color: var(--c-25); }
.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; }

/*
--------------------------------------------------------| $MOBILE-UTILITIES
*/
@media only screen and (max-width: 768px) {
    /* Default: rows become columns on mobile */
    .flx-d-row { flex-direction: column; }
    /* Prevent auto-column conversion (rare cases) */
    .flx-m-nowrap { flex-direction: row; }
    /* Reverse direction on mobile */
    .flx-m-reverse.flx-d-row { flex-direction: column-reverse; }
    .flx-m-reverse.flx-d-col { flex-direction: column-reverse; }
    .flx-m-reverse.flx-m-nowrap { flex-direction: row-reverse; }
    /* Mobile gap overrides */
    .flx-m-g-0  { gap: 0; }
    .flx-m-g-sm { gap: var(--s-sm); }
    .flx-m-g-md { gap: var(--s-md); }
    .flx-m-g-lg { gap: var(--s-lg); }
}

/*
--------------------------------------------------------| $FLX-EDITORIAL
*/
.flx__col--editorial {

}
    .flx__col--editorial  ul,
    .flx__col--editorial  ol {
        line-height: 1.5;
        padding: 0;
        margin: 0 0 2.4rem;
        list-style: none;
    }
    .flx__col--editorial ol {
        counter-reset: item;
    }
        .flx__col--editorial ul li,
        .flx__col--editorial ol li {
            position: relative;
            padding-left: 3.2rem;
            margin-bottom: 1.6rem;
        }
        .flx__col--editorial ol li {
            counter-increment: item;
        }
        .flx__col--editorial ul li:last-child,
        .flx__col--editorial ol li:last-child {
            margin-bottom: 0;
        }
            .flx__col--editorial ul li:before,
            .flx__col--editorial ol li:before {
                position: absolute;
                left: 0;
                top: 0;
                width: 2.4rem;
                height: 2.4rem;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
            } 
            .flx__col--editorial ul li:before {
                content: "✓";
                color: var(--c-pri);
                font-weight: 700;
                font-size: 2.4rem;
            }
            .flx__col--editorial ol li:before {
                content: counter(item);
                background-color: var(--c-pri);
                color: var(--c-w);
                border-radius: 50%;
                font-size: 1.2rem;
            }
    /* List Theme: Bar */
    .flx__col--editorial ul.flx-list--bar li {
        border-left: .2rem solid var(--c-25);
        margin: 0;
        padding: .8rem 1.6rem .8rem 2.4rem;
    }
        .flx__col--editorial ul.flx-list--bar li:before {
            content: '';
            top: 2.0rem;
            width: 1.6rem;
            height: .2rem;
            background: var(--c-25);
            color: transparent;
            font-size: 0;
            border-radius: 0;
        }
    /* List Columns */
    .flx__col--editorial ul.flx-list--cols-2,
    .flx__col--editorial ol.flx-list--cols-2 {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
        -webkit-column-gap: 2.4rem;
           -moz-column-gap: 2.4rem;
                column-gap: 2.4rem;
    }
    .flx__col--editorial ul.flx-list--cols-3,
    .flx__col--editorial ol.flx-list--cols-3 {
        -webkit-column-count: 3;
           -moz-column-count: 3;
                column-count: 3;
        -webkit-column-gap: 2.4rem;
           -moz-column-gap: 2.4rem;
                column-gap: 2.4rem;
    }
        .flx__col--editorial .flx-list--cols-2 li,
        .flx__col--editorial .flx-list--cols-3 li {
            -webkit-column-break-inside: avoid;
               -moz-column-break-inside: avoid;
                    break-inside: avoid-column;
            page-break-inside: avoid;
        }
    @media only screen and (max-width: 768px) {
        .flx__col--editorial ul.flx-list--cols-3,
        .flx__col--editorial ol.flx-list--cols-3 {
            -webkit-column-count: 2;
               -moz-column-count: 2;
                    column-count: 2;
        }
    }

/*
--------------------------------------------------------| $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 {
            
        }
        .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-cols-xs { grid-template-columns: var(--g-xs); }

    .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 {
            
        }
        .flx-grid__item img {
            width: 100%;
            height: auto;
            aspect-ratio: var(--ar);
            object-fit: cover;
        }
        .flx-grid__item-content {

        }
            .flx-grid__item-content :first-child {
                margin-top: 0;
            }
            .flx-grid__item-content :last-child {
                margin-bottom: 0;
            }

/*
--------------------------------------------------------| $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-IMAGE-LINK
*/
.flx-image-link {
    --ar: 16/9;
    display: block;
    position: relative;
    overflow: hidden;
}
    .flx-image-link img {
        aspect-ratio: var(--ar);
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s cubic-bezier(.19,1,.22,1);
    }
    a.flx-image-link:hover img {
        transform: scale(1.05);
    }

/*
--------------------------------------------------------| $FLX-CINEMAGRAPH
*/
.flx-cinemagraph {
    --ar: 16/9;
    aspect-ratio: var(--ar);
    position: relative;
}
    @media only screen and (max-width: 768px) {
        .flx-cinemagraph {
            aspect-ratio: var(--ar-m, var(--ar));
        }
    }

/*
--------------------------------------------------------| $FLX-SET
*/

/* Base */
.flx-set { margin-inline: auto; }

/* Swiper */
.flx-set--swiper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
    .flx-swiper-tabs[data-position="bottom"] { order: 1; }
    .flx-swiper-tabs { padding-block: var(--s-sm); }
    .flx-swiper-tabs .swiper-slide {
        width: auto;
        pointer-events: auto;
    }
    .flx-swiper-tab {
        display: block;
        font: inherit;
        cursor: pointer;
        padding: .8rem 1.6rem;
        color: var(--c-55);
        border-radius: .4rem;
        text-align: center;
        white-space: nowrap;
        transition: color .15s linear, background-color .15s linear, border-color .15s linear;
    }
        .flx-swiper-tab:hover,
        .swiper-slide-thumb-active .flx-swiper-tab {
            color: var(--c-fg);
        }
        /* Pills */
        .flx-swiper-tabs[data-style="pills"] .flx-swiper-tab { background: var(--c-10); }
        .flx-swiper-tabs[data-style="pills"] .swiper-slide-thumb-active .flx-swiper-tab {
            background: var(--c-pri);
            color: var(--c-w);
        }
        /* Underline */
        .flx-swiper-tabs[data-style="underline"] .flx-swiper-tab {
            border-radius: 0;
            border-bottom: .2rem solid transparent;
        }
        .flx-swiper-tabs[data-style="underline"] .swiper-slide-thumb-active .flx-swiper-tab {
            border-bottom-color: var(--c-pri);
        }

/* Tabs */
.flx-tabs__nav {
    display: flex;
    gap: var(--s-sm);
    padding-block: var(--s-sm);
}
    .flx-tabs__nav[data-align="start"]  { justify-content: flex-start; }
    .flx-tabs__nav[data-align="center"] { justify-content: center; }
    .flx-tabs__nav[data-align="end"]    { justify-content: flex-end; }

.flx-tabs__tab {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: .8rem 1.6rem;
    color: var(--c-55);
    border-radius: .4rem;
    transition: color .15s linear, background-color .15s linear, border-color .15s linear;
}
    .flx-tabs__tab:hover,
    .flx-tabs__tab--active {
        color: var(--c-fg);
    }

    /* Pills style */
    .flx-tabs__nav[data-style="pills"] .flx-tabs__tab {
        background: var(--c-10);
    }
    .flx-tabs__nav[data-style="pills"] .flx-tabs__tab--active {
        background: var(--c-pri);
        color: var(--c-w);
    }

    /* Underline style */
    .flx-tabs__nav[data-style="underline"] {
        border-bottom: .2rem solid var(--c-10);
        gap: 0;
    }
    .flx-tabs__nav[data-style="underline"] .flx-tabs__tab {
        border-radius: 0;
        border-bottom: .2rem solid transparent;
        margin-bottom: -.2rem;
    }
    .flx-tabs__nav[data-style="underline"] .flx-tabs__tab--active {
        border-bottom-color: var(--c-pri);
    }

.flx-tabs__panel { display: none; }
.flx-tabs__panel--active { display: block; }

/* Accordion (set-level) */
.flx-set--accordion { border-top: .2rem solid var(--c-10); }
    .flx-set__details { border-bottom: .2rem solid var(--c-10); }
    .flx-set__summary {
        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-set__summary::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-set__summary:hover::after,
        .flx-set__details[open] .flx-set__summary::after {
            color: var(--c-pri);
        }
        .flx-set__details[open] .flx-set__summary::after {
            transform: translateY(-50%) rotate(45deg);
        }

/* Scroll Nav */
.flx-scroll-nav {
    display: flex;
    gap: var(--s-sm);
    padding-block: var(--s-sm);
}
    .flx-scroll-nav[data-sticky="true"] {
        position: sticky;
        top: 0;
        z-index: 10;
        background: var(--c-bg);
    }
    .flx-scroll-nav[data-align="start"]  { justify-content: flex-start; }
    .flx-scroll-nav[data-align="center"] { justify-content: center; }
    .flx-scroll-nav[data-align="end"]    { justify-content: flex-end; }

.flx-scroll-nav__link {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: .8rem 1.6rem;
    color: var(--c-55);
    border-radius: .4rem;
    text-decoration: none;
    transition: color .15s linear, background-color .15s linear, border-color .15s linear;
}
    .flx-scroll-nav__link:hover,
    .flx-scroll-nav__link--active {
        color: var(--c-fg);
    }

    /* Pills style */
    .flx-scroll-nav[data-style="pills"] .flx-scroll-nav__link--active {
        background: var(--c-pri);
        color: var(--c-w);
    }

    /* Underline style */
    .flx-scroll-nav[data-style="underline"] {
        border-bottom: .2rem solid var(--c-10);
        gap: 0;
    }
    .flx-scroll-nav[data-style="underline"] .flx-scroll-nav__link {
        border-radius: 0;
        border-bottom: .2rem solid transparent;
        margin-bottom: -.2rem;
    }
    .flx-scroll-nav[data-style="underline"] .flx-scroll-nav__link--active {
        border-bottom-color: var(--c-pri);
    }

/* Row */
.flx-set--row {
    display: flex;
}
.flx-set--row > .flx {
    min-width: 0;
    width: 100%;
}

/*
--------------------------------------------------------| $FLX-CUSTOM
*/
.overline {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--c-pri);
    margin-bottom: 1.6rem;
}
    .overline + :is(h1, h2, h3, h4) {
        margin-top: 0;
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $TITLE
--------------------------------------------------------|
--------------------------------------------------------|
*/
.title {
    text-align: center;
    background: var(--c-05);
}
    .title__heading {
        width: var(--w-md);
        margin: 0 auto;
        padding: 12.0rem 0;
    }
        .title__details {
            margin-top: 2.4rem;
        }
        .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-block: 0 2.4rem;
        list-style: none;
        -webkit-column-gap: 2.4rem;
           -moz-column-gap: 2.4rem;
                column-gap: 2.4rem;
    }
    .is-style-columns-3 {
        -webkit-column-count: 3;
           -moz-column-count: 3;
                column-count: 3;
    }
    .is-style-columns-2 {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
    }
    @media only screen and (max-width: 768px) {
        .is-style-columns-3 {
            -webkit-column-count: 2;
               -moz-column-count: 2;
                    column-count: 2;
        }
    }
        ul.wp-block-list li {
            border-left: .2rem solid var(--c-25);
            margin: 0;
            padding: .8rem 1.6rem .8rem 2.4rem;
            position: relative;
            -moz-column-break-inside: avoid;
                 break-inside: avoid-column;
            page-break-inside: avoid;
            -webkit-column-break-inside: avoid;
        }
            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-25);
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $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: calc(100% + 2px);
        min-width: calc(100% + 2px);
        max-width: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
.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: 10.4rem;
        height: 10.4rem;
        -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;
        border: .2rem solid transparent;
        transition: transform .3s cubic-bezier(.19,1,.22,1), box-shadow .3s cubic-bezier(.19,1,.22,1), border-color .3s cubic-bezier(.19,1,.22,1);
    }
    .team--pop .team-member {
        cursor: pointer;
        border: .2rem solid transparent;
        font-family: inherit;
        width: 100%;
    }
    .team--pop .team-member:hover {
        transform: translateY(-.4rem);
        box-shadow: 0 .8rem 2.4rem rgba(0, 0, 0, .15);
        border-color: var(--c-pri);
    }
    .team--pop .team-member:active {
        transform: translateY(-.2rem);
    }
        .team-member__photo-wrap {
            width: 100%;
        }
        .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: .8rem;
        }
            .team-member__name {
                margin: 0;
            }
            .team-member__title {
                margin: 0;
                font-size: 1.2rem;
                line-height: 1.25;
                color: var(--c-50);
            }
            .team-member__bio {
                margin: 0;
            }
                .team-member__bio p:last-child {
                    margin-bottom: 0;
                }
            .team-member__contact {
                display: flex;
                flex-direction: row;
                gap: .8rem;
                margin-top: .8rem;
                justify-content: center;
            }
                .team-member__contact-link {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: .8rem;
                    width: 4.0rem;
                    height: 4.0rem;
                    padding: 0;
                    background: transparent;
                    color: var(--c-fg);
                    text-decoration: none;
                    border-radius: 50%;
                    font-size: 1.4rem;
                    border: .2rem solid var(--c-25);
                    transition: all .3s cubic-bezier(.19,1,.22,1);
                }
                .team-member__contact-link:hover {
                    background: var(--c-pri);
                    color: var(--c-w);
                    border-color: var(--c-pri);
                    transform: scale(1.1);
                }
                .team-member__contact-link:active {
                    transform: scale(1.05);
                }
                .team-member__contact-icon {
                    width: 1.6rem;
                    height: 1.6rem;
                    fill: currentColor;
                    flex-shrink: 0;
                }
                .team-member__contact-text {
                    display: none;
                }
    /* 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-wrap {
            flex: 1;
            align-self: flex-start;
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }
        .team-swiper .team-member__content {
            flex: 2;
            gap: 0;
        }
            .team-swiper .team-member__title {
                font-size: 1.6rem;
                margin: .8rem 0 2.4rem;
            }

    /* Responsive */
    @media (max-width: 768px) {
        .team-swiper .team-member {
            flex-direction: column;
            text-align: center;
            padding: 4rem;
            gap: 2.4rem;
        }
        .team-swiper .team-member__photo-wrap {
            align-self: center;
        }
        .team-swiper .team-member__contact {
            justify-content: center;
        }
        .team-swiper .team-member__content {
            flex: 1;
        }
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $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 {
            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__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%;
        }
.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%;
        }
        .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);
        }
@media only screen and (max-width: 768px) {
    .gal-swiper,
    .gal-grid img {
        aspect-ratio: var(--ar-m, 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: 12.0rem;
    font-size: 1.2rem;
    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: 8.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;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $LIVE-SEARCH
--------------------------------------------------------|
--------------------------------------------------------|
*/
.live-search {
    position: relative;   
}
    .live-search__wrapper {
        position: relative;
        display: flex;
        align-items: center;
        max-width: 51.2rem;
        margin: 0 auto;
    }
        .live-search__icon {
            position: absolute;
            left: 1.6rem;
            width: 2rem;
            height: 2rem;
            color: var(--c-50);
            pointer-events: none;
            z-index: 1;
        }
        input[type="search"].live-search__input.live-search__input {
            width: 100%;
            padding: 1.2rem 4.8rem 1.2rem 5.2rem;
            font-size: 1.6rem;
            border: 0.2rem solid var(--c-10);
            border-radius: 0.8rem;
            background-color: var(--c-05);
            color: var(--c-fg);
            transition: all 0.3s ease;
        }
        input[type="search"].live-search__input:focus {
            outline: none;
            border-color: var(--c-pri);
            background-color: var(--c-bg);
            box-shadow: 0 0 0 0.8rem var(--c-10);
        }
        input[type="search"].live-search__input::placeholder {
            color: var(--c-25);
        }
        /* Hide browser's native search clear button */
        input[type="search"].live-search__input::-webkit-search-cancel-button {
            -webkit-appearance: none;
            appearance: none;
        }
        .live-search__clear {
            position: absolute;
            right: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.4rem;
            height: 2.4rem;
            padding: 0;
            background: transparent;
            border: none;
            border-radius: 50%;
            color: var(--c-50);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .live-search__clear[hidden] {
            display: none;
        }
        .live-search__clear:hover {
            color: var(--c-pri);
            background-color: var(--c-10);
        }
        .live-search__clear:focus {
            outline: 0.2rem solid var(--c-pri);
            outline-offset: 0.2rem;
        }
            .live-search__clear svg {
                width: 1.4rem;
                height: 1.4rem;
            }
    .live-search__status {
        margin-top: 1.6rem;
        text-align: center;
        font-size: 1.4rem;
        color: var(--c-50);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }
    [data-live-search-hidden] {
        display: none !important;
    }
/* Tablet Portrait */
@media only screen and (max-width: 768px) {
    .live-search__wrapper {
        max-width: 100%;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $CAREERS
--------------------------------------------------------|
--------------------------------------------------------|
*/
.careers {
        
}
    .careers__item {
        margin-bottom: 1.6rem;
        border: .1rem solid var(--c-10);
    }
        .careers__summary {
            width: 100%;
            padding: 1.6rem 2rem;
            background: var(--c-05);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.6rem;
            font-weight: 600;
            transition: background-color .3s ease;
            list-style: none;
        }
            .careers__summary::-webkit-details-marker {
                display: none;
            }
            .careers__summary:hover {
                background: var(--c-10);
            }
            .careers__item[open] .careers__summary {
                background: var(--c-10);
            }
        .careers__content {
            padding: 2.4rem;
            font-size: 1.4rem;
        }
            .careers__content p,
            .careers__content ul {
                line-height: 1.5;
            }
            .careers__icon {
                position: relative;
                width: 2rem;
                height: 2rem;
            }
            .careers__icon::before,
            .careers__icon::after {
                content: '';
                position: absolute;
                background: var(--c-pri);
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition: transform .3s ease;
            }
            .careers__icon::before {
                width: 2rem;
                height: .2rem;
            }
            .careers__icon::after {
                width: .2rem;
                height: 2rem;
            }
            .careers__item[open] .careers__icon::after {
                transform: translate(-50%, -50%) rotate(90deg);
            }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $CHILD-PAGES
--------------------------------------------------------|
--------------------------------------------------------|
*/
.child-pages {
    margin: var(--s-md) 0;
}
    .child-pages__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 1.2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .child-pages__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
        .child-pages__link {
            display: block;
            width: 100%;
            padding: 1.6rem 2.4rem;
            background: var(--c-05);
            border: 0.2rem solid var(--c-10);
            border-radius: 0.8rem;
            color: var(--c-fg);
            font-variation-settings: 'wght' 600;
            text-decoration: none;
            line-height: 1.25;
            -webkit-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .child-pages__link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--c-05)), to(transparent));
            background: -o-linear-gradient(left, transparent, var(--c-05), transparent);
            background: linear-gradient(to right, transparent, var(--c-05), transparent);
            -webkit-transition: left 0.5s ease;
            -o-transition: left 0.5s ease;
            transition: left 0.5s ease;
        }
        .child-pages__link:hover {
            border-color: var(--c-pri);
            -webkit-transform: translateY(-0.2rem);
                -ms-transform: translateY(-0.2rem);
                    transform: translateY(-0.2rem);
            -webkit-box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
                    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
        }
        .child-pages__link:hover::before {
            left: 100%;
        }
        .child-pages__link:focus {
            outline: 0.2rem solid var(--c-pri);
            outline-offset: 0.2rem;
        }
        .child-pages__item--active .child-pages__link {
            background: var(--c-pri);
            border-color: var(--c-pri);
            color: var(--c-b);
        }
        .child-pages__item--active .child-pages__link:hover {
            background: var(--c-ter);
            border-color: var(--c-ter);
            -webkit-transform: translateY(-0.2rem);
                -ms-transform: translateY(-0.2rem);
                    transform: translateY(-0.2rem);
        }

/* Tablet Portrait */
@media only screen and (max-width: 768px) {
    .child-pages__list {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media only screen and (max-width: 512px) {
    
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $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 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 {
                    
                }
                    .p-promo__text > *:last-child {
                        margin-bottom: 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-pri);
    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 {
    
}
.button--ter,
input[type="submit"].button--ter,
input[type="reset"].button--ter,
input[type="button"].button--ter {
    background-color: transparent;
    border-color: transparent;
    color: var(--c-pri);
    padding-inline: 0;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    gap: .8rem;
}
    .button--ter::after {
        content: '\2192';
        font-size: 1.4rem;
    }
.button--ter:hover,
input[type="submit"].button--ter:hover,
input[type="reset"].button--ter:hover,
input[type="button"].button--ter:hover,
.button--ter:focus,
button.button--ter:focus,
input[type="submit"].button--ter:focus,
input[type="reset"].button--ter:focus,
input[type="button"].button--ter:focus {
    opacity: .7;
}

/*-------------------------------------| $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 {
    line-height: 1.5;
    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}}