/** Алфавит Список услуг */
.services-links {
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.services-links__description {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
}

.services-links__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    row-gap: 40px;
}

.services-links__item {
    width: 224px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.13);
}

.services-links__link {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 10px;
    background: #fff;
    color: #333;
}

.services-links__item:hover .services-links__link {
    text-decoration: none;
}

.links__item-letter {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 2px dashed #3d9322;
    background: #f4fff1;
    font-size: 64px;
    line-height: 140%;
    color: #3d9322;
}

.services-links__item:nth-child(even) .links__item-letter {
    border-color: #ed7f27;
    background: #fff6ef;
    color: #ed7f27;
}

.services-links__item:hover .links__item-letter {
    background: #fff;
}

.services-links__item:hover .services-links__link {
    background: #f4fff1;
}

.services-links__item:nth-child(even):hover .services-links__link {
    background: #fff6ef;
}

.links__item-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
}

.services-links__item--empty {
    width: 0;
    height: 0;
    pointer-events: none;
    margin-left: -19px;
}

@media (max-width: 768px) {
    .services-links__list {
        gap: 18px;
    }

    .services-links__item {
        width: 220px;
    }

    .services-links__item--empty {
        width: 0;
        margin-left: -5px;
    }
}

@media (max-width: 758px) {
    .services-links {
        gap: 20px;
    }

    .services-links__description {
        font-size: 18px;
    }

    .services-links__list {
        gap: 20px;
    }

    .services-links__item {
        border-radius: unset;
        box-shadow: none;
        overflow: unset;
        width: calc(50% - 10px);
    }

    .services-links__item:hover .services-links__link {
        background-color: #fff;
    }

    .links__item-title {
        font-size: 16px;
    }
}
/** Алфавит Список услуг – Конец */
