/*
Theme Name: Twenty Twenty-Four Child
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Template: twentytwentyfour
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.2.1729682686
Updated: 2024-10-23 11:24:46

*/


.testimonial-profession {
    font-size: 16px;
    font-style: italic;
     color: #747373;
}
.testimonial-title {
    font-size: 16px;
     margin: 0;
}
.testimonial-blogs {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 50px;
    width: 100%;
}
.testimonial-blog {
    width: 25.3%;
    background: #fff;
    padding: 30px 30px 50px 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	position: relative;
}
.testimonial-blog:before {
    content: '';
    background-image: url(http://testimonialscasestudy.com/wp-content/uploads/2024/11/quote.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 45px;
    top: 28px;
}
.testimonial-content p {
    color: #747373;
}
video#testimonialVideo {
    width: 100%;
    height: 100%;
}

/* CODE */
.flip-card {
    position: relative; /* To position the play button inside the card */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    display: none; /* Hidden by default */
}

/* END */

@media only screen and (max-width: 1440px) {
.testimonial-blog {
    width: 21.3%;
    background: #fff;
    padding: 30px 30px 50px 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
}
}

@media only screen and (max-width: 768px) {
 .testimonial-blogs {
    gap: 0px !important;

}
.testimonial-blog {
    width: 100% !important;
	margin-bottom: 30px;
}
}