/*------------------------------------*\
    
    Contained Image + Text Block Customizations - Global Styling

    The styles you add to this file will be applied to the 'Contained Image + Text' block. 
    If there is any reasons why you would need to style them separately,
    please create a block-specific stylesheet for it (don't forget to register that block-specific stylesheet in acf-start-blocks.php)

\*------------------------------------*/

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.image-text .flex-row {
    align-items: center
}


.play-btn{
   background: none;
}
.video-half-and-half-image__overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 40px 12px 100px;
    background: rgb(0,41,77);
    background: linear-gradient(97deg,rgba(0,41,77,1) 0%,rgba(0,41,77,.25) 100%);
}
.play-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.61);
-webkit-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.61);
-moz-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.61);
}
.play-btn svg path {
    fill: #fff ;
    transition: all 0.3s ease-in-out;
}
.play-btn svg path:first-child {
    fill: #F17503;
}

a.play-btn:hover svg{
    background: #F17503 ;
}
a.play-btn:hover svg path{
    fill: #F17503 ;
}
a.play-btn:hover svg path:first-child {
    fill: #fff;
}
.video-half-and-half-image__overlay .video-image{
    position: absolute;
    top: -10px;
    left: unset;
    right: 10px;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-half-and-half-image__overlay h4{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .1rem;
    padding: 0;
    text-transform: uppercase;
    margin-right: 70px;
}
.video-half-and-half-image__overlay{
    display: flex;
    justify-content: flex-end;
}
@media(min-width:768px) {
    .video-half-and-half-image__overlay{
        padding: 17px 25px 23px 131px ;
    }
    .video-half-and-half-image__overlay h4{
        font-size: 17px;
    }
    /* .video-half-and-half-image__overlay .video-image{
        top: -44px;
        left: 26px;
        width: 90px;
        height: 90px;
        right: unset;
        
    } */
}
@media(min-width:1200px) {
    .video-half-and-half-image__overlay{
        padding: 29px 25px 35px 196px;
    }
    .video-half-and-half-image__overlay h4{
        font-size: 22px;
        margin-right: 0;
    }
    .video-half-and-half-image__overlay .video-image{
        top: -44px;
        left: 66px;
        width: 110px;
        height: 110px;
        right: unset;
    }
    .video-half-and-half-image__overlay{
        display: block;
        
    }

}