@media(max-width: 1139px) {
    .intro__title {
        font-size: calc(30px + (64 - 30) * (100vw - 320px) / (1140 - 320));
        line-height: 120%;
    }
    .series__wide-title {
        font-size: calc(23px + (40 - 23) * (100vw - 320px) / (1140 - 320));
    }
    .footer__info {
        font-size: calc(16px + (18 - 16) * (100vw - 320px) / (1140 - 320));
    }
    .collections__card:nth-child(3) {
        justify-self: center;
        grid-column: 1 / -1;
        max-width: 50%;
        width: 100%;
    }
    .series__tiny {
        grid-column: span 1;
    }
}

@media(max-width: 1110px) {
    .main_title {
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .films__catalog {
        justify-content: space-evenly;
    }
    .films__catalog-card {
        max-width: calc(255px + (400 - 255) * (100vw - 255px) / (1140 - 255));
        height: 100%;
    }
    .films__catalog-card:nth-child(1),
    .films__catalog-card:nth-child(2) {
        margin-bottom: 30px;
    }
    .films__catalog-desc {
        overflow: hidden;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        -webkit-line-clamp: 4;
    }
}

@media(max-width: 768px) {
    .menu-bars {
        display: block;
    }
    .nav-wrapper_bg {
        backdrop-filter: none;
    }
    .header__nav {
        flex-direction: column;
        justify-content: space-evenly;
        position: fixed;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(1, 3, 5, 0.8);
        top: -100%;
        backdrop-filter: blur(10px);
        transition: all .6s;
    }
    #menu-check:checked ~ .header__nav {
        top: 0;
        bottom: 0;
    }
    .header__list {
        flex-direction: column;
        align-items: center;
    }
    .header__link {
        height: max-content;
        font-size: 25px;
        line-height: 150%;
    }
    .header__list-item:not(:last-of-type) {
        margin: 0;
    }
    .intro__title,
    .intro__desc {
        text-align: center;
    }
    .intro__desc {
        margin: 0 auto 50px;
    }
    .intro__btns {
        margin: 0 auto;
    }
    .films__catalog {
        flex-direction: column;
        align-items: center;
    }
    .films__catalog-card:nth-child(3) {
        margin-bottom: 30px;
    }
    .trailer__video {
        position: static;
    }
    .trailer_pos {
        display: flex;
        flex-direction: column-reverse;
    }
    .trailer_pos::before {
        background: linear-gradient(180deg, #DEF7FF 0%, #F4FCFF 65%, rgba(255, 255, 255, 0) 105%);
    }
    .collections__card {
        grid-column: 1 / -1;
    }
    .collections__card:nth-child(3) {
        max-width: 100%;
    }
}

@media(max-width: 640px) {
    .collections__wrap {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
    .series__wide-excerpt {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }
    .footer__wrap {
        flex-direction: column;
    }
    .footer__store {
        margin-bottom: 15px;
    }
}

@media(max-width: 576px) {
    .intro__btns {
        flex-direction: column;
        align-items: center;
    }
    .intro__btns >:first-of-type {
        margin-bottom: 20px;
    }
}