:root {
    --mobileMaxWidth: 1400px; /* todo use as an env variable in the future, because in @media it doesn't work */
    --desktopMinWidth: 1401px; /* todo use as an env variable in the future, because in @media it doesn't work */
    --blurRadius: 15px;
    --headerBackgroundColor: rgba(0, 0, 0, 0.75);
    --headerFontColor: white;
    --menuBackgroundColor: rgba(0, 0, 0, 75%);
    --menuButtonBackgroundColor: rgba(0, 0, 0, 5%);
    --greyPageBackground: #f1f1f1;
}

* {
    font-family: Tahoma, sans-serif;
    font-size: 16px;
}

html {
    margin: 0 !important;
    min-height: 100% !important;
    overflow-y: scroll;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    min-height: 100%  !important;
    padding: 0 !important;
}

input, input:focus, input:active, textarea, textarea:focus, textarea:active {
    outline: none;
}

.thinScrollbar {
    scrollbar-width: thin;
}

.thinScrollbar::-webkit-scrollbar {
    width: 9px;
}

.thinScrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.thinScrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(155, 155, 155, 0.5);
    border-radius: 20px;
    border: transparent;
}

.bold {
    font-weight: 700;
}

.fontSize12 {
    font-size: 12px !important;
}

.fontSize16 {
    font-size: 16px !important;
}

.hasDefinition {
    text-decoration: underline;
    text-decoration-style: dashed;
}

p, li, ul, li {
    color: black;
    margin: 0 0;
    padding: 10px;
}

.slide {
    background-size: cover !important;
    box-sizing: border-box;
    min-height: 98vh !important;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    width: 100% !important;
}

.d-none {
    display: none !important;
}

.right {
    text-align: right;
}

.centerVertically {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-evenly;
    width: 100%;
}

.bottom {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.contactUsButton {
    font-size: 32px;
    position: absolute;
    right: 100px;
    top: 0px;
    user-select: none;
    width: auto;
    z-index: 2000;
    text-decoration: none;
    padding: 12px 15px;
    background: #0070ff;

    @media (min-width: 1000px) {
        font-size: 64px;
        z-index: 1;
    }
}

.mainMenuButton {
    background: var(--menuButtonBackgroundColor);
    cursor: pointer;
    display: block;
    height: 25px;
    padding: 20px;
    position: fixed;
    right: 0;
    top: 0;
    user-select: none;
    width: 25px;
    z-index: 2000;
}

.mainMenuOverlay.active {
    -webkit-backdrop-filter: blur(var(--blurRadius));
    backdrop-filter: blur(var(--blurRadius));
    bottom: 0;
    display: block;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.mainMenuOverlay {
    display: none;
}

.mainMenu {
    -webkit-backdrop-filter: blur(var(--blurRadius));
    backdrop-filter: blur(var(--blurRadius));
    background: var(--menuBackgroundColor);
    bottom: 0;
    display: flex;
    flex-direction: column;
    line-height: 40px;
    max-width: 500px;
    overflow-y: auto;
    padding-top: 60px;
    position: fixed;
    right: -500px;
    text-align: left;
    top: 0;
    transition: right 200ms;
    width: 90%;
    z-index: 1001;
}

.mainMenu.active {
    right: 0 !important;
}

.mainMenu a {
    display: block;
    font-size: 32px;
    padding: 10px 30px;
}

.mainMenu a, .mainMenu a:visited, .mainMenu a:active {
    color: white;
    text-decoration: none;
}

.mainMenu a:hover {
    color: lightgray;
    text-decoration: none;
}
