.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-list .item {
    border-bottom: 1px solid #F4EEE7;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.services-list .item .name {
    max-width: 800px;
    width: 60%;
}

.services-list .item .name .number {
    color: #48788c;
}

.services-list .item .name .title {
    font-weight: 500;
    font-size: 32px;
}

.services-list .item .description {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
}

.services-list .item .description a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.services-list .item .description a svg {
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 992px) {
    .services-list .item .name .title {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .services-list {
        gap: 24px;
    }

    .services-list .item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
    }

    .services-list .item .name {
        width: 100%;
    }

}

@media screen and (max-width: 478px) {
    .services-list .item .name .title {
        font-size: 18px;
    }

    .services-list .item .name .number,
    .services-list .item .description .text {
        font-size: 12px;
    }

    .services-list .item .description a {
        padding: 4px;
    }

    .services-list .item .description a svg {
        width: 15px;
        height: 15px;
    }
}