.advantages{
    margin-top: 137px
}

.gradient-header {
    padding-bottom: 3px;
    position: relative;
    margin-bottom: 67px;
    width: 85%;
    background: linear-gradient(92.5deg, #FFFFFF 3.03%, #7D818D 67.08%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    flex-wrap: wrap;
}
.gradient-header::before {
    filter: brightness(1.5);
    left: -23%;
    top: -150%;
    position: absolute;
    content: " ";
    height: 470px;
    width: 470px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/assets/images/advantages-header-background.svg);
    animation: fadein 4s infinite;
}
@keyframes fadein {
    from {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0.5;
    }
}
.advantages-wrapper{
    margin: 0 auto;
    width: 93%;
}

.advantages-row {
    display: flex;
    justify-content: space-between;
    flex-direction: row
}
.advantages-block {
    width: 49%;
    display: flex;
    flex-direction: row
}
.advantages-icon {
    margin-right: 25px;
    align-self: flex-start;
    position: relative;
    top: -7px;
}
.advantage-header{
    margin: 0;
    font-size: 22px;
}
.advantage-text{
    line-height: 28px;
    margin-top: 17px;
    margin-bottom: 80px;
    }
.advantages-action-btn {
    /*margin-top: 50px;*/
    display: flex;
    margin-top: 0;
}
.advantages-action-btn-mobile {
    display: none;
}
@media (max-width: 1200px) {
    .gradient-header {
        width: 90%;
    }
}
@media (max-width: 950px) {
    .gradient-header::before {
        height: 400px;
        width: 400px;
        left: -20%;
        top: -100%;
    }
    .gradient-header{
        margin-bottom: 40px;
        width: 100%;
    }
    .advantages-wrapper{
        margin: 0 auto;
        width: 100%;
    }
    .advantages-row {
        justify-content: center;
        flex-direction: column;
    }
    .advantages-block {
        width: 100%;
        flex-direction: column;
    }
    .advantages-icon {
        margin-top: 0;
        margin-bottom: 22px;
    }

    .advantage-text{
        margin-top: 12px;
        margin-bottom: 40px;
    }
    .advantages-action-btn {
        display: none;
    }
    .advantages-action-btn-mobile {
        display: flex;
    }
}
@media (max-width: 750px) {
    .advantages{
        margin-top: 100px
    }
    .advantage-text{
        line-height: 20px;
    }
    .gradient-header::before {
         height: 300px;
        width: 300px;
        left: -20%;
        top: -13vh;
    }
}
@media (max-width: 500px) {
     .gradient-header::before {
         left: -40%;
        top: -140%;
    }
}
@media (max-width: 370px) {
     .gradient-header::before {
        top: -100%;
    }
}
