/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Variables
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
    /* stylelint-disable-next-line color-hex-length */
    --color-black: #222222;
    --color-grey: #5e5e5e;
    --color-greyDark: #3a3a3a;
    --color-white: #fff;
    --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;
}

h2 {
    position: relative;
    width: fit-content;
    margin: auto;
    text-align: center;
}

button,
.social:hover,
a:hover,
.circle:hover {
    cursor: pointer !important;
}

.paintStyles {
    margin-bottom: 0;
    padding-bottom: 2vh;
    line-height: 100%;
}

.custom-underline {
    text-decoration: none;
}

.custom-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 7px !important;
    border-radius: 20px;
    background-color: var(--primary);
    transition: 0.4s ease-out all 0.1s;
}

#upHigh {
    visibility: hidden;
}

#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;
    }

    #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;
    }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Alpine JS
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

[data-xcloak] {
    display: none !important;
}

[data-theme=light] #mainMenuContainer {
    z-index: 999;
    background-color: var(--color-white);
}

[data-theme=dark] #mainMenuContainer {
    z-index: 999;
    background-color: #11191f;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
ADA
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.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;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Animations
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* Grow */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.4s;
    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);
}

.fade-from-left {
    opacity: 0;
    transition: all 1s;
    transform: translateX(-50%);
}

.is-visible {
    opacity: 1;
    transform: translateX(0);
}
