.s-advantages__list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-bottom: 20px;
}

.s-advantages__item {
    background-color: #F2FAFF;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
}

.s-advantages__icon {
    display: flex;
    width: 85px;
    height: 85px;
    background-color: #09F;
    border-radius: 100%;
    padding: 5px;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #fff;
    font-size: 28px;
}

.s-advantages__label {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin-top: 6px;
}
.s-advantages__item:hover {
    background-color: #007acc;
    color: #fff;
}
.s-advantages__item:hover .s-advantages__icon {
    background-color: #232c77;
}


.services-list__item {
    display: flex;
    flex-direction: column;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;

}

.services-list__item span {
    font-size: 26px;
    font-weight: 600;
    line-height: 120%;
}

.services-list__item::before {
    transition: all linear 0.1s;
    transform: scale(1) rotate(0);
    border-radius: 0;

}
.services-list__item:hover::before {
    background-color: #fff;
}


.services-list__detail-btn {
    text-align: center;
    font-size: 16px;
    border: 1px solid #012265;
    width: fit-content;
    margin: auto auto 0;
    padding: 7px 18px;
    border-radius: 5px;
    transition: all linear 0.1s;
    z-index: 1;
}

.services-list__item:hover .services-list__detail-btn {
    background-color: #fff;
}

.services-list__item-desk {
    z-index: 1;
}

.services-list__item-desk ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-list__item-desk li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 16px;
}

.services-list__item-front {
    height: 0;
    margin-top: 24px;
    opacity: 1;
    transition: all linear 0.2s;
    color: #000000ad;
    position: relative;
    z-index: 1;
    font-size: 18px;
}


.services-list__item-desk {
    height: 0;
    opacity: 0;
    transition: all linear 0.2s;
}


.services-list__item:hover .services-list__item-front  {
    opacity: 0;
}

.services-list__item:hover .services-list__item-desk  {
    opacity: 1;
}

.services-list__item.active .services-list__item-front  {
    opacity: 0;
}

.services-list__item.active .services-list__item-desk  {
    opacity: 1;
}
.services-list__item.active::before {
    background-color: #fff;
}


@media (min-width: 576px) {
    .s-advantages__item {
        width: calc(50% - 10px);
        padding: 20px 10px;
    }

    .s-advantages__list {
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .s-advantages__list {
        gap: 41px;
        row-gap: 30px;
    }

    .s-advantages__item {
        padding: 20px 16px 20px 20px;
        width: calc(100% / 3 - 28px);
    }

    .s-advantages__icon {
        margin: 0;
    }
}