@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v23-latin-regular.eot');
    src: local(''), url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v23-latin-regular.woff2') format('woff2'), url('../fonts/lato-v23-latin-regular.woff') format('woff'), url('../fonts/lato-v23-latin-regular.ttf') format('truetype'), url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v23-latin-700.eot');
    src: local(''), url('../fonts/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v23-latin-700.woff2') format('woff2'), url('../fonts/lato-v23-latin-700.woff') format('woff'), url('../fonts/lato-v23-latin-700.ttf') format('truetype'), url('../fonts/lato-v23-latin-700.svg#Lato') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #7A7A7A;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

#wrapper {
    max-width: 1100px;
    margin: 16px auto;
    border: 1px solid #7A7A7A;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

header {
    width: 100%;
}

.logo {
    background: #b4daec;
    padding: 16px;
}

.padding {
    padding: 0 20px;
}

article {
    padding: 10px 20px 20px;
    width: calc(100% - 345px);
}

.justify {
    text-align: justify;
}

.margin-bottom {
    margin-bottom: 16px;
}

.button a {
    display: inline-block;
    padding: 20px;
    border: 1px solid #2a93c9;
    background: #2A93C9;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff !important;
    text-align: center;
    transition: all .3s;
    border-radius: 5px;
}

.button a:hover {
    background: #fff;
    color: #2A93C9 !important;
}

.button+p {
    margin: 20px 0 0;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    padding: 11px 20px;
    width: 345px;
    border-left: 1px solid #7A7A7A;
}

footer p img {
    vertical-align: top;
    margin-right: 1px;
}

hr {
    border: 0;
    width: 66px;
    border-bottom: 2px solid #017D58;
    margin: 16px 0 20px;
}

span {
    white-space: nowrap;
}

p {
    margin: 0 0 28px;
}

:is(strong, h1, h2, h3, h4) {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.1;
    background: url('../images/background.jpg') no-repeat;
    background-size: cover;
    padding: 26px 20px;
    color: #fff;
}

h2 {
    margin: 28px 0 16px;
    font-size: 26px;
    line-height: 1.3;
    color: #000;
}

h2.margin {
    margin-top: 0;
}

h3 {
    margin: 0 0 20px;
    font-size: 26px;
    line-height: 1.2;
    color: #2A93C9;
}

h4 {
    margin: 0 0 16px;
    font-size: 20px;
    color: #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #2A93C9;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 15px;
}

li:before {
    content: "\2022";
    color: #2A93C9;
    float: left;
    font-size: 17px;
    text-indent: -15px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width:1098px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    .justify {
        text-align: left;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }
}

@media all and (max-width:900px) {
    body {
        font-size: 16px;
        line-height: 1.5;
    }

    article {
        width: calc(100% - 310px);
    }

    footer {
        width: 310px;
    }
}

@media all and (max-width:767px) {
    #wrapper {
        display: block;
    }

    :is(.logo, article, footer) {
        padding: 16px;
        border: none;
    }

    :is(article, footer) {
        width: 100% !important;
    }

    .padding {
        padding: 0 16px;
    }

    h1 {
        padding: 20px 16px;
        font-size: 32px;
        line-height: 1.15;
    }

    :is(h2, h3) {
        font-size: 24px;
    }
}