.testimonials{
    padding: 50px 20px;
    max-width: unset !important;
    position: relative;
}
.testimonials .testimonials-row{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding-bottom: 40px;
}

.testimonials .testimonial{
    flex: 0 0 auto;
    white-space: normal;
    max-width: 400px;
    width: 100%;
    border: 4px solid var(--titanBlue);
    padding: 40px 0px 100px;
    color: var(--titanBlue);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.testimonials .testimonial .testimonial-content{
    max-width: 90%;
    margin: auto !important;
    text-align: left;
    font-size: 18px;
}
.testimonials .testimonial .testimonial-title{
    flex-basis: 100%;
    position: absolute;
    bottom: 0px;
    max-width: 90%;
    font-size: 14px;
    text-align: left;
    color: #000;
    font-weight: 600;
    left: 20px;
}
.testimonials .outer{
    position: relative;
}
.testimonials .outer::after{
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 7px;
    display: flex;
    background-color: var(--titanBlue);
    z-index: 9;
}

.testimonials .testimonials-row::-webkit-scrollbar {
    height: 20px;
    padding-bottom: 10px;
    max-width: 80% !important;
    margin: auto;
    /* border: 1px solid red; */
    z-index: 10;
}
.testimonials .testimonials-row::-webkit-scrollbar-thumb {
    background: var(--titanBlue);
    border-radius: 0px;
}



.testimonials   .scroll-reverse{
    position: absolute;
    left: 20px;
    top: 30%;
    width: 40px;
    height: 100px;
    background-image: url(/wp-content/themes/titan-packaging/assets/images/titan-chevron-left.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    filter: brightness(0) saturate(100%) invert(14%) sepia(86%) saturate(4823%) hue-rotate(252deg) brightness(85%) contrast(131%);
    transition: 0.3s;
}
.testimonials   .scroll-forward:hover,
.testimonials   .scroll-reverse:hover{
    cursor: pointer;
    width: 45px;
    transition: 0.3s;
}
.testimonials   .scroll-forward{
    position: absolute;
    right: 20px;
    width: 40px;
    top: 30%;
    height: 100px;
    background-image: url(/wp-content/themes/titan-packaging/assets/images/titan-chevron-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    filter: brightness(0) saturate(100%) invert(14%) sepia(86%) saturate(4823%) hue-rotate(252deg) brightness(85%) contrast(131%);
    transition: 0.3s;
}
.testimonials .testimonial-quotes{
    position: absolute;
    max-width: 150px;
    top: 10px;
    left: 10px;
}

@media screen and (max-width: 800px){
    .testimonials .testimonial{
        max-width: 90%;
    }
}
