/* advantages #1 */
/*.advantages-adaptive{*/
    /*    display: none;*/
    /*}*/

.advantages{
        background-color: var(--color-white);
        padding: var(--section-padding);
    }

section.advantages .advantages-h1{
        font-size: var(--font-size-h1);
        font-weight: 600;
        color: var(--color-dark);
        margin-bottom: 25px;
        margin-top: 0;
    }

.advantages-text{
        font-size: var(--font-size-text);
        line-height: var(--line-height);
        color: var(--color-gray-text);
    }

.advantages-cards{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 34px;
        margin-top: 50px;
    }

.advantages-cards > .advantages-kv{
        max-width: none;
        min-height: 396px;
        /*height: auto;*/
        display: flex;
        flex-direction: column;
    }

.advantages-kv{
        max-width: 377px;
        height: 396px;
        background-color: var(--color-green-light-bg);
        border-radius: var(--border-radius-sm);
        padding: 0px 23px 0px 20px;
        position: relative;
        overflow: hidden;
    }


section.advantages .advantages-kv-h3{
        font-size: var(--font-size-h2);
        font-weight: 600;
        color: var(--color-dark);
        margin-bottom: 15px;
        margin-top: 30px;
    }

.advantages-kv-text{
        font-size: var(--font-size-text);
        line-height: var(--line-height);
        color: var(--color-gray-text);
        max-width: 600px;
    }

.advantages-kv-img{
        position: absolute;
        /*bottom: -5px;*/
    }

.advantages-kv-img-1{
        right: 0;
        transition: content 0.3s ease;
    }

.advantages-kv:nth-child(1):hover .advantages-kv-img-1{
        content: var(--advantages-kv-img-1-hover);
    }

.advantages-kv-img-2{
        /* left: 5%; */
        /*transform: translateX(-50%);*/
        /*max-height: 264px;*/
    }

.advantages-kv-img-3{
        left: -5px;
    }

.advantages-kv-img-4{
        /*left: 1%;*/
        /*transform: translateX(-50%);*/
    }

.advantages-kv-dots{
        width: 70px;
        height: 32px;
        background: var(--color-white);
        border-radius: var(--border-radius-sm);
        position: absolute;
        top: 185px;
        left: 84.71px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        opacity: 0;
    }

.advantages-kv-dots.animate{
        opacity: 1;
        animation: showDots 0.5s ease-in-out forwards, hideDots 0.3s ease-in-out 3s forwards;
    }

.advantages-kv-dot{
        width: 10px;
        height: 10px;
        background: var(--color-blue-dark);
        border-radius: 50%;
        animation: typingDot 1.4s infinite ease-in-out;
    }

.advantages-kv-dot:nth-child(1){
        animation-delay: 0s;
    }

.advantages-kv-dot:nth-child(2){
        margin-top: -5px;
        animation-delay: 0.2s;
    }

.advantages-kv-dot:nth-child(3){
        animation-delay: 0.4s;
    }

.advantages-kv-message{
        background: var(--color-white);
        border-radius: var(--border-radius-sm);
        position: absolute;
        top: 151px;
        left: 19px;
        padding: 10px 15PX;
        font-size: 13px;
        font-weight: 600;
        color: var(--color-blue-dark);
        opacity: 0;
    }

.advantages-kv-message.animate{
        animation: showMessage 1s ease-in-out 3s forwards;
    }

.advantages-kv-big{
        max-width: 789px;
        height: 395px;
        background-color: var(--color-green-button-hover);
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
        border-radius: var(--border-radius-sm);
        padding: 0 23px 0 20px;
        grid-column: 2 / 4;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

.advantages-kv-big-content{
        /*flex: 1;*/
    position: relative;
    z-index: 1;
    margin-bottom: 96px;
    }

section.advantages .advantages-kv-big-h3{
        font-size: var(--font-size-h2);
        font-weight: 600;
        color: var(--color-gray-bg);
        margin-bottom: 15px;
        margin-top: 30px;
        max-width: 730px;
    }

.advantages-kv-big-text{
        font-size: var(--font-size-text);
        line-height: var(--line-height);
        color: var(--color-gray-bg);
        max-width: 729px;
        font-weight: 400;
    }

section.advantages .advantages-kv-big-button{
    position: absolute;
    bottom: 30px;
    padding: 0 20px;
    z-index: 1;
        max-width: 304px;
        height: var(--advantages-kv-big-button-height, 47px);
        border-radius: var(--border-radius-lg);
        background-color: var(--color-white);
        border: none;
        font-size: var(--font-size-small);
        font-weight: 600;
        color: var(--color-green-primary);
        cursor: pointer;
        /*margin-bottom: var(--advantages-kv-big-button-margin-bottom, 30px);*/
        text-align: center;
    }

.advantages-kv-big-img{
        position: absolute;
        right: 0;
        bottom: 0;
    }

.advantages-kv-message:nth-of-type(2){
        top: 213px;
        left: 104px;
    }

.advantages-kv-message:nth-of-type(2).animate{
        animation: showMessage 1s ease-in-out 5s forwards;
    }

.advantages-cards .advantages-kv-img{
        position: relative;
        bottom: 0;
        /*margin-top: auto;*/
        /* margin-bottom: -5px; */
    }

.advantages-cards .advantages-kv-img-1{
        position: absolute;
    }

.advantages-cards .advantages-kv-img-2{
        align-self: center;
        position: absolute;
        width: 100%;
    }

.advantages-cards .advantages-kv-img-3{
    position: absolute;
    left: 0;
    width: 100%;
}

.advantages-cards .advantages-kv-img-4{
        align-self: center;
        margin-top: 30px;
    /*width: 100%;*/
    /*position: absolute;*/
    }

.advantages-cards .advantages-kv-img-container{
        position: relative;
        display: inline-block;
        margin-top: auto;
        align-self: center;
    }

.advantages-cards .advantages-kv-img-container .advantages-kv-dots{
        position: absolute;
        top: 80px;
        left: 84.71px;
    }

.advantages-cards .advantages-kv-img-container .advantages-kv-message:nth-child(3){
        position: absolute;
        top: 15px;
        left: 0;
    }

.advantages-cards .advantages-kv-img-container .advantages-kv-message:nth-child(4){
        position: absolute;
        top: 78px;
        right: 0;
        left: auto;
    }

.advantages-cards .advantages-kv-img-container .advantages-kv-message:nth-child(3).animate{
        animation: showMessage 1s ease-in-out 3s forwards !important;
    }

.advantages-cards .advantages-kv-img-container .advantages-kv-message:nth-child(4).animate{
        animation: showMessage 1s ease-in-out 5s forwards !important;
    }

.advantages-cards .advantages-kv-img-container .advantages-kv-img-2{
        position: relative;
        margin-top: 0;
    }

.advantages-cards > .advantages-kv-big{
        max-width: none;
        min-height: 395px;
        /*height: auto;*/
        position: relative;
    }

.advantages-kv-padding {
    position: relative;
    z-index: 1;
}

@media (max-width: 1170px) and (min-width: 1070px){
.advantages-kv-big-img{
            right: -10%;
        }

}

@media (max-width: 1069px) and (min-width: 1000px){
.advantages-kv-big-img{
            right: -20%;
        }

}

@media (max-width: 1000px){
    .advantages-cards{
        grid-template-columns: repeat(2, 1fr);
    }
    .advantages-kv-big {
        grid-column: 1 / 3;
        grid-row: 3;
    }
.advantages{
            padding: 60px 30px;
        }

section.advantages .advantages-h1{
            font-size: 27px;
            max-width: 411px;
        }
    .advantages-cards .advantages-kv-img-4-hack {
        position: absolute;
        width: 100%;
        bottom: -70px;
    }
/*.advantages-cards{*/
/*            display: none;*/
/*        }*/

.advantages-adaptive{
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
        }

.advantages-cards-row-1,
        .advantages-cards-row-2{
            display: flex;
            gap: 20px;
        }

.advantages-cards-row-1 .advantages-kv:nth-child(2){
            max-width: 486px;
            flex: 1;
        }

.advantages-adaptive .advantages-kv{
            height: 245px;
            padding: 0;
        }
    .advantages-adaptive .advantages-kv-padding {
        padding: 0 12px;
    }

section.advantages .advantages-adaptive .advantages-kv-h3{
            font-size: var(--font-size-text);
            font-weight: 600;
            margin-top: 18px;
            margin-bottom: 10px;
            max-width: 172px;
        }
/*
.advantages-cards-row-1 .advantages-kv:nth-child(1) .advantages-kv-text{
            max-width: 201px;
        }
*/
.advantages-cards-row-1 .advantages-kv:nth-child(2) .advantages-kv-text{
            max-width: 210px;
        }

.advantages-cards-row-2 .advantages-kv:nth-child(1) .advantages-kv-text{
            max-width: 315px;
        }

.advantages-cards-row-2 .advantages-kv:nth-child(2) .advantages-kv-text{
            max-width: 358px;
        }

.advantages-adaptive .advantages-kv-img-1{
            content: var(--advantages-adaptive-kv-img-1);
        }
/*
.advantages-adaptive .advantages-kv-img-2{
            content: var(--advantages-adaptive-kv-img-2);
        }
*/
.advantages-adaptive .advantages-kv-img-3{
            content: var(--advantages-adaptive-kv-img-3);
        }

.advantages-adaptive .advantages-kv-img-4{
            content: var(--advantages-adaptive-kv-img-4);
        }

.advantages-adaptive .advantages-kv-big-img{
            content: var(--advantages-adaptive-kv-big-img);
        }

.advantages-adaptive .advantages-kv:nth-child(1):hover .advantages-kv-img-1{
            content: var(--advantages-adaptive-kv-img-1-hover);
        }

.advantages-adaptive .advantages-kv:nth-child(1) .advantages-kv-img-1{
            transform: translate(15px, -15px);
        }

.advantages-adaptive .advantages-kv-big{
            width: 100%;
            height: 244px;
            padding: 0 12px;
            max-width: 720px
        }

section.advantages .advantages-adaptive .advantages-kv-big-h3{
            font-size: 16px;
            margin-top: 19px;
            margin-bottom: 15px;
            max-width: 575px;
        }

.advantages-adaptive .advantages-kv-big-text{
            max-width: 683px;
        }

section.advantages .advantages-adaptive .advantages-kv-big-button{
            width: 187px;
            height: var(--advantages-kv-big-button-height-tablet, 30px);
            font-size: 9px;
            margin-bottom: var(--advantages-kv-big-button-margin-bottom-tablet, 18px);
            text-align: center;
        }

.advantages-adaptive .advantages-kv{
            display: flex;
            flex-direction: column;
            position: relative;
        }

.advantages-adaptive .advantages-kv-img{
            position: static;
            bottom: auto;
            left: auto;
            right: auto;
            transform: none;
        }

.advantages-adaptive .advantages-cards-row-1 .advantages-kv:nth-child(1) .advantages-kv-img-1{
            align-self: flex-end;
            margin-top: auto;
        }

.advantages-adaptive .advantages-cards-row-1 .advantages-kv:nth-child(2){
            flex-direction: row;
            align-items: flex-start;
        }

.advantages-adaptive .advantages-cards-row-1 .advantages-kv:nth-child(2) .advantages-kv-content{
            flex: 1;
        }

.advantages-adaptive .advantages-cards-row-2 .advantages-kv:nth-child(1) .advantages-kv-img-3{
            align-self: flex-start;
            margin-top: auto;
        }

.advantages-adaptive .advantages-cards-row-2 .advantages-kv:nth-child(2) .advantages-kv-img-4{
            align-self: center;
            margin-top: auto;
        }

.advantages-adaptive .advantages-kv-img-container{
            position: relative;
            display: inline-block;
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-dots{
            position: absolute;
            top: 110px;
            left: 30%;
            transform: translateX(-50%);
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-message:nth-child(3){
            position: absolute;
            top: 130px;
            right: 0;
            left: auto;
            transform: none;
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-message:nth-child(4){
            position: absolute;
            top: 60px;
            left: 0;
            transform: none;
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-message:nth-child(3).animate{
            animation: showMessage 1s ease-in-out 5s forwards !important;
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-message:nth-child(4).animate{
            animation: showMessage 1s ease-in-out 3s forwards !important;
        }

.advantages-kv-message.animate{
            font-size: 11px;
            padding: 0 10px;
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-img-2{
            position: relative;
        }

}
@media (max-width: 900px) {
    .advantages-cards .advantages-kv-img-4-hack {
        position: absolute;
        width: 100%;
        bottom: -30px;
    }
}
@media (max-width: 800px) {
    .advantages-cards .advantages-kv-img-4-hack {
        width: 100%;
        bottom: 0;
    }
}
@media (max-width: 700px){
    body {
        background-color: red;
    }
    .advantages-cards > .advantages-kv-big {
        height: auto;
    }
    .advantages-kv-big-img {
        display: none;
    }
.advantages{
            padding: 80px 15px 80px 18px;
        }

section.advantages .advantages-h1{
            font-size: 27px;
            margin-bottom: 30px;
        }

.advantages-text{
            font-size: var(--font-size-small);
        }

/*.advantages-cards{*/
/*            display: none;*/
/*        }*/

.advantages-adaptive{
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

.advantages-cards-row-1,
        .advantages-cards-row-2{
            flex-direction: column;
            gap: 20px;
        }

.advantages-adaptive .advantages-kv{
            /* padding: 0 17px; */
            height: 340px;
        }
    .advantages-adaptive .advantages-cards-row-2 .advantages-kv:nth-child(2){
        height: 376px;
    }

section.advantages .advantages-adaptive .advantages-kv-h3{
    font-size: 18px;
    font-weight: 700;
    margin-top: 26px;
    max-width: none;
}

.advantages-adaptive .advantages-kv-text{
    font-size: 14px;
    max-width: none;
}
.advantages-adaptive .advantages-kv:nth-child(2) .advantages-kv-text {
    margin-bottom: 15px;
}

.advantages-adaptive .advantages-kv-with-animation{
            flex-direction: column;
            align-items: flex-start;
        }

.advantages-adaptive .advantages-kv-with-animation .advantages-kv-content{
            order: 1;
        }

.advantages-adaptive .advantages-kv-with-animation .advantages-kv-img-container{
            order: 2;
        }

.advantages-cards-row-1 .advantages-kv:nth-child(2) .advantages-kv-text{
            max-width: none;
        }

.advantages-adaptive .advantages-cards-row-1 .advantages-kv:nth-child(2){
            flex-direction: column;
            align-items: stretch;
        }

.advantages-kv{
            max-width: none;
        }

.advantages-adaptive .advantages-kv-img-1{
            content: var(--advantages-mobile-kv-img-1);
        }

/*.advantages-adaptive .advantages-kv-img-2{
            content: var(--advantages-mobile-kv-img-2);
        }
*/
.advantages-adaptive .advantages-kv-img-3{
            content: var(--advantages-mobile-kv-img-3);
        }

.advantages-adaptive .advantages-kv-img-4{
            content: var(--advantages-mobile-kv-img-4);
        }

.advantages-adaptive .advantages-kv-big-img{
            display: none;
        }

.advantages-adaptive .advantages-kv:nth-child(1):hover .advantages-kv-img-1{
            content: var(--advantages-mobile-kv-img-1-hover);
        }

.advantages-adaptive .advantages-kv-big{
            height: auto;
            width: auto;
        }

section.advantages .advantages-adaptive .advantages-kv-big-h3{
            font-size: 18px;
            font-weight: 700;
            margin-top: 26px;
        }

.advantages-adaptive .advantages-kv-big-text{
            font-size: 15px;
    margin-bottom: 98px;
        }

section.advantages .advantages-adaptive .advantages-kv-big-button{
            width: auto;
            height: var(--advantages-kv-big-button-height-mobile, 42px);
            font-size: 12px;
            margin-bottom: var(--advantages-kv-big-button-margin-bottom-mobile, 30px);
            margin-top: 30px;
            max-width: none;
            text-align: center;
        }

.advantages-adaptive .advantages-kv:nth-child(1) .advantages-kv-img-1{
            transform: translate(25px,0);
        }

.advantages-kv-big-content{
            flex: none;
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-img-2{
            display: block;
            margin: 0 auto;
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-dots{
            top: 40px;
            left: 30%;
            transform: translateX(-50%);
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-message:nth-child(3){
            top: 100px;
            right: 5px;
            left: auto;
            transform: none;
        }

.advantages-adaptive .advantages-kv-img-container .advantages-kv-message:nth-child(4){
            top: 35px;
            left: 20px;
            transform: none;
        }

.advantages-adaptive .advantages-cards-row-2 .advantages-kv:nth-child(1) .advantages-kv-img-3{
            margin-left: -25px;
        }

}
@media (max-width: 500px) {
    .advantages-cards {
        grid-template-columns: repeat(1, 1fr)
    }
    .advantages-kv-big {
        grid-column: 1;
        grid-row: 5;
    }
    .advantages-kv-big-content {
        margin-bottom: 20px;
    }

    section.advantages .advantages-kv-big-button {
        margin-top: 16px;
        margin-bottom: 20px;
        position: initial;
        max-width: 100%;
    }
    .advantages-cards .advantages-kv-img-4-hack {
        position: absolute;
        width: 100%;
        bottom: -50px;
    }
}
