@font-face {
    font-family: 'basier';
    src: url('../fonts/basier/basierRegular.woff2') format('woff2'),
    url('../fonts/basier/basierRegular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'basier';
    src: url('../fonts/basier/basierMedium.woff2') format('woff2'),
    url('../fonts/basier/basierMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'basier';
    src: url('../fonts/basier/basierSemiBold.woff2') format('woff2'),
    url('../fonts/basier/basierSemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'basier';
    src: url('../fonts/basier/basierBold.woff2') format('woff2'),
    url('../fonts/basier/basierBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'basier_mono';
    src: url('../fonts/basier_mono/basierMonoRegular.woff2') format('woff2'),
    url('../fonts/basier_mono/basierMonoRegular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'basier_mono';
    src: url('../fonts/basier_mono/basierMonoMedium.woff2') format('woff2'),
    url('../fonts/basier_mono/basierMonoMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'basier_mono';
    src: url('../fonts/basier_mono/basierMonoSemiBold.woff2') format('woff2'),
    url('../fonts/basier_mono/basierMonoSemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'basier_mono';
    src: url('../fonts/basier_mono/basierMonoBold.woff2') format('woff2'),
    url('../fonts/basier_mono/basierMonoBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'basier_mono', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'basier', sans-serif;
}

a {
    text-decoration: none;
    color: #707070;
    transition: all 500ms ease;
}

a:hover {
    text-decoration: underline;
}

.btn {
    border: 1px solid #000;
    background-color: #000;
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    padding: 8px 16px;
    transition: all 300ms ease;
}
.btn:hover {
    color: #000;
    background-color: #ff0;
    border-color: #ff0;
    text-decoration: none;
}
.outline_btn {
    border: 1px solid #000;
    background-color: transparent;
    font-size: 12px;
    line-height: 15px;
    color: #000;
    padding: 8px 16px;
    transition: all 300ms ease;
}
.outline_btn:hover {
    background-color: #000;
    color: #fff;
    text-decoration: underline;
}
.back_to_hq {
    --min-font: 16;
    --min-font-px: 16px;
    --max-font: 19;
    --max-font-px: 19px;
    font-weight: 600;
    line-height: 24px;
    opacity: 0.15;
    transition: all 300ms ease;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    font-family: 'basier', serif;
}
.back_to_hq svg {
    margin-left: 15px;
}
.back_to_hq:hover {
    opacity: 1;
    color: #000;
    text-decoration: none;
}

header.site-header,
footer.site-footer {
    display: none !important;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1840px;
    }
}