
.threeArgSection {
    background: var(--color-background-darkBlue);
    padding-top: 20px;
}

.threeArgSection__upper_header_text_wrapper {
    margin-bottom: 20px;
}
.threeArgSection__upper_header_text_wrapper span {
    background: #041048;
    border-radius: 50px;
    padding: 8px 12px;
    opacity: 0.4;
}

.threeArgSection__header {
    line-height: 80px;
    margin-bottom: 40px;
}

.threeArgSection__column {
    padding-left: 0;
    padding-right: 0;

    position: relative;
    z-index: 1;
}


.threeArgSection__column_img_wrapper {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 20%;

    height: 390px; /* Задаем фиксированную высоту */
    overflow: hidden; /* Обрезка содержимого */
}

.threeArgSection__column_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.threeArgSection__column_content_wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.threeArgSection__column_content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.threeArgSection__column_content.second {
    padding-right: 15%;
    padding-left: 37%;
}

.threeArgSection__column_content.third {
    padding-left: 12%;
    padding-right: 39%;
}

.threeArgSection__line_decorator {
    position: absolute;
    top: -40px;
    left: -2px;
    width: 2px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 95%);
    border-radius: 50%;
    opacity: 0.5;
}


.threeArgSection__column_icon_wrapper {
    position: absolute;
    top: -25px;
    width: 80%;
    display: flex;
    background: var(--color-background-darkBlue);
}

.threeArgSection__column_content.second .threeArgSection__column_icon_wrapper {
    width: 55%;
    right: 55%;

    justify-content: flex-end;
}
.threeArgSection__column_content.third .threeArgSection__column_icon_wrapper {
    width: 90%;

}


.threeArgSection__column_text_block {
    padding-top: 20%;
}
.threeArgSection__column_text_block h4 {
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 5px;
}



.reverse .threeArgSection__column_img_wrapper {
    border-right: 0;
    padding-left: 0;

    padding-right: 20%;
}

.reverse.text.threeArgSection__column {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}


.reverse .threeArgSection__line_decorator {
    top: -40px;
    left: unset;
    right: -2px;
}

.no-reverse {
    display: none;
}


@media (max-width: 1199px) {
    .threeArgSection__column_content.second {
        padding-right: 6%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .threeArgSection > div {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .threeArgSection__header {
        font-size: 64px;
        line-height: 64px;
    }

    .threeArgSection__column_text_block h4{
        font-size: 32px;
        line-height: 32px;
    }
    .threeArgSection__column_text_block p{
        font-size: 16px;
    }

    .threeArgSection__column_img_wrapper {
        height: 285px;
    }

    .threeArgSection__column_content.second {
        padding-right: 5%;
    }
}




@media (max-width: 767px) {

    .threeArgSection__header {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .reverse {
        display: none;
    }
    .no-reverse {
        display: flex;
    }

    .threeArgSection__column_content {
        border: 0;
        padding: 0 5% !important;
        display: flex;
    }

    .threeArgSection__line_decorator {
        display: none;
    }

    .threeArgSection__column_img_wrapper {
        border: 0 !important;
        padding: 0;
        padding-right: 15%;
        width: 100%;
        height: auto; /* Динамическая высота */
        max-height: 300px; /* Максимальная высота для обрезки */

        display: flex;
        justify-content: center;
    }

    .threeArgSection__column_img_wrapper img {
        width: 218px;
        height: 203px;
        /*max-height: 300px; */
        object-fit: contain;
    }

    .threeArgSection__column_text_block {
        padding: 0;
    }
    .threeArgSection__column_text_block h4 {
        font-size: 18px;
        line-height: 18px;
    }
    .threeArgSection__column_text_block p {
        font-size: 14px;
    }

    .threeArgSection__column_icon_wrapper {
        position: relative;
        top: unset !important;
        right: unset !important;
        left: unset !important;
        width: auto !important;
        background: 0;
        margin-right: 20px;
    }
    .threeArgSection__column_icon_wrapper img {
        width: 30px;
        height: 30px;
    }
}
.threeArgSection__column_img_wrapper img.shaking {
    animation: shake 1s ease-in-out;
}