 
/*==============================================
   Testimonial One
===============================================*/
.testimonial-one {
    position: relative;
    display: block;
    background-color: var(--fixpro-black);
    padding: 80px 0 80px;
    overflow: hidden;
    z-index: 1;
}
 

.testimonial-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .4;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* mix-blend-mode: luminosity; */
    z-index: -1;
}

.testimonial-one .section-title__title {
    color: var(--fixpro-white);
}

.testimonial-one .section-title__tagline-border::after {
    /* background: var(--fixpro-black); */
}

.testimonial-one__carousel {
    position: relative;
    display: block;
}

.testimonial-one__single {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: var(--fixpro-bdr-radius);
    padding: 25px 25px 25px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    overflow: hidden;
}

.testimonial-one__single-bdr {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 150px;
    height: 3px;
    background-color: var(--fixpro-base);
    clip-path: polygon(0 0, 98% 0, 100% 100%, 0% 100%);
}

.testimonial-one__client-info-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.testimonial-one__client-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: 1px solid rgb(8 169 157);
    border-radius: 5px;
    border-radius: 50%;
}

.testimonial-one__client-img {
    position: relative;
    display: block;
    max-width: 80px;
    width: 100%;
    border-radius: 50%;
}

.testimonial-one__client-img img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-one__client-content {
    position: relative;
    display: block;
    flex: 1;
}

.testimonial-one__client-name {
    font-size: 23px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
}

.testimonial-one__client-name a {
    color: var(--fixpro-base);
}

.testimonial-one__client-name a:hover {
    color: var(--fixpro-white);
}

.testimonial-one__client-sub-title {
    color: rgb(8 169 157);
    margin-top: 5px;
    text-transform: capitalize;
}

 

.testimonial-one__text {
    font-size: 18px;
    line-height: 30px;
    color: rgb(0 0 0 / 80%);
    margin-top: 15px;
}

.testimonial-one__quote {
    position: absolute;
    top: 76px;
    right: 22px;
}

.testimonial-one__quote span {
    position: relative;
    display: inline-block;
    font-size: 125px;
    color: rgb(42 185 126 / 7%);
}
 
/*--------------------------------------------------------------
# Testimonial Page
--------------------------------------------------------------*/
.testimonial-page {
    position: relative;
    display: block;
    background-color: #002335;
    padding: 120px 0 90px;
    z-index: 1;
}

.testimonial-page .testimonial-one__single {
    margin-bottom: 30px;
}
 