/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Variables
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
    /* stylelint-disable-next-line color-hex-length */
    --color-black: #222222;
    --color-grey: #5e5e5e;
    --color-greyDark: #3a3a3a;
    --color-white: #fff;
    --color-blue: #10054C;
    --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);
}

.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);
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
General
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    overflow-x: hidden !important;
    width: 100% !important;
    cursor: auto;
}

button,
.social:hover,
a:hover,
.circle:hover {
    cursor: pointer !important;
}

#wrapper {
    display: grid;
    align-items: center;
    -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 !important;
    }

    img.leftPic,
    img.rightPic {
        width: 70%;
        margin: 0 15% 2vh 15%;
    }

    #wrapper {
        display: grid;
        align-items: center;
        -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;
    }

    img.leftPic {
        float: left;
        width: 40%;
        margin: 1.5vh 1vw 0 0;
    }

    img.rightPic {
        float: right;
        width: 40%;
        margin: 1.5vh 0 0 1vw;
    }
}

h2 {
    text-align: center;
}

#upHigh {
    visibility: hidden;
}

[data-xcloak] {
    display: none !important;
}

[data-theme=light] #mainMenuContainer {
    z-index: 99999999999;
    background-color: var(--color-white);
}

[data-theme=dark] #mainMenuContainer {
    z-index: 99999999999;
    background-color: #11191f;
}

.fade-from-left {
    opacity: 0;
    transition: all 1s;
    transform: translateX(-50%);
}

.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.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%);
}

select:focus-visible {
    border: 2px dashed crimson;
    border-radius: 3px;
    outline: none;
}
