/* LOCATION */
#location {
    background-color: var(--color-body);
}

.location-title {
    font-family: "Montserrat";
    font-weight: 700;
    color: #000;
}

.location-address {
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

#location iframe {
    min-height: 400px;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

#location iframe:hover {
    filter: grayscale(0%);
}

@media (width <=768px) {
    .location-title {
        font-size: 24px;
    }

    .location-address {
        font-size: 16px;
    }
}