
.testimonials-video-content-wrapper{
    display: flex;
    flex-flow: wrap;
    flex-direction: column;
    align-items: center;
}
.testimonials-video{
    min-height: 300px;
    position: relative;
    height: 100%;
}
.testimonials-video-content-text>h2{
    margin-bottom: 30px;
    margin-top: 0;
}
.testimonials-video-content-text .para{
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
}
.testimonials-video>img{
    object-position: center right;
}
.testimonials-video-outer{
    width: 100%;
    height: 400px;
}
.testimonials-video>iframe,
.testimonials-video>a{
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
.testimonials-video>iframe,
.testimonials-video .rll-youtube-player{
    z-index: -2;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.testimonials-video>a{
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    z-index: 1;
}
.testimonials-video>a:hover{
    opacity: 0.5;
}
.testimonials-video.active > iframe,
.testimonials-video.active .rll-youtube-player{
    z-index: 1;
    opacity: 1;
}

.testimonials-video.active > a{
    z-index: -2;
    opacity: 0;
}

.testimonials-video-content-text{
    box-sizing: border-box;
    padding: 30px;
}
.testimonials-video-content-text *{
    font-family: "Muli", sans-serif;
}


@media (min-width: 990px) {
    .testimonials-video-content-wrapper{
        flex-direction: row;
    }
    .testimonials-video-outer{
        width: 60%;
        height: 550px;
    }
    .testimonials-video-content-text{
        width: 40%;
    }
    
}

@media (min-width: 1200px) {
    .testimonials-video-content-text{
        padding: 30px;
    }
}