#system {
    padding: 0 0 112px;
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

.system_img {
    background: url(../assets/bgsys.jpg) top / cover no-repeat;
}

.system_name {
    color: #FFF4E7;
    font-family: 'OpenSans Bold';
    font-size: 32px;
    line-height: 38px;
    text-transform: uppercase;
}

.system_blocks {
    display: flex;
    flex-direction: row;
    max-width: 1488px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 64px;
    position: relative;
}

.animate-on-scroll .system_rec:nth-child(1) {
    transform: translate(-100px, 0);
    transition: all 0.3s ease;
    opacity: 0;
}

.animate-on-scroll .system_rec:nth-child(2) {
    transform: translate(100px, 0);
    transition: all 0.3s ease;
    opacity: 0;
}

.animate-on-scroll.visible .system_rec {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
}

.system_text {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 21px;
    padding: 30px 32px 22px 32px;
    align-items: flex-start;
}

.system_bottom {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.system_rec {
    display: flex;
    padding: 0;
    flex-direction: column;
    width: 100%;
}

.system_left {
    border: 3px solid rgba(255, 255, 255, 0.30);
    background: linear-gradient(251deg, #131313 11.34%, #1C1C1C 96.12%);
}

.system_right {
    border: 3px solid rgba(230, 184, 67, 0.60);
    background: linear-gradient(251deg, #191613 11.34%, #29241F 96.12%);
}

.system_up {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding-bottom: 12px;
    width: 100%;
    position: relative;
}

.system_arrow {
    display: none;
}

.system_line {
    background: #ffffff1f;
    height: 2px;
    width: 100%;
}

.system_treb span {
    color: #FFF4E7;
    font-family: 'OpenSans SemiBold';
    font-size: 16px;
    line-height: 22px;
}

.system_what {
    color: #d9d9d9a3 !important;
}

.system_treb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 44px;
}

.system_treb span:nth-child(2) {
    text-align: end;
}

.system_after_name {
    font-family: 'OpenSans Medium';
    color: #d9d9d9a3;
    text-align: center;
    font-size: 22px;
    line-height: 22px;
}

@media (max-width: 1570px) {

    .system_blocks {
        max-width: 1310px;
    }
}

@media (max-width: 1430px) {

    .system_blocks {
        max-width: 896px;
        gap: 32px;
    }

    .system_after_name {
        color: #FFF4E7;
        font-family: 'OpenSans SemiBold';
        text-align: left;
        font-size: 16px;
        line-height: 24px;
    }

    .system_treb {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        height: auto;
        gap: 8px;
    }

    .system_what {
        color: #d9d9d9a3 !important;
        font-family: 'OpenSans SemiBold';
        font-size: 14px;
        line-height: 22px;
    }

    .system_treb span {
        font-family: 'OpenSans SemiBold';
        font-size: 16px;
        line-height: 18px;
    }

    .system_text {
        gap: 12px;
    }

    .system_bottom {
        gap: 12px;
    }

    .system_up {
        padding-bottom: 17px;
        min-height: 110px;
    }

    .system_treb span:nth-child(2) {
        text-align: left;
    }
}

@media (max-width: 930px) {
    .system_blocks {
        max-width: 100%;
        gap: 16px;
        flex-direction: column;
        padding: 0 16px;
    }

    .system_name {
        font-size: 24px;
        line-height: 32px;
    }

    .system_after_name {
        font-size: 18px;
        line-height: 24px;
    }

    .system_bottom {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .system_up {
        padding-bottom: 0;
        min-height: 82px;
    }

    .system_rec {
        cursor: pointer;
    }

    .system_rec.active_rec .system_text .system_bottom {
        max-height: 500px;
    }

    .system_arrow {
        display: block;
        position: absolute;
        width: 16px;
        height: 10px;
        right: -4px;
        top: 10px;
        transition: all 0.3s ease;
    }

    .system_rec.active_rec .system_arrow {
        transform: rotate(180deg);
    }
}