/* bannerarea
---------------------------------------------------------- */
/* css for this is in the /css/patterns/banner-and-stats.css file */
.bannerarea {
    background-color: transparent;
    overflow: visible;
}
.banner-half-holder {
    gap: 60px;
}
.banner-right {
    z-index: 1;
    max-width: 796px;
    width: 100%;
    max-height: 450px;
    height: 100%;
}
.banner-video-box-holder {
    position: relative;
    padding: 56.25% 0 0 0;
}

.gradient-smudge.banner-smudge .smudge {
    border-radius: 1022px;
    width: 702px;
    height: 1022px;
    transform: translate(-50%, 0%);
    left: 100%;
    top: 0%;
}

@media (max-width: 1025px) {
    .banner-half-holder {
        flex-direction: column-reverse;
        gap: 0px;
    }
}

/* testimonials-section
---------------------------------------------------------- */
.testimonials-section {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -1px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, var(--light-blue) 100%);
}
.testimonials-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}
.testimonials-holder {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    width: 100%;
}
.testimonials-holder:nth-child(odd) {
    flex-direction: row-reverse;
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
    width: calc(50% - 30px);
    max-width: 640px;
    border: 2px solid rgba(0, 173, 251, 0.40);
    background: var(--white);
    padding: 40px 48px;
}
.testimonial-title-holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
}
.testimonial-title-holder h2 {
    color: var(--main-color);
}
.testimonial-title-holder span {
    line-height: 1.5;
    letter-spacing: 0px;
    font-weight: 600;
    color: var(--tertiary-color);
}
.testimonial-content p {
    line-height: 1.5;
    letter-spacing: 0px;
    font-weight: 500;
}
.testimonial-video-holder {
    position: relative;
    z-index: 1;
    width: calc(50% - 30px);
    max-width: 640px;
    border: 2px solid rgba(0, 173, 251, 0.40);
    box-shadow: 0px 8px 32px 0px rgba(55, 60, 89, 0.06), 0px 5px 8px 0px rgba(55, 60, 89, 0.06), 0px 10px 100px 0px rgba(55, 60, 89, 0.08);
}
.testimonial-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
    object-fit: cover;
    object-position: center;
}
.testimonial-video {
    position: relative;
    z-index: 1;
}
.hide-overlay {
    opacity: 0 !important;
    visibility: hidden;
}

.gradient-smudge.testimonials-smudge .smudge {
    border-radius: 1022px;
    width: 702px;
    height: 1022px;
    transform: translate(-50%, -5%);
    left: 0%;
    top: 50%;
}
.gradient-smudge.testimonials-smudge .smudge::before {
    background: linear-gradient(150deg, rgba(213, 241, 161, 0.50) 4.67%, rgba(48, 191, 255, 0.50) 44.99%, rgba(76, 90, 112, 0.50) 85.31%);
    transform: rotate(9deg);
}

@media (max-width: 1200px) {
    .testimonials-holder {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }
    .testimonials-holder:nth-child(odd) {
        flex-direction: column-reverse;
    }
    .testimonial-content,
    .testimonial-video-holder {
        width: 100%;
    }
}
@media (max-width: 700px) {
    .testimonials-section {
        padding: 100px 25px;
    }
    .testimonials-holder {
        gap: 15px;
    }
    .testimonial-content {
        padding: 30px 28px;
    }
}
    


/* proven-track-record-section
---------------------------------------------------------- */
/* css for this is in the /css/patterns/slider-and-faq.css file */
.proven-track-record-section {
    z-index: 0;
}
.proven-track-record-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -1px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: linear-gradient(180deg, var(--light-blue) 0%, rgba(255, 255, 255, 0.00) 100%);
}
.proven-track-record-slider-holder ul.slick-dots li button {
    padding: 14px 3px;
}
.proven-track-record-slider-holder .dentist-holder {
    min-height: 400px;
}
@media (max-width: 1700px) {
    .proven-track-record-slider-holder ul.slick-dots li button {
        padding: 3px 14px;
    }
}
@media (max-width: 800px) {
    .proven-track-record-slider-holder .dentist-holder {
        min-height: 390px;
    }
}
@media (max-width: 500px) {
    .proven-track-record-slider-holder .dentist-holder {
        min-height: 400px;
    }
}
@media (max-width: 400px) {
    .proven-track-record-slider-holder ul.slick-dots li button {
        margin: 0 3.5px;
        padding: 3px 12px;
    }
    .proven-track-record-slider-holder .dentist-holder {
        min-height: 450px;
    }
}