/* SECTION 1 */

#locations {
    padding: 60px;
}

#locations h2 {
    font-size: 2.4rem;
    text-align: center;
    font-family: meno-banner, serif;
    font-weight: 900;
}

#locations .locations {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    column-gap: 48px;
    row-gap: 16px;
    text-decoration: none;
    flex-direction: column;
}

@media (min-width: 1200px) {
    #locations .locations {
        flex-direction: row;
    }
}

#locations button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 8px;
    font-size: 20px;
    background: transparent;
    box-shadow: none;
}

#locations button img {
    height: 225px;
    width: 225px;
    object-fit: cover;
    border-radius: 32px;
}

@media (min-width: 1200px) {
    #locations button img {
        height: 300px;
        width: 300px;
    }

    #locations button img:hover {
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);  
    }
}

/* SECTION 2 */

#inquiry {
    background: var(--darktan);
    padding: 0 40px 1px;
}

/* SECTION 3 */

@media (min-width: 1200px) {
    #schedule {
        padding: 0 40px;
    }
}

iframe {
    width: 100%;
    border: none;
    overflow: hidden;
    margin-bottom: 60px;
}

.hide {
    display: none;
    margin-bottom: 0;
}
