@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: #000156;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
}

#wrapper {
    max-width: 1090px;
    margin: 1rem auto;
    border: 1px solid #000;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    position: relative;
}

header {
    width: 410px;
    padding: 10px 0;
}

figure {
    position: absolute;
    bottom: 0;
    left: 0
}

.top {
    display: flex;
    align-items: flex-start;
    gap: 58px;
}

.text p {
    color: #15326d;
    font-size: 11px;
    line-height: 11px;
}

.flex {
    margin-top: 10px;
}

.flex p {
    padding-left: 80px;
    position: relative;
}

.flex p span {
    position: absolute;
    top: 0;
    left: 0;
}

.padding {
    padding-left: 8px;
}

article {
    width: 63%;
    background: url('../images/background.jpg') no-repeat;
    background-size: cover;
    border-left: 13px solid #455f51;
    padding: 10px 16px;
    position: relative;
}

article .logo {
    position: absolute;
    top: 50px;
    right: 16px
}

.font {
    font-size: 17px;
    padding-right: 107px;
    line-height: 23px;
}

.title {
    padding-right: 102px;
}

footer {
    position: absolute;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 19px;
    line-height: 25px;
    margin: 15px 0 0;
    text-align: center;
}

h1+p {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    padding-top: 15px;
}

h2 {
    font-size: 14px;
    line-height: 21px;
    margin-top: 10px;
}

ul {
    list-style: none;
    margin-top: 10px;
}

ul li {
    padding-left: 32px;
}

li:before {
    content: "\2022";
    color: #000156;
    float: left;
    font-size: 23px;
    text-indent: -32px;
}

ul.ul {
    margin: 0;
}

ul.ul+p {
    margin-top: 0;
}

ul.ul li {
    padding-left: 0;
    text-indent: 4px;
}

ul.ul li:before {
    content: "\2212";
    text-indent: 0;
    font-size: 13px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000156;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:1090px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}

@media only screen and (max-width:840px) {
    #wrapper {
        display: block;
    }

    :is(header, article) {
        width: auto
    }

    figure {
        display: none
    }
}

@media only screen and (max-width:590px) {
    :is(.font, .title) {
        padding-right: 0
    }

    article .logo {
        position: static;
        display: flex;
        justify-content: center;
        margin-block: 16px
    }
}

@media only screen and (max-width:390px) {
    .top {
        flex-direction: column;
        align-items: center;
        gap: 16px
    }
}