.testimonials {
}
.testimonials .testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
}
.testimonials .testimonials-wrapper .single-testimonial{
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    justify-content: space-between;
    padding: 24px;
    margin: 0;
    box-sizing: border-box;
}
.testimonials .testimonials-wrapper .single-testimonial .stars-text-wrapper{
}
.testimonials .testimonials-wrapper .single-testimonial .stars-text-wrapper .stars{
    display: flex;
    justify-content: flex-start;
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.testimonials .testimonials-wrapper .single-testimonial .stars-text-wrapper li{
    font-size: 16px;
}
.testimonials .testimonials-wrapper .single-testimonial .user-wrapper{
    display: flex;
    justify-content: flex-end;
}
.testimonials .testimonials-wrapper .single-testimonial .user-wrapper .user-name-profile {
    margin: 0 20px 0 0;
}
.testimonials .testimonials-wrapper .single-testimonial .user-wrapper .user-name-profile p{
    text-align: right;
    margin: 0;
}
.testimonials .testimonials-wrapper .single-testimonial .user-wrapper .user-name-profile a{
    font-weight: 400;
    font-size: 14px;
    line-height: 142%;
    letter-spacing: 0.4px;
    text-align: right;
    color:#EA4174;
    display: flex;
}
.testimonials .testimonials-wrapper .single-testimonial .user-wrapper .user-name-profile a>img{
    width: 16px;
    height: 16px;
    margin: 0 12px 0 0;
}
.testimonials .testimonials-wrapper .single-testimonial .user-wrapper>img{
    width: 48px;
    height: 48px;
}
@media (max-width: 1330px) {
    .testimonials .testimonials-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px;
    }
}
@media (max-width: 768px) {
    .testimonials .testimonials-wrapper {
        display: block;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
}

.minihero.minihero-blog-list {
    padding: 80px 0 24px 0;
}
.blog-list {
    padding: 60px 0 40px 0;
}

.blog-single {
    margin: 0;
    padding: 0;
}
.blog-single .blog-single-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.blog-single .blog-single-wrapper .img-wrapper{
    width: 750px;
    max-height: 500px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
}
.blog-single .blog-single-wrapper img{
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position:center;
}
.blog-single .blog-single-wrapper .text-wrapper{
}
.blog-single .blog-single-wrapper .text-wrapper h1{
    text-align: center;
}
.blog-single .blog-single-wrapper .video-wrapper {
    width: 100%;
}
@media (max-width: 1330px) {
}
@media (max-width: 768px) {
    .blog-list .blog-list-wrapper .blog-list-single{
        height: 300px;
    }
    .blog-list .blog-list-wrapper .blog-list-single .blog-list-single-title{
        bottom: 20px;
        left: 20px;
        font-size: 24px;
    }

    .blog-single .blog-single-wrapper {
        padding: 0;
    }
    .blog-single .blog-single-wrapper .img-wrapper {
        width: 100%;
        margin-bottom: 48px;
    }
}


