:root {
    --brand-color: #0e2050;
    --brand-color2: #8BC033;
    --default-font-size: 1.3rem;
    --default-text-color: #0e2050;
    --secondary-text-color: #00a87b;
    --header-text-color: #545958;
    --header-background-color: #ffffff;
    --footer-font-size: 1.3rem;
    --footer-text-color: #ffffff;
    --footer-background-color: #000105;
    --error-color: #dc3545;
}

@media (max-width: 767.98px) {
    :root {
        --default-font-size: 1.2rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    color: var(--default-text-color);
    font-size: var(--default-font-size);
    font-family: "Roboto", sans-serif;
}

main {
    min-height: 80%;
    padding: 0 0 12vw;
    background-image: url("../img/welle_footer_desktop.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom left;

    @media (max-width: 767.98px) {
        padding-bottom: 45vw;
        background-image: url("../img/welle_footer_mobil.png");
    }
}

footer {
    padding: 5rem 10rem;
    color: var(--footer-text-color);
    font-size: var(--footer-font-size);
    background: #002151;
    background: linear-gradient(90deg, rgba(0, 33, 81, 1) 0%, rgba(0, 95, 172, 1) 50%, rgba(0, 33, 81, 1) 100%);
}

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

footer ul li {
    display: inline-block;
}

footer a {
    margin-left: 35px;
    color: var(--footer-text-color);
    text-decoration: none;
}

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

h1,
h2,
h3 {
    font-family: "BebasNeue", sans-serif;
    font-weight: normal;
    text-align: center;
    line-height: 100%;
    text-transform: uppercase;
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 5rem;
}

h3 {
    font-size: 3.5rem;
}

p {
    margin-bottom: 0;
}

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

.navbar {
    align-items: flex-end;
    padding: .75rem 10rem;
}

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

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

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

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

.nav-link {
    padding-left: 1.75rem !important;
    color: var(--header-text-color) !important;
    font-size: 1.5rem;
    font-weight: normal;
}

a.nav-link,
a:hover.nav-link {
    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;
}

.btn-outline-primary {
    padding: .375rem 3rem .25rem;
    color: var(--footer-background-color);
    font-family: "BebasNeue";
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--header-background-color);
    border: none;
    border-radius: 0;
}

.matmod-lru .btn-outline-primary {
    width: 275px;
    padding: .375rem 3rem .25rem;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover {
    color: var(--footer-background-color);
    background-color: var(--header-background-color);
    border: none;
    border-radius: 0;
}

.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;
}

.mat-konto h1 {
    color: var(--footer-background-color);
}

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

    h2,
    .mat-lru h2,
    .mat-konto h2 {
        font-size: 7.5vw;
    }

    h3 {
        font-size: 6vw;
    }

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

    .mat-konto table.table-uploads tr th {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        width: 115px;
    }

    footer {
        padding: 1.5rem 0;
    }

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

    footer a {
        margin-left: 0;
    }

    .btn-outline-primary {
        padding: .375rem 2.5rem .25rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
}