:root {
    font-size: 16px;
}
@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');
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font: 400 1em/1.3em 'Roboto', Arial, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.85em;
    line-height: 1.1;
    font-weight: 700;
}
h2 {
    margin: 1rem 0;
    font-size: 1.65em;
    line-height: 1.25;
    font-weight: 700;
}
h2 strong {
    display: inline-block;
    padding-right: 96px;
    border-bottom: 4px solid #000;
}
h3 {
    margin: 0 0 1rem;
    font-size: 2em;
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
}
p:not(:last-of-type) {
    margin-bottom: 16px;
}
header {
    display: none;
}
article {
    padding: 20px 212px 32px 39px;
    background: #FEED00 url('../images/background.jpg') no-repeat top right;
}
.icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 34px 12px;
    margin-bottom: 20px;
}
.icon div {
    width: 48%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}
.images {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1 1 0;
}
.images p {
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 3px !important;
}
footer {
    padding: 32px 32px 32px 34px;
    display: flex;
    justify-content: space-between;
    gap: 3px;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
.buttom {
    margin: 20px 0;
}
.buttom a {
    display: inline-block;
    padding: 10px 15px;
    background: #fff;
}
@media all and (max-width:799px) {
    #wrapper {
        margin: 0;
        border: none;
    }
    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }
}
@media all and (max-width:767px) {
    header {
        display: block;
    }
    article {
        padding: 16px;
        background-image: none;
    }
    .icon {
        gap: 16px;
    }
    footer {
        padding: 16px 6px 10px 16px;
    }
}
@media all and (max-width:478px) {
    h1 {
        font-size: 24px;
    }
    h1 br {
        display: none;
    }
    h2 strong {
        padding-right: 16px;
    }
    .icon div {
        width: 100%;
    }
    .icon br {
        display: none;
    }
}