.showcase__header {
    display: flex;
    padding: 8rem 5rem 3rem 5rem;
    background-color: #E9EFFF;
    flex: 1;

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), url('../assets/images/home/contact-image.webp'), lightgray 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
    justify-content: center;
}

.showcase__titles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    color: white;
}

.showcase__form-width {
    flex: .5;
    height: fit-content;
}

.showcase__form-container {
    width: 100%;
}

.showcase__button {
    margin: 0;
    justify-content: start;
    width: fit-content;
    height: fit-content;
}


@media screen and (max-width: 1200px) {
    .showcase__images {
        width: 90%;
    }
}

@media screen and (max-width: 1000px) {
    .showcase__images {
        width: 100%;
    }
}

@media screen and (max-width: 850px) {
    .showcase__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .showcase__titles {
        align-items: center;
    }

    .showcase__header {
        padding: 5rem 3rem 3rem 3rem;
    }

    .showcase__images-theater {
        grid-template-columns: 1fr;
    }
    
    .showcase__images-music {
        display: flex;
        flex-direction: column;
    }

    #music-2 {
        display: none;
    }
}

@media screen and (max-width: 550px) {
    .gallery__nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        flex-basis: 50%;
        padding: 1rem 1rem;
    }

    .showcase__header {
        padding: 5rem 1rem 3rem 1rem;
    }

    .gallery__images-container {
        padding: 1rem 1rem;
    }
}

@media screen and (max-width: 375px) {
    .gallery__nav {
        flex-basis: 75%;
    }
}