@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: rgb(78, 78, 76);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: normal;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.button {
    font-size: 1.062rem;
    font-weight: bold;
    color: #fff;
    background: rgb(54, 149, 212);
    border: 2px solid rgb(54, 149, 212);
    border-radius: 1px;
    padding: .625rem;
    display: block;
    max-width: 12.5rem;
    text-align: center;
    margin: 2.5rem auto 3.125rem
}

a.button:hover {
    background: none;
    color: rgb(54, 149, 212);
}

a.link {
    text-decoration: underline;
    text-decoration-color: rgb(54, 149, 212)
}
a.link:hover{
    opacity: 0.62
}
a.logo_small:hover {
    opacity: 0.62
}

p {
    margin: 0 0 .625rem;
}

span {
    white-space: nowrap
}

h1 {
    color: rgb(0, 80, 140);
    font-size: 1.875rem;
    margin-top: 1.562rem
}

h2 {
    font-size: 1.437rem;
    ;
    font-weight: normal;
    margin: 0 0 .625rem
}

ul {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

ul li {
    padding-left: 1.125rem;
    margin: 0 0 .437rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.125rem;
    font-size: 24px;
    line-height: 1;
}

header {
    background: rgb(54, 149, 212);
    box-shadow: 0 0 17px rgba(0, 0, 0, .26);
    position: relative
}

.logo,
.title,
article,
.text,
.bottom {
    max-width: 55.625rem;
    margin: 0 auto
}

.logo {
    padding: 10px 0
}

.top,
aside {
    background: #DFE6F4;
    padding: 1.562rem 0
}

article {
    padding: 1.562rem 0
}

footer {
    background: #999999;
    padding: 2.187rem 0
}

footer p {
    text-align: center;
    color: #fff;
    margin: 0
}

.bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.slider {
    position: relative;
}

.slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s 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;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}

@media only screen and (max-width: 900px) {
    #wrapper {
        border: none;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .logo {
        padding: 10px 1.25rem
    }

    .top,
    aside,
    article,
    footer {
        padding: 1.25rem
    }

    h1 {
        font-size: 1.625rem
    }
}

