/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Variables
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
    /* stylelint-disable-next-line color-hex-length */
    --color-black: #0b0b0b;
    --color-grey: #6f6f6f;
    --color-greyLight: #9c9c9c;
    --color-greyDark: #393939;
    --color-green: #0f0;
    --color-greenDark: #00da00;
    --color-greenDarkest: #008f00;
    --color-greenLight: #8efe8e;
    --color-white: #fff;
    --font-main: 'CenturyGothicW05', Helvetica, Verdana, Arial, sans-serif;
    --font-heading: 'Roboto', Helvetica, Verdana, Arial, sans-serif;
    --font-script: 'Fightever', 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);
}

.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: normal;
    font-style: normal;
    font-family: 'CenturyGothicW05';
    src:
        url('/_fonts/subset-CenturyGothicW05-Regular.woff2') format('woff2'),
        url('/_fonts/subset-CenturyGothicW05-Regular.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

@font-face {
    font-weight: normal;
    font-style: italic;
    font-family: 'Fightever';
    src:
        url('/_fonts/subset-Fightever.woff2') format('woff2'),
        url('/_fonts/subset-Fightever.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

@font-face {
    font-weight: 500;
    font-style: normal;
    font-family: 'Roboto';
    src:
        url('/_fonts/subset-Roboto-Medium.woff2') format('woff2'),
        url('/_fonts/subset-Roboto-Medium.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: 'Roboto';
    src:
        url('/_fonts/subset-Roboto-Regular.woff2') format('woff2'),
        url('/_fonts/subset-Roboto-Regular.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

@font-face {
    font-weight: bold;
    font-style: normal;
    font-family: 'Roboto';
    src:
        url('/_fonts/subset-Roboto-Bold.woff2') format('woff2'),
        url('/_fonts/subset-Roboto-Bold.woff') format('woff');
    font-display: swap;
    unicode-range: U+000-5FF;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
General
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: var(--color-black);
}

body {
    position: relative;
    width: 100%;
    max-width: 3000px;
    margin: 0 auto;
    padding: 0;
    background-color: var(--color-white);
    color: var(--color-black);
    font-weight: normal;
    font-size: 16px;
    font-family: var(--font-main);
    line-height: 135%;
    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-greenDark);
    text-decoration: underline;
}

button,
.social:hover,
a:hover,
.circle:hover {
    cursor: pointer !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

h3 {
    text-align: left;
}

p {
    text-shadow: none;
}

h1 {
    font-size: clamp(32px, calc(32px + (10 / 1600) * (100vw - 300px)), 42px);
    line-height: calc(1.2em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

h2 {
    font-size: clamp(30px, calc(30px + (10 / 1600) * (100vw - 300px)), 40px);
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
    text-align: left;
}

h3 {
    font-size: clamp(28px, calc(28px + (8 / 1600) * (100vw - 300px)), 36px);
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
    text-align: left;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: clamp(25px, calc(25px + (8 / 1600) * (100vw - 300px)), 33px);
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

h5 {
    margin: 0;
    padding: 0;
    font-size: clamp(22px, calc(22px + (13 / 1600) * (100vw - 300px)), 35px);
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

li {
    font-size: clamp(15px, calc(15px + (8 / 1600) * (100vw - 300px)), 23px);
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

p {
    font-size: clamp(14px, calc(14px + (8 / 1600) * (100vw - 300px)), 22px);
}

#wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    width: 100%;
}

[data-xcloak] {
    display: none !important;
}

@media (min-width: 0) and (max-width: 767px) {
    .mobileHide {
        display: none !important;
    }

    #wrapper {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .mainHide {
        display: none !important;
    }

    .radius {
        border-radius: 0 0 0 50px;
    }
}

@media (min-width: 1200px) {
    .radius {
        border-radius: 0 0 0 75px;
    }
}

@media (min-width: 1600px) {
    .radius {
        border-radius: 0 0 0 100px;
    }
}

#upHigh {
    visibility: hidden;
}

button {
    display: inline-flex;
    padding: 1.5vh 2vw;
    background-color: transparent;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition-duration: 0.4s;
}

.myButton {
    display: inline-box;
    display: inline-flexbox;
    display: inline-flex;
    font-weight: 600;
    cursor: pointer;
    transition-duration: 0.4s;
}

.myButton a:link,
.myButton a:visited,
.myButton a:active {
    padding: 0.75vw 2vw;
    text-decoration: none !important;
}

.buttonGreen {
    padding: 8px 3vw;
    border: solid medium var(--color-white);
    background-color: var(--color-green);
    color: var(--color-greenDarkest);
    font-weight: bold;
}

.buttonGreen a:link,
.buttonGreen a:visited,
.buttonGreen a:active {
    color: var(--color-greenDarkest) !important;
}

.buttonGreen:hover {
    border: solid medium var(--color-greenDarkest);
    background-color: var(--color-white);
    color: var(--color-greenDarkest) !important;
}

.buttonGreen:hover a:link,
.buttonGreen:hover a:visited,
.buttonGreen:hover a:active {
    color: var(--color-greenDarkest) !important;
}

.buttonGreenLight {
    padding: 8px 3vw;
    border: solid medium var(--color-greenLight);
    background-color: transparent;
    color: var(--color-greenLight);
    font-weight: bold;
}

.buttonGreenLight a:link,
.buttonGreenLight a:visited,
.buttonGreenLight a:active {
    color: var(--color-greenLight) !important;
}

.buttonGreenLight:hover {
    border: solid medium var(--color-greenLight);
    background-color: var(--color-greenLight);
    color: unset !important;
}

.buttonGreenLight:hover a:link,
.buttonGreenLight:hover a:visited,
.buttonGreenLight:hover a:active {
    color: unset !important;
}

.buttonWhite {
    border: solid medium var(--color-white);
}

.buttonWhite a:link,
.buttonWhite a:visited,
.buttonWhite a:active {
    color: var(--color-white) !important;
}

.buttonWhite:hover {
    border: solid medium var(--color-white);
    background-color: var(--color-white);
}

.buttonWhite:hover a:link,
.buttonWhite:hover a:visited,
.buttonWhite:hover a:active {
    color: var(--color-greenDark) !important;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Utilities
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.topSpace2 { padding-top: 2vh; }
.topSpace3 { padding-top: 3vh; }
.topSpace4 { padding-top: 4vh; }
.topSpace5 { padding-top: 5vh; }
.topSpace6 { padding-top: 6vh; }
.topSpace7 { padding-top: 7vh; }
.topSpace8 { padding-top: 8vh; }

.fullSpace1 { margin: 1vh 0; }
.fullSpace2 { margin: 2vh 0; }
.fullSpace3 { margin: 3vh 0; }
.fullSpace4 { margin: 4vh 0; }
.fullSpace8 { margin: 8vh 0; }

h1.leftAlign,
h2.leftAlign,
h3.leftAlign,
h4.leftAlign {
    text-align: left;
}

h1.centerAlign,
h2.centerAlign,
h3.centerAlign,
h4.centerAlign {
    text-align: center;
}

h1.rightAlign,
h2.rightAlign,
h3.rightAlign,
h4.rightAlign {
    text-align: right;
}

@media (min-width: 0) and (max-width: 767px) {
    img.leftPic,
    img.rightPic {
        width: 100%;
        margin: 0 0 2vh 0;
    }

    .leftVid,
    .rightVid,
    .bigVid {
        width: 100%;
        margin: 0 0 2vh 0;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    img.leftPic,
    img.rightPic {
        width: 70%;
        margin: 0 15% 2vh 15%;
    }
}

@media (min-width: 768px) {
    img.leftPic {
        float: left;
        width: 40%;
        margin: 1.5vh 1vw 0 0;
    }

    img.rightPic {
        float: right;
        width: 40%;
        margin: 1.5vh 0 0 1vw;
    }

    .leftVid {
        float: left;
        width: 40vw;
        height: 22.5vw;
        margin: 1.5vh 1vw 0 0;
    }

    .rightVid {
        float: right;
        width: 40vw;
        height: 22.5vw;
        margin: 1.5vh 0 0 1vw;
    }

    .bigVid {
        width: 80vw;
        height: 45vw;
        margin: 1.5vh auto 0 auto;
        border: solid thin #516d57;
    }
}

@media (min-width: 1000px) {
    .leftVid,
    .rightVid {
        width: 35vw;
        height: 19.69vw;
    }

    .bigVid {
        width: 70vw;
        height: 39.375vw;
    }
}

@media (min-width: 1300px) {
    .leftVid,
    .rightVid {
        width: 30vw;
        height: 16.875vw;
    }

    .bigVid {
        width: 60vw;
        height: 33.75vw;
    }
}

@media (min-width: 1600px) {
    .bigVid {
        width: 50vw;
        height: 28.125vw;
    }
}

@media (min-width: 1900px) {
    .leftVid,
    .rightVid {
        width: 25vw;
        height: 14.06vw;
    }

    .bigVid {
        width: 45vw;
        height: 25.3125vw;
    }
}

@media (min-width: 2200px) {
    .leftVid,
    .rightVid {
        width: 25vw;
        height: 14.06vw;
    }

    .bigVid {
        width: 40vw;
        height: 22.5vw;
    }
}

.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;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Accessibility
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.skip-to-main-content-link:focus {
    top: 2.5%;
    left: 50% !important;
    opacity: 1;
    transform: translateX(-50%);
}

input:focus-visible,
input:focus {
    border-radius: 10px;
    outline: 2px solid #b026ff !important;
}

select:focus-visible,
:focus-visible {
    border-radius: 10px;
    outline: 2px dashed #b026ff !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;
    -moz-osx-font-smoothing: grayscale;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.05);
}

.is-visible {
    opacity: 1;
    transform: translateX(0);
}
