:root {
    --orange: #ff5a00;
    --blue: #0a2d45;
    --red: #c3232a;
}

html {
    overflow-y: scroll;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
}

a {
    color: inherit;
}

a:focus,
a:hover {
    text-decoration: none;
    color: inherit;
}

.text-orange {
    color: var(--orange);
}

.bg-orange {
    background-color: var(--orange);
}

.text-blue {
    color: var(--blue);
}

.bg-blue {
    background-color: var(--blue);
}

.text-red {
    color: var(--red);
}

.bg-red {
    background-color: var(--red);
}

header.h_fixed {
    position: fixed;
    top: 0;
    z-index: 50;

    background-color: var(--blue);

    animation: smoothScroll 0.8s forwards;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.5);
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-150px);
    }

    100% {
        transform: translateY(0px);
    }
}

@font-face {
    font-family: 'SplineSansMonoVariableFont_wght';
    src: url('../fonts/SplineSansMonoVariableFont_wght.eot');
    src: url('../fonts/SplineSansMonoVariableFont_wght.eot') format('embedded-opentype'),
        url('../fonts/SplineSansMonoVariableFont_wght.woff2') format('woff2'),
        url('../fonts/SplineSansMonoVariableFont_wght.woff') format('woff'),
        url('../fonts/SplineSansMonoVariableFont_wght.ttf') format('truetype'),
        url('../fonts/SplineSansMonoVariableFont_wght.svg#SplineSansMonoVariableFont_wght') format('svg');
}

@font-face {
    font-family: 'SourceSans3-VariableFont_wght';
    src: url('../fonts/SourceSans3-VariableFont_wght.eot');
    src: url('../fonts/SourceSans3-VariableFont_wght.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceSans3-VariableFont_wght.woff2') format('woff2'),
        url('../fonts/SourceSans3-VariableFont_wght.woff') format('woff'),
        url('../fonts/SourceSans3-VariableFont_wght.ttf') format('truetype'),
        url('../fonts/SourceSans3-VariableFont_wght.svg#SourceSans3-VariableFont_wght') format('svg');
}

body {
    color: var(--blue);
    font-family: 'SourceSans3-VariableFont_wght', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-weight: 400;
    background-color: #ffffff;
    overflow-x: hidden;
}

.font-title {
    font-family: 'SplineSansMonoVariableFont_wght', sans-serif;
}

.trans {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.grecaptcha-badge {
    display: none !important;
}

@media screen and (min-width: 576px) {}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 992px) {}