.section-advantages .row {
    position: relative;
}
.advantages-wrapper {
    display: flex;
    flex-direction: column;
    width: calc(100% - 32px);
    padding: clamp(42px, 6vw, 84px) clamp(50px, 4vw, 64px);
    gap: clamp(48px, 4vw, 58px);
    border-radius: 60px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.3) 0%, #F1F5F9 36.06%);
    margin-inline: auto;
    .advantages-item {
        position: relative;
        padding-bottom: 48px;
        &:before {
            content: "";
            width: 100%;
            height: 1px;
            position: absolute;
            left: 0;
            bottom: 0;
            background: #D3D3D3;
        }
        i {
            font-size: 40px;
            margin-bottom: 16px;
        }
        .advantages-title {
            font-size: 20px;
            margin-bottom: 28px;
            font-family: var(--SemiBold);
        }
        .advantages-desc {
            font-size: 14px;
            color: #707070;
            font-family: var(--Medium);
        }
    }
    .advantages-item:nth-last-child(1) {
        padding-bottom: 0;
        &:before {
            content: none;
        }
    }
}
@media only screen and (min-width: 1024px) {
    .advantages-wrapper {
        flex-direction: row;
        width: auto;
        .advantages-item {
            padding-left: 58px;
            padding-bottom: 0;
            &:before {
                content: "";
                width: 1px;
                height: 100%;
                position: absolute;
                left: 0;
                bottom: 0;
                background: #D3D3D3;
            }
        }
        .advantages-item:nth-last-child(1) {
            padding-left: 0;
        }
    }
}