@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

#root, #__next {
    isolation: isolate;
}

html, body {
    background-color: #020D1D;
}

sup {
    font-size: 60%;
}

.hidden {
    display: none !important;
}

.head-menu {
    margin: 0 auto;
    padding: 20px 0 0 0;
    width: clamp(100px, 100%, 1200px);
}

.head-menu, .head-menu > div {
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}

.head-menu > div {
    padding: 10px 5px;
    color: #FF9C59;
    font-family: var(--font-oswald);
    font-size: 18px;
}

.head-menu > .controls {
    display: none;
}

.head-menu > div > img.ico {
    margin-right: 5px;
}

.head-menu > div.active {
    color: #FFFFFF;
}

.header-menu-open {
    display: none;
}

.pl100 {
    padding-left: 100px !important;
}

.pr100 {
    padding-right: 100px !important;
}

.pt50 {
    padding-top: 55px !important;
}

.ml100 {
    margin-left: 100px !important;
}

.mr100 {
    margin-right: 100px !important;
}

:root {
    --font-roboto: "Roboto Condensed", sans-serif;
    --font-oswald: "Oswald", sans-serif;
}

@media (max-width: 1700px) {
    .head-menu {
        margin-left: 210px;
        padding-top: 30px;
        width: auto;
    }
}

@media (max-width: 1200px) {
    .pl100 {
        padding-left: 20px !important;
    }

    .pr100 {
        padding-right: 20px !important;
    }

    .pt50 {
        padding-top: inherit !important;
    }

    .ml100 {
        margin-left: inherit !important;
    }

    .mr100 {
        margin-right: inherit !important;
    }

    .mob-hidden {
        display: none !important;
    }

    .head-menu {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: stretch;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #31589C;
        margin: 0;
        padding: 20px;
        z-index: 1000;
    }

    .head-menu > .menu-arrow {
        display: none;
    }

    .head-menu > .controls {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        align-content: stretch;
        margin-bottom: 20px;
    }

    .head-menu > .controls > div > img {
        height: 25px;
    }

    #mob-menu-close {
        cursor: pointer;
    }

    .header-menu-open {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        height: 30px;
        cursor: pointer;
    }
}
