@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v22-latin-regular.eot');
    src: url('../fonts/poppins-v22-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v22-latin-regular.woff2') format('woff2'), url('../fonts/poppins-v22-latin-regular.woff') format('woff'), url('../fonts/poppins-v22-latin-regular.ttf') format('truetype'), url('../fonts/poppins-v22-latin-regular.svg#Poppins') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v22-latin-600.eot');
    src: url('../fonts/poppins-v22-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v22-latin-600.woff2') format('woff2'), url('../fonts/poppins-v22-latin-600.woff') format('woff'), url('../fonts/poppins-v22-latin-600.ttf') format('truetype'), url('../fonts/poppins-v22-latin-600.svg#Poppins') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v22-latin-700.eot');
    src: url('../fonts/poppins-v22-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v22-latin-700.woff2') format('woff2'), url('../fonts/poppins-v22-latin-700.woff') format('woff'), url('../fonts/poppins-v22-latin-700.ttf') format('truetype'), url('../fonts/poppins-v22-latin-700.svg#Poppins') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.1875rem;
    color: #212529;
    font-weight: 400;
}

#wrapper {
    max-width: 940px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    box-shadow: 3px 3px 11px 2px #939095;
}

header {
    position: relative;
}

header:before {
    content: "";
    background: url("../images/header-img.png");
    background-size: cover;
    height: 90px;
    width: 90px;
    position: absolute;
    bottom: -46px;
    left: 2px;
    z-index: 9;
}

article {
    padding: 11px 7% 0;
}

.button {
    margin: 0 0 20px;
}

.button a {
    background: #035083;
    padding: 10px;
    border-radius: 1px;
    width: 175px;
    color: #FFF !important;
    text-align: center;
    display: inline-block;
}

footer {
    margin: 1.4375rem 0 0;
    padding: 1rem 7%;
    background: #F0F0F1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer a {
    font-size: 18px;
}

footer p img {
    margin-right: 0.875rem;
    position: relative;
    top: -4px;
}

:is(h1, h2, h3) {
    font-weight: 600;
}

strong {
    font-weight: bold;
}

:is(.blue-color, h2, h3) {
    color: #035083 !important;
}

h1 {
    font-size: 29px;
    line-height: 1.4;
    background: #004780;
    color: #ffffff;
    padding: 1.5rem 5%;
    bottom: -5px;
    left: 5%;
    width: 90%;
    position: absolute;
}

h2 {
    font-size: 18px;
    margin: 1.25rem 0 0;
    line-height: 1.2;
}

h3 {
    font-size: 22px;
    margin: 16px 0 23px;
    line-height: 23px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:hover, a:visited, a:active) {
    color: #212529;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 1.5625rem;
    margin: 4px 0;
}

ul li:before {
    text-indent: -1.5625rem;
    content: "\2022";
    color: #035083;
    float: left;
    font-size: 1.3125rem;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

@media screen and (max-width:939px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul, h3) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        font-size: 3.275vw;
        padding: 1rem 4%;
    }

    span {
        white-space: nowrap;
    }
}

@media screen and (max-width:767px) {
    article {
        padding: 17px 1rem 0;
    }

    h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    header:before {
        height: 50px;
        width: 50px;
        bottom: -28px;
        left: 1rem;
    }

    footer {
        padding: 1rem;
        margin: 1rem 0 0;
    }
}

@media screen and (max-width:680px) {
    h1 {
        position: static;
        width: 100%;
    }

    header:before {
        display: none;
    }
}