.map {
    color: var(--main-color-1);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */


    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 500px;
    gap: 0 150px;
    align-items: flex-start;
    align-content: center;
}

.map__item {
    margin-bottom: 30px;
}

.map__subitems .map__item {
    margin-bottom: 10px;

}

.map__subitems {
    margin-top: 10px;
    margin-left: 20px;
}
@media (max-width: 768px) {
    .map{
        gap: 0 50px;
    }
}
@media (max-width: 600px) {
    .map{
        max-height: unset;
    }
}