@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #3c3c3b;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.42857;
    font-weight: 400;
}

#wrapper {
    max-width: 1170px;
    margin: 16px auto;
    padding: 25px 32px 32px;
    background-color: #fff;
    position: relative;
    box-shadow: 9px 12px 20px #4c4c4c;
}

header {
    padding: 0 0 68px;
    display: flex;
    justify-content: flex-end;
}

figure {
    margin: 0 -32px 40px;
}

.margin {
    margin: 0 0 50px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.box {
    width: 48%;
}

footer {
    margin: 18px 0 15px;
}

footer a {
    display: inline-block;
    padding: 2px 20px;
    background: #d50061;
    color: #eee !important;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: .3s;
}

footer a:hover {
    background: #b60053;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 28px;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.1;
    color: #d50061;
    text-transform: uppercase;
}

h2 {
    font-weight: 700;
    font-size: 18px;
    margin: 30px 0 16px;
}

ul {
    margin: 0 0 22px;
    list-style: none;
}

ul li {
    padding-left: 16px;
    margin: 0 0 16px;
}

li:before {
    content: '\25A0';
    color: #d50061;
    float: left;
    font-size: 14px;
    text-indent: -16px;
}

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: 1170px) {
    #wrapper {
        padding: 16px;
        margin: 0;
        border: none;
    }

    header {
        padding: 0 0 16px;
    }

    figure {
        margin: 0 -16px 32px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(a, span) {
        white-space: nowrap;
    }
}

@media all and (max-width: 767px) {
    .flex {
        flex-direction: column;
        gap: 0;
    }

    .box {
        width: 100%;
    }
}

@media all and (max-width: 480px) {
    :is(header, .button) {
        display: flex;
        justify-content: center;
    }

    h1 {
        font-size: 36px;
        line-height: 1.25;
    }
}