:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: 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;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

h1 {
    margin: 0 0 2rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

h2 {
    margin: 1rem 0;
    font-size: 1.5em;
    line-height: 1.25;
}

h2 strong {
    display: inline-block;
    padding-right: 96px;
    border-bottom: 4px solid #000;
}

h3 {
    margin: 0 0 1rem;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
}

p:not(:last-of-type) {
    margin-bottom: 1rem;
}

header {
    display: none;
}

article {
    padding: 1rem 13.245rem 2rem 2.4rem;
    background: #FEED00 url('../images/background.jpg') no-repeat top right;
}

.icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.125rem 0.7rem;
    margin-bottom: 32px;
}

.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: 0.7rem;
    flex: 1 1 0;
}

.images p {
    margin-bottom: 3px !important;
}

footer {
    padding: 2rem 2rem 2rem 2.125rem;
    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: 1.25rem 0;
}

.buttom a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 20px;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 25px;
    text-indent: -20px;
}

@media all and (max-width:799px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    span br {
        display: none;
    }
}

@media all and (max-width:767px) {
    header {
        display: block;
    }

    article {
        padding: 1rem;
        background-image: none;
    }

    .icon {
        gap: 1rem;
    }

    footer {
        padding: 1rem;
    }
}

@media all and (max-width:478px) {
    .icon div {
        width: 100%;
    }

    .icon br {
        display: none;
    }
}