.image-with-side-text-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.image-with-side-text-section.text-area-left {
    flex-direction: row-reverse;
}

.image-with-side-text-section.text-area-right {
    flex-direction: row;
}

.image-with-side-text-section.text-area-right .image-with-side-text-img-container {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-start;
}

.image-with-side-text-section.text-area-left .image-with-side-text-img-container {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
}


.image-with-side-text-section.text-area-right .image-with-side-text-img-container .image-with-side-text-img-border-box {
    width: 80%;
    /* border: 6px solid rgb(222, 89, 22); */
    box-sizing: border-box;
    border-style: solid;
    margin-left: 7%;
    z-index: 5;
    position: absolute;
}

.image-with-side-text-section.text-area-right .image-with-side-text-img-container .image-with-side-text-img-front-border {
    width: 80%;
    border-style: solid;
    /* border-left: 6px solid rgb(222, 89, 22); */
    box-sizing: border-box;
    margin-left: 7%;
    z-index: 15;
    position: absolute;
}

.image-with-side-text-section.text-area-left .image-with-side-text-img-container .image-with-side-text-img-border-box {
    width: 80%;
    /* border: 6px solid rgb(222, 89, 22); */
    box-sizing: border-box;
    border-style: solid;
    margin-right: 7%;
    z-index: 5;
    position: absolute;
}

.image-with-side-text-section.text-area-left .image-with-side-text-img-container .image-with-side-text-img-front-border {
    width: 80%;
    border-style: solid;
    /* border-left: 6px solid rgb(222, 89, 22); */
    box-sizing: border-box;
    margin-right: 7%;
    z-index: 15;
    position: absolute;
}

.image-with-side-text-section .image-with-side-text-img-container .image-with-side-text-img-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    z-index: 10;
}

.image-with-side-text-section .image-with-side-text-text-container {
    transform: translateY(50%);
    z-index: 20;
}

.image-with-side-text-section .image-with-side-text-text-container .image-with-side-text-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


.image-with-side-text-section .image-with-side-text-text-container .image-with-side-text-subhead {
    order: 1;
}

.image-with-side-text-section .image-with-side-text-text-container .image-with-side-text-headline {
    margin-top: 0px;
    order: 2;
}

.image-with-side-text-section .image-with-side-text-text-container .image-with-side-text-content {
    order: 3;
}

@media only screen and (max-width: 576px) {
    .image-with-side-text-section {
        flex-wrap: wrap;
    }

    .image-with-side-text-section .image-with-side-text-img-container {
        justify-content: center;
    }

    .image-with-side-text-section .image-with-side-text-img-container .image-with-side-text-img-front-border {
       display: none;
    }
    
    .image-with-side-text-section .image-with-side-text-img-container .image-with-side-text-img-border-box {
        display: none;
    }

    .image-with-side-text-section .image-with-side-text-text-container {
        transform: translateY(-80px);
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

}