/*---GENERAL---*/
:root {
    --blue-accent: #162a3d;
    --blue-light: #b5c6d5;
    --blue-mid: #495f75;
    --blue-dark: #091929;
    --blue-transparent: #162a3d61;
    --gray-accent: #efefef;
    --gray-light: #f2f2f2;
    --gray-mid: #dddddd;
    --gray-shaded: #6b6b6b;
    --gray-dark: #222222;
    --fs-40: clamp(28px, 1.07vw + 24.5px, 40px);
    --fs-38: clamp(27px, 0.98vw + 23.8px, 38px);
    --fs-36: clamp(26px, 0.89vw + 23.1px, 36px);
    --fs-32: clamp(24px, 0.71vw + 21.7px, 32px);
    --fs-30: clamp(22px, 0.71vw + 19.7px, 30px);
    --fs-28: clamp(21px, 0.63vw + 19px, 28px);
    --fs-26: clamp(19px, 0.63vw + 17px, 26px);
    --fs-24: clamp(18px, 0.54vw + 16.3px, 24px);
    --fs-22: clamp(17px, 0.45vw + 15.6px, 22px);
    --fs-20: clamp(16px, 0.36vw + 14.8px, 20px);
    --fs-18: clamp(15px, 0.27vw + 14.1px, 18px);
    --fs-16: clamp(14px, 0.18vw + 13.4px, 16px);
}
* {
    box-sizing: border-box;
    font-family: Oswald;
    scroll-behavior: smooth;
    overflow-anchor: none;
}
html {
    /* overscroll-behavior: none; */
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;
    background-color: var(--blue-accent);
    overflow-x: hidden;
}
main {
    flex: 1;
}
main, section {
    background-color: var(--gray-light);
}
a {
    text-decoration: none;
    cursor: pointer;
}
a:focus {
    outline: none;
}
img {
    max-width: 100%;
}
button {
    outline: transparent;
    border: transparent;
}
.button {
    display: block;
    font-family: Oswald;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    color: var(--gray-accent);
    background-color: var(--blue-accent);
    border: 0;
    transition: all .25s ease-in-out;
}
.button:hover {
    background-color: var(--blue-dark);
    color: #fff;
}
sup {
    font-size: 10px;
    vertical-align: super;
}
section[id] {
    scroll-margin-top: var(--header-height, 164px);
    scroll-behavior: smooth;
}
.wpcf7 form .wpcf7-response-output {
    border-width: 1px !important;
    color: var(--blue-accent);
}
.contacts .wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0.3em 1em;
    width: fit-content;
    align-self: center;
}
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--blue-dark);
    }
    main, section {
        background-color: var(--blue-accent);
    }
    .wpcf7 form .wpcf7-response-output {
        color: var(--gray-accent);
    }
}