@font-face {
    font-family: 'Corbel';
    src: url('../fonts/Corbel.eot');
    src: url('../fonts/Corbel.eot?#iefix') format('embedded-opentype'), url('../fonts/Corbel.woff2') format('woff2'), url('../fonts/Corbel.woff') format('woff'), url('../fonts/Corbel.ttf') format('truetype'), url('../fonts/Corbel.svg#Corbel') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Corbel';
    src: url('../fonts/Corbel-Bold.eot');
    src: url('../fonts/Corbel-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Corbel-Bold.woff2') format('woff2'), url('../fonts/Corbel-Bold.woff') format('woff'), url('../fonts/Corbel-Bold.ttf') format('truetype'), url('../fonts/Corbel-Bold.svg#Corbel-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-size: 19px;
    line-height: 1.4;
    font-family: 'Corbel', Arial, sans-serif;
    color: #213b63;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #1e1e1e;
}

header {
    padding: 24px 50px 14px;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 16px 0;
    font-size: 22px;
    line-height: 32px;
}

h2 {
    font-size: 21px;
    margin: 50px 0 32px;
    line-height: 22px;
}

p:not(:last-child, .info p) {
    margin-bottom: 1rem;
}

:is(h1, h2, .info i) {
    color: #1e1e1e;
}

article {
    padding: 0 50px 24px;
}

.button {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.button a {
    text-transform: uppercase;
    font-size: 19px;
    line-height: 22px;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 700;
    background: #213b63;
    color: #fff !important;
}

:is(.slider, .slider img:nth-of-type(1)) {
    position: relative;
}

footer{
    padding: 0 20px 20px;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    34% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.slider img:nth-of-type(1) {
    position: relative;
}

.slider img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 25s linear 0s infinite normal forwards;
    vertical-align: bottom;
}

.slider img:nth-child(2) {
    animation-delay: 5s;
}

.slider img:nth-child(3) {
    animation-delay: 10s;
}

.slider img:nth-child(4) {
    animation-delay: 15s;
}

.slider img:nth-child(5) {
    animation-delay: 20s;
}

.info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.info p {
    margin: 0 0 4px;
}

.info div {
    width: 50%;
}

footer a i {
    font-size: 36px;
    margin: 0 10px 0 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #213b63;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 0 14px;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-size: 13px;
    text-indent: -1.25rem;
    line-height: 28px;
}

img {
    max-width: 100%;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 1rem;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    header {
        padding: 0;
    }

    article {
        padding: 0;
    }

    .silder {
        margin: 1rem -1rem;
    }
}

@media (max-width: 580px) {
    .info {
        flex-direction: column;
    }

    .info div {
        width: auto;
    }

    ul {
        margin: 0;
    }

    h2 {
        margin: 2rem 0 1rem;
    }
}