.service-area {
    background: #fcfbf7;
}

.service-area__list li {
    display: flex;
    align-items: center;
}

.service-area__list li a, .service-area__list li {
    color: var(--color-secondary);
    border: none;
    font-weight: normal;
    line-height: 1.9em;
}

.service-area__list li::marker {
    display: none;
}

.service-area__list li::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='%23ffffff'%3E%3Cpath d='M480-480q33 0 56.5-23.5T560-560q0-33-23.5-56.5T480-640q-33 0-56.5 23.5T400-560q0 33 23.5 56.5T480-480Zm0 400Q319-217 239.5-334.5T160-552q0-150 96.5-239T480-880q127 0 223.5 89T800-552q0 100-79.5 217.5T480-80Z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    font-size: 11px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.service-area__map {
    margin-top: 32px;
}


.service-area__map svg {
    width: 100%;
    height: auto;
}

.service-area__list {
        gap: 16px;
        list-style: none;
        margin: 0;
        padding: 0;
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    }


@media (min-width: 768px) {

    .service-area__list{
        flex-direction: row;
    }
    .service-area__wrap {
        padding: 0 58px;
    }

    .service-area__map {
        max-width: 478px;
        margin: 32px auto 0;
    }

    .service-area__list {
        display: flex;
        flex-wrap: wrap;
        gap: 16px 9px;
    }

    .service-area__list li {
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .service-area__wrap {
        padding: 0 0;
    }

    .service-area__map {
        max-width: 572px;
        margin: 0 16px 0 auto;
    }

    

    .service-area__list li a:hover {
        opacity: 0.6;
    }

    .service-area__wrap .row {
        align-items: center;
    }
}

