* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

html {
    scroll-behavior: smooth;
}

h1,
p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

h3 {
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 700;
}

p {
    font-size: 0, 8em;
}

.map-leaflet {
    height: 80vh;
    width: 75%;
    opacity: 1;
    z-index: 5;
}

.leaflet-popup-content p {
    margin: 0;
}

.leaflet-popup-content strong {
    font-size: 150%;
    margin: 0 5px 0 0;
    color: #aaa;
}

.container-map {
    display: flex;
}

.list-view-map {
    min-width: 500px;
    width: 25%;
    height: 80vh;
    background-color: #fff;
    border: 1px solid #0571b8;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

.list-result-map {
    width: 100%;
    height: 100%;
}

    .list-result-map li {
        display: block;
        padding: 25px;
        border-bottom: 1px solid #0571b8;
        background-color: #fff;
        cursor: pointer;
        color: #444;
    }

        .list-result-map li:hover {
            background-color: #0571b8;
            color: #fff;
        }

.active-map {
    background-color: #0571b8 !important;
    color: #fff !important;
}

.list-result-map h3 {
    margin-bottom: 10px;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 700;
}

.list-result-map p {
    line-height: 1.6;
    font-size: 0, 8em;
}

@media screen and (max-width: 1100px) {
    body {
        font-size: 15px;
    }

    .list-view-map {
        min-width: 300px;
        height: 80vh;
    }
}

@media screen and (max-width: 768px) {
    .map-leaflet {
        width: 100%;
    }

    .container-map {
        display: block;
    }

    .list-view-map {
        width: 90%;
        height: auto;
        position: relative;
        margin: 10px auto;
        border: none;
    }
}