/* Poster page */

.section__poster {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.poster__content {
    height: 100%;
    display: flex;
    align-items: center;
}


.poster__info {
    width: 40%;
}

.poster__info .title {
    text-transform: uppercase;
}

/*.poster__img {
    max-width: 900px;
    height: auto;
    object-fit: contain;
}*/

.poster__img-wrap {
    width: 60%;
    margin-right: 100px;
    position: relative;
}

.poster__time {
    font-weight: 300;
    font-size: 55px;
    line-height: 54px;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-top: 130px;
}

.poster__descr {
    color: var(--white);
    margin-top: 104px;
    font-weight: 300;
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 0.05em;
}

.poster__link {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px;
    border: 1px solid var(--white);
    margin-top: 60px;
    display: block;
    max-width: 237px;
    text-align: center;
    transition: all .3s;
    color: var(--white);
    background: var(--black);
}

.poster__link:hover {
    background: var(--white);
    transition: all .3s;
    color: var(--black);
    border: 1px solid var(--black);
}

.poster__link:active {
    background: var(--grey);
    transition: all .3s;
    color: var(--black);
    border: 1px solid var(--grey);
}

/* Picture page */

.section__poster_picture {
    flex-direction: column;
    align-items: initial;
}

.poster__content_picture {
    height: auto;
    margin-top: 40px;
    position: relative;
}

.poster__content_picture-close-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster__content_picture-close {
    width: 2px;
    height: 16px;
    background: var(--grey);
    transform: rotate(45deg);
}

.poster__content_picture-close:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 16px;
    background: var(--grey);
    transform: rotate(-90deg);
}

.section__poster_picture .poster__img-wrap {
    width: 47%;
}

.poster__icon-wrap {
    position: absolute;
    bottom: 0;
    cursor: pointer;
    right: -25px;
}

.poster__name {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    margin-top: 30px;
}

.poster__date {
    font-size: 14px;
    line-height: 14px;
    margin: 8px 0 30px;
}

.poster__technic {
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    color: var(--grey);
    padding-top: 30px;
    border-top: 1px solid var(--grey);
}

.poster__structure {
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
}

@media screen and (max-width: 1400px) {

    .poster__img-wrap {
        margin-right: 50px;
    }

    .poster__descr {
        margin-top: 50px;
        font-size: 25px;
        line-height: 40px;
    }

    .poster__time {
        font-size: 30px;
        line-height: 30px;
        margin-top: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .poster__content {
        flex-direction: column;
        padding: 50px 0;
    }

    .poster__img-wrap {
        margin: 0;
        width: 70%;
    }

    .poster__info {
        width: 100%;
        margin-top: 35px;
    }

    .poster__link,
    .bg-black .poster__link {
        margin-top: 20px;
    }

    .poster__content_picture {
        margin: 0;
    }

    .section__poster_picture .poster__img-wrap {
        width: 100%;
    }

    .poster__icon-wrap {
        bottom: -25px;
        right: 0;
    }
}

@media screen and (max-width: 992px) {
    .poster__time {
        font-size: 24px;
        line-height: 20px;
        margin-top: 30px;
    }

    .poster__descr {
        margin-top: 30px;
        font-size: 20px;
        line-height: 32px;
    }
}

@media screen and (max-width: 576px) {
    .poster__img-wrap {
        width: 100%;
    }

    .poster__time {
        font-size: 22px;
    }

    .poster__descr {
        margin-top: 25px;
        font-size: 18px;
        line-height: 28px;
    }

    .section__poster_picture .poster__img-wrap {
        margin-bottom: 30px;
    }

    .poster__name {
        margin-top: 15px;
        font-size: 14px;
        line-height: 14px;
    }

    .poster__date {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 375px) {

    .poster__link {
        margin-top: 0;
        max-width: 100%;
    }

    .poster__content_picture-close-wrap {
        top: -20px;
    }

    .section__poster_picture .poster__link {
        margin-top: 20px;
    }
}