.hero-visual-frame img {
    width: 100% !important;
    height: 100% !important;
}

.hero-flex-layout {
    max-width: 1280px !important;
    margin-bottom: 104px;
}

.row-3 {
    align-items: stretch;
}

.hero-promo-wrapper {
    background-color: #121212;
}

.news_letter_subscription {
    background-color: #121212;
}



.cinema-content {
    background-color: #232323;
    padding: 70px 20px;
}

.cinema-section {
    max-width: 1280px;
    margin: auto;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 600;
}

.cinema-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

/* top cards */
.cinema-grid .cinema-card:nth-child(1) {
    grid-column: span 3;
}

.cinema-grid .cinema-card:nth-child(2) {
    grid-column: span 3;

}

/* bottom cards */
.cinema-grid .cinema-card:nth-child(3),
.cinema-grid .cinema-card:nth-child(4),
.cinema-grid .cinema-card:nth-child(5) {
    grid-column: span 2;
}

.cgrid-section-2 .cinema-card:nth-child(1) {
    grid-column: span 2 !important;
}

.cgrid-section-2 .cinema-card:nth-child(2) {
    grid-column: span 4 !important;
}

.cgrid-section-2 .cinema-card:nth-child(3),
.cgrid-section-2 .cinema-card:nth-child(4) {
    grid-column: span 3 !important;
}



.cinema-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 180px;
}

.cinema-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.4));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
}

.muted-text {
    font-size: 20px;
    color: #E6E6E6;
    margin: 52px 0px;
}

.center-content-wrapper {
    margin: 120px 0px;

}

.service-row.reverse {
    /* margin-bottom: 0px;
    flex-direction: row-reverse; */
}

.minDevicesImage {
    display: none;
}


/* responsive */

@media(max-width:1024px) {
    .cinematic-hero-second-row {
        display: block;
    }

    .minDevicesImage {
        display: block;
    }

    .center-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .center-image-section {
        display: none;
    }

    .cinema-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* top cards */
    .cinema-grid .cinema-card:nth-child(1) {
        grid-column: span 1;
    }

    .cinema-grid .cinema-card:nth-child(2) {
        grid-column: span 1;

    }

    /* bottom cards */
    .cinema-grid .cinema-card:nth-child(3),
    .cinema-grid .cinema-card:nth-child(4),
    .cinema-grid .cinema-card:nth-child(5) {
        grid-column: span 1 !;
    }

    .cgrid-section-2 .cinema-card:nth-child(1) {
        grid-column: span 1 !important;
    }

    .cgrid-section-2 .cinema-card:nth-child(2) {
        grid-column: span 1 !important;
    }

    .cgrid-section-2 .cinema-card:nth-child(3),
    .cgrid-section-2 .cinema-card:nth-child(4) {
        grid-column: span 1 !important;
    }


}

@media(max-width:768px) {
    .cinema-grid {
        grid-template-columns: 1fr;
    }

    .center-content-wrapper {

        grid-template-columns: 1fr;

    }

    .cinematic-hero-second-row {
        order: 1;
    }

    .center-content-wrapper .cinema-grid {
        grid-template-columns: 1fr;
    }

    .cinema-grid .cinema-card {
        grid-column: span 1 !important;
    }

}