.testimonial-new {
    margin-bottom: 40px;
}

.testimonial_heading h2 {
    font-family: 'Barlev-Regular';
    font-size: 49px;
    line-height: 1.27;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}

.testimonial_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    row-gap: 20px;
}

.testimonial_content .testimonial_item {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.testimonial_content .testimonial_item .image_item {
    position: relative;
}

.testimonial_content .testimonial_item .image_item img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.testimonial_content .testimonial_item .testimonial_text {
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
    padding: 13px;
    background-image: linear-gradient(to top, #19191d, #00000000);
}

.testimonial_content .testimonial_item .testimonial_text img {
    margin-bottom: 19px;
    cursor: pointer;
}

.testimonial_content .testimonial_item .testimonial_text h4 {
    font-family: 'Barlev-Regular';
    font-size: 35px;
    color: #fff;
    margin: 0px;
}

.testimonial_content .testimonial_item .testimonial_text p {
    font-family: 'Almoni-Neue-Regular';
    opacity: 0.6;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    margin: 0 auto;
    padding: 16px;
    width: 100%;
}

.close {
    margin-bottom: 10px;
    display: block
}

.close img {
    width: 24px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#modalVideo {
    background: transparent;
    border: 0;
    min-height: 315px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.quotes-section .owl-nav {
    display: none;
}

.quotes-section .owl-dots {
    text-align: center;
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.quotes-section .owl-dots button {
    padding: 0;
}

@media (min-width : 767px) {
    .testimonial-new {
        margin-bottom: 129px;
    }

    .testimonial_heading h2 {
        margin-bottom: 92px;
        font-size: 75px;
        line-height: 0.83;
    }

    .testimonial_content .testimonial_item .testimonial_text h4 {
        font-size: 39px;
    }

    .testimonial_content {
        gap: 45px;
        flex-wrap: wrap;
    }

    .testimonial_content .testimonial_item {
        max-width: calc((100% / 3) - 30px);
    }

    #modalVideo {
        width: 100%;
        height: 482px;
    }

    .modal-content {
        width: 73%
    }

}



/* quote section */
.quotes-section {
    background-image: url('images/quote-testimonials.svg');
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 150px;
}

.quote_image {
    text-align: center;
}

.quote_image {
    max-width: 621px;
    width: 100%;
    margin: 0 auto;
}

.quote_image .quote_text {
    font-family: 'Barlev-Light', arial;
    font-size: 49px;
    line-height: 1.06;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}

.quote_image .quote_text strong {
    font-weight: normal;
    font-family: 'Barlev-Regular', arial;
}

.quote_image .quote_title {
    font-family: 'Almoni-Neue-Black', arial;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    color: #000;
}

.quote_image .quote_person_name {
    font-family: "Almoni-Neue-Regular", arial;
    font-size: 19px;
    line-height: 20px;
    text-align: center;
    color: #000;
}

@media (min-width : 768px) {
    .quotes-section {
        background-position: 75% 0%;
        padding-top: 55px;
    }

    .quote_image .quote_text {
        font-size: 68px;
        line-height: 1.05
    }

}