@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
}

#wrapper {
    max-width: 950px;
    margin: 1rem auto;
    border: 1px solid #000;
    background-color: #1061a5;
}

header {
    padding: 60px 60px 30px;
    background: #1d497d;
}

header :is(p, h1) {
    color: #fff;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text {
    width: 80%;
}

article {
    padding: 30px 45px 0;
}

.content {
    background: #fff;
    padding: 25px;
}

.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.column {
    width: 48%;
}

.column:nth-of-type(2) ul {
    padding: 15px 0 0 15px;
}

.column div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 15px;
}

.column div p strong {
    display: block;
}

.column div img {
    width: 50px;
}

.flex {
    display: flex;
    gap: 62px;
    align-items: center;
    justify-content: center;
}

.flex div {
    gap: 14px;
    display: flex;
}

footer {
    padding: 0 45px 45px;
}

.button {
    display: flex;
    justify-content: center;
    padding: 0 0 55px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.button>a {
    display: inline-block;
    color: #fff !important;
    text-align: center;
    background: #8996a6;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    border-radius: 0.25rem;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 22px;
    line-height: 1.2;
    margin: 30px 0 0;
    text-align: center;
    font-weight: 400;
}

h2 {
    font-size: 13px;
    line-height: 20px;
    margin-top: 25px;
}

h2:first-of-type {
    margin-top: 0;
    padding-bottom: 10px;
}

h3 {
    font-size: 19px;
    line-height: 20px;
    margin: 20px 0;
    font-weight: 400
}

ul {
    list-style: none
}

ul li {
    padding-left: 12px;
    margin-bottom: 5px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 23px;
    text-indent: -12px;
}

img {
    max-width: 100%;
}

:is(h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:950px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    header {
        padding: 16px !important
    }

    :is(header, article, footer) {
        padding: 0 16px
    }

    .top {
        gap: 16px
    }

    .text {
        width: 70%
    }
}

@media only screen and (max-width:650px) {
    .top {
        display: block;
    }

    .logo {
        display: flex;
        justify-content: center;
    }

    .text {
        width: auto;
        padding-top: 16px
    }

    .flex-box {
        display: block;
    }

    .column {
        width: auto
    }

    h1 br {
        display: none
    }

    ul {
        padding-left: 0 !important
    }

    .flex {
        flex-wrap: wrap;
        gap: 16px;
    }
}