@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;
}

:root {
    font-size: 1rem;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 400;
}

#wrapper {
    max-width: 1100px;
    margin: 16px auto;
    background: #F5F5F5;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 12px #ccc;
}

header {
    position: relative;
    width: 100%;
}

article {
    padding: 32px;
    flex: 1 1 0;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(171px, 1fr));
    grid-gap: 12px;
}

.benefits p {
    margin: 0;
    color: #E4003A;
}

.benefits p span {
    display: none;
}

.box {
    position: relative;
    min-height: 110px;
}

.box figure {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 10px;
}

.box:hover span {
    display: block;
    width: 300px;
    background: #E4003A;
    position: absolute;
    top: 80%;
    padding: 16px;
    color: #fff !important;
    z-index: 99;
}

footer {
    padding: 16px;
    background: #E4003A;
    width: 310px;
}

footer figure {
    margin: 0 0 10px;
}

footer p {
    color: #fff;
}

.logo {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.center {
    text-align: center;
    margin: 0;
}

.center a {
    color: #E4003A !important;
}

.button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

.button a {
    display: inline-block;
    padding: 10px 15px;
    background: #E4003A;
    color: #fff !important;
    border: 1px solid transparent;
    transition: .3s;
}

.button a:hover {
    opacity: 0.8;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    padding: 16px;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    color: #E4003A;
}

h2 {
    margin: 16px 0;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: #E4003A;
}

h3 {
    margin: 16px 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

ul {
    padding: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 20px;
}

li:before {
    content: '\2022';
    color: #E4003A;
    float: left;
    font-size: 24px;
    text-indent: -14px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

@media all and (max-width: 1098px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    article {
        padding: 16px 16px 62px;
    }

    .benefits .box span {
        width: 100%;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(a, span:not(.box span)) {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}

@media all and (max-width: 900px) {
    #wrapper {
        flex-direction: column;
    }

    footer {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    footer p {
        text-align: center;
    }
}

@media all and (max-width: 767px) {
    h1 {
        position: static;
        background: #F5F5F5;
    }

    ul li {
        padding-left: 14px;
    }
}

@media all and (max-width: 424px) {
    :is(.benefits, .box) {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .box p {
        text-align: center;
    }

    .benefits .box span {
        width: 288px;
    }

    .box:hover span {
        left: 50%;
        transform: translateX(-50%);
    }
}