.services-page-content {
}

.services-top-text {
    margin-bottom: 20px;
}

.services-title {
    font-size: 20px;
    font-weight: 500;
}

.services-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 50px;
}

.map {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border: 3px solid #ffc02b;
    border-radius: var(--radius);
}

.leaflet-control-attribution.leaflet-control {
    display: none;
}

.leaflet-top, .leaflet-bottom {
    z-index: 500 !important;
}

.services-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    margin-bottom: 30px;
}


.services-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 15px;
    /*border: none; !* Default: no border *!*/
    border: 1px solid #ffc02b;

}

/*.services-item:nth-child(1),*/
/*.services-item:nth-child(6n+4),*/
/*.services-item:nth-child(6n+5) {*/
/*  border: 1px solid #ffc02b;*/
/*}*/


.services-item-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.services-icon {
    height: 120px;
    aspect-ratio: 1/1;
}
.service-description{
    color: var(--gray-medium);
}
@media (max-width: 1024px) {
    .services-items {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 580px) {
    .services-icon {
        height: 50px;
        aspect-ratio: 1/1;
    }

    .services-item {
        align-items: start;
    }
}
