
.map-items-container {
    width: 100%;
    height: auto;
    background-color: #F9F9F9;
}

.map-items-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 50px;
    max-width: 1350px;
    padding: 100px 50px;
    margin: auto;
}

.map-item {
    position: relative;
    display: block;
}

.map-item h4 {
    text-transform: uppercase;
    color: #29A181;
}

.map-item-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 85px;
    margin-top: 24px;
}

.map-wrapper {
    width: 100%;
    padding-top: 50%;
    display: block;
    position: relative;
    margin-top: 39px;
}

.map-wrapper .map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@media only screen and (max-width: 1700px) {

}

@media only screen and (max-width: 992px) {

    .map-items-wrapper {
        position: relative;
        display: grid;
        grid-template-columns: auto;
        column-gap: 0;
        max-width: 100%;
        padding: 42px 24px;
        margin: auto;
    }

    .map-item-detail {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        margin-top: 0;
    }

    .map-item-detail p{
        margin-top: 24px;
    }

}
