:root {
    --red: #fb0202;
}

*, *:after, *:before {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    max-width: 1920px;
    -webkit-font-smoothing: antialiased;
    font-family: 'RalewaySemiBold', sans-serif;
}

.container {
    width: 65%;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6, p, a, ul, li {
    margin: 0;
    padding: 0;
}

/* description */

.info .description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info .description h1 {
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: 1.2px;
    text-align: center;
    margin: 35px 0 20px 0;
}

.info .description p {
    line-height: 1.5;
    letter-spacing: 0.4px;
    margin: 10px 0 20px 0;
    font-family: 'RalewayRegular', sans-serif;
}

/* heart */

.heart {
    position: relative;
    margin: 10px 0;
}

.heart:before, .heart:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    top: 50%;
    display: flex;
    opacity: 0.5;
    background-color: #252525;
}

.heart:before {
    left: 0;
    transform: translate(calc(-100% - 20px), -50%);
}

.heart:after {
    right: 0;
    transform: translate(calc(100% + 20px), -50%);
}

/* base content for media */

.media-container {
    margin: 0 0 25px 0;
}

.media-container .container {
    width: 65%;
}

.media-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 25px 0;
}

.media-content > h2 {
    font-size: 36px;
    color: #fe0000;
    font-family: 'RalewayBold', sans-serif;
    text-align: left;
    width: 100%;
    margin: 25px 0;
}

.media-content > h2 span{
    font-size: 58px;
    margin-right: 5px;
}

.media-boxes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.media-box--element {
    min-height: 332px;
    width: calc(50% - 12px);
    margin: 25px 0;
}

.media-box--element iframe {
    width: 100%;
    height: 100%;
}

.media-box--element p {
    font-family: 'RalewaySemiBold', sans-serif;
    font-size: 24px;
    color: #252525;
}

.media-content .heart {
    margin: 35px 0 35px 0;
}

/* --> pages id */

.pages-container {
    display: flex;
    margin: 50px 0;
    flex-direction: column;
    align-items: center;
}

.pages .counter {
    font: 18px 'RalewayBold', sans-serif;
    letter-spacing: .5px;
    color: #9d9b9b;
    margin: 0 3px;
}

.pages .counter_active {
    font-size: 24px;
    color: #6e6d6d;
    margin: 0 3px;
}

.page-counter {
    margin: 25px 0;
    display: flex;
    justify-content: center;
}

.page-counter button {
    border-radius: 4px;
    background-color: #ff0000;
    font: 18px 'RalewayBold', sans-serif;
    letter-spacing: 0.5px;
    color: #fffcfc;
    text-transform: uppercase;
    padding: 10px 16px;
    border: none;
    outline: none;
    margin: 0 10px;
    cursor: pointer;
}

/* <-- admin */

/* footer */

#firstFooter h3, #footerSupport p {
    margin: 20px 0;
}

@media (max-width: 1400px) {
    .media-container .container {
        width: 75%;
    }
}

@media (max-width: 1100px) {
    .media-container .container {
        width: 85%;
    }
}

@media (max-width: 900px) {
    .media-container .container {
        width: 95%;
    }
}

@media (max-width: 800px) {
    .media-box--element iframe {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 700px) {
    .media-box--element iframe {
        width: 100%;
        height: 250px;
    }
}


@media (max-width: 650px) {
    .media-box--element iframe {
        height: 350px;
    }

    .media-content > h2 {
        text-align: center;
    }

    .media-box--element {
        flex-direction: column;
        width: 90%;
        margin: 10px auto;
        min-height: auto;
    }
}

@media (max-width: 450px) {
    .media-box--element iframe {
        height: 250px;
    }

    .media-content > h2 span {
        font-size: 38px;
    }

    .media-box--element p {
        font-size: 18px;
    }
}

@media (max-width: 350px) {
    .media-box--element iframe {
        height: 150px;
    }
}


