/*** 
====================================================================
    VCP Page Banner
====================================================================
***/
.vcp-page-banner {
    min-height: 400px;
    z-index: 1;
}
.vcp-banner-img-holder {
    width: 50%;
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
}
.vcp-banner-img-holder img {
    width: calc(100% - 20px);
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 9;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 18% 100%, 0 64%);
}
.vcp-banner-img-holder:before{
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .3);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 18% 100%, 0 64%);
}