/*<editor-fold desc="Universal">*/
*, *:before, *:after {
    box-sizing: border-box;
}

:root {
    /*Variable Variables*/
    --color-primary: red;
    --color-secondary: blue;
    --color-alert: #C73501;
    --color-primary-text: var(--color-primary);
    --color-secondary-text: var(--color-secondary);

    --text-color-dark: black;
    --text-color-light: white;
    --text-color: var(--text-color-dark);
    --color-background: white;
    --color-overlay: #2E271A90;
    --color-detail: #ddd;
    --color-accent: #aaa;

    --padding-mega: 48px;
    --padding-large: 32px;
    --padding-medium: 16px;
    --padding-small: 8px;
    --button-padding: .2em .6em;

    --border-radius: 14px;
    --border-radius-large: calc(var(--border-radius) + calc(var(--padding-small) * .8));
    --border-radius-small: calc(var(--border-radius) - calc(var(--padding-small) * .8));
    --border-radius-mega: calc(var(--border-radius-large) + calc(var(--padding-small) * .8));

    --fixed-width: calc(100vw - calc(var(--padding-large) * 2));
    --fixed-max-width-large: 1200px;
    --fixed-max-width-medium: 1000px;
    --fixed-max-width-small: 800px;
    --fixed-max-width-tiny: 450px;

    --font-display: sans-serif;
    --font-body: sans-serif;

    --header-background-color: var(--color-primary);
    --header-background-image: none;
    --mobile-header-background-color: var(--header-background-color);
    --mobile-nav-background-color: var(--header-background-color);

    font-size: 18px;
    color: var(--text-color);
    font-family: var(--font-body), sans-serif;

    --header-size: 80px;

    --font-size-body: 1rem;
    --font-size-h1: 4rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.5rem;
    --font-size-h4: 2rem;
}

html, body {
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    background-color: var(--color-background);
}

@font-face {
    font-family: "icons";
    src: url("/guillemet/library/fonts/icons.eot");
    src: url("/guillemet/library/fonts/icons.woff") format("woff"),
    url("/guillemet/library/fonts/icons.ttf") format("truetype"),
    url("/guillemet/library/fonts/icons.svg#filename") format("svg");
}
/*</editor-fold>*/

/*<editor-fold desc="Header #header-swipe">*/
#header-swipe {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1000;
    pointer-events: none;
}

#header-swipe .header-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#header-swipe .header-top-wrapper {
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--mobile-header-background-color);
    height: var(--header-size);
    pointer-events: all;
}

#header-swipe .logo-image-container {
    height: 100%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 200px;
}

#header-swipe .logo-image-container > img {
    height: 100%;
}

#header-swipe .nav-wrapper {
    flex-grow: 1;
    transition: transform 250ms;
    transform: translateX(100%);
    position: relative;
    align-self: flex-end;
    pointer-events: all;
    display: flex;
    flex-direction: column;
}

#header-swipe nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--padding-large) / 2) 0;
    background-color: var(--mobile-nav-background-color);
    flex-grow: 1;
    min-width: 200px;
}

#header-swipe nav a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--padding-large) / 2) var(--padding-large);
    text-align: center;
}

#header-swipe *:has(#nav-toggle-checkbox:checked) ~ .nav-wrapper {
    transform: none;
}

#header-swipe #nav-toggle-checkbox {
    display: none;
}

#header-swipe .nav-toggle {
    position: relative;
    width: 28px;
    height: 18px;
}

#header-swipe .nav-toggle-wrapper {
    grid-area: b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    padding: 0 30px;

    --hamburger-size-y: 5px;
}

#header-swipe .nav-toggle:before, #header-swipe .nav-toggle:after {
    --text-color: var(--text-color-light);

    content: "";
    background-color: var(--text-color);
    width: 100%;
    height: var(--hamburger-size-y);
    border-radius: 2px;
    position: absolute;
    transition: top 100ms 100ms ease-out, bottom 100ms 100ms ease-out, transform 100ms ease-out;
}

#header-swipe .nav-toggle-wrapper:has(> #nav-toggle-checkbox:checked) .nav-toggle:before, .nav-toggle-wrapper:has(> #nav-toggle-checkbox:checked) .nav-toggle:after {
    position: absolute;
    transition: top 100ms ease-out, bottom 100ms ease-out, transform 100ms 100ms ease-out;
}

#header-swipe .nav-toggle:before {
    top: 0;
}

#header-swipe .nav-toggle:after {
    bottom: 0;
}

#header-swipe .nav-toggle-wrapper:has(> #nav-toggle-checkbox:checked) .nav-toggle:before {
    top: calc(50% - calc(var(--hamburger-size-y) / 2));
    transform: rotate(45deg);
}

#header-swipe .nav-toggle-wrapper:has(> #nav-toggle-checkbox:checked) .nav-toggle:after {
    bottom: calc(50% - calc(var(--hamburger-size-y) / 2));
    transform: rotate(-45deg);
}

#header-swipe .floating-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: all;
    display: flex;
    flex-direction: row;
    padding: var(--padding-medium);
    gap: var(--padding-medium);
}

#header-swipe .floating-phone {
    width: 70px;
    height: 70px;
    border-radius: 40px;
    background-color: var(--color-secondary);
    padding: var(--padding-medium);
    box-shadow: 0 1px 1px 0 #00000080, 0 3px 5px 0 #00000040;
}

#header-swipe .floating-book {
    min-width: 120px;
    height: 70px;
    border-radius: 40px;
    background-color: var(--color-primary);
    padding: var(--padding-medium);
    box-shadow: 0 1px 1px 0 #00000080, 0 3px 5px 0 #00000040;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#header-swipe .floating-phone svg {
    fill: var(--text-color);
}

@media (min-width: 1000px) {
    header#header-swipe {
        background-color: var(--header-background-color);
        background-image: var(--header-background-image);
        overflow: unset;
        bottom: unset;
    }

    #header-swipe .header-wrapper {
        max-width: var(--fixed-max-width-large);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: var(--fixed-width);
    }

    #header-swipe .header-top-wrapper {
        background: unset;
        flex-grow: 0;
    }

    #header-swipe .nav-wrapper {
        transition: unset;
        transform: unset;
        align-self: unset;
        margin: unset;
        padding: var(--padding-small) 0;
    }

    #header-swipe .nav-toggle-wrapper {
        display: none;
    }

    #header-swipe nav {
        height: 100%;
        padding: 0;
        flex-grow: 1;
        background: unset;
        position: unset;
        flex-direction: row;
        justify-content: flex-end;
        align-items: stretch;
        gap: var(--padding-small);
        min-width: unset;
    }

    #header-swipe nav a {
        padding: 0 var(--padding-small);
    }

    #header-swipe .floating-wrapper {
        display: none;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Header Hang">*/
/*#header-hang + main {
    margin-top: var(--header-size);
}

header#header-hang {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    z-index: 1000;
    --nav-transition: 400ms;
}

header#header-hang .header-hang-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 100;
    background-color: var(--background-color);
}

#header-hang .header-wrapper {
    max-width: var(--fixed-max-width-large);
    width: var(--fixed-width);
    display: grid;
    grid-template: "a b" var(--header-size) "c c" auto / auto 0fr;
    justify-content: space-between;
}

#header-hang nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#header-hang nav a {
    font-weight: 600;
}

#header-hang nav a span {
    display: flex;
}

#header-hang #nav-toggle-checkbox {
    display: none;
}

#header-hang .nav-toggle {
    position: relative;
    width: 30px;
    height: 20px;
}

#header-hang .nav-toggle-wrapper {
    grid-area: b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;

    --hamburger-size-y: 7px;
}

#header-hang .nav-toggle:before, #header-hang .nav-toggle:after {
    --text-color: var(--text-color-dark);

    content: "";
    background-color: var(--text-color);
    width: 100%;
    height: var(--hamburger-size-y);
    border-radius: 3px;
    position: absolute;
    transition: top 100ms 100ms ease-out, bottom 100ms 100ms ease-out, transform 100ms ease-out;
}

#header-hang .nav-toggle-wrapper:has(> #nav-toggle-checkbox:checked) .nav-toggle:before, .nav-toggle-wrapper:has(> #nav-toggle-checkbox:checked) .nav-toggle:after {
    position: absolute;
    transition: top 100ms ease-out, bottom 100ms ease-out, transform 100ms 100ms ease-out;
}

#header-hang .nav-toggle:before {
    top: 0;
}

#header-hang .nav-toggle:after {
    bottom: 0;
}

#header-hang .nav-toggle-wrapper:has(> #nav-toggle-checkbox:checked) .nav-toggle:before {
    top: calc(50% - calc(var(--hamburger-size-y) / 2));
    transform: rotate(45deg);
}

#header-hang .nav-toggle-wrapper:has(> #nav-toggle-checkbox:checked) .nav-toggle:after {
    bottom: calc(50% - calc(var(--hamburger-size-y) / 2));
    transform: rotate(-45deg);
}

#header-hang .logo-wrapper {
    padding: var(--padding-medium) 0;
}

#header-hang .logo-wrapper img {
    height: 100%;
}

@media (max-width: 999px) {
    #header-hang nav a {
        font-size: 1.2em;
    }

    #header-hang nav {
        justify-content: space-evenly;
        height: 60vh;
        padding: var(--padding-large) 0;
    }

    #header-hang .nav-wrapper {
        grid-area: c;
        height: 0;
        overflow: hidden;
        transition: var(--nav-transition);
    }

    @keyframes fade-in {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #header-hang *:has(#nav-toggle-checkbox:checked) ~ .nav-wrapper nav a span {
        animation: fade-in 250ms;
        animation-fill-mode: both;
    }

    #header-hang *:has(#nav-toggle-checkbox:checked) ~ .nav-wrapper {
        height: 60vh;
    }
}

@media (min-width: 1000px) {
    #header-hang .header-wrapper {
        height: var(--header-size);
    }

    #header-hang nav {
        flex-direction: row;
        height: 100%;
        gap: var(--padding-large);
    }

    #header-hang nav a {
        font-size: .9em;
    }

    #header-hang .nav-wrapper {
        height: auto;
    }

    #header-hang .nav-toggle-wrapper {
        display: none;
    }

    #header-hang .header-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}*/
/*</editor-fold>*/

/*<editor-fold desc="Footer">*/
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color-light);
    min-height: 200px;
    background-color: var(--color-secondary);
    padding: var(--padding-mega) 0;
    margin-top: var(--padding-mega);
    gap: var(--padding-medium);
}

footer a {
    color: var(--text-color-light);
}

.footer-logo {
    height: 80px;
}
/*</editor-fold>*/

/*<editor-fold desc="General">*/
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--padding-mega);
    margin-top: var(--header-size);
}

svg {
    -webkit-transform: translate(0px,0px);
}

/*main:not(:has(.hero-banner:first-child)) {
    margin-top: var(--header-size);
}

main > .hero-banner:first-child {
    padding-top: var(--header-size);
}*/

a {
    text-decoration: none;
    color: var(--color-secondary);
}

a:hover:not(.button-wrapper, :has(> .button)) {
    text-decoration: underline;
}

p {
    margin: 0;
}

p, ul, li {
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.1;
    font-family: var(--font-display), "sans-serif";
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

.sup {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary-text);
    font-family: var(--font-display), "sans-serif";
}

ul {
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

address {
    font-style: normal;
}

button {
    font-size: unset;
    cursor: pointer;
}

.grecaptcha-badge {
    visibility: hidden;
}

*[id]:target {
    scroll-margin-top: var(--header-size);
}
/*</editor-fold>*/

/*<editor-fold desc="Custom General">*/
.mini-heading {
    font-size: .8rem;
    font-weight: 800;
    font-family: var(--font-body), sans-serif;
    text-transform: uppercase;
}

.subtle-text {
    font-size: .8em;
    font-weight: 400;
    opacity: .6;
}

.alert-text {
    color: var(--color-alert);
    opacity: 1;
    font-weight: 600;
}

.subtle-alert {
    color: var(--color-alert);
    font-size: .8em;
    font-weight: 400;
}

.full-width {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fill-width {
    width: 100%;
}

.fixed-width {
    max-width: var(--fixed-max-width-large);
    width: var(--fixed-width);
    align-self: center;
}

.fixed-width-medium {
    max-width: var(--fixed-max-width-medium);
    width: var(--fixed-width);
    align-self: center;
}

.fixed-width-small {
    max-width: var(--fixed-max-width-small);
    width: var(--fixed-width);
    align-self: center;
}

.fixed-width-tiny {
    max-width: var(--fixed-max-width-tiny);
    width: var(--fixed-width);
    align-self: center;
}

.h-list {
    display: flex;
    flex-direction: row;
    gap: var(--padding-medium);
    flex-wrap: wrap;
}

.vertical-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--padding-small);
}

.vertical-display {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--padding-medium);
}

.h-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.h-display {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: var(--padding-medium);
}

.h-display > * {
    flex-grow: 1;
}

.columns {
    display: flex;
    flex-direction: column;
    gap: var(--padding-large);
    align-items: center;
}

.columns > * {
    width: 100%;
    max-width: 400px;
}

@media (min-width: 800px) {
    .h-display {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .columns {
        flex-direction: row;
        align-items: stretch;
    }

    .columns > * {
        flex: 1 1 0;
        width: unset;
        max-width: unset;
    }
}

.stretch-content {
    flex-grow: 1;
}

.fixed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--padding-medium);
    grid-auto-rows: 1fr;
}

.center-align {
    align-items: center;
}

.center-align > *:not(.columns) {
    text-align: center;
    align-items: center;
}

.button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    padding: var(--button-padding);
    font-weight: 700;
    height: 100%;

    --button-background-color: var(--color-background);
    --button-foreground-color: var(--color-primary);

    background-color: var(--button-background-color);
    border: 2px solid var(--button-background-color);
    color: var(--button-foreground-color);
}

.button-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button-primary {
    --button-background-color: var(--color-primary);
    --button-foreground-color: var(--color-background);
}

.button-secondary {
    --button-background-color: var(--color-secondary);
    --button-foreground-color: var(--color-background);
}

.button-tertiary {
    --button-background-color: var(--text-color-light);
    --button-foreground-color: transparent;
}

.button.inverted {
    background-color: var(--button-foreground-color);
    color: var(--button-background-color);
    border: 2px solid var(--button-background-color);
}

.button-tertiary:not(.inverted) {
    color: var(--text-color-dark);
}

.button-wrapper, a:has(> .button) {
    min-width: 150px;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.button-wrapper:hover > .button, a:hover > .button {
    background-color: var(--button-foreground-color);
    color: var(--button-background-color);
}

.button-wrapper:hover > .button.inverted, a:hover > .button.inverted {
    background-color: var(--button-background-color);
    color: var(--button-foreground-color);
}

.button-wrapper:hover .button-tertiary.inverted {
    color: var(--text-color-dark);
}

.media-cover {
    position: relative;
    overflow: hidden;
}

.media-cover > img, .media-cover > video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container, .image-cover {
    position: relative;
    overflow: hidden;
}

.image-container > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-cover > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-image {
    min-height: 300px;
    position: relative;
    padding: var(--padding-large) 0;
}

.image-button {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-large);
    color: var(--text-color-light);
}

a.image-button:hover {
    text-decoration: none;
}

a.image-button .ib-content {
    transition: 150ms;
    padding: var(--padding-large);
    z-index: 10;
}

a.image-button:hover .ib-content {
    transform: scale(1.05);
}

.image-button .background-media {
    filter: brightness(.5);
    transition: 150ms;
}

a.image-button:hover .background-media {
    transform: scale(1.1);
    filter: brightness(.65);
}

.background-media {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-media img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icon svg {
    --target-size: 44px;
    --icon-size: 32px;

    height: var(--icon-size);
    width: var(--icon-size);
    fill: white;
    display: block;
    margin: calc(calc(var(--target-size) - var(--icon-size)) / 2);
}

.button-list {
    display: flex;
    flex-direction: column;
    padding-top: var(--padding-small);
    gap: var(--padding-small);
    align-self: stretch;
    flex-wrap: wrap;
}

.button-list > * {
    flex-grow: 1;
}

.separator {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: var(--padding-small);
}

.separator:before, .separator:after {
    content: "";
    background-color: var(--color-primary-text);
    height: 2px;
    width: 80px;
}

.separator svg {
    width: 30px;
}

.separator svg path {
    fill: var(--color-primary-text)!important;
}

@media (min-width: 1000px) {

    .fixed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) {
    .button-list {
        flex-direction: row;
        justify-content: flex-start;
        align-self: flex-start;
    }

    .center-align .button-list {
        align-self: center;
    }

    .center-align .button-list {
        justify-content: center;
    }
}

@media (max-width: 599px) {
    .fixed-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .mobile-center-align {
        align-items: center;
    }

    .mobile-center-align > * {
        text-align: center;
        align-items: center;
    }

    .h-list.mobile-center-align {
        justify-content: center;
    }
}
/*</editor-fold>*/

.image-text-banner-wrapper {
    width: 100%;
    display: grid;
    grid-template-rows: 300px 1fr;

    background-color: black;
}

.itb-blank {
    background-color: var(--color-detail);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-row: 2;
    grid-column: 1;
}

.itb-image {
    grid-row: 1;
    grid-column: 1;
}

.itb-content-wrapper {
    grid-row: 2;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    padding: 0 var(--padding-large) var(--padding-large);
}

.itb-content {
    margin-top: calc(-1 * var(--padding-large));
    background-color: var(--color-background);
    padding: var(--padding-medium);
    position: relative;
    z-index: 1;
}

@media (min-width: 600px) {
    .image-text-banner-wrapper {
        grid-template-columns: 1fr min(calc(var(--fixed-width)* .5), calc(var(--fixed-max-width-large)* .5)) min(calc(var(--fixed-width)* .5), calc(var(--fixed-max-width-large)* .5)) 1fr;
        grid-template-rows: unset;
        min-height: 350px;
    }

    .itb-blank {
        grid-row: 1;
        grid-column: 3/5;
    }

    .reverse .itb-blank {
        grid-column: 1/3;
    }

    .itb-image {
        grid-row: 1;
        grid-column: 1/3;
    }

    .reverse .itb-image {
        grid-column: 3/5;
    }

    .itb-content-wrapper {
        grid-column: 3;
        grid-row: 1;
        justify-content: flex-end;
        padding: 100px 0 var(--padding-large);
    }

    .reverse .itb-content-wrapper {
        grid-column: 2;
    }

    .itb-content {
        margin-top: unset;
        margin-left: calc(-1 * var(--padding-mega));
    }

    .reverse .itb-content {
        margin-left: unset;
        margin-right: calc(-1 * var(--padding-mega));
    }
}

@media (min-width: 1000px) {
    .image-text-banner-wrapper {
        min-height: 450px;
    }
}

/*<editor-fold desc="Alerts">*/
.alert-box {
    --color-alert-1: #EBD636;
    --color-alert-2: #F6ECA2;
}

.alert-box.failure {
    --color-alert-1: #DA4C3C;
    --color-alert-2: #F2C0BA;
}

.alert-box.success {
    --color-alert-1: #5ACE30;
    --color-alert-2: #CAF0BC;
}

.alert-box {
    display: flex;
    flex-direction: row;
    border: 2px solid var(--color-alert-1);
    background-color: var(--color-alert-1);
    border-radius: var(--border-radius);
    color: black;
}

.alert-box-icon {
    font-family: "icons", sans-serif;
    color: var(--text-color-light);
    font-size: 1.2rem;
    padding: 2px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alert-box-content {
    padding: var(--button-padding);
    background-color: var(--color-alert-2);
    flex-grow: 1;
    border-radius: calc(var(--border-radius) - 2px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alert-title {
    font-weight: 600;
}
/*</editor-fold>*/

/*<editor-fold desc="Animations">*/
@keyframes pop-in {
    0% {
        transform: scale(.5) rotate(90deg);
        opacity: 90;
    }
    60% {
        transform: scale(.9) rotate(20deg);
        opacity: 1;
    }
    61% {
        transform: scale(1.4) rotate(-20deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Forms">*/
form {
    display: flex;
    flex-direction: column;
}

label {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
}

input:not([type=radio]):not([type=checkbox]), select, textarea {
    border-radius: var(--border-radius);
    border: 1px solid var(--color-detail);
    padding: var(--button-padding);
    font-size: 1rem;
    appearance: none;
    min-height: 44px;
    font-family: var(--font-body);
}

input[type=submit] {
    cursor: pointer;
}

input[type=checkbox] {
    appearance: none;
    border: 1px solid var(--color-detail);
    border-radius: var(--border-radius);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input[type=checkbox]:active {
    background-color: var(--color-detail);
}

input[type=checkbox]:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

input[type=checkbox]:checked:after {
    content: "✓";
    font-family: "icons", sans-serif;
    color: var(--text-color-light);
    font-size: 1rem;
    animation: pop-in 80ms;
}

input[readonly] {
    color: var(--color-accent);
}

.radio-wrapper {
    border-radius: var(--border-radius);
    border: 1px solid var(--color-detail);
    font-weight: 600;
    font-size: .8rem;
    appearance: none;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 44px;
    align-items: stretch;
}

.checkboxes-wrapper {
    font-weight: 600;
    font-size: .8rem;
}

.radio-option {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
    border-right: 1px solid var(--color-detail);
}

.checkbox-option {
    display: flex;
    flex-direction: row;
    gap: var(--padding-small);
    align-items: center;
}

.radio-option label {
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: var(--button-padding);
    transition: 100ms;
}

.radio-option input:checked ~ label {
    background-color: var(--color-secondary);
    color: var(--text-color-light);
}

.radio-option input ~ label .radio-option-text {
    position: relative;
}

.radio-option:last-child {
    border-right: none;
}

.radio-option input {
    display: none;
}

.form-layout {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--padding-medium);
}

.form-layout .form-component {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--padding-small);
}

.form-component:has(.InputToggle) {
    flex-direction: row-reverse;
    gap: var(--padding-medium);
}
/*</editor-fold>*/

@media (min-width: 600px) {
    .form-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-layout .form-component-large {
        grid-column: span 2;
    }

    .form-layout .form-component-medium {
        grid-column: span 2;
    }

    .form-layout .form-component-small {
        grid-column: span 1;
    }
}

@media (min-width: 800px) {
    .form-layout {
        grid-template-columns: repeat(4, 1fr);
    }

    .form-layout .form-component-large {
        grid-column: span 4;
    }

    .form-layout .form-component-medium {
        grid-column: span 2;
    }

    .form-layout .form-component-small {
        grid-column: span 1;
    }
}

/*<editor-fold desc="Hero Banner">*/

.hero-banner {
    --text-color: var(--text-color-light);
    color: var(--text-color);
    background-color: var(--color-secondary);
    display: flex;
    width: 100%;
    min-height: max(500px, 60vh);
    max-width: unset;
    background-size: cover;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-mega {
    min-height: 80vh;
}

.hero-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 100;
    width: var(--fixed-width);
    max-width: var(--fixed-max-width-large);
}

.hero-banner-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-banner-background > img, .hero-banner-background > video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    object-fit: cover;
}

.hero-banner-background-cover {
    background-color: var(--color-overlay);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

@media (min-width: 800px) {
    .hero-banner {

    }
}
/*</editor-fold>*/