@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/raleway-v34-latin-regular.eot');
    src: url('../fonts/raleway-v34-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/raleway-v34-latin-regular.woff2') format('woff2'),
        url('../fonts/raleway-v34-latin-regular.woff') format('woff'),
        url('../fonts/raleway-v34-latin-regular.ttf') format('truetype'),
        url('../fonts/raleway-v34-latin-regular.svg#Raleway') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/raleway-v34-latin-600.eot');
    src: url('../fonts/raleway-v34-latin-600.eot?#iefix') format('embedded-opentype'),
        url('../fonts/raleway-v34-latin-600.woff2') format('woff2'),
        url('../fonts/raleway-v34-latin-600.woff') format('woff'),
        url('../fonts/raleway-v34-latin-600.ttf') format('truetype'),
        url('../fonts/raleway-v34-latin-600.svg#Raleway') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-size: 16px;
    line-height: 1.2;
    font-family: 'Raleway', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 960px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

strong {
    font-weight: 600;
}

h1 {
    margin: 24px 0 0;
    font-size: 16px;
    font-weight: 400;
}

h1 strong {
    font-weight: 400;
    font-size: 34px;
    line-height: 1.3;
}

h1 span {
    font-size: 39px;
}

h2 {
    font-size: 16px;
    margin: 5px 0 5px;
    font-weight: 600;
    line-height: 23px;
    display: inline-block;
    position: relative;
}

h2::before {
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 200%;
    content: "";
    border-top: 1px solid #000;
}

h3 {
    font-size: 19px;
    margin: 11px 0 4px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
}


.content p:not(:last-child) {
    margin-bottom: 12px;
}

:is(p, li) span {
    white-space: nowrap;
}

.special {
    vertical-align: bottom;
    font-size: 13px;
}

.images {
    position: absolute;
    bottom: 0;
    right: 0;
}

.images div {
    position: relative;
}

.youtube {
    position: absolute;
    top: 160px;
    left: -21px;
}

.instagram {
    position: absolute;
    top: 495px;
    left: -21px;
}

.tiktok {
    position: absolute;
    top: 751px;
    left: -21px;
}

.pinterest {
    position: absolute;
    bottom: 99px;
    left: -21px;
}

.content {
    padding: 20px 240px 8px 50px;
}

.title {
    background: #CD1619;
    padding: 45px 196px 25px 50px;
}


.title :is(p, h1, h2) {
    color: #fff;
}

.bold {
    margin-right: -36px;
}

.border {
    border-top: 1px solid #000;
    margin-top: 12px;
    padding-top: 12px;
}

footer {
    height: 90px;
    display: flex;
    background: #575656;
    padding: 6px 220px 6px 50px;
    justify-content: space-between;
    align-items: center;
}

footer p {
    line-height: 19px;
    margin: 0;
}

footer div {
    display: flex;
    gap: 16px;
    align-items: center;
}

footer :is(p, a) {
    color: #fff !important;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 2px 0 22px;
    list-style: none;
}

ul li {
    padding-left: 12px;
    margin-bottom: 4px;
}

ul li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 16px;
    text-indent: -12px;
    margin-top: -1px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

@media (max-width: 960px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    .content {
        height: auto;
    }

    ul li {
        margin-bottom: 2px;
    }

    :is(p, ul) {
        margin-bottom: 16px;
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(footer br) {
        display: none;
    }

    .bold {
        margin-right: 0px;
    }
}

@media (max-width: 767px) {
    :is(.title, footer) {
        padding: 1rem;
    }

    .content {
        padding: 1rem 1rem 0;
    }

    .images {
        position: static;
        margin: 15px 0;
    }

    .images .hidden {
        display: none;
    }

    .images div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .images div img {
        position: static;
    }
}

@media (max-width: 535px) {
    footer {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    ul {
        margin-left: 0;
    }
}

@media (max-width:450px) {
    h1 {
        line-height: 34px;
        font-size: 28px;
    }
}

@media (max-width:374px) {
    footer div {
        height: auto;
        flex-direction: column-reverse;
        align-items: center;
        gap: 0;
    }

    footer div p {
        text-align: center;
    }

    footer {
        gap: 14px;
    }
}