.emsv-video-cta {
    min-height:400px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow: 15px 17px 50px 0px rgba(0,0,0,0.4),
    0 14px 10px -15px rgba(0,0,0,0.5) ;
}
body .emsv-video-cta-poster {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius:20px;
}
.emsv-video-cta-heading {
    position:absolute;
    bottom:0px;
    right:20px;
    text-align:right;
    font-size:40px;
    line-height:1em;
    font-weight:900;
    color:var(--e-global-color-primary);
    z-index:2;
    max-width:400px;
    transition:transform 0.3s ease-in-out;
}
.emsv-video-cta-reverse .emsv-video-cta-heading {
    text-align:left;
    right:unset;
    left:20px;
}
.emsv-video-cta-secondary .emsv-video-cta-heading {
    color:#fff;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
.emsv-video-cta:hover .emsv-video-cta-heading {
    transform:translateY(-20px);
}
.emsv-video-cta-heading-ft {
    display:block;
    text-transform:uppercase;
    font-weight:400;
    position:relative;
    margin-bottom:15px;
    font-size:30px;
}
.emsv-video-cta-heading-ft:after {
    position:absolute;
    content:"";
    right:0;
    bottom:-10px;
    width:45px;
    border:3px solid;
}
.emsv-video-cta-reverse .emsv-video-cta-heading-ft:after {
    right:unset;
    left:0;
}
.emsv-video-cta-overlay {
    background:var(--e-global-color-primary);
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    border-radius:20px;
    opacity:0.4;
    z-index:0;
    transition:background 0.3s ease-in-out;
}
.emsv-video-cta:hover .emsv-video-cta-overlay {
    background:#fff;
}
.emsv-video-cta-heading-bg {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
    bottom: -1px;
    border-radius: 20px;
    top: 0;
}
.emsv-video-cta-heading-bg svg {
    fill: #fff;
    height: 180px;
    transform: translateX(-50%) rotateY(180deg);
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    opacity:0.62;
    transition:all 0.3s ease-in-out;
}
.emsv-video-cta-reverse .emsv-video-cta-heading-bg svg {
    transform: translateX(-50%) rotateY(0deg);
}
.emsv-video-cta-secondary .emsv-video-cta-heading-bg svg {
    fill:var( --e-global-color-primary );
}
.emsv-video-cta:hover .emsv-video-cta-heading-bg svg {
    height:1000px;
    width:250%;
}
.emsv-video-cta-link {
    display:block;
    position:absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    z-index:3;
}
.emsv-video-cta-video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
@media (max-width:767px) {
    .emsv-video-cta {
        min-height:250px;
    }
    .emsv-video-cta-heading-bg svg {
        height:230px;
    }
}