.maps-frame {
    background-color: var(--primaryblue-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem;
}

.maps-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.maps-pic {
    background-image: url("img/ARECA-PNG.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 50rem;
}

/* RESPONSIVE MAPS */
@media (max-width: 500px) {
    .maps-frame {
        padding: 3rem 0 !important;
    }
    .maps-pic {
        height: 20rem;
    }

    button {
        font-size: 0.625rem !important;
    }
}
/* END OF RESPONSIVE MAPS */