/* ---AREA STYLES--- */

.area_section {
    background: var(--cream-blue);
}

.area_section .area_box {
    position: relative;
    display: grid;
    grid-template-columns: .4fr 1fr;
}

.area_section .side_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
    height: 100%;
    padding: 2.5vw;
}

.area_section .side_box h2 {
    font-size: 1.5vw;
}

.area_section #map {
    width: 100%;
    height: 40vw;
    z-index: 1 !important;
}

.area_section #map svg {
    width: inherit !important;
}

.area_section #map path:focus {
    outline: none;
}

.area_section .leaflet-popup-content-wrapper {
    font-size: 1vw !important;
}

.area_section .leaflet-popup-content-wrapper h2 {
    font-size: 1vw;
}

.area_section .leaflet-popup-content-wrapper .main_btn {
    font-size: 1vw;
}

@media (max-width: 996px) {
    .area_section .area_box {
        height: inherit;
        grid-template-columns: 1fr;
    }
    .area_section .side_box {
        gap: 5vw;
        padding: 30vw 5vw 10vw 5vw;
    }
    .area_section .side_box h2 {
        font-size: 5vw;
    }
    .area_section #map {
        height: 100vw;
    }
    .area_section .leaflet-popup-content-wrapper {
        font-size: 4vw !important;
    }
    .area_section .leaflet-popup-content-wrapper h2 {
        font-size: 5vw;
    }
    .area_section .leaflet-popup-content-wrapper .main_btn {
        font-size: 4vw;
    }
}