@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Inclusive Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inclusive-sans-v4-latin-regular.eot');
    src: url('../fonts/inclusive-sans-v4-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/inclusive-sans-v4-latin-regular.woff2') format('woff2'), url('../fonts/inclusive-sans-v4-latin-regular.woff') format('woff'), url('../fonts/inclusive-sans-v4-latin-regular.ttf') format('truetype'), url('../fonts/inclusive-sans-v4-latin-regular.svg#InclusiveSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Inclusive Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inclusive-sans-v4-latin-700.eot');
    src: url('../fonts/inclusive-sans-v4-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/inclusive-sans-v4-latin-700.woff2') format('woff2'), url('../fonts/inclusive-sans-v4-latin-700.woff') format('woff'), url('../fonts/inclusive-sans-v4-latin-700.ttf') format('truetype'), url('../fonts/inclusive-sans-v4-latin-700.svg#InclusiveSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/fira-sans-v18-latin-500.eot');
    src: url('../fonts/fira-sans-v18-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v18-latin-500.woff2') format('woff2'), url('../fonts/fira-sans-v18-latin-500.woff') format('woff'), url('../fonts/fira-sans-v18-latin-500.ttf') format('truetype'), url('../fonts/fira-sans-v18-latin-500.svg#FiraSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #002236;
    font-family: 'Inclusive Sans', "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: #60abfb;
    font-weight: 700;
}

a:hover {
    text-decoration: underline;
}

article p {
    margin-bottom: 1rem;
}

article>p {
    text-align: center;
}

h1 {
    font-family: 'Fira Sans';
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    background-color: #002236;
    padding: .5rem 1.5rem;
    border-radius: 3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

h2 {
    font-family: 'Fira Sans';
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 500;
    padding: .5rem 2rem;
    border-radius: 3rem;
    border: 1px solid #002236;
    background-color: #fff;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    transform: translateY(-50%);
}

ul {
    list-style: none;
    margin: -1rem 0 1rem;
}

ul li {
    padding: .5rem 0 0 1rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
}

.werde {
    margin: 1rem auto;
}

.section {
    padding: 0 1.5rem 1rem;
    border-radius: .625rem;
    border: 1px solid #002236;
    margin: 3rem 0 2rem;
}

.section>*:last-child {
    margin-bottom: 0;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


header a {
    position: absolute;
    top: 3rem;
    left: 3rem;
}

article {
    padding: 2rem;
}

footer {
    background-color: #002236;
    padding: 1rem;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 44rem) {
    header a {
        position: static;
    }

    header {
        display: flex;
        justify-content: center;
        padding: 1rem;
    }

    article {
        padding: 0 1rem 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 30rem) {
    h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .section {
        padding: 0 1rem 1rem;
    }
}