@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v40-latin-600.eot');
    src: url('../fonts/open-sans-v40-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-600.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-600.woff') format('woff'), url('../fonts/open-sans-v40-latin-600.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-600.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 62.5rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

img {
    max-width: 100%;
    height: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.site {
    color: #00A4E8;
    font-weight: 600;
}

a.site:hover {
    color: #999;
    text-decoration: underline
}

h1 {
    font-size: 29px;
    line-height: 1.12;
    margin: 0 0 1.625rem;
    color: #005dba;
    font-weight: 700
}

h2 {
    font-weight: 600;
    margin: 0 0 0.625rem;
    font-size: 1rem;
}

p {
    margin: 0 0 1.625rem;
}

span {
    white-space: nowrap;
}

ul {
    list-style: none;
    margin: 0 0 1.625rem;
    padding: 0;
}

ul li {
    padding-left: 2rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
    font-size: 1.55rem;
    line-height: 0.8;
}

header {
    padding: .875rem 7.1875rem .5rem;
    border-top: 0.4375rem solid #00A4E8;
}

.slider {
    position: relative;
}

.slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 24s linear infinite 0s;
}

.slider > img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider > img:nth-of-type(2) {
    animation-delay: 6s;
}

.slider > img:nth-of-type(3) {
    animation-delay: 12s;
}

.slider > img:nth-of-type(4) {
    animation-delay: 18s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }
}

article {
    padding: 1.625rem 7.1875rem 0;
}

.content,
.flex {
    display: flex;
    gap: 1rem;
}

:is(.content, .flex) section {
    width: 50%;
}

.button {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    background-color: rgb(255, 165, 0);
    border: 0.1875rem solid rgb(8, 117, 225);
    border-radius: 0.3125rem;
    padding: 0.5rem 1rem;
    margin: 0 0 1.875rem;
    width: fit-content
}

.button:hover {
    color: #fff;
    background-color: #00A4E8;
    border: 0.1875rem solid #0875E1;
    text-decoration: none;
    transition: all 0.5s;
}

footer {
    background-color: #2E3C43;
    padding: 1.625rem 7.1875rem;
    border-top: 0.4375rem solid #00A4E8;
}

footer p {
    font-size: .937rem;
    letter-spacing: -0.2px;
    margin: 0;
    color: #fff;
}

@media only screen and (max-width: 999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    header,
    article,
    footer {
        padding: 1rem;
    }

    .no_margin {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 1.375rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1rem;
    }

    header {
        display: flex;
        justify-content: center;
    }

    .content {
        flex-direction: column;
    }

    .content section {
        width: 100%;
    }

    footer p {
        text-align: center
    }

    .button {
        margin: 1.25rem auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (max-width: 480px) {
    .flex {
        flex-direction: column;
    }

    .flex section {
        width: 100%;
    }

    .flex p {
        text-align: center;
    }

    ul li {
        padding-left: 1rem;
    }
}

@media only screen and (max-width: 376px) {
    .button {
        width: 100%
    }
}