.contact-cards {
    background-color: var(--color-aquamarine);
}

.contact-card {
    color: #fff;
}

.contact-card a {
    color: #fff;
}

.ribbon {
    background-color: #fff;
    margin-bottom: 0;
}

#language-selector {
    background-color: var(--color-aquamarine);
    color: #fff;
    border: 0;
    border-top: 1px solid var(--color-gray);
    border-radius: 0;
}

#map-section {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

#map {
    object-fit: cover;
    height: 650px;
    width: 430px;
    margin-right: 20px;
}

.destination-title {
    color: var(--color-link);
    font-size: 41px;
}

.destination-text {
    line-height: 1.5;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 32px;
    margin: 40px 0;
}

@media (max-width: 991px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 767px) {
    #map-section {
        flex-direction: column;
    }

    #map {
        height: auto;
        width: auto;
    }
}
