@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/pt-sans-v17-latin-regular.eot');
    src: url('../fonts/pt-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-v17-latin-regular.woff2') format('woff2'), url('../fonts/pt-sans-v17-latin-regular.woff') format('woff'), url('../fonts/pt-sans-v17-latin-regular.ttf') format('truetype'), url('../fonts/pt-sans-v17-latin-regular.svg#PTSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/pt-sans-v17-latin-700.eot');
    src: url('../fonts/pt-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-v17-latin-700.woff2') format('woff2'), url('../fonts/pt-sans-v17-latin-700.woff') format('woff'), url('../fonts/pt-sans-v17-latin-700.ttf') format('truetype'), url('../fonts/pt-sans-v17-latin-700.svg#PTSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'PT Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

#wrapper {
    max-width: 912px;
    margin: 1rem auto;
    border: 1px solid #284a95;
    background-color: #fff;
}

header {
    padding: 15px 20px;
    background: #284a95;
    display: flex;
    justify-content: flex-start;
    border-bottom: 10px solid #fad33a;
}

article {
    padding: 16px;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.text {
    width: 48%;
}

.img-right {
    width: 48%;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 25px;
    gap: 15px;
}

.left {
    width: 48%;
}

.right {
    width: 48%;
}

.img {
    margin-top: 20px;
}

footer {
    background: #284a95;
}

footer p {
    color: #fff;
    font-weight: 700;
    line-height: 21px;
}

.social {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.column {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.column:nth-of-type(1) {
    width: 182px;
}

.column:nth-of-type(2) {
    width: 158px;
}

.column:nth-of-type(3) {
    width: 265px;
}

.info {
    margin: -79px 0 0;
    padding: 0 35px 10px 210px;
}

p:not(:first-of-type) {
    margin-top: 15px;
}

h1 {
    font-size: 31px;
    line-height: 1.2;
    background: #fad33a;
    text-align: center;
    margin: 25px -16px 0;
    padding: 20px;
}

h1 span {
    display: block;
    font-size: 21px;
    line-height: 21px;
    font-weight: 400;
    padding-bottom: 10px;
}

h2 {
    font-size: 28px;
    line-height: 1.1;
    padding-bottom: 10px;
}

h3 {
    font-size: 18px;
    line-height: 21px;
    margin-top: 20px;
}

:is(h2, h2 + p) {
    text-align: center;
}

ul {
    list-style: none;
    margin-top: 10px;
}

ul li {
    padding-left: 23px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 23px;
    text-indent: -23px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 1px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, h3, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.a {
    color: #284a95 !important;
    text-decoration: underline !important;
}

:is(p, ul) {
    hyphens: auto;
    text-wrap: pretty
}

:is(p, ul) span {
    white-space: nowrap;
}
.ul{padding-top: 10px;}
@media only screen and (max-width:912px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    .info {
        margin: 10px 0 0;
        padding: 16px;
    }
}

@media only screen and (max-width:680px) {
    .social {
        flex-wrap: wrap;
    }

    .flex {
        flex-direction: column;
    }

    :is(.left, .right) {
        width: auto
    }
}

@media only screen and (max-width:410px) {
    .social {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .column {
        width: auto;
    }
}