/* Body */
body {
    color: #000;
    background: #f3f3f3;
}

/* Top Banner */
.top-banner {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1180px;
    transform: translate(-50%, 0);
}

/* Social */
.social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    font-size: 18px;
    color: #000;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
}

.social__button + .social__button {
    margin-left: 5px;
}

/* Site Head */
.site-head {
    color: #000;
    background: #fff;
}

.site-head__img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Site Menu */
.site-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50px;
    margin: 0 auto;
    padding: 0 10px;
    color: #000;
    background: #fff;
    border-top: 3px solid #000;
    border-bottom: 1px solid #898989;
}

.site-menu__items {
    display: flex;
    justify-content: space-between;
    flex: 1 1 auto;
}

.site-menu__item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5px;
    font: normal 400 12px/1 'Futura Futuris', sans-Serif;
    text-transform: uppercase;
}

.site-menu__item + .site-menu__item {
    margin-left: 10px;
}

.site-menu__item:before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e3000b;
    opacity: 0;
    transition: opacity 0.3s;
}

.site-menu__item:hover:before {
    opacity: 1;
}

.site-menu__item-link {
    transition: color 0.3s;
}

.site-menu__item-link:hover {
    color: #e3000b;
}

/* Site Body */
.site-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 15px;
    color: #000;
    background: #fff;
}

.site-body__main {
    width: 835px;
    padding: 45px 0 25px;
}

.site-body__side {
    position: sticky;
    top: 0;
    width: 300px;
    padding: 30px 0;
}

/* Site Foot */
.site-foot {
    color: #fff;
    background: #000;
}

.site-foot__inner {
    padding: 30px 0;
}

.site-foot__row {
    display: flex;
    align-items: center;
}

.site-foot__row + .site-foot__row {
    margin-top: 15px;
}

.site-foot__logo {
    margin-bottom: 15px;
}

.site-foot__social {
    margin: 0 0 0 50px;
}

.site-foot__copyright {
    width: 100%;
    font: normal 400 11px/1 Arial, sans-Serif;
    text-align: center;
    color: #898989;
}

/* Site Container */
.site-container {
    width: 1180px;
    margin: 0 auto;
}

/* Site */
.site {
    position: relative;
    z-index: 1000;
    min-height: 100vh;
}

/* Section */
.section {
    margin-bottom: 35px;
}

.section__title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 35px;
    font: normal 400 24px/1 'Futura Futuris', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.section__title:before,
.section__title:after {
    content: '';
    flex: 1 1 auto;
    width: 100%;
    height: 2px;
    background: #e3000b;
}

.section__title:before {
    margin-right: 15px;
}

.section__title:after {
    margin-left: 15px;
}

/* Card Video */
.card-video__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-video__iframe,
.card-video__poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-video__poster {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.card-video__button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 84px;
    height: 84px;
    text-indent: -9999px;
    background: url(../img/video-button.png) no-repeat 50% 50%;
    background-size: contain;
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    overflow: hidden;
}

.card-video__button:hover {
    opacity: 0.85;
}

/* Card */
.card {
    border: 1px solid #7d7d7d;
}

.card_archive {
    background-color: #ccc;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid #c80f0a;
}

.card__picture {
    position: relative;
}

.card__picture:before {
    content: '';
    display: block;
    width: 100%;
    padding: calc(200 / 215 * 100%) 0 0;
    background: #ccc;
}

.card_size_large .card__picture:before {
    padding: calc(253 / 445 * 100%) 0 0;
}

.card__img,
.card__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__img {
    opacity: 0;
    transition: opacity 0.6s;
}

.card__img.loaded {
    opacity: 1;
}

.card__content {
    padding: 10px 11px 15px;
}

.card__title {
    margin: 0 0 7px;
    font: normal 400 16px/1 'Futura Futuris', sans-serif;
    text-align: center;
}

.card__subtitle {
    margin: 0 0 10px;
    font: normal 400 12px/1 'Futura Futuris', sans-serif;
    text-align: center;
    color: #767676;
}

.card__subtitle strong {
    font-size: 16px;
    color: #000;
}

.card__text {
    font: normal 400 10.5px/14px 'Futura Futuris', sans-serif;
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    width: 835px;
    margin: -15px 0 0;
}

.cards__card {
    flex: 0 0 auto;
    margin: 15px auto;
    width: calc(95% / 3);
    min-height: 386px;
}

.cards__card_leading {
    width: 540px;
}

/* Share buttons */
.share-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 40px;
}

/* Side Banner */
.side-banner:not(:empty) {
    margin: 0 auto 35px;
}

/* Hashtags */
.hashtags {
    color: #000;
    background: #e1e1e1;
    border: 1px solid #ccc;
}

.hashtags__head {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.hashtags__body {
    padding: 15px;
}

.hashtags__title {
    font: normal 400 16px/1 'Futura Futuris', sans-serif;
    text-transform: uppercase;
    text-align: center;
}

.hashtags__hashtag {
    font: normal 700 16px/1 'Futura Futuris', sans-serif;
    text-align: center;
    color: #e3000b;
}