/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Variables
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
    /* stylelint-disable-next-line color-hex-length */
    --color-black: #222222;
    --color-grey: #5e5e5e;
    --color-greyDark: #3a3a3a;
    --color-red: #eb1d29;
    --color-redDark: #be0811;
    --color-blue: #293a87;
    --color-blueDark: #091651;
    --color-yellow: #fdee1f;
    --color-yellowDark: #d4c602;
    --color-yellowLight: #fff674;
    --color-whiteOff: #fff6e8;
    --color-white: #fff;
    --font-main: 'Poppins', Helvetica, Verdana, Arial, sans-serif;
    --font-logo: 'BeaufortPro', Helvetica, Verdana, Arial, sans-serif;
    --font-button: 'Inter', Helvetica, Verdana, Arial, sans-serif;
    --font-headings: 'Beaufort', Helvetica, Verdana, Arial, sans-serif;
    --scrollbar-size: 0.375rem;
    --scrollbar-minlength: 1.5rem; /* Minimum length of scrollbar thumb (width of horizontal, height of vertical) */
    --scrollbar-ff-width: thin; /* FF-only accepts auto, thin, none */
    --scrollbar-track-color: rgba(0, 0, 0, 0.1);
    --scrollbar-color: rgba(0, 0, 0, 0.3);
    --scrollbar-color-hover: rgba(0, 0, 0, 0.4);
    --scrollbar-color-active: rgb(0, 0, 0);
}

/* Use .layout-scrollbar-obtrusive to only use overflow if scrollbars don’t overlay */
.scrollbar-test,
.layout-cell {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: var(--scrollbar-ff-width);
}

/* This class controls what elements have the new fancy scrollbar CSS */
.layout-scrollbar {
    scrollbar-color: var(--scrollbar-color) var(--scrollbar-track-color);
}

/* Only apply height/width to ::-webkit-scrollbar if is obtrusive */
.layout-scrollbar-obtrusive,
.layout-scrollbar-obtrusive::-webkit-scrollbar {
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track-color);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: var(--scrollbar-color);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-color-hover);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:active {
    background-color: var(--scrollbar-color-active);
}

.scrollbar-test::-webkit-scrollbar-thumb:vertical,
.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:vertical {
    min-height: var(--scrollbar-minlength);
}

.scrollbar-test::-webkit-scrollbar-thumb:horizontal,
.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:horizontal {
    min-width: var(--scrollbar-minlength);
}

@font-face {
    font-weight: 500;
    font-style: normal;
    font-family: 'Beaufort';
    src:
        local('Beaufort W01 Medium'),
        local('BeaufortW01-Medium'),
        url('/_fonts/subset-BeaufortW01-Medium.woff2') format('woff2'),
        url('/_fonts/subset-BeaufortW01-Medium.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

@font-face {
    font-weight: 300;
    font-style: normal;
    font-family: 'Open Sans';
    src:
        local('Open Sans Light'),
        local('OpenSans-Light'),
        url('/_fonts/subset-OpenSans-Light.woff2') format('woff2'),
        url('/_fonts/subset-OpenSans-Light.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: 'Open Sans';
    src:
        local('Open Sans'),
        local('OpenSans'),
        url('/_fonts/subset-OpenSans.woff2') format('woff2'),
        url('/_fonts/subset-OpenSans.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

@font-face {
    font-weight: 900;
    font-style: normal;
    font-family: 'BeaufortPro';
    src:
        local('BeaufortPro-Heavy'),
        url('/_fonts/subset-BeaufortPro-Heavy.woff2') format('woff2'),
        url('/_fonts/subset-BeaufortPro-Heavy.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

@font-face {
    font-weight: 300;
    font-style: italic;
    font-family: 'Open Sans';
    src:
        local('Open Sans Light Italic'),
        local('OpenSansLight-Italic'),
        url('/_fonts/subset-OpenSansLight-Italic.woff2') format('woff2'),
        url('/_fonts/subset-OpenSansLight-Italic.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

@font-face {
    font-weight: normal;
    font-style: italic;
    font-family: 'Open Sans';
    src:
        local('Open Sans Italic'),
        local('OpenSans-Italic'),
        url('/_fonts/subset-OpenSans-Italic.woff2') format('woff2'),
        url('/_fonts/subset-OpenSans-Italic.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
General
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: 18px;
    font-family: var(--font-main);
    line-height: 135%;
}

body {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
    color: var(--color-black);
    font-weight: normal;
    font-size: 18px;
    font-family: var(--font-main);
    text-align: center;
    cursor: auto;
}

blockquote {
    text-align: justify;
}

ul,
ol {
    margin: 0;
    line-height: 145%;
    text-shadow: none;
}

li {
    line-height: 105%;
    text-align: left;
}

img {
    border-style: none;
    text-align: center;
}

a:active,
a:link,
a:visited {
    color: var(--color-purple);
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    font-family: var(--font-headings);
    letter-spacing: -0.5px;
}

h3 {
    text-align: left;
}

p {
    font-weight: normal;
    text-shadow: none;
}

h1 {
    font-size: calc(32px + (42 - 32) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.2em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

h2 {
    font-size: calc(30px + (40 - 30) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
    text-align: left;
}

h3 {
    font-size: calc(28px + (36 - 28) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
    text-align: left;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: calc(25px + (33 - 25) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

h5 {
    margin: 0;
    padding: 0;
    font-size: calc(22px + (35 - 22) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

li {
    font-size: calc(15px + (20 - 12) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

p {
    font-size: calc(16px + (22 - 14) * ((100vw - 300px) / (1900 - 300)));
}

#wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    width: 100vw;
    max-width: 2600px;
    margin: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;

    @supports not (display: grid) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .mobileHide {
        display: none;
    }

    #wrapper {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        width: 100vw;
        -webkit-box-align: center;
        -ms-flex-align: center;

        @supports not (display: grid) {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
        }
    }
}

@media (min-width: 768px) {
    .mainHide {
        display: none !important;
    }
}

@media (min-width: 2600px) {
    body {
        background-color: var(--color-blueDark);
    }

    #wrapper {
        border-radius: 25px;
        background-color: var(--color-white);
    }
}

#upHigh {
    visibility: hidden;
}

[data-xcloak] {
    display: none !important;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
ADA
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.skip-to-main-content-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: black;
    color: white !important;
    font-weight: bold !important;
    opacity: 0;
}

.skip-to-main-content-link:focus {
    top: 10%;
    left: 50% !important;
    opacity: 1;
    transform: translateX(-50%);
}

input:focus-visible,
input:focus {
    border-radius: 10px;
    outline: 2px solid var(--color-purple) !important;
}

select:focus-visible,
:focus-visible {
    border-radius: 10px;
    outline: 2px dashed var(--color-purple) !important;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Button
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

button {
    border-radius: 10px;
}

button,
.social:hover,
a:hover,
.circle:hover {
    cursor: pointer !important;
}

button {
    display: inline-flex;
    padding: 0 2vw 0 2vw;
    background-color: transparent;
    font-weight: 600;
    font-style: var(--font-button) !important;
    text-decoration: none !important;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.buttonBlue {
    border: solid medium var(--color-blue);
    color: var(--color-brownLight) !important;
}

.buttonBlue:hover {
    border: solid medium var(--color-white);
    background-color: var(--color-white);
    color: var(--color-brownLight) !important;
}

.buttonWhite {
    border: solid medium var(--color-white);
    color: var(--color-white) !important;
}

.buttonWhite:hover {
    border: solid medium var(--color-white);
    background-color: var(--color-white);
    color: var(--color-brownLight) !important;
}

.buttonWhiteOff {
    border: solid medium var(--color-whiteOff);
    background-color: var(--color-whiteOff);
    color: var(--color-brown) !important;
}

.buttonWhiteOff:hover {
    border: solid medium var(--color-whiteOff);
    background-color: transparent;
    color: var(--color-whiteOff) !important;
}

.buttonRed {
    border: solid medium var(--color-red);
    background-color: var(--color-red);
    color: var(--color-white) !important;
}

.buttonRed:hover {
    border: solid medium var(--color-red);
    background-color: var(--color-white);
    color: var(--color-red) !important;
}

.container {
    position: relative;
    grid-column: 1/-1;
    width: 100%;
}

.container-blue {
    padding: 4vh 0;
    background-color: var(--color-blue);
}

.container-tan {
    padding: 4vh 0;
    background-color: var(--color-tan);
}

.biggerSpacing {
    margin-bottom: 6vh !important;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Animations
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* Grow */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.5s;
    transition-property: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.05);
}

.fade-from-left {
    opacity: 0;
    transition: all 1s;
    transform: translateX(-50%);
}

.is-visible {
    opacity: 1;
    transform: translateX(0);
}
