:root {
    --brand-color: #003565;
    --body-background-color: #f6f6f6;
    --default-font-size: 1.3rem;
    --default-text-color: #092c57;
    --header-text-color: #1c3f7a;
    --header-background-color: transparent;
    --footer-font-size: 1.25rem;
    --footer-text-color: #ffffff;
    --footer-background-color: #112d69;
    --error-color: #dc3545;
}

* {
    scroll-margin-top: 15rem;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--default-text-color);
    font-family: "Sofia", sans-serif;
    font-size: var(--default-font-size);
    font-weight: 300;
    line-height: 1.4;
    background-color: var(--body-background-color);
}

header {
    box-shadow: rgba(0, 0, 0, 0.35) 0 -8px 36px -28px inset;
}

main {
    padding: 0 0 75px;
}

footer {
    padding: 4rem 0;
    color: var(--footer-text-color);
    font-size: var(--footer-font-size);
    line-height: 1.6;
    background-color: var(--footer-background-color);
    background-image: url(../img/footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

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

footer ul li {
    display: inline-block;
}

footer a {
    margin: 0;
    color: var(--footer-text-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--footer-text-color);
    text-decoration: none;
}

h1,
h2,
h3 {
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}

h1 {
    font-size: 4.25rem;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 2rem;
    font-weight: normal;
    line-height: normal;
}

p {
    margin-bottom: 0;
}

b {
    font-weight: 600;
}

a,
a:hover {
    color: var(--default-text-color);
    text-decoration: underline;
}

.navbar {
    padding: .25rem 7rem;
}

.bg-light {
    background-color: var(--header-background-color) !important;
}

.navbar-light .navbar-toggler {
    font-size: 1.5rem;
    border: none;
    border-radius: 0;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("../img/menu.svg");
    background-repeat: no-repeat;
    background-size: contain
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: .5rem;
}

.navbar-brand img {
    height: 130px;
}

.nav-link {
    padding-top: 2.5rem !important;
    padding-left: 0 !important;
    padding-right: 1.75rem !important;
}

a.nav-link,
a:hover.nav-link {
    color: var(--header-text-color) !important;
    font-size: 1.5rem;
    text-decoration: none;
}

.full-width {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
}

.to-upper {
    text-transform: uppercase;
}

.break-out {
    position: relative;
    left: calc(-1 * (100vw - 100%) / 2);
    width: 100vw;
}

.gradient-box {
    margin-top: -1px;
    padding: 3rem 14vw;
    color: white;
    background: rgb(29, 96, 75);
    background: linear-gradient(90deg, rgba(29, 96, 75, 1) 0%, rgba(0, 165, 120, 1) 50%, rgba(29, 96, 75, 1) 100%);
}

.success-message div {
    position: absolute;
    top: 64%;
    left: 38%;
    width: 42rem;
    text-align: left;
}

.mat-howto {
    margin: 0;
    padding: 3rem 0 0;
    list-style: none;
}

.mat-howto li {
    margin-bottom: 1.25rem;
}

.mat-howto li img {
    width: 3rem;
    max-width: 3rem;
}

@media (max-width: 991.98px) {
    .gradient-box {
        padding: 3rem 6vw;
    }

    .success-message div {
        position: relative;
        left: auto;
        width: 100%;
        padding: 3rem 3rem 10rem;
        text-align: center;
    }

    .navbar {
        padding: 0 3rem;
    }

    .nav-link {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        padding-left: .75rem !important;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 3.125rem;
    }

    h2 {
        font-size: 2.125rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .navbar {
        padding: .75rem 1rem;
    }

    .navbar-brand img {
        height: 90px;
    }

    footer {
        padding: 4rem 1rem;
    }

    footer ul li {
        display: block;
        text-align: center;
    }

    footer a {
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 8vw;
    }

    h2 {
        font-size: 7vw;
    }

    h3 {
        font-size: 1.35rem;
    }
}