/* Text Image CSS */

.text-video .image-wrapper{
    border-radius: 20px;
    position: relative;
    min-height: 600px;
}
.text-video .image-wrapper .for-lg{
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.text-video .image-wrapper img{
    width: 100%;
    border-radius: 20px;
}
.text-video .content-wrapper{
    border-radius: 20px;
    position: relative;
}
.text-video .content-wrapper .inner{
    padding: 45px 30px 65px;
}
.text-video .content-wrapper .txt-btn{
    position: absolute;
    left: 30px;
    bottom: 45px;
}
.text-video .content-wrapper blockquote{
    font-style: normal;
    font-family: var(--heading);
    font-size: 28px;
    line-height: 34px;
}
.text-video .content-wrapper blockquote p{
    line-height: 1.3em;
}
.text-video .play-btn{
    font-size: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.text-video .play-btn:before{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 91px;
    height: 91px;
    content: '';
    display: block;
    background: url('/wp-content/plugins/ff-block-suite/assets/images/play.svg');
    background-size: contain;
    transition: all 0.2s ease-in-out;
    border-radius: 50%;
}
.text-video .image-wrapper:hover .play-btn:before{
    width: 101px;
    height: 101px;
    box-shadow: 1px 1px 25px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 1px 25px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 25px 0px rgba(0,0,0,0.75);
}
.text-video .image-wrapper:after{
    content: '';
    display: block;
    opacity: 0;
    visibility: hidden;
    background: #00000050;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-in-out;
    border-radius: 20px;
}
.text-video .image-wrapper:hover:after{
    opacity: 1;
    visibility: visible;
}
@media screen and (max-width: 1480px){
    .text-video .content-wrapper blockquote{
        font-size: 24px;
        line-height: 32px;
    }
}

@media screen and (max-width: 991px){
    .text-video .content-wrapper, .text-video .image-wrapper{
        height: auto!important;
    }
    .text-video .image-wrapper{
        min-height: 0!important;
        margin-bottom: 0!important;
        height: auto!important;
    }
    .text-video .has-box-bg .image-wrapper img{
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .text-video .content-wrapper{
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .text-video .content-wrapper:not(.none) .inner{
        padding: 30px;
    }
    .text-video .content-wrapper.none .inner{
        padding: 25px 0;
    }
    .text-video .content-wrapper .txt-btn{
        position: relative;
        left: 0;
        bottom: 0;
    }
    .text-video .play-btn:before{
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 600px){
    .text-video .play-btn:before{
        width: 40px;
        height: 40px;
    }
    .text-video .content-wrapper blockquote{
        font-size: 20px;
        line-height: 26px;
    }
    .text-video .content-wrapper:not(.none) .inner{
        padding: 25px 25px 30px;
    }
}