.decision-container {
    margin-top: 20px;
}

.decision-line-one, .decision-line-two {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

.decision-line-one .decision-item-one {
    width: 60%;
    margin-right: 10px;
}

.decision-item-two, .decision-item-one {
    justify-content: space-between;
    align-items: center;
    display: flex;
    height: 450px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-style: normal;
    font-weight: 500;
    font-size: 42px;
    line-height: 120%;
    color: #FFFFFF;
    mix-blend-mode: normal;
    position: relative;
    cursor: pointer;
}

.decision-item-one:hover, .decision-item-two:hover {
    color: #fff;
    box-shadow: 0 40px 60px 20px #000000, inset 2px 0px 0px #2c56ec;
}
.decision-item-one:hover > .background-opacity, .decision-item-two:hover > .background-opacity {
    background-color: unset;
}
.decision-line-one .decision-item-two {
    width: 35%;
}

.decision-line-two .decision-item-one {
    width: 35%;
    margin-right: 10px;
}

.decision-line-two .decision-item-two {
    width: 60%;
}

.decision-img {
    opacity: 0.7;
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    background-color: #000;
}

.decision-text {
    position: absolute;
    margin-left: 50px;
}

.decision-item-text {
    margin-top: 50px;
}

.background-opacity {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #0d0e0f;
    opacity: 0.5;
}
.decision-item-one:hover .img-visual, .decision-item-two:hover .img-visual{
    width: 100%;
    animation-name: Appearance;
    animation-duration: 1s;
    z-index: 0;

}
.img-visual {
    height: 100%;
    width: 100%;
    z-index: -4;
}

@-webkit-keyframes Appearance {
    0% {width: 0;}
    100% {width: 100%;}
}

@-o-keyframes Appearance {
    0% {width: 0;}
    100% {width: 100%;}
}

@-moz-keyframes Appearance {
    0% {width: 0;}
    100% {width: 100%;}
}

@keyframes Appearance {
    0% {width: 0;}
    100% {width: 100%;}
}


@media screen and (max-width: 1000px) {
    .decision-line-one, .decision-line-two {
        flex-direction: column;
    }
    .decision-item-one, .decision-item-two {
        margin-bottom: 10px;
        width: 100%!important;
    }
    .decision-text {
        margin-top: 80px;
    }
}
