
:root .image_divider {
    --odd-image-height: 540px;
    --odd-image-width: 440px;
    --even-image-height: 440px;
    --even-image-width: 440px;
    --image-spacing: 60px;
    --padding-setting-top: 70px;
    --padding-setting-bottom: 100px;
}

@media(max-width: 767.98px) {
    :root .image_divider {
        --odd-image-height: 258px;
        --odd-image-width: 172px;

        --even-image-height: 187px;
        --even-image-width: 125px;

        --image-spacing: 30px;
        --padding-setting-top: 20px;
        --padding-setting-bottom: 50px;
    }
}

.image_divider {
    overflow-x: hidden;
    background-color: var(--cream);
}

.image_divider .padding_setting {
    padding-top: var(--padding-setting-top);
    padding-bottom: var(--padding-setting-bottom);
}

.image_divider .side-scrolling-image-container {
    position: absolute;
}

.image_divider .side-scrolling-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    /*left: 6%;*/
    left: 0;
    position: relative;
}

/*.image_divider .side-scrolling-images .scrolling-image img {*/
    /*height: 100%;*/
    /*width: auto;*/
/*}*/

.image_divider .side-scrolling-images .scrolling-image {
    position: relative;
    z-index: 500;
    margin-right: var(--image-spacing);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--forest);
    box-shadow: -9px 7px 81px rgba(12,47,38, 0.03);
}

.image_divider .side-scrolling-images .scrolling-image:nth-of-type(odd) {
    height: var(--odd-image-height);
    width: var(--odd-image-width);
}

.image_divider .side-scrolling-images .scrolling-image:nth-of-type(even) {
    height: var(--even-image-height);
    width: var(--even-image-width);
}


.image_divider .side-scrolling-images-bumper {
    height: var(--odd-image-height);
    z-index: 1;
    display: block;
    width: 100%;
    position: relative;
    background-color: var(--cream);
}
.image_divider .side-scrolling-images .scrolling-image:nth-of-type(even) {
    padding-top: 50px;
}

/*** Image Skewing ***/
/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(1),*/
/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(5),*/
/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(9){*/
    /*transform: rotate(-2.5deg) translateY(10%);*/
/*}*/

/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(2),*/
/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(6),*/
/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(10){*/
    /*transform: rotate(2.5deg);*/
/*}*/

/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(3),*/
/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(7),*/
/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(11){*/
    /*transform: rotate(-5.5deg);*/
/*}*/

/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(4),*/
/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(8),*/
/*.image_divider .side-scrolling-images .scrolling-image:nth-of-type(12){*/
    /*transform: rotate(5deg)  translateY(10%);*/
/*}*/