.flexthis1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.absoluteflexback {
    position: absolute;
    top: 0;
    width: 90%;
    height: 100%;
    background: #e8e8e8;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 24% 100%);
    right: 0;
}

.angledmain {
    width: 40%;
    position: relative;
    padding: 70px 0;
}

.angledmain img {
    width: 100%;
    position: relative;
}

.angledcontent {
    width: calc(55%);
    position: relative;
    padding-right: 50px;
}

.angledmain img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
}

.whitecontent h2,
.whitecontent p,
.whitecontent a,
.whitecontent h3,
.whitecontent h4,
.whitecontent h5,
.whitecontent h6,
.whitecontent span,
.whitecontent li,
.whitecontent ul,
.whitecontent ol,
.whitecontent strong,
.whitecontent em,
.whitecontent b,
.whitecontent i {
    color: white;
}

.flipit1 .angledmain {
    order: 2;
}

.flipit1 .absoluteflexback {
    clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
    right: initial;
    left: 0;
}

.flipit1 .angledcontent {
    padding-right: 0;
    padding-left: 50px;
}

@media (max-width:1199px) {
    .absoluteflexback {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        clip-path: none !important;
    }

    .angledmain {
        width: 100%;
        padding: 0 !important
    }

    .angledcontent {
        width: 100%;
        padding-right: 0 !important;
        padding-left: 0 !important;
        /* margin-top: 30px; */
    }

    .angledmain img {
        padding: 0;
    }

    .flexthis1 {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .flipit1 .angledmain {
        order: initial;
    }

}