@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --colorB1: #002445;
    --colorB2: #00416a;
    --colorB3: #006190;
    --colorB4: #0082b6;
    --colorB5: #41a1d7;
    --colorB6: #84ccf3;
    --colorB7: #a9e3ff;

    --colorN9: #01090F;
    --colorN8: #1C2125;
    --colorN7: #373C40;
    --colorN6: #53595E;
    --colorN5: #72787D;
    --colorN4: #92989D;
    --colorN3: #B3BABF;
    --colorN2: #D6DCE2;
    --colorN1: #E1E8ED;
    --colorN05: #EDF4F9;

    --title-xl: 109px;
    --title-lg: 75px;
    --title-reg: 51px;
    --title-sm: 35px;
    --title-xs: 24px;

    --body-xl: 52px;
    --body-lg: 38px;
    --body-md: 27px;
    --body-reg: 20px;
    --body-sm: 18px;
    --body-xs: 16px;

    --spacing-xl: 4.5rem;
    --spacing-lg: 3.25rem;
    --spacing-md: 2.375rem;
    --spacing-sm: 1.688rem;
    --spacing-xs: 1.25rem;
    --spacing-xxs: 1.125rem;

    --colorMain: var(--colorB2);
    --colorMainLight: var(--colorB5);
    --colorCTA: var(--colorB4);

    --colorError: #ca0000;
    --background: #ffffff;
    --backgroundFade: #d2d1df;
    --colorGrey: #b7b7bc;
    --body-font: "Albert Sans", sans-serif;
    --title-font: "Libre Baskerville", serif;
    --section-width: calc(40vw + 96px);
    --footer-height: fit-content;
}
@media (max-width: 992px) {
    :root {
        --title-xl: 75px;
        --title-lg: 51px;
        --title-reg: 35px;
        --title-sm: 24px;
        --title-xs: 16px;

        --body-xl: 38px;
        --body-lg: 27px;
        --body-md: 20px;
        --body-reg: 18px;
        --body-sm: 14px;

        --spacing-xl: 3.25rem;
        --spacing-lg: 2.375rem;
        --spacing-md: 1.688rem;
        --spacing-sm: 1.25rem;
        --spacing-xs: 1.125rem;
        --spacing-xxs: .75rem;
    }
}
@media (max-width: 1300px) {
    :root {
        --section-width: 50vw;
    }
}

.hidden-title {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

hr {
    color: transparent;
    height: 2px;
    background: var(--colorN2);
    opacity: 1;
}

header hr {
    background: var(--colorB3);
}

body {
    min-height: calc(100 * var(--vh, 1vh));
    width: 100vw;
    overflow-x: hidden;
    background: var(--background);
    display: flex;
    flex-direction: column;
    font-size: var(--body-reg);
    font-family: var(--body-font);
}

main {
    flex-grow: 1;
}

h1 {
    font-size: var(--title-reg);
}
h2 {
    font-size: var(--title-sm);
}
h3, h4, h5 {
    font-size: var(--title-xs);
}

h1, h2, h3, h4, h5, h6, .font-title {
    font-family: var(--title-font);
}


p {
    line-height: 1.2;
}

#navToggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    z-index: 1046;
}

#navToggle .hamburger,
#navToggle .hamburger::after,
#navToggle .hamburger::before {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    width: 100%;
    height: calc((2rem * .33) - 3px);
    border-radius: 2px;
    background: var(--colorMain);
    transform: translate(-50%, -50%);
    transition: .25s;
}
#navToggle .hamburger {
    top: 50%;   
}
#navToggle .hamburger::before {
    left: 0;
    top: -4px;
    transform: translateY(-100%);
}
#navToggle .hamburger::after {
    left: 0;
    transform: translateY(100%);
    bottom: -4px;
}

.nav-toggled #navToggle .hamburger {
    background: transparent;
}
.nav-toggled #navToggle .hamburger::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: var(--background);
}
.nav-toggled #navToggle .hamburger::after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--background);
}
#headerMenu {
    height: 100vh;
    width: 90rem;
    max-width: 100vw;
    transition: .25s;
}
#headerMenu .offcanvas-body {
    background: var(--colorMain);
    color: var(--background);
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
}

.header-content {
    background: var(--colorMain);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#headerMenu ul {
    list-style: none;
    padding: 0;
}
#headerMenu nav {
    position: relative;
}
#headerMenu nav li {
    margin-bottom: 1rem;
    transition: .25s;
    cursor: pointer;
}
#headerMenu nav a {
    font-family: var(--title-font);
    font-size: 21pt;
    text-decoration: none;
    white-space: nowrap;
    color: var(--backgroundFade);
}
#headerMenu nav .contact {
    position: absolute;
    right: 0;
    bottom: 0;
    width: fit-content;
    cursor: pointer;
    margin: 0;
    font-family: var(--title-font);
    
}
#headerMenu nav .contact div {
    color: var(--backgroundFade);
    font-size: 16pt;
}
#headerMenu nav .contact div:hover {
    color: var(--background);
    transform: skewX(-4deg);
}
@media (min-width: 992px) {
    #header nav {
        columns: 2;
    }
}
#header nav li:not(.active):hover,
#header nav li:not(.active) a:hover {
    color: var(--background);
    transform: skewX(-12deg);
}
#header nav li.active a {
    position: relative;
    color: var(--background);
    pointer-events: none;
}
#header nav li.active a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 2px;
    width: calc(100% - 4px);
    height: 2px;
    background: var(--colorCTA);
}
.header-section {
    /* width: 40%; */
    width: 100%;
    padding: 2rem 2rem 4rem 4rem;
    font-size: 18pt;
    line-height: 1.5;
    order: 2;
}
@media (max-width: 992px) {
    .header-section {
        padding: 2rem;
    }
}
.header-section:nth-child(2) {
    order: 1;
}
@media (min-width: 1024px) {
    #headerMenu .offcanvas-body {
        display: flex;
    }
    .header-section {
        width: 45%;
        order: 1;
    }
    .header-section:nth-child(2) {
        order: 2;
    }
    .header-content {
        flex-direction: row;
    }
}
.header-quote {
    position: relative;
    width: 37rem;
    max-width: 80%;
    line-height: 1.2;
    margin: 0 auto;
    font-style: italic;
    order: 3;
}
.header-quote span {
    z-index: 1;
}
.header-quote svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-10%, -50%);
    opacity: .66;
}
.header-quote svg path {
    fill: var(--colorB3);
}

.subscribe-form {
    display: flex;
    font-size: 18pt
}
.subscribe-form input {
    outline: none;
    border: none;
    flex-shrink: 1;
    flex-grow: 1;
    border-radius: 2px;
    padding: .5rem .5rem .5rem 1rem;
    width: calc(100% - 6.5rem);
    box-shadow: inset 0 0 8px #00000020;
}
.subscribe-form button {
    width: 6.5rem;
    margin-left: .5rem;
    min-width: unset;
    padding: .5rem;
}
@media (max-width: 1024px) {
    .subscribe-form {
        flex-direction: column;
    }
    .subscribe-form input {
        width: 100%;
    }
    .subscribe-form button {
        padding: 1rem .25rem;
        margin: 1rem 0 0 auto;
    }
}
.btn {
    position: relative;
    overflow: hidden;
    transition: .25s;
    background: var(--colorMain);
    color: var(--background);
    border-radius: 2rem;
    min-width: 170px;
    padding: .5rem var(--spacing-md);
}
.btn-icon svg {
    position: relative;
    z-index: 1;
}
.btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    aspect-ratio: 1/1;
    opacity: 0;
    background: var(--colorCTA);
    pointer-events: none;
    transition: .25s;
}

.btn span {
    position: relative;
    z-index: 1;
    pointer-events: none;
}
.btn:hover {
    color: var(--background);
}
.btn:hover::before {
    opacity: 1;
    animation-name: ctaBtn;
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.btn-cta {
    background: var(--colorCTA);
    color: var(--background);
    /* margin-top: 2rem; */

}
.btn-cta:hover {
    color: var(--background);
}
@keyframes ctaBtn {
    0% { transform: translate(0) rotate(0); }
    50% { transform: translate(-50%, -50%) rotate(0); }
    100% { transform: translate(0) rotate(0); }
}
.btn-dark {
    background: #373737;
    color: var(--background);
    outline: none;
    border: none;
    box-shadow: none;
    transition: .25s;
}
.btn-dark::before, .btn-cta::before {
    background: var(--colorCTA);
    background: linear-gradient(115deg,var(--colorMain) 0%, var(--colorCTA) 45%, var(--colorCTA) 55%, var(--colorMain) 100%);
}

form.loading button[type="submit"], .btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;    
}
form.loading button[type="submit"]::after, .btn.loading::after {
    content: "";
    display: block;
    position: absolute;
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    border-top: 1px solid var(--background);
    border-right: 1px solid var(--background);
    border-bottom: 1px solid transparent;
    border-left: none;

    animation-name: loading;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes loading {
    from { transform: translate(-50%, -50%) rotate(0); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.form-message {
    color: var(---colorMain);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin: var(--spacing-sm) 0 .5rem 0;
    margin-top: 2rem;
}
.form-message {
    border-left: 4px solid var(--colorMain);
    margin: 0;
}
#header .form-message {
    color: var(--background);
    border-color: var(--background);
}
.form-message p {
    margin: .5rem;
}
.form-message.error {
    border-color: var(--colorError) !important;
    color: var(--colorError) !important;
}

footer#footer {
    position: relative;
    background: var(--colorMain);
    color: var(--background);
    width: 100vw;
    height: var(--footer-height);
    padding: 2rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 12pt;
    font-weight: 300;
}


.footer-section {
    display: flex;
    align-items: center;
    text-align: center;
}
@media (max-width: 992px) {
    .footer-section .footer-link {
        line-height: 2.3;
    }
}
.footer-section:nth-child(1) {
        margin-bottom: 1rem;
    }
.footer-section.social {
    display: none;
}
@media (min-width: 1024px) {
    :root {
        --footer-height: 4rem;
    }
    footer#footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
    }
    .footer-section:nth-child(1) {
        margin: 0;
    }
}
@media (min-width: 1400px) {
    .footer-section.social {
        display: flex;
    }
}
.footer-link,
.link-emph {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--background);
    margin: 0 1rem;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: .25s;
}
.link-emph {
    color: black;
}
.link-emph.nocap {
    text-transform: none;
}
.link-emph svg {
    fill: black;
}
.footer-link:hover,
.link-emph:hover {
    padding-bottom: 2px;
}

.footer-link::after,
.link-emph::after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 4px;
    width: calc(100% - 8px);
    background: var(--colorCTA);
    transition: .25s;
}
.link-emph::after {
    background: black;
}
.link-emph.light {
    color: var(--background);
}
.link-emph.light::after {
    background: var(--background);
}
.footer-link:hover::after,
.link-emph:hover::after { 
    width: 100%;
    left: 0;   
}
footer .social-links {
    display: flex;
}
footer .social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
}
.social-svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: var(--background);
    overflow: visible;
    transition: .25s;
}
.social-link:hover .social-svg {
    fill: var(--colorCTA);
}

#subscribeForm {
    width: var(--section-width);
    max-width: 100vw;
    transition: .25s;
    
}

@media (max-width: 992px) {
    #subscribeForm .offcanvas-body {
        height: calc(100vh - 4rem);
        overflow-y: auto;
        margin-top: 4rem;
    }
    #subscribeForm .offcanvas-body form {
        padding-bottom: 5rem;
    }
}

@media (max-width: 1023px) {
    #subscribeForm {
        width: 100vw;
        z-index: 1046;
    }
    #subscribeForm .btn {
        width: 100%;
    }
}
#subscribeForm .offcanvas-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe-content {
    width: 35rem;
    max-width: 90%;
    max-height: 90%;
    font-size: 18pt;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.subscribe-content h5 {
    font-size: 38pt;
    font-weight: 200;
}


.close-offcanvas {
    position: absolute;
    top: 3rem;
    left: 3rem;
    cursor: pointer;
    z-index: 1;
}
@media (max-width: 1024px) {
    .close-offcanvas {
        top: 1rem;
    }
}
.offcanvas-start .close-offcanvas::before {
    content: "";
    display: inline-block;
    position: relative;
    height: .75rem;
    width: .75rem;
    border-top: 1px solid var(--colorMain);
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 1px solid var(--colorMain);

    transform: rotate(-45deg);
    margin-right: .5rem;
    transition: .25s;
}
.offcanvas-end .close-offcanvas::after {
    content: "";
    display: inline-block;
    position: relative;
    height: .75rem;
    width: .75rem;
    border-top: 1px solid transparent;
    border-right: 1px solid var(--colorMain);
    border-bottom: 1px solid var(--colorMain);
    border-left: 1px solid transparent;

    transform: rotate(-45deg);
    margin-left: .5rem;
    transition: .25s;
}
.close-offcanvas:hover::before {
    transform: translateY(.12rem) rotate(-45deg);
    height: 1rem;
    width: 1rem;
    margin-right: 1rem;
}
.close-offcanvas:hover::after {
    transform: translateY(.12rem) rotate(-45deg);
    height: 1rem;
    width: 1rem;
    margin-left: 1rem;
}
.offcanvas-end .close-offcanvas {
    left: unset;
    right: 3rem;
}

.logo-watermark::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate(-35%, -35%);
    filter: grayscale();
    aspect-ratio: 1/1;
    background: url('/files/logo.svg?width=1024') no-repeat center;
    background-size: contain;
    opacity: .02;
    pointer-events: none;
}
.logo-watermark.md::before {
    width: 50%;
}
.logo-watermark.end::before {
    left: unset;
    right: 0;
    transform: translate(35%, -35%);
}
.logo-watermark.bottom-end {
    top: unset !important;
    bottom: 0;
}
.logo-watermark.bottom-end::before {
    top: unset;
    left: unset;
    right: 0;
    bottom: 0;
    transform: translate(35%, 35%);
}
.logo-watermark.end::before {
    left: unset;
    right: 0;
    transform: translate(35%, -35%);
}
.logo-watermark.md.end::before {
    transform: translate(60%, -35%);
}

section.quote {
    position: relative;
    background: linear-gradient(130deg,var(--colorB1) 50%, var(--colorB2) 100%) !important;
    padding: 8rem 4rem;
    width: 100vw;
    margin: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.quote blockquote {
    position: relative;
    width: fit-content;
    color: var(--background);
    font-size: 32px;
    font-family: var(--title-font);
    font-weight: 200;
    max-width: 800px;
    z-index: 1;
}
section.quote blockquote em {
    display: block;
    width: 100%;
    text-align: end;
    font-size: 24px;
    margin-top: 2rem;
    color: var(--colorB7);
}
section.quote blockquote svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-25%, -50%);
    z-index: -1;
    opacity: .66;
}
section.quote blockquote svg path {
    fill: var(--colorB3);
}

.section-scroller-image {
    position: sticky;
    top: 0;
    right: 0;
    height: auto;
    max-height: 100vh;
    width: 100%;
    margin: 0;
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
}

.section-scroller-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 992px) {
    .section-scroller {
        height: 150vh;
        padding: 0;
        max-height: unset !important;
    }
    .section-scroller[data-sections='3'] {
        height: 200vh;
    }
    .section-scroller[data-sections='4'] {
        height: 250vh;
    }
    .section-scroller[data-sections='5'] {
        height: 300vh;
    }

    .section-scroller-content {
        position: sticky;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .section-scroller-body {
        height: 100vh;
        width: 50vw;
        flex-grow: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-scroller-image {
        position: relative;
        top: 0;
        right: 0;
        height: 100vh;
        width: 40vw;
        margin: 0;
    }
    .section-scroller-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    .section-scroller-title {
        transform: translateY(40px);
        height: 20vh;
        display: flex;
        align-items: end;
        z-index: 1;
    }
    .section-scroller-title,
    .scroller-container {
        width: 80%;
    }
    .scroller-container {
        position: relative;
        flex-grow: 1;
        margin: 30px auto;
        display: grid;
        place-items: center;
        overflow: hidden;
        max-height: 525px;
    }
    .scroller-container::after,
    .scroller-container::before {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: linear-gradient(180deg, var(--background) 0, transparent 100%);
    }
    .scroller-container::before {
        top: unset;
        bottom: 0;
        background: linear-gradient(0deg, var(--background) 0, transparent 100%);
        z-index: 1;
    }
    .scroller-section {
        width: 100%;
        height: 100%;
        position: absolute;
        background: var(--background);
        display: flex;
        flex-direction: column;
        padding: 80px 0;
        align-items: center;
        justify-content: start;
        transform-origin: center;
    }
    .scroller-section:last-child {
        padding-bottom: 0;
    }
    /* .scroller-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--background);
        border-radius: 12px;
        display: grid;
        place-items: center;
        transform: rotateX(-180deg);
        backface-visibility: hidden;
    } */
    .scroller-section:not(:first-child) {
       transform: translateY(calc((100% - var(--offset, 0%))));
    }
    .scroller-section:first-child {
        transform: translateY(calc(0% - var(--offset, 0%)));
        
        /* opacity: var(--offset, 0%); */
    }
}




.font-sm {
    font-size: var(--body-sm);
}
.font-md {
    font-size: var(--body-md);
}
.font-lg {
    font-size: var(--body-lg);
}
.font-xl {
    font-size: var(--body-xl);
}

.title-xs {
    font-size: var(--title-xs);
}
.title-sm {
    font-size: var(--title-sm);
}
.title-reg {
    font-size: var(--title-reg);
}
.title-lg {
    font-size: var(--title-lg);
}
.title-xl {
    font-size: var(--title-xl);
}

/* --spacing-xl: 4.5rem;
--spacing-lg: 3.25rem;
--spacing-md: 2.375rem;
--spacing-sm: 1.688rem;
--spacing-xs: 1.25rem;
--spacing-xxs: 11.125rem; */

.spacing-xxs {
    margin-top: var(--spacing-xxs)
}

.spacing-xs {
    margin-top: var(--spacing-xs)
}

.spacing-sm {
    margin-top: var(--spacing-sm)
}

.spacing-md {
    margin-top: var(--spacing-md)
}
.spacing-bottom-md {
    margin-bottom: var(--spacing-md)
}

.spacing-lg {
    margin-top: var(--spacing-lg)
}
.spacing-bottom-lg {
    margin-bottom: var(--spacing-lg)
}

.spacing-xl {
    margin-top: var(--spacing-xl)
}

.video-window {
    width: 100%;
    aspect-ratio: 16/9;
    background: black;
    display: flex;
    box-shadow: 0 0 12px #00000050;
}

.video-window .video {
    position: relative;
    flex-grow: 1;
    flex-shrink: 1;
    height: 100%;
    width: 33.33%;
    background: black;
    cursor: pointer;
    overflow: hidden;
    transition: .25s;
}
.video-window:hover .video:not(:hover) video {
    opacity: .5;
}
.video-window .video:not(:last-child) {
    border-right: 4px solid var(--colorMain);
}
.video-window .video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: .25s;
}
.video-window .video::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 8rem;
    width: 12rem;
    border-radius: 2rem;
    pointer-events: none;
    background: #00000050;
}
.video-window .video::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: calc(50% + .5rem);
    transform: translate(-50%, -50%);
    height: 2rem;
    width: 2rem;
    pointer-events: none;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--background);
}
.video-window .video:hover::before {
    background: #00000095;
    box-shadow: 0 0 4px black;
}
@media (max-width: 992px) {
    .video-window {
        aspect-ratio: unset;
        height: 90vh;
        flex-direction: column;
    }
    .video-window .video {
        height: 33.333%;
        width: 100%;
    }
    .video-window .video video {
        object-position: center 35%;
    }
    .video-window .video:not(:last-child) {
        border-bottom: 4px solid var(--colorMain);
    }
    [data-active] .video {
        height: 0;
        border-bottom: 0px solid var(--colorMain) !important;
    }
    [data-active='0'] .video:nth-child(1),
    [data-active='1'] .video:nth-child(2),
    [data-active='2'] .video:nth-child(3) {
        height: 100%;
    }
}
@media (min-width: 992px) {
    .video-window .video:not(:last-child) {
        border-right: 4px solid var(--colorMain);
    }
    [data-active] .video {
        width: 0;
        border-right: 0px solid var(--colorMain) !important;
    }
    [data-active='0'] .video:nth-child(1),
    [data-active='1'] .video:nth-child(2),
    [data-active='2'] .video:nth-child(3) {
        width: 100%;
    }
}
[data-active] .video::before,
[data-active] .video::after {
    opacity: 0;
}

[data-active='0'] .video:nth-child(1) video,
[data-active='1'] .video:nth-child(2) video,
[data-active='2'] .video:nth-child(3) video {
    object-fit: contain;
}

.main-form .form-input:not(:first-child) {
    margin-top: var(--spacing-xxs);
}
.main-form .form-input label:not(.check-input) {
    width: 100%;
    padding-bottom: 6px;
    text-transform: uppercase;
    font-size: var(--body-sm);
}
.main-form .form-input input,
.main-form .form-input textarea {
    border: 1px solid var(--colorN05);
    width: 100%;
    border-radius: 2px;
    background: #f6f6f6;
}
.main-form .form-input textarea {
    min-height: var(--spacing-lg);
    height: 200px;
    max-height: 300px;
}

.check-input {
    position: relative;
    width: fit-content !important;
    padding-left: 3rem;
    padding-bottom: 0 !important;
}
.check-input .checkbox {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2rem;
    aspect-ratio: 1/1;
    border: 2px solid var(--colorMain);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-input input:checked + .checkbox::after {
    content: "";
    display: block;
    position: absolute;
    height: calc(100% - 4px);
    width: calc(100% - 4px);
    background: var(--colorMain);
    border-radius: 50%;
}

input:focus,
textarea:focus {
    padding-left: 1rem;
    box-shadow: 0 0 4px #00000020;
    outline: none;
}

.check-input.after {
    padding-left: 0;
    padding-right: 2rem;
}
.check-input.after .checkbox {
    left: unset;
    right: 0;
}

.rating-input {
    counter-reset: rate;
}
.rating-input .star {
    counter-increment: rate;
    cursor: pointer;
}
.rating-input .rating-container {
    display: flex;
}
.rating-input svg {
    height: 2rem;
    width: 2rem;
    fill: var(--colorN5);
    margin: 0 .5rem 0 0;
    transition: .25s;
}
.rating-input:hover .star svg {
    fill: var(--colorN5) !important;
}
.rating-input .star:hover svg,
.rating-input .star:hover ~ .star svg {
    fill: gold !important;
}

.rating-input input[data-i="1"] ~ .star:nth-child(6) svg,
.rating-input input[data-i="2"] ~ .star:nth-child(n+5) svg,
.rating-input input[data-i="3"] ~ .star:nth-child(n+4) svg,
.rating-input input[data-i="4"] ~ .star:nth-child(n+3) svg,
.rating-input input[data-i="5"] ~ .star:nth-child(n+2) svg {
    fill: gold;
}

.split-section figure {
    position: relative;
    right: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
    margin: 0;
}
.split-section figure img {
    object-position: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.accordion {
    --accordian-title-height: 2rem;
    counter-reset: tpk;
}

.accordion-item {
    display: flex;
    flex-direction: column;
    counter-increment: tpk;
    background: none;
}
.faqs .accordion-item {
    border: none;
    border-bottom: 1px solid #00000016;
   
}
.faqs .accordion-button::after {
    position: absolute;
    right: unset;
    left: .5rem;
}
.accordion-button {
    position: relative;
    height: fit-content;
    min-height: var(--accordian-title-height);
    padding-left: calc(var(--accordian-title-height) + 2rem);
    font-size: 12pt;
}
.faqs .accordion-button {
    padding-left: 2.5rem;
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background: none;
}
.accordion-header {
    cursor: pointer;
}
.accordion:not(.faqs) .accordion-item .accordion-header .accordion-button::before {
    content: counter(tpk);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--accordian-title-height);
    aspect-ratio: 1/1;
    border: 2px solid var(--colorMain);
    color: var(--colorMain);
    border-radius: 50%;
    transition: .25s;
}
.accordion-collapse.show + .accordion-header .accordion-button::before {
    background: var(--colorMain);
    color: var(--background) !important;
}
.accordion-collapse {
    order: 2;
}
.accordion-header {
    font-family: var(--title-font);
    order: 1;
}
.accordion-collapse.show + .accordion-header {
    color: var(--colorMain);
}

.one-link {
    text-align: center;
}
@media (min-width: 992px) {
    .one-link {
        position: absolute;
        bottom: 12px;
        right: 24px;
        text-align: end;
    }
}
.one-link a {
    font-size: 13px;
    color: var(--colorB5);
    text-decoration: none;
    transition: .25s;
}
.one-link svg path {
    fill: var(--colorB5);
    transition: .25s;
}
.one-link a:hover,
.one-link a:hover svg path {
    fill: var(--background);
    color: var(--background);
}

#contactForm {
    width: 90vw;
    z-index: 1047;
}
@media (max-width: 992px) {
    #contactForm {
        width: 100vw;
    }
}
#contactForm .offcanvas-body {
    padding-top: 7rem;
    padding-bottom: 3rem;
}
#contactForm::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 6rem;
    width: 100%;
    background: var(--background);
}

.grecaptcha-badge {
    display: none;
}
.google-policy {
    font-size: var(--body-xs);
}
.google-policy a {
    color: inherit;
}
.subscribe-content .google-policy {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    width: calc(100% - 4rem);
}
@media (max-width: 992px) {
    .subscribe-content .google-policy {
        position: relative;
        width: 100%;
        bottom: 1rem;
        left: 0;
    }
}
[data-page="order"] main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spanish-fab {
    position: absolute;
    top: 4rem;
    right: 0;
    height: 3rem;
    width: fit-content;
    background: var(--colorMain);
    z-index: 10;
    color: var(--background);
    padding: .5rem 1rem;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
}
