.image-with-content .column-row {
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
}

.image-with-content .column-row .column-left {
    width: 50%;
}

.image-with-content .column-row .column-right {
    width: 50%;
}

.image-with-content .column-row .column-right .image-wraper {
    height: 100%;
    position: relative;
}

.image-with-content .column-row .column-right .image-wraper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-with-content .column-row .column-left .content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 80px;
}
.image-with-content.switch-column .column-row {
    flex-direction: row-reverse;
}
@media only screen and (max-width:1199px){
    .image-with-content .column-row .column-left .content-block {
        padding: 60px 40px;
    }
    
}
@media only screen and (max-width:991px){
    .image-with-content .column-row .column-left .content-block {
        padding: 40px 20px;
    }
}
@media only screen and (max-width:767px){
    .image-with-content .column-row .column-left .content-block {
        padding: 40px 15px;
    }
    .image-with-content .column-row .column-left {
        width: 100%;
    }
   .image-with-content .column-row .column-right {
        width: 100%;
    }
    .image-with-content .column-row {
        flex-direction: column-reverse;
    }
    .image-with-content.switch-column .column-row {
        flex-direction: column-reverse;
    }
}