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

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $RESET
--------------------------------------------------------|
--------------------------------------------------------|
*/
*, *::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; }
::-moz-selection { color: var(--c-fg); background-color: var(--c-30); text-shadow: none; }
::selection { color: var(--c-fg); background-color: var(--c-30); 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; -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; }
hr { display: block; height: .2rem; border: 0; border-top: .2rem solid var(--c-20); margin: 4.0rem 0; padding: 0;}
code { line-height: 1.5; color: var(--c-75); }
[id] { scroll-margin-top: 12.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-xs: .8rem;
    --s-sm: 1.6rem;
    --s-md: 2.4rem;
    --s-lg: 4.0rem;
    --s-xl: 8.0rem;

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

    /* Color - Brand */
    --c-pri: #0075CE;
    --c-sec: #7f69ba;
    --c-ter: hsl(240, 100%, 60%);

    /* Color - Utilities */
    --c-y: yellow;
    --c-r: red;
    --c-g: green;
    --c-b: #00121F;
    --c-w: #D9EAF8;

    /* Color - Light/Dark */
    --c-bg: light-dark(#D9EAF8, #00121F);
    --c-fg: light-dark(#00121F, #D9EAF8); /* used for gradients */
    --c-bd: light-dark(rgba(217, 234, 248, .75), rgba(0, 18, 31, .75));
    --c-bd-15: light-dark(rgba(204, 227, 245, .75), rgba(0,23,41, 0.75));
    --c-75: light-dark(#3391D8, #005EA5);
    --c-55: light-dark(#66ACE2, #00467C); /* used for gradients */
    --c-30: light-dark(#A6CFEE, #002948);
    --c-20: light-dark(#BFDDF3, #001D34);
    --c-15: light-dark(#CCE3F5, #001729);
}
[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;
    -ms-text-size-adjust: none;
        text-size-adjust: none;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scroll-behavior: smooth;
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
}
    body {
        background: var(--c-pri);
        margin: 0;
        min-height: 100vh;
        color: var(--c-fg);
        font-size: 1.6rem;
        line-height: 1;
    }
        .app {
            position: relative;
            background: var(--c-bg);
        }

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

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $TYPE
--------------------------------------------------------|
--------------------------------------------------------|
*/
.helvetica {
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 400; /* 400, 700 */
    font-style: normal; /* normal, italic */
}
.helvetica-condensed {
    font-family: "helvetica-neue-lt-pro-cond", sans-serif;
    font-weight: 700; /* 700 */
    font-style: normal;
}
h1, h2, h3, h4, h5 {
    margin: 4.8rem 0 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    text-wrap: pretty;
}
h1 { 
    font-size: 6.4rem;
    line-height: 1.15;
}
h2 {
    font-size: 4.8rem;
}
h3 {
    font-size: 3.2rem;
}
h4 {
    font-size: 2.4rem;
}
h5 {
    font-size: 1.6rem;
}
p             { line-height: 1.5; margin: 0 0 2.4rem; text-wrap: pretty; color: var(--c-fg); }
b, strong     { font-weight: 700; }
a            { color: var(--c-pri); text-decoration: none; }
/* a:link        { color: var(--c-pri);    }
a:visited    { color: var(--c-pri);    }
a:hover        { color: var(--c-pri);    }
a:active    { color: var(--c-pri);    } */
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 5.6rem;
    }
    h2 {
        font-size: 4.0rem;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $ANIMATIONS
--------------------------------------------------------|
--------------------------------------------------------|
*/
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@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: -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;
    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;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $UTILITIES
--------------------------------------------------------|
--------------------------------------------------------|
*/
.text-shine {
    /* background: linear-gradient(
        to right,
        #7f69ba 20%,
        #0075ce 30%,
        #7f69ba 70%,
        #0075ce 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate; */

    background: #0075CE;
    background: -webkit-gradient(linear, right bottom, left top, from(#0075CE), to(#9664ac));
    background: -o-linear-gradient(bottom right, #0075CE 0%, #9664ac 100%);
    background: linear-gradient(to top left, #0075CE 0%, #9664ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
@-webkit-keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $HEADER
--------------------------------------------------------|
--------------------------------------------------------|
*/
.hdr {
    /* z-index: 900;
    position: sticky;
    top: 0;
    background: var(--c-bg); */
    z-index: 900;
    position: fixed;
    top: 1.6rem;
    width: var(--w-lg);
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
    .hdr::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 2.4rem;
        background: var(--c-bd-15);
        border: .1rem solid var(--c-55);
        -webkit-backdrop-filter: saturate(180%) blur(1.6rem);
        backdrop-filter: saturate(180%) blur(1.6rem);
    }
    .hdr__inner {
        position: relative;
        padding-inline: 2.4rem;
        height: 8.0rem;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 2.4rem;
    }
        .hdr__logo {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
        }
            .hdr__logo-img {
                height: 4.0rem;
                width: auto;
                fill: var(--c-pri);
            }
            .logo {
                height: 4.0rem;
                width: auto;
            }
                .logo__icon {
                    color: var(--c-pri);
                }
                .logo__wordmark {
                    color: var(--c-fg);
                }
        .hdr__button.button {
            font-size: 1.4rem;
        }
        .hdr__search {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            height: 100%;
            padding: .8rem;
            border: .1rem solid var(--c-55);
            border-radius: 50%;
        }
            .hdr__search-icon {
                width: 1.6rem;
                height: auto;
                fill: var(--c-pri);
            }
        .hdr__theme-toggle {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            height: 100%;
            padding: .8rem;
            border: .1rem solid var(--c-55);
            border-radius: 50%;
        }
            .hdr__theme-toggle-icon {
                width: 1.6rem;
                height: auto;
                fill: var(--c-pri);
            }
                .hdr__theme-toggle-icon-sun {
                    display: none;
                }
                [data-theme="dark"] .hdr__theme-toggle-icon-moon {
                    display: none;
                }
                [data-theme="dark"] .hdr__theme-toggle-icon-sun {
                    display: inline;
                }
        .hdr__nav-toggle {
            display: none;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
                -ms-flex-align: 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);
                    -webkit-transform-origin: center;
                        -ms-transform-origin: center;
                            transform-origin: center;
                    -webkit-transition: fill .15s linear, opacity .15s linear, -webkit-transform .3s ease;
                    transition: fill .15s linear, opacity .15s linear, -webkit-transform .3s ease;
                    -o-transition: transform .3s ease, fill .15s linear, opacity .15s linear;
                    transition: transform .3s ease, fill .15s linear, opacity .15s linear;
                    transition: transform .3s ease, fill .15s linear, opacity .15s linear, -webkit-transform .3s ease;
                }
                    .hdr__nav-toggle--open .hdr__nav-toggle-icon-rect--top {
                        -webkit-transform: rotate(225deg) translateY(8px);
                            -ms-transform: rotate(225deg) translateY(8px);
                                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 {
                        -webkit-transform: rotate(-225deg) translateY(-8px);
                            -ms-transform: rotate(-225deg) translateY(-8px);
                                transform: rotate(-225deg) translateY(-8px);
                    }
@media only screen and (max-width: 960px) {
    .hdr__nav-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .hdr {
        top: 0;
        width: 100%;
        left: 0;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        border-radius: 0;
    }
        .hdr::before {
            border-left: none;
            border-right: none;
            border-top: none;
            border-radius: 0;
        }
        .hdr__button.button {
            margin-left: auto;
        }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $NAV
--------------------------------------------------------|
--------------------------------------------------------|
*/
.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
    .nav__list {
        list-style: none;
        margin: auto;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                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-55);
                -webkit-transform-origin: center right;
                    -ms-transform-origin: center right;
                        transform-origin: center right;
                -webkit-transform: scale3d(0,1,1);
                        transform: scale3d(0,1,1);
                -webkit-transition: background-color 0.3s ease, -webkit-transform .6s cubic-bezier(.19,1,.22,1);
                transition: background-color 0.3s ease, -webkit-transform .6s cubic-bezier(.19,1,.22,1);
                -o-transition: transform .6s cubic-bezier(.19,1,.22,1), background-color 0.3s ease;
                transition: transform .6s cubic-bezier(.19,1,.22,1), background-color 0.3s ease;
                transition: transform .6s cubic-bezier(.19,1,.22,1), background-color 0.3s ease, -webkit-transform .6s cubic-bezier(.19,1,.22,1);
            }
            .nav__item:hover::after {
                -webkit-transform-origin: center left;
                    -ms-transform-origin: center left;
                        transform-origin: center left;
                -webkit-transform: scale3d(1,1,1);
                        transform: scale3d(1,1,1);
            }
            .nav__item--active::after {
                -webkit-transform-origin: center left;
                    -ms-transform-origin: center left;
                        transform-origin: center left;
                -webkit-transform: scale3d(1,1,1);
                        transform: scale3d(1,1,1);
                background: var(--c-pri);
            }
            .nav__link,
            .nav__button {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                gap: 0.8rem;
                font-size: 1.4rem;
                line-height: 8rem;
                padding: 0 0.4rem;
                color: var(--c-fg);
            }
            .nav__item--active .nav__link,
            .nav__item--active .nav__button {
                color: var(--c-pri);
            }
                .nav__button-text {

                }
                .nav__button-icon {
                    width: 1.2rem;
                    height: 1.2rem;
                    fill: var(--c-55);
                    -webkit-transition: fill 0.3s ease, -webkit-transform 0.3s ease;
                    transition: fill 0.3s ease, -webkit-transform 0.3s ease;
                    -o-transition: transform 0.3s ease, fill 0.3s ease;
                    transition: transform 0.3s ease, fill 0.3s ease;
                    transition: transform 0.3s ease, fill 0.3s ease, -webkit-transform 0.3s ease;
                }
                .nav__button:hover .nav__button-icon,
                .nav__button[aria-expanded="true"] .nav__button-icon {
                    fill: var(--c-pri);
                }
                .nav__button[aria-expanded="true"] .nav__button-icon {
                    -webkit-transform: rotate(180deg);
                        -ms-transform: rotate(180deg);
                            transform: rotate(180deg);
                }
            .nav__sub {
                position: absolute;
                top: calc(100% + 1.6rem);
                left: 50%;
                border: .1rem solid var(--c-55);
                background: var(--c-bd-15);
                -webkit-backdrop-filter: saturate(180%) blur(1.6rem);
                backdrop-filter: saturate(180%) blur(1.6rem);
                border-radius: 0.8rem;
                -webkit-box-shadow: 0 0.4rem 1.6rem rgba(0,0,0,0.1);
                        box-shadow: 0 0.4rem 1.6rem rgba(0,0,0,0.1);
                -webkit-transform: translate3d(-50%,1.6rem,0);
                        transform: translate3d(-50%,1.6rem,0);
                opacity: 0;
                visibility: hidden;
                -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
                transition: opacity 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
                -o-transition: opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease;
                transition: opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease;
                transition: opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease, -webkit-transform 0.3s ease;
            }
            .nav__sub[hidden] {
                display: block;
            }
            .nav__button[aria-expanded="true"] + .nav__sub {
                opacity: 1;
                visibility: visible;
                -webkit-transform: translate(-50%,0);
                    -ms-transform: translate(-50%,0);
                        transform: translate(-50%,0);
                -webkit-transition-delay: 0s;
                     -o-transition-delay: 0s;
                        transition-delay: 0s;
            }
                .nav__sub::before {
                    content: '';
                    position: absolute;
                    top: -0.8rem;
                    left: 50%;
                    -webkit-transform: translateX(-50%);
                        -ms-transform: translateX(-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-55);
                }
                .nav__sub::after {
                    content: '';
                    position: absolute;
                    top: -1.6rem;
                    left: 0;
                    width: 100%;
                    height: 1.6rem;
                }
                .nav__sub-inner {
                    min-width: 20.8rem;
                    padding: 1.6rem;
                }
                .nav__sub-inner--grid {
                    min-width: 51.2rem;
                    display: -ms-grid;
                    display: grid;
                    -ms-grid-columns: 2fr 2.4rem 1fr;
                    grid-template-columns: 2fr 1fr;
                    gap: 2.4rem;
                }
                    /* Sub List */  
                    .nav__sub-list {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                    }
                        /* .nav__sub-item:not(:last-child) {
                            border-bottom: 0.2rem dotted var(--c-20);
                        } */
                            .nav__sub-link {
                                display: block;
                                padding: 1.6rem;
                                font-size: 1.2rem;
                                color: var(--c-fg);
                                border-radius: 0.4rem;
                                -webkit-transition: background-color 0.15s linear;
                                -o-transition: background-color 0.15s linear;
                                transition: background-color 0.15s linear;
                            }
                            .nav__sub-link:hover,
                            .nav__sub-link:focus {
                                background: var(--c-55);
                            }
                    /* Sub Group */     
                    .nav__sub-group {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                    }
                        /* .nav__sub-group-item:not(:last-child) {
                            border-bottom: 0.2rem dotted var(--c-20);
                        } */
                            .nav__sub-group-link {
                                padding: 1.6rem;
                                display: block;
                                color: var(--c-fg);
                                border-radius: 0.4rem;
                                -webkit-transition: background-color 0.15s linear;
                                -o-transition: background-color 0.15s linear;
                                transition: background-color 0.15s linear;
                            }
                            .nav__sub-group-link:hover,
                            .nav__sub-group-link:focus {
                                background: var(--c-55);
                            }
                                .nav__sub-group-heading {
                                    display: block;
                                    font-size: 1.4rem;
                                    margin-bottom: 0.8rem;
                                }
                                .nav__sub-group-text {
                                    font-size: 1.2rem;
                                    line-height: 1.5;
                                    margin: 0;
                                }
                    /* Sub Social */
                    .nav__sub-social {
                        list-style: none;
                        margin: 0;
                        padding: 1.6rem;
                    }
                        .nav__sub-actions {
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            gap: 1.6rem;
                            margin-bottom: 1.6rem;
                        }
                        .nav__sub-social-item:not(:last-child) {
                            margin-bottom: .8rem;
                        }
                            .nav__sub-social-link {
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: flex;
                                -webkit-box-align: center;
                                    -ms-flex-align: center;
                                        align-items: center;
                                gap: 0.8rem;
                                padding: 0.8rem;
                                border-radius: 0.4rem;
                                -webkit-transition: background-color 0.15s linear;
                                -o-transition: background-color 0.15s linear;
                                transition: background-color 0.15s linear;
                            }
                            .nav__sub-social-link:hover {
                                background: var(--c-30);
                            }
                                .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: 960px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--c-bd);
        -webkit-backdrop-filter: saturate(180%) blur(1.6rem);
                backdrop-filter: saturate(180%) blur(1.6rem);
        -webkit-transform: translateX(100%);
            -ms-transform: translateX(100%);
                transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.86,0,0.07,1);
        transition: -webkit-transform 0.6s cubic-bezier(0.86,0,0.07,1);
        -o-transition: transform 0.6s cubic-bezier(0.86,0,0.07,1);
        transition: transform 0.6s cubic-bezier(0.86,0,0.07,1);
        transition: transform 0.6s cubic-bezier(0.86,0,0.07,1), -webkit-transform 0.6s cubic-bezier(0.86,0,0.07,1);
        overflow-y: auto;
        -ms-scroll-chaining: none;
            overscroll-behavior: contain;
    }
    .nav--open {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
    }
        .nav__list {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            width: 100%;
            padding: 8rem 4.0rem;
            gap: 0;
        }
        .nav__item {
            width: 100%;
            border-bottom: 0.2rem solid var(--c-20);
        }
        .nav__item::after {
            display: none;
        }
            .nav__link,
            .nav__button {
                width: 100%;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
                font-size: 2.4rem;
                text-transform: none;
            }
                .nav__button-icon {
                    width: 2.4rem;
                    height: 2.4rem;
                }
            .nav__sub {
                position: static;
                -webkit-transform: none;
                    -ms-transform: none;
                        transform: none;
                -webkit-box-shadow: none;
                        box-shadow: none;
                border-radius: 0;
                margin-top: 0;
                background: transparent;
                -webkit-backdrop-filter: unset;
                        backdrop-filter: unset;
                border: none;
            }
            .nav__sub[hidden] {
                display: none;
            }
            .nav__button[aria-expanded="true"] + .nav__sub {
                -webkit-transform: translate(0,0);
                    -ms-transform: translate(0,0);
                        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 {
                    -ms-grid-columns: 1fr;
                    grid-template-columns: 1fr;
                    min-width: 0;
                }
                    /* Sub List */  
                    .nav__sub-list {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                    }
                        .nav__sub-link {
                            font-size: 1.6rem;
                            padding: 2.4rem;
                        }
                    /* Sub Group */
                    .nav__sub-group {
                        padding: 0;
                    }
                        .nav__sub-group-heading {
                            font-size: 1.8rem;
                        }
                        .nav__sub-group-text {
                            font-size: 1.4rem;
                        }
                    /* Sub Social */
                    .nav__sub-social {
                        padding: 0;
                    }
                        .nav__sub-social-link {
                            padding: 1.2rem;
                        }
                            .nav__sub-social-icon {
                                width: 2.4rem;
                                height: 2.4rem;
                            }
                            .nav__sub-social-text {
                                font-size: 1.6rem;
                            }
}

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

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $HERO
--------------------------------------------------------|
--------------------------------------------------------|
*/
.hero {
    position: relative;
    display: -ms-grid;
    display: grid;
    width: var(--w-xl);
    margin: 0 auto;
    background-size: cover;
    background-position: bottom center;
    background-repeat: repeat;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width=%222000%22 height=%221400%22%3E%3Cg filter=%22url(%23a)%22%3E%3Cpath fill=%22%2300121F%22 d=%22M-1000-700h4000v2800h-4000z%22%2F%3E%3Cpath d=%22m904.467 94.897-464 1450 90 72 1360-1366%22 fill=%22%2300467C%22%2F%3E%3Cpath d=%22m1470.826-673.427-1097 178 284 1389 1149-1356%22 fill=%22%2300467C%22%2F%3E%3Cpath d=%22m1430 423-633 963 933 567 537-1046%22 fill=%22%2300121F%22%2F%3E%3Cpath d=%22m161 260-684 1270 498 321 1009-720M1817 1120 397 2630l1068 67 371-499%22 fill=%22%2300121F%22%2F%3E%3Cpath d=%22M2282 1280 992 2575l1316 374 254-1522%22 fill=%22%2300121F%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3Cfilter id=%22a%22 x=%22-200%22 y=%22-200%22 width=%222400%22 height=%221800%22 filterUnits=%22userSpaceOnUse%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-opacity=%220%22 result=%22BackgroundImageFix%22%2F%3E%3CfeBlend in=%22SourceGraphic%22 in2=%22BackgroundImageFix%22 result=%22shape%22%2F%3E%3CfeGaussianBlur stdDeviation=%22200%22 result=%22effect1_foregroundBlur_1_2%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}
[data-theme="light"] .hero {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width=%222000%22 height=%221400%22%3E%3Cg filter=%22url(%23a)%22%3E%3Cpath fill=%22%23D9EAF8%22 d=%22M-1000-700h4000v2800h-4000z%22%2F%3E%3Cpath d=%22M1025-288-306 924l201 68L1111-124%22 fill=%22%2366ACE2%22%2F%3E%3Cpath d=%22M673-225 163 1059l700 241 786-910%22 fill=%22%2366ACE2%22%2F%3E%3Cpath d=%22M2126 288 782 1159l243 490 1240-613%22 fill=%22%23D9EAF8%22%2F%3E%3Cpath d=%22m156 409-489 905 436 536L1135 835M1115 1050 269 2419l157 39 1361-332%22 fill=%22%23D9EAF8%22%2F%3E%3Cpath d=%22m1204 999-360 290 126 1398 1413-822%22 fill=%22%23D9EAF8%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3Cfilter id=%22a%22 x=%22-200%22 y=%22-200%22 width=%222400%22 height=%221800%22 filterUnits=%22userSpaceOnUse%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-opacity=%220%22 result=%22BackgroundImageFix%22%2F%3E%3CfeBlend in=%22SourceGraphic%22 in2=%22BackgroundImageFix%22 result=%22shape%22%2F%3E%3CfeGaussianBlur stdDeviation=%22200%22 result=%22effect1_foregroundBlur_1_2%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}
    .hero__particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,18,31,1)), color-stop(50%, rgba(0,18,31,0)), to(rgba(0,18,31,0)));
        background: -o-linear-gradient(bottom, rgba(0,18,31,1) 0%, rgba(0,18,31,0) 50%, rgba(0,18,31,0) 100%);
        background: linear-gradient(0deg, rgba(0,18,31,1) 0%, rgba(0,18,31,0) 50%, rgba(0,18,31,0) 100%);
    }
    [data-theme="light"] .hero::after {
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(217,234,248,1)), color-stop(50%, rgba(217,234,248,0)), to(rgba(217,234,248,0)));
        background: -o-linear-gradient(bottom, rgba(217,234,248,1) 0%, rgba(217,234,248,0) 50%, rgba(217,234,248,0) 100%);
        background: linear-gradient(0deg, rgba(217,234,248,1) 0%, rgba(217,234,248,0) 50%, rgba(217,234,248,0) 100%);
    }
    .hero__content {
        z-index: 1;
        position: relative;
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: 1/1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: 0 auto;
        padding: 20.0rem 0 12.0rem;
        width: var(--w-sm);
        text-align: center;
    }
    .hero--arc .hero__content {
        padding-bottom: 8.0rem;
    }
    .hero:has(.hero__img-wrap) .hero__content {
        color: var(--c-w);
    }
        .hero__ol {
            font-size: 2.4rem;
            margin-bottom: .8rem;
        }
        .hero__hl {
            margin: 0 0 2.4rem;
        }
        .hero--home .hero__hl {
            font-size: 8.0rem;
        }
        .hero__sl {
            
        }
        .hero__details {
            
        }
        .hero__actions {
            
            display: -webkit-box;
            
            display: -ms-flexbox;
            
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
        }
            .hero__actions-link {
                
            }
@media only screen and (max-width: 768px) {
    .hero__content {
        width: var(--w-lg);
    }
        .hero--home .hero__hl {
            font-size: 5.6rem;
        }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $FEATURES
--------------------------------------------------------|
--------------------------------------------------------|
*/
.features {
    margin-block: 16.0rem;
}
    .features__grid {
        position: relative;
        width: var(--w-lg);
        margin-inline: auto;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 2.4rem 1fr 2.4rem 1fr 2.4rem 1fr 2.4rem 1fr 2.4rem 1fr;
        grid-template-columns: repeat(6, 1fr);
        gap: 2.4rem;
    }
        .features__block {
            background: var(--c-bd-15);
            border: .1rem solid var(--c-55);
            border-radius: 2.4rem;
            padding: 4rem;
            -webkit-backdrop-filter: saturate(180%) blur(1.6rem);
            backdrop-filter: saturate(180%) blur(1.6rem);
            -webkit-transition: border-color .15s linear;
            -o-transition: border-color .15s linear;
            transition: border-color .15s linear;
        }
        .features__block--6 {
            -ms-grid-column-span: 6;
            grid-column: span 6;
        }
        .features__block--3 {
            -ms-grid-column-span: 3;
            grid-column: span 3;
        }
        .features__block--2 {
            -ms-grid-column-span: 2;
            grid-column: span 2;
        }
            a.features__block:hover {
                border-color: var(--c-pri);
            }
            .features__block iframe {
                border-radius: 2.4rem;
            }
            .features__block .vim--bg::after {
                display: none;
            }
            .features__content {
                position: relative;
                height: 100%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
                text-align: center;
            }
            .features__overline {
                display: block;
                font-size: 2.4rem;
                margin-bottom: 0.8rem;
                color: var(--c-75);
            }
            .features__title {
                margin: 0 0 2.4rem;
                color: var(--c-pri);
            }
            .features__subtitle {
                font-size: 2.4rem;
                margin-bottom: 2.4rem;
                color: var(--c-75);
            }
            .features__img {
                width: 100%;
                height: auto;
                margin-top: auto;
            }
            .features__details {
                font-size: 1.6rem;
                line-height: 1.5;
                margin-bottom: 2.4rem;
                color: var(--c-fg);
            }
            .features__actions {
                margin-top: auto;
            }
            .features__steps {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
                gap: 2.4rem;
            }
            .features__step {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                gap: 2.4rem;
                text-align: left;
            }
            .features__step-icon {
                width: 4.8rem;
                height: 4.8rem;
                background: var(--c-pri);
                color: var(--c-w);
                border-radius: 50%;
                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;
                font-size: 2.4rem;
                font-weight: 700;
                -ms-flex-negative: 0;
                    flex-shrink: 0;
            }
            .features__step-title {
                font-size: 2.4rem;
                margin: 0 0 0.8rem;
                color: var(--c-pri);
            }
            .features__products {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                gap: 2.4rem;
                margin: 4rem 0;
                -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
            }
            .features__product {
                padding: 1.6rem 3.2rem;
                background: var(--c-15);
                border: .1rem solid var(--c-55);
                border-radius: 2.4rem;
                font-size: 1.6rem;
                font-weight: 700;
                color: var(--c-pri);
            }
            .features__map {
                margin-inline: -4rem;
            }
                .map {
                    width: 100%;
                    height: auto;
                }
                    .map__dot {
                    }
                    .map__pulse {
                        transform-box: fill-box;
                        -webkit-transform-origin: center center;
                            -ms-transform-origin: center center;
                                transform-origin: center center;
                        -webkit-animation: pulse 2s ease-out infinite;
                                animation: pulse 2s ease-out infinite;
                    }
                    @-webkit-keyframes pulse {
                        0% {
                            -webkit-transform: scale(1);
                                    transform: scale(1);
                            opacity: 0.8;
                        }
                        100% {
                            -webkit-transform: scale(4);
                                    transform: scale(4);
                            opacity: 0;
                        }
                    }
                    @keyframes pulse {
                        0% {
                            -webkit-transform: scale(1);
                                    transform: scale(1);
                            opacity: 0.8;
                        }
                        100% {
                            -webkit-transform: scale(4);
                                    transform: scale(4);
                            opacity: 0;
                        }
                    }
@media only screen and (max-width: 768px) {
    .features__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
        .features__block--6,
        .features__block--3,
        .features__block--2 {
            -ms-grid-column-span: 1;
            grid-column: span 1;
        }
        .features__actions {
            margin-top: 2.4rem;
        }
        .features__img {
            max-width: 50%;
            margin-inline: auto;
        }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $CTA-BANNER
--------------------------------------------------------|
--------------------------------------------------------|
*/
.cta-banner {
    position: relative;
    margin: 8.0rem auto;
    width: var(--w-lg);
}
    .cta-banner__inner {
        background: var(--c-bd-15);
        border: .1rem solid var(--c-55);
        border-radius: 2.4rem;
        padding: 4rem;
        -webkit-backdrop-filter: saturate(180%) blur(1.6rem);
        backdrop-filter: saturate(180%) blur(1.6rem);
        padding: 4.0rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 4.0rem;
    }
        .cta-banner__image {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            min-width: 0;
        }
        .cta-banner__content {
            -webkit-box-flex: 3;
                -ms-flex: 3;
                    flex: 3;
        }
            .cta-banner__hl {
                margin: 0 0 1.6rem;
            }
            .cta-banner__sl {
                margin: 0;
            }
        .cta-banner .button {
            margin-left: auto;
            -ms-flex-item-align: center;
                -ms-grid-row-align: center;
                align-self: center;
        }
@media only screen and (max-width: 768px) {
    .cta-banner__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
        gap: 0;
    }
        .cta-banner__image {
            max-width: 50%;
            -webkit-box-flex: 1;
                -ms-flex: auto;
                    flex: auto;
        }
        .cta-banner .button {
            margin-left: 0;
            margin-top: 4.0rem;
        }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $PROCESS
--------------------------------------------------------|
--------------------------------------------------------|
*/
.process {
    padding-block: 16rem;
    margin-block: -4.0rem;
    margin-inline: auto;
    position: relative;
}
    .process__star {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        height: 100%;
        width: auto;
        color: var(--c-20);
    }
        .process-swiper {
            position: relative;
            overflow: hidden;
        }
            .process-swiper .swiper-arr {
                left: 4.8rem;
            }
            .process-swiper .swiper-arr--next {
                left: auto;
                right: 4.8rem;
            }
            .process-swiper .swiper-pagination {
                bottom: 5.6rem !important;
            }
            .process__content {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                text-align: center;
                padding: 0rem 4rem 12rem;
            }
                .process__icon {
                    width: 25.6rem;
                    height: 25.6rem;
                }
                .process__title {
                    margin: 0 0 1.6rem;
                    color: var(--c-pri);
                }
                .process__details {
                    font-size: 1.6rem;
                    line-height: 1.5;
                    color: var(--c-fg);
                    margin: 0;
                    max-width: 48rem;
                }
    .process .swiper-arr::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 100%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 30.4rem;
        height: .2rem;
        border-top: .2rem dashed var(--c-55);
        -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), color-stop(15%, rgba(0, 0, 0, 1)), color-stop(85%, rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
        -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
                mask-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), color-stop(15%, rgba(0, 0, 0, 1)), color-stop(85%, rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
                mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    }
    .process .swiper-arr--next::before {
        left: auto;
        right: 100%;
    }
@media only screen and (max-width: 768px) {
    .process {
        width: var(--w-lg);
        margin-block: -16rem;
    }
    .process__title {
        font-size: 2.4rem;
    }
    .process .swiper-arr::before {
        display: none;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $FAQ
--------------------------------------------------------|
--------------------------------------------------------|
*/
.faq {
    width: var(--w-md);
    margin: 16.0rem auto;
}
    .faq__title {
        margin: 0 0 2.4rem;
    }
    .faq__grid {
        display: -ms-grid;
        display: grid;
    }
        .faq__item {
            border-bottom: .2rem solid var(--c-20);
        }
        .faq__item:first-child {
            border-top: .2rem solid var(--c-20);
        }
            .faq__question {
                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;
            }
                .faq__question::after {
                    content: "+";
                    position: absolute;
                    right: 0;
                    top: 50%;
                    -webkit-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                            transform: translateY(-50%);
                    font-size: 2.4rem;
                    color: var(--c-55);
                    -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
                    transition: color 0.3s ease, -webkit-transform 0.3s ease;
                    -o-transition: transform 0.3s ease, color 0.3s ease;
                    transition: transform 0.3s ease, color 0.3s ease;
                    transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
                }
                .faq__question:hover::after,
                .faq__item[open] .faq__question::after {
                    color: var(--c-pri);
                }
                .faq__item[open] .faq__question::after {
                    -webkit-transform: translateY(-50%) rotate(45deg);
                        -ms-transform: translateY(-50%) rotate(45deg);
                            transform: translateY(-50%) rotate(45deg);
                }
                .faq__item--action .faq__question::after {
                    display: none;
                }
            .faq__answer {
                padding: 0 4.8rem 3.2rem 0;
                font-size: 1.6rem;
                line-height: 1.5;
            }
        .faq__item--action {
            
        }
            .faq__item--action .faq__question {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                padding-right: 0;
            }
            .faq__item--action .button {
                
            }
@media only screen and (max-width: 768px) {
    
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $CERTIFICATIONS
--------------------------------------------------------|
--------------------------------------------------------|
*/
.certifications {
    text-align: center;
    width: var(--w-lg);
    margin-inline: auto;
    margin-block: -8.0rem 16.0rem;
}
.certifications__logos {
    width: var(--w-xl);
    margin-inline: auto;
    height: 6.4rem;
    -webkit-mask-image: -webkit-gradient(linear,left top, right top,from(rgba(0, 0, 0, 0)),color-stop(20%, rgba(0, 0, 0, 1)),color-stop(80%, rgba(0, 0, 0, 1)),to(rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to right,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 1) 20%,rgba(0, 0, 0, 1) 80%,rgba(0, 0, 0, 0) 100%);
            mask-image: -webkit-gradient(linear,left top, right top,from(rgba(0, 0, 0, 0)),color-stop(20%, rgba(0, 0, 0, 1)),color-stop(80%, rgba(0, 0, 0, 1)),to(rgba(0, 0, 0, 0)));
            mask-image: linear-gradient(to right,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 1) 20%,rgba(0, 0, 0, 1) 80%,rgba(0, 0, 0, 0) 100%);
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: auto 100%;
    
    /* Configuration variables centralized in the component */
    --logo-count: 9;
    --logo-width: 25.6rem; /* Average width of each logo including spacing */
    --animation-duration-per-logo: 12.8s; /* Time to scroll one logo */
    
    /* Calculated values */
    --logo-strip-width: calc(var(--logo-count) * var(--logo-width));
    -webkit-animation: logoStrip 
               calc(var(--logo-count) * var(--animation-duration-per-logo)) 
               linear infinite;
            animation: logoStrip 
               calc(var(--logo-count) * var(--animation-duration-per-logo)) 
               linear infinite;
}
@-webkit-keyframes logoStrip {
    from { background-position: 0 0; }
    to { background-position: calc(-1 * var(--logo-strip-width)) 0; }
}
@keyframes logoStrip {
    from { background-position: 0 0; }
    to { background-position: calc(-1 * var(--logo-strip-width)) 0; }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $MESH
--------------------------------------------------------|
--------------------------------------------------------|
*/
.mesh {
    --mesh-02: url("data:image/svg+xml;utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width=%222000%22 height=%221400%22%3E%3Cg filter=%22url(%23a)%22%3E%3Cpath fill=%22%2300121F%22 d=%22M-1000-700h4000v2800h-4000z%22%2F%3E%3Cpath d=%22m-203-376-50 1402 87 147 1487-286%22 fill=%22%2300467C%22%2F%3E%3Cpath d=%22M854-272 411 475l1213 890 289-20%22 fill=%22%2300121F%22%2F%3E%3Cpath d=%22m1018 394-91 54 756 1341 688-857M114 553l-452 1109 1080 459 454-616%22 fill=%22%2300121F%22%2F%3E%3Cpath d=%22m1214 1234-941 169 62 1333 1433-7%22 fill=%22%2300121F%22%2F%3E%3Cpath d=%22m2120 973-1286 49 1138 1406 311-833%22 fill=%22%2300467C%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3Cfilter id=%22a%22 x=%22-200%22 y=%22-200%22 width=%222400%22 height=%221800%22 filterUnits=%22userSpaceOnUse%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-opacity=%220%22 result=%22BackgroundImageFix%22%2F%3E%3CfeBlend in=%22SourceGraphic%22 in2=%22BackgroundImageFix%22 result=%22shape%22%2F%3E%3CfeGaussianBlur stdDeviation=%22200%22 result=%22effect1_foregroundBlur_1_2%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
    --mesh-03: url("data:image/svg+xml;utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width=%222000%22 height=%221400%22%3E%3Cg filter=%22url(%23a)%22%3E%3Cpath fill=%22%2300121F%22 d=%22M-1000-700h4000v2800h-4000z%22%2F%3E%3Cpath d=%22m320-213-622 930 188 666L1178 271%22 fill=%22%2300121F%22%2F%3E%3Cpath d=%22M1112-228 127 100l1184 1278 315-1130%22 fill=%22%2300121F%22%2F%3E%3Cpath d=%22M1298 478 935 998l1341 1062 116-422%22 fill=%22%2300121F%22%2F%3E%3Cpath d=%22M843 434-288 1562l1345 242 138-1247%22 fill=%22%2300467C%22%2F%3E%3Cpath d=%22m379 1041-126 468 468 995 943-454%22 fill=%22%2300467C%22%2F%3E%3Cpath d=%22m1150 981-361 117 69 1357 1509-597%22 fill=%22%2300121F%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3Cfilter id=%22a%22 x=%22-200%22 y=%22-200%22 width=%222400%22 height=%221800%22 filterUnits=%22userSpaceOnUse%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-opacity=%220%22 result=%22BackgroundImageFix%22%2F%3E%3CfeBlend in=%22SourceGraphic%22 in2=%22BackgroundImageFix%22 result=%22shape%22%2F%3E%3CfeGaussianBlur stdDeviation=%22200%22 result=%22effect1_foregroundBlur_1_2%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
}
[data-theme="light"] .mesh {
    --mesh-02: url("data:image/svg+xml;utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width=%222000%22 height=%221400%22%3E%3Cg filter=%22url(%23a)%22%3E%3Cpath fill=%22%23D9EAF8%22 d=%22M-1000-700h4000v2800h-4000z%22%2F%3E%3Cpath d=%22m-203-376-50 1402 87 147 1487-286%22 fill=%22%2366ACE2%22%2F%3E%3Cpath d=%22M854-272 411 475l1213 890 289-20%22 fill=%22%23D9EAF8%22%2F%3E%3Cpath d=%22m1018 394-91 54 756 1341 688-857M114 553l-452 1109 1080 459 454-616%22 fill=%22%23D9EAF8%22%2F%3E%3Cpath d=%22m1214 1234-941 169 62 1333 1433-7%22 fill=%22%23D9EAF8%22%2F%3E%3Cpath d=%22m2120 973-1286 49 1138 1406 311-833%22 fill=%22%2366ACE2%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3Cfilter id=%22a%22 x=%22-200%22 y=%22-200%22 width=%222400%22 height=%221800%22 filterUnits=%22userSpaceOnUse%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-opacity=%220%22 result=%22BackgroundImageFix%22%2F%3E%3CfeBlend in=%22SourceGraphic%22 in2=%22BackgroundImageFix%22 result=%22shape%22%2F%3E%3CfeGaussianBlur stdDeviation=%22200%22 result=%22effect1_foregroundBlur_1_2%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
    --mesh-03: url("data:image/svg+xml;utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width=%222000%22 height=%221400%22%3E%3Cg filter=%22url(%23a)%22%3E%3Cpath fill=%22%23D9EAF8%22 d=%22M-1000-700h4000v2800h-4000z%22%2F%3E%3Cpath d=%22m320-213-622 930 188 666L1178 271%22 fill=%22%23D9EAF8%22%2F%3E%3Cpath d=%22M1112-228 127 100l1184 1278 315-1130%22 fill=%22%23D9EAF8%22%2F%3E%3Cpath d=%22M1298 478 935 998l1341 1062 116-422%22 fill=%22%23D9EAF8%22%2F%3E%3Cpath d=%22M843 434-288 1562l1345 242 138-1247%22 fill=%22%2366ACE2%22%2F%3E%3Cpath d=%22m379 1041-126 468 468 995 943-454%22 fill=%22%2366ACE2%22%2F%3E%3Cpath d=%22m1150 981-361 117 69 1357 1509-597%22 fill=%22%23D9EAF8%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3Cfilter id=%22a%22 x=%22-200%22 y=%22-200%22 width=%222400%22 height=%221800%22 filterUnits=%22userSpaceOnUse%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-opacity=%220%22 result=%22BackgroundImageFix%22%2F%3E%3CfeBlend in=%22SourceGraphic%22 in2=%22BackgroundImageFix%22 result=%22shape%22%2F%3E%3CfeGaussianBlur stdDeviation=%22200%22 result=%22effect1_foregroundBlur_1_2%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}
.mesh--01 { background-image: var(--mesh-01); }
.mesh--02 { background-image: var(--mesh-02); }
.mesh--03 { background-image: var(--mesh-03); }
    .mesh::before {
        content: '';
        position: absolute;
        inset: 0;
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,18,31,1)), color-stop(50%, rgba(0,18,31,0)), to(rgba(0,18,31,1)));
        background: -o-linear-gradient(bottom, rgba(0,18,31,1) 0%, rgba(0,18,31,0) 50%, rgba(0,18,31,1) 100%);
        background: linear-gradient(0deg, rgba(0,18,31,1) 0%, rgba(0,18,31,0) 50%, rgba(0,18,31,1) 100%);
    }
    [data-theme="light"] .mesh::before {
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(217,234,248,1)), color-stop(50%, rgba(217,234,248,0)), to(rgba(217,234,248,1)));
        background: -o-linear-gradient(bottom, rgba(217,234,248,1) 0%, rgba(217,234,248,0) 50%, rgba(217,234,248,1) 100%);
        background: linear-gradient(0deg, rgba(217,234,248,1) 0%, rgba(217,234,248,0) 50%, rgba(217,234,248,1) 100%);
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $SECTION
--------------------------------------------------------|
--------------------------------------------------------|
*/
.section {
    position: relative;
}
    .section__inner {
        position: relative;
        margin: 16.0rem auto;
        width: var(--w-lg);
    }
        .section__content {
            width: var(--w-md);
            margin-inline: auto;
            text-align: center;
        }
            .section__title {
                margin: 0 0 2.4rem;
            }
            .section__details {
                font-size: 1.6rem;
                line-height: 1.5;
                color: var(--c-fg);
                }
        .section__actions {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            gap: 2.4rem;
            margin-top: 4.0rem;;
        }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $TITLE
--------------------------------------------------------|
--------------------------------------------------------|
*/
.title {
    position: relative;
    text-align: center;
    background: var(--c-15);
    padding-block: 20.0rem 12.0rem;
}
    .title__heading {
        width: var(--w-md);
        margin: 0 auto;
    }
    .title__switcher {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 50%);
            -ms-transform: translate(-50%, 50%);
                transform: translate(-50%, 50%);
    }
        .title__switcher .button:first-child {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            margin-right: -0.1rem; /* Overlap border slightly */
        }
        .title__switcher .button:last-child {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
        .title__switcher-button.button,
        .title__switcher-button.button:hover {
            background: var(--c-bg);
        }
        .title__switcher-button--active.button,
        .title__switcher-button--active.button:hover {
            background: var(--c-30);
        }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $CONTENT
--------------------------------------------------------|
--------------------------------------------------------|
*/
.content {
    margin-block: 8.0rem 16.0rem;
    margin-inline: auto;
}
.content--utility {
    width: var(--w-xs);
}
.hero + .content,
.hero + .content > *:first-child {
    margin-top: 0rem;
  }
    .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);
    }
    .content h2 {
        background: #0075CE;
        background: -webkit-gradient(linear, right bottom, left top, from(#0075CE), to(#9664ac));
        background: -o-linear-gradient(bottom right, #0075CE 0%, #9664ac 100%);
        background: linear-gradient(to top left, #0075CE 0%, #9664ac 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    /* 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,
    ol.wp-block-list {
        line-height: 1.5;
        padding: 0;
        margin: 0 0 2.4rem;
        list-style: none;
    }
        ul.wp-block-list li,
        ol.wp-block-list li {
            border-left: .2rem solid var(--c-30);
            margin: 0;
            padding: .8rem 1.6rem .8rem 2.4rem;
            position: relative;
        }
            ul.wp-block-list li:before,
            ol.wp-block-list li:before {
                content: '';
                position: absolute;
                top: 2.0rem;
                left: 0;
                height: .2rem;
                width: 1.6rem;
                background: var(--c-30);
            }
    /* Separator Styles */
    .wp-block-separator,
    hr {
        border-top: .2rem solid var(--c-pri);
        border: none;
        width: var(--w-lg);
    }
    hr.sep-collapse {
        margin-block: -8.0rem !important;
    }
    /*  */
    .wp-block-columns {
        gap: 4.0rem;
    }
    /* Post Meta */
    .post-meta {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 8.0rem;
        width: var(--w-md);
    }
@media only screen and (max-width: 781px) {
    .wp-block-columns--reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $SINGLE
--------------------------------------------------------|
--------------------------------------------------------|
*/
.single-title {
    position: relative;
    background: center / cover no-repeat scroll;
    background-color: var(--c-15);
    padding-block: 28.0rem 12.0rem;
}
    .single-title__inner {
        width: var(--w-md);
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 4.0rem;
    }
        .single-title__meta {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            gap: .8rem;
        }
            .single-title__date {
                font-weight: 700;
                margin-top: .8rem;
            }
            .single-title__category {
                color: var(--c-pri);
            }
        .single-title__heading {
            -webkit-box-flex: 7;
                -ms-flex: 7;
                    flex: 7;
            font-size: 4.8rem;
            line-height: 1.25;
            margin: 0;
        }
.content--single h2.wp-block-heading {
    font-size: 3.2rem;
}
.content--single h3.wp-block-heading {
    font-size: 2.4rem;
}
.content--single h4.wp-block-heading {
    font-size: 2.0rem;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $ARCHIVE
--------------------------------------------------------|
--------------------------------------------------------|
*/
.arc {
    width: var(--w-xl);
    margin-inline: auto;
}
    .arc--discover {
        margin-top: 8.0rem;
    }
    .arc__arrows {
        margin: 8.0rem auto;
        width: var(--w-sm);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .arc__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 4.0rem;
        padding: 5.6rem 0;
        margin: 0 auto;
        width: var(--w-md);
        border-bottom: .2rem solid var(--c-20);
    }
    .arc--discover .arc__item:first-child {
        border-top: .2rem solid var(--c-20);
    }
        .arc__item-meta {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            gap: .8rem;
            margin-top: .8rem;
        }
            .arc__item-date {
                font-size: 1.4rem;
                font-weight: 700;
            }
            .arc__item-category {
                font-size: 1.4rem;
                color: var(--c-pri);
            }
        .arc__item-link {
            -webkit-box-flex: 7;
                -ms-flex: 7;
                    flex: 7;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            gap: 8.0rem;
        }
            .arc__item-title {
                margin: 0;
                color: var(--c-fg);
                font-size: 3.2rem;
            }
            .arc__item-arrow {
                -ms-flex-negative: 0;
                    flex-shrink: 0;
                width: 4.0rem;
                height: 4.0rem;
                border-radius: 50%;
                border: .2rem solid var(--c-pri);
                margin-left: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                    -ms-flex-pack: center;
                        justify-content: center;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                -webkit-transition: background-color .15s linear;
                -o-transition: background-color .15s linear;
                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;
                    -webkit-transition: fill .15s linear;
                    -o-transition: fill .15s linear;
                    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;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: var(--w-lg);
    }
        .arc__item-meta {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            margin-top: 0;
        }
        .arc__item-link {
            gap: 2.4rem;
        }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $ARC-NAV
--------------------------------------------------------|
--------------------------------------------------------|
*/
.arc-nav {
    width: var(--w-md);
    margin-inline: auto;
}
    .arc-nav__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: .2rem solid var(--c-20);
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 2.4rem;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
        .arc-nav__item {
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
            .arc-nav__item a {
                color: var(--c-fg);
                padding: 2.4rem 0;
            }
            .arc-nav__item--active a {
                color: var(--c-pri);
            }
            .arc-nav__item--active::after {
                content: '';
                position: absolute;
                left: 0; right: 0; bottom: -.2rem;
                height: .2rem;
                background: var(--c-pri);
            }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $ARROWS
--------------------------------------------------------|
--------------------------------------------------------|
*/
.arr {
    margin: 8.0rem auto;
    width: var(--w-md);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.arr--index {
    gap: 4.0rem;
}
    .arr__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: .8rem;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .arr__item--index-next {
        margin-left: auto;
    }
        .arr__arrow {
            -ms-flex-negative: 0;
                flex-shrink: 0;
            width: 4.0rem;
            height: 4.0rem;
            border-radius: 50%;
            border: .2rem solid var(--c-pri);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-transition: background-color .15s linear;
            -o-transition: background-color .15s linear;
            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;
                -webkit-transition: fill .15s linear;
                -o-transition: fill .15s linear;
                transition: fill .15s linear;
            }
            .arr__item:hover .arr__arrow-icon,
            .arr__item:focus-within .arr__arrow-icon {
                fill: var(--c-w);
            }
        .arr__text {
            display: none;
        }
@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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.6rem;
    font-size: 1.2rem;
    line-height: 3.2rem;
    color: var(--c-w);
    -webkit-transition: background-color .15s linear;
    -o-transition: background-color .15s linear;
    transition: background-color .15s linear;
}
.notif:hover {
    background-color: var(--c-sec);
}
    .notif__text {
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
    }
    .notif__button {
        font-weight: 700;
        padding: 0 1.6rem;
        white-space: nowrap;
        background-color: var(--c-30);
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $CTA
--------------------------------------------------------|
--------------------------------------------------------|
*/
.cta {
    display: -ms-grid;
    display: grid;
    margin-inline: auto;
    margin-block: 8.0rem;
    --ar: 16/9;
    color-scheme: dark;
    color: var(--c-fg);
}
    .cta__img {
        aspect-ratio: var(--ar);
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: 1/1;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .cta__content {
        position: relative;
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: 1/1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        padding: 4.0rem;
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .75)), color-stop(40%, rgba(0, 0, 0, .1)), color-stop(80%, rgba(0, 0, 0, .1)), to(rgba(0, 0, 0, .0)));
        background: -o-linear-gradient(bottom, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .1) 80%, rgba(0, 0, 0, .0) 100%);
        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;
            -webkit-transition: -webkit-transform .6s cubic-bezier(.19,1,.22,1);
            transition: -webkit-transform .6s cubic-bezier(.19,1,.22,1);
            -o-transition: transform .6s cubic-bezier(.19,1,.22,1);
            transition: transform .6s cubic-bezier(.19,1,.22,1);
            transition: transform .6s cubic-bezier(.19,1,.22,1), -webkit-transform .6s cubic-bezier(.19,1,.22,1);
            -webkit-transform-origin: left;
                -ms-transform-origin: left;
                    transform-origin: left;
        }
        .cta__content::before {
            background: var(--c-20);
        }
        .cta__content::after {
            background: var(--c-pri);
            -webkit-transform: scaleX(0);
                -ms-transform: scaleX(0);
                    transform: scaleX(0);
        }
        .cta:hover .cta__content::after {
            -webkit-transform: scaleX(1);
                -ms-transform: scaleX(1);
                    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: -ms-grid;
    display: grid;
    -ms-grid-columns: var(--g-md);
    grid-template-columns: var(--g-md);
    gap: 2.4rem;
}
.team--pop {

}
.team--swiper {

}
    .team-member {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
        padding: 4.0rem;
        gap: 1.6rem;
        background: var(--c-bd-15);
        border: .1rem solid var(--c-55);
        border-radius: 2.4rem;
        padding: 4rem;
        -webkit-backdrop-filter: saturate(180%) blur(1.6rem);
        backdrop-filter: saturate(180%) blur(1.6rem);
        -webkit-transition: border-color .15s linear;
        -o-transition: border-color .15s linear;
        transition: border-color .15s linear;
    }
    .team--pop .team-member {
        cursor: pointer;
    }
    .team--pop .team-member:hover {
        border-color: var(--c-pri);
    }
        .team-member__photo {
            width: 100%;
            height: auto;
            border-radius: 50%;
            -webkit-box-shadow: 0 0 0 .2rem var(--c-bg), 0 0 0 .4rem var(--c-pri);
                    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%;
                -o-object-fit: cover;
                   object-fit: cover;
                border-radius: 50%;
            }
        .team-member__content {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            gap: .4rem;
        }
            .team-member__name {
                margin: 0;
                font-size: 2.4rem;
            }
            .team-member__title {
                margin: 0;
                color: var(--c-75);
                line-height: 1.25;
                font-size: 1.2rem;
            }
            .team-member__bio {
                margin: 0;
            }
                .team-member__bio p:last-child {
                    margin-bottom: 0;
                }
    /* Team-Swiper overrides */
    .team-swiper {
        /* background: var(--c-15);
        border-radius: .8rem; */
    }
    .team-swiper .team-member {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        text-align: left;
        padding: 8rem;
        gap: 4rem;
        background: transparent;
        border-radius: 0;
        border: none;
        -webkit-backdrop-filter: none;
                backdrop-filter: none;
    }
        .team-swiper .team-member__photo {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            -ms-flex-item-align: start;
                align-self: flex-start;
        }
        .team-swiper .team-member__content {
            -webkit-box-flex: 2;
                -ms-flex: 2;
                    flex: 2;
            gap: 0;
        }
            .team-swiper .team-member__name {
                font-size: 3.2rem;
            }
            .team-swiper .team-member__title {
                font-size: 1.6rem;
                margin: .8rem 0 2.4rem;
            }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $TESTIMONIALS
--------------------------------------------------------|
--------------------------------------------------------|
*/
.testimonials {
    margin-inline: auto;
    margin-block: 8.0rem;
}
.testimonials--grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2.4rem;
}
.testimonials--swiper {

}
    .testimonials-swiper {
        padding-bottom: 6.4rem;
    }
    .testimonials-swiper .swiper-pagination {
        bottom: 0 !important;
    }
    .testimonials .swiper-slide {
        height: auto;
    }
    .testimonial {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        height: 100%;
        text-align: center;
        padding: 4.0rem;
        gap: 2.4rem;
        background: var(--c-bd-15);
        border: .1rem solid var(--c-55);
        border-radius: 2.4rem;
        padding: 4rem;
        -webkit-backdrop-filter: saturate(180%) blur(1.6rem);
        backdrop-filter: saturate(180%) blur(1.6rem);
    }
        .testimonial__photo {
            width: 12.0rem;
            height: 12.0rem;
            border-radius: 50%;
            overflow: hidden;
            -webkit-box-shadow: 0 0 0 .2rem var(--c-bg), 0 0 0 .4rem var(--c-pri);
                    box-shadow: 0 0 0 .2rem var(--c-bg), 0 0 0 .4rem var(--c-pri);
            display: none;
        }
            .testimonial__photo-img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                   object-fit: cover;
                border-radius: 50%;
            }
        .testimonial__stars {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: .4rem;
        }
            .testimonial__star {
                width: 1.6rem;
                height: 1.6rem;
                fill: var(--c-pri);
            }
        .testimonial__quote {
            line-height: 1.5;
            margin: 0;
            font-style: italic;
            text-wrap: pretty;
        }
        .testimonial__content {
            margin-top: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            gap: .4rem;
        }
            .testimonial__name {
                font-size: 1.6rem;
                margin: 0;
            }
            .testimonial__title {
                margin: 0;
                font-size: 1.2rem;
            }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $GAL
--------------------------------------------------------|
--------------------------------------------------------|
*/
.gal-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10.4rem, 1fr));
    gap: 1.6rem;
    margin-inline: auto;
    margin-block: 8.0rem;
    --ar: 16/9;
}
    .gal-grid a {

    }
        .gal-grid img {
            aspect-ratio: var(--ar);
            -o-object-fit: cover;
               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 {
            -o-object-fit: cover;
               object-fit: cover;
            width: 100%;
            height: 100%;
            border: .1rem solid var(--c-55);
            border-radius: 2.4rem;
        }
        .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;
        -webkit-transition: opacity .15s linear;
        -o-transition: opacity .15s linear;
        transition: opacity .15s linear;
    }
    .gal-swiper--thumbs-nav .swiper-slide:last-child {
        padding-right: 0;
    }
    .gal-swiper--thumbs-nav .swiper-slide-thumb-active {
        opacity: 1;
    }
        .gal-swiper--thumbs-nav .swiper-slide img {
            aspect-ratio: var(--ar);
        }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $SWIPER-ARR
--------------------------------------------------------|
--------------------------------------------------------|
*/
.swiper-arr {
    z-index: 1;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 2.4rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 4.0rem;
    height: 4.0rem;
    border-radius: 50%;
    border: .2rem solid var(--c-pri);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: background-color .15s linear;
    -o-transition: background-color .15s linear;
    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;
        -webkit-transition: fill .15s linear;
        -o-transition: fill .15s linear;
        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: 1.6rem !important;
        height: 1.6rem !important;
        background: var(--c-pri) !important;
        opacity: .25 !important;
    }
    .swiper-pagination-bullet-active {
        background: var(--c-pri) !important;
        opacity: 1 !important;
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $FOOTER
--------------------------------------------------------|
--------------------------------------------------------|
*/
.ftr {
    background: var(--c-15);
    padding-block: 12.0rem;
    font-size: 1.2rem;
    width: var(--w-xl);
    margin-inline: auto;
}
    .ftr a {
        text-decoration: underline;
        -webkit-text-decoration-style: dotted;
                text-decoration-style: dotted;
        text-underline-offset: .5em;
        -webkit-text-decoration-color: var(--c-30);
                text-decoration-color: var(--c-30);
        text-decoration-thickness: .2rem;
        -webkit-transition: -webkit-text-decoration-color .15s linear;
        transition: -webkit-text-decoration-color .15s linear;
        -o-transition: text-decoration-color .15s linear;
        transition: text-decoration-color .15s linear;
        transition: text-decoration-color .15s linear, -webkit-text-decoration-color .15s linear;
    }
    .ftr a:hover {
        -webkit-text-decoration-color: var(--c-55);
                text-decoration-color: var(--c-55);
    }
    .ftr__inner {
        width: var(--w-lg);
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 8.0rem;
    }
        .ftr__rolo {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            gap: 4.0rem;
        }
            .ftr__rolo-item {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
                gap: .8rem;
            }
                .ftr__rolo-title {
                    font-weight: 700;
                }
                .ftr__rolo-link {

                }
        .ftr__colophon {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
        }
            .ftr__colophon-cr {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                gap: 1.6rem;
            }
            .ftr__colophon-by {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        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;
                        -webkit-animation-delay: 2s;
                                animation-delay: 2s;
                        -webkit-animation-duration: 4s;
                                animation-duration: 4s;
                        -webkit-animation-iteration-count: infinite;
                                animation-iteration-count: infinite;
                        -webkit-animation-direction: alternate;
                                animation-direction: alternate;
                        -webkit-animation-timing-function: step-end;
                                animation-timing-function: step-end;
                    }
                    .pix__01 { visibility: visible; -webkit-animation-name: slide1; animation-name: slide1; }
                    .pix__02 { -webkit-animation-name: slide2; animation-name: slide2; }
                    .pix__03 { -webkit-animation-name: slide3; animation-name: slide3; }
                    .pix__04 { -webkit-animation-name: slide4; animation-name: slide4; }
                    @-webkit-keyframes slide1 { 0%, 45% { visibility: visible; } 45%, 100% { visibility: hidden; } }
                    @keyframes slide1 { 0%, 45% { visibility: visible; } 45%, 100% { visibility: hidden; } }
                    @-webkit-keyframes slide2 { 0%, 45% { visibility: hidden; } 45%, 50% { visibility: visible; } 50%, 100% { visibility: hidden; } }
                    @keyframes slide2 { 0%, 45% { visibility: hidden; } 45%, 50% { visibility: visible; } 50%, 100% { visibility: hidden; } }
                    @-webkit-keyframes slide3 { 0%, 50% { visibility: hidden; } 50%, 55% { visibility: visible; } 55%, 100% { visibility: hidden; } }
                    @keyframes slide3 { 0%, 50% { visibility: hidden; } 50%, 55% { visibility: visible; } 55%, 100% { visibility: hidden; } }
                    @-webkit-keyframes slide4 { 0%, 55% { visibility: hidden; } 55%, 100% { visibility: visible; } }
                    @keyframes slide4 { 0%, 55% { visibility: hidden; } 55%, 100% { visibility: visible; } }
@media only screen and (max-width: 768px) {
    .ftr {
        font-size: 1.4rem;
    }
    .ftr__rolo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }
    .ftr__colophon {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 4.0rem;
    }
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $SEARCH
--------------------------------------------------------|
--------------------------------------------------------|
*/
.s-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            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;
        -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
        transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
        -o-transition: transform 0.2s ease, box-shadow 0.2s ease;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    }
    .s-results__item:hover {
        -webkit-transform: translateY(-.4rem);
            -ms-transform: translateY(-.4rem);
                transform: translateY(-.4rem);
        -webkit-box-shadow: 0 .4rem 1.6rem var(--c-20);
                box-shadow: 0 .4rem 1.6rem var(--c-20);
    }
        .s-results__item-link {
            display: block;
            padding: 1.6rem;
            color: inherit;
            text-decoration: none;
            border: .2rem solid var(--c-20);
            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: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            gap: .8rem;
        }
            .s-results__pagination .page-numbers {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                    -ms-flex-pack: center;
                        justify-content: center;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                width: 2.4rem;
                height: 2.4rem;
                border-radius: .4rem;
                background-color: var(--c-15);
            }
            .s-results__pagination .prev,
            .s-results__pagination .next {
                display: none;
            }
.s-results-none {
    text-align: center;
    margin-block: 8.0rem;
}

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $CAREERS
--------------------------------------------------------|
--------------------------------------------------------|
*/
.careers {
        
}
    .careers__item {
        margin-bottom: 1.6rem;
        border: .1rem solid var(--c-20);
    }
        .careers__summary {
            width: 100%;
            padding: 1.6rem 2rem;
            background: var(--c-15);
            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-20);
            }
            .careers__item[open] .careers__summary {
                background: var(--c-20);
            }
        .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);
            }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $VIDEO
--------------------------------------------------------|
--------------------------------------------------------|
*/
.video {
    cursor: pointer;
    position: relative;
    width: var(--w-lg);
    border: .1rem solid var(--c-55);
    margin: 0 auto 16.0rem;
    border-radius: 2.4rem;
    overflow: hidden;
}
    .video__trigger {
        pointer-events: none;
        position: absolute;
        inset: 0;
        display: -ms-grid;
        display: grid;
        -webkit-transition: opacity .3s ease, visibility .3s ease;
        -o-transition: opacity .3s ease, visibility .3s ease;
        transition: opacity .3s ease, visibility .3s ease;
    }
        .video__trigger .vim--bg {
            pointer-events: none;
        }
            .video__trigger .vim--bg::after {
                display: none;
            }
        .video__play {
            color: var(--c-w);
            -ms-grid-row: 1;
            -ms-grid-column: 1;
            grid-area: 1/1;
            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;
        }
            .video__play-icon {
                position: relative;
                width: 10.4rem;
                height: 10.4rem;
                -ms-grid-row: 1;
                -ms-grid-column: 1;
                grid-area: 1/1;
                border-radius: 50%;
                padding: .8rem;
            }
            .video__loading-icon {
                display: none;
                width: 104px;
                height: 104px;
                -ms-grid-row: 1;
                -ms-grid-column: 1;
                grid-area: 1/1;
                -webkit-animation: spin 1s linear infinite;
                        animation: spin 1s linear infinite;
                fill: currentColor;
            }
        @-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); } }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $VIMEO
--------------------------------------------------------|
--------------------------------------------------------|
*/
.vim {
    position: relative;
    --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%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        min-height: 100%;
        min-width: 100%;
        max-width: none;
        opacity: 0;
        -webkit-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }
    .vim--bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .75)), color-stop(40%, rgba(0, 0, 0, .1)), color-stop(80%, rgba(0, 0, 0, .1)), to(rgba(0, 0, 0, .5)));
        background: -o-linear-gradient(bottom, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .1) 80%, rgba(0, 0, 0, .5) 100%);
        background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .1) 80%, rgba(0, 0, 0, .5) 100%);
    }
.vim--content {
    
}
    .vim--content .vim__iframe {
        width: 100%;
    }
    @media (prefers-reduced-motion: reduce) {
        .vim--bg .vim__iframe {
            display: none;
        }
    }

/*
--------------------------------------------------------|
--------------------------------------------------------|
--------------------------------------------------------| $POP
--------------------------------------------------------|
--------------------------------------------------------|
*/
.pop {
    z-index: 900;
    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;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 4.0rem 0;
    background-color: var(--c-bd-15);
    -webkit-backdrop-filter: saturate(180%) blur(1.6rem);
    backdrop-filter: saturate(180%) blur(1.6rem);
    overflow-y: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, left 0s ease 0.3s;
    -o-transition: opacity 0.3s ease, left 0s ease 0.3s;
    transition: opacity 0.3s ease, left 0s ease 0.3s;
}
.pop--active {
    left: 0;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease, left 0s ease 0s;
    -o-transition: opacity 0.3s ease, left 0s ease 0s;
    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-bd-15);
        border: .1rem solid var(--c-55);
        border-radius: 2.4rem;
        width: var(--w-xs);
        -webkit-transform: scale3d(0.9, 0.9, 1);
                transform: scale3d(0.9, 0.9, 1);
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }
    .pop--active .pop__item {
        -webkit-transform: scale3d(1, 1, 1);
                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: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
        }
            .pop__close-icon {
                width: 2.4rem;
                height: 2.4rem;
                fill: var(--c-pri);
            }
/* Pop Search */
.pop--search {

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

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

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

}
    .p-promo {
        display: block;
        outline: none;
    }
        .p-promo__img {
            max-width: 100%;
            width: 100%;
            height: auto;
            border-top-left-radius: 0.8rem;
            border-top-right-radius: 0.8rem;
        }
        .p-promo__content {
            text-align: center;
        }
            .p-promo__content-inner {
                position: relative;
                padding: 4rem;
            }
            .p-promo__content-inner:has(.p-promo__btn) {
                padding: 0 4rem 4rem;
            }
                .p-promo__btn {
                    -webkit-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                            transform: translateY(-50%);
                }
                .p-promo__title {
                    margin-top: 0;
                    text-align: center;
                    color: var(--c-fg);
                    margin-bottom: 1.6rem;
                }
                .p-promo__text {
                    text-wrap: pretty;
                    margin: 0;
                }
                .p-promo__form {
                    margin-top: 2.4rem;
                    text-align: left;
                }
                    .p-promo__form .gform_footer {
                        -webkit-box-pack: center;
                            -ms-flex-pack: center;
                                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-20);
                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;
                }
                .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-15);
                    border: 0.2rem dotted var(--c-30);
                    border-radius: 0;
                    margin-bottom: .8rem;
                    padding: 3.2rem;
                    text-align: center;
                    color: var(--c-55);
                }
                    .app .gform_wrapper.gravity-theme .gform_drop_area .button {
                        background-color: var(--c-15);
                        border: 0.2rem solid var(--c-30);
                        color: var(--c-55);
                    }
                /*Checkbox & Radio*/
                .app .gfield_checkbox,
                .app .gfield_radio {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -ms-flex-wrap: wrap;
                        flex-wrap: wrap;
                    gap: 2.4rem;
                    margin: 1.6rem 0;
                }
                    .app .gchoice {
                        position: relative;
                    }
                        .app .gform_wrapper.gravity-theme .gfield-choice-input {
                            position: absolute;
                            -webkit-appearance: none;
                               -moz-appearance: none;
                                    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: -webkit-box !important;
                            display: -ms-flexbox !important;
                            display: flex !important;
                            -webkit-box-orient: horizontal;
                            -webkit-box-direction: reverse;
                                -ms-flex-direction: row-reverse;
                                    flex-direction: row-reverse;
                            -webkit-box-pack: end;
                                -ms-flex-pack: end;
                                    justify-content: flex-end;
                            -webkit-box-align: center;
                                -ms-flex-align: center;
                                    align-items: center;
                            gap: .8rem;
                            width: 100%;
                            max-width: 100% !important;
                            font-size: 1.6rem !important;
                            cursor: pointer;
                            -webkit-transition: color .15s linear;
                            -o-transition: color .15s linear;
                            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-15);
                                width: 3.2rem;
                                height: 3.2rem;
                                border: 0.2rem solid var(--c-30);
                                z-index: 2;
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: flex;
                                -webkit-box-pack: center;
                                    -ms-flex-pack: center;
                                        justify-content: center;
                                -webkit-box-align: center;
                                    -ms-flex-align: center;
                                        align-items: center;
                                -webkit-transition: all .15s linear;
                                -o-transition: all .15s linear;
                                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-30);
            border-left: .4rem solid var(--c-30);
            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-30);
        border-radius: 0;
        -webkit-box-shadow: none;
                box-shadow: none;
        -webkit-margin-after: .8rem;
                margin-block-end: .8rem;
        -webkit-margin-before: .8rem;
                margin-block-start: .8rem;
        padding-block: 1.6rem;
        -webkit-padding-end: 1.6rem;
                padding-inline-end: 1.6rem;
        -webkit-padding-start: 4.8rem;
                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-30);
            -webkit-margin-before: .8rem !important;
                    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_title {
        color: var(--c-fg);
    }
    .app .gform_wrapper.gravity-theme .gf_progressbar_blue {
        background: var(--c-30);
    }
    .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-block;
    padding: .8rem 2.4rem;
    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: 2.4rem;
    border: .1rem solid var(--c-pri);
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: background-color .15s linear;
    -o-transition: background-color .15s linear;
    transition: background-color .15s linear;
}
.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--secondary,
input[type="submit"].button--secondary,
input[type="reset"].button--secondary,
input[type="button"].button--secondary {
    color: var(--c-fg);
    background-color: transparent;
    border-color: var(--c-pri);
 }
.button--secondary:hover,
input[type="submit"].button--secondary:hover,
input[type="reset"].button--secondary:hover,
input[type="button"].button--secondary:hover,
.button--secondary:focus,
button.button--secondary:focus,
input[type="submit"].button--secondary:focus,
input[type="reset"].button--secondary:focus,
input[type="button"].button--secondary:focus {
    background-color: var(--c-pri);
}
.button--shine,
.button--shine::before {
    position: relative;
    border-color: transparent;
    background: -o-linear-gradient(135deg, #0075CE, #9664ac, #0075CE, #9664ac);
    background: linear-gradient(-45deg, #0075CE, #9664ac, #0075CE, #9664ac);
    background-size: 600%;
    -webkit-animation: button-shine 16s linear infinite;
            animation: button-shine 16s linear infinite;
    z-index: 1;
}
    .button--shine::before {
        content: '';
        position: absolute;
        top: 0.8rem;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-filter: blur(3.2rem);
                filter: blur(3.2rem);
        opacity: 0.75;
        z-index: -1;
        -webkit-transition: opacity .15s linear;
        -o-transition: opacity .15s linear;
        transition: opacity .15s linear;
    }
    .button--shine:hover::before {
        opacity: 1;
    }
    @-webkit-keyframes button-shine {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    @keyframes button-shine {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

/*-------------------------------------| $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-15);
    border: 0.2rem solid var(--c-30);
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--c-fg);
    font: inherit;
    font-size: 1.6rem;
    padding: 0.8rem;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
    -o-transition: border-color 0.3s ease, background-color 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease;
 }
textarea {
    line-height: 1.5;
    resize: vertical;
}
select {
    background: right 1.6rem center / 1.6rem auto no-repeat scroll var(--c-15);
    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="%23002948"/></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;
}
::-webkit-input-placeholder {
    color: var(--c-55);
    opacity: 1;
}
::-moz-placeholder {
    color: var(--c-55);
    opacity: 1;
}
:-ms-input-placeholder {
    color: var(--c-55);
    opacity: 1;
}
::-ms-input-placeholder {
    color: var(--c-55);
    opacity: 1;
}
::placeholder {
    color: var(--c-55);
    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;-webkit-box-shadow:none!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}}