#testimonials-wrapper {
    position: relative;
}

#testimonials-wrapper .container-fluid {
    width: 100%;
    margin: 0 auto;
    /*column-width: 620px;*/
    column-gap: 5px;
    max-width: 100%;
    position: relative;
    z-index: 1;
    column-count: 3;
    break-inside: avoid; /* Prevent content from breaking inside columns */

}

.testimonial-wrapper {
    width: 100%;
    flex-basis: 100%;
    padding: 5px;
    position: relative;
    break-inside: avoid-column; /* Prevent divs from breaking inside columns */
}

.testimonial-inner {
    background-color: #dfdfdf;
    border-radius: 10px;
}

.testimonial-header {
    padding: 10px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.author-image-wrapper {
    width: 105px;
    flex-basis: 105px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.author-image {
    width: 79px;
    height: 79px;
    position: relative;
    /*background-color: #000;*/
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-wrapper {
    width: calc(100% - 105px);
    flex-basis: calc(100% - 105px);
}

.author-title {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
}

.author-company {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

.testimonial-content {
    padding: 30px 35px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 0;
}

@media (max-width: 991.8px) {
    #testimonials-wrapper .container-fluid {
        column-count: 2;

    }

}

@media (max-width: 767.8px) {
    #testimonials-wrapper .container-fluid {
        column-count: 1;
    }
}

@media (max-width: 575.8px) {
    .testimonial-header {
        padding: 10px 15px;
    }

    .testimonial-content {
        padding: 20px 30px;
    }

    .author-image-wrapper {
        width: 95px;
        flex-basis: 95px;
    }

    .author-info-wrapper {
        width: calc(100% - 95px);
        flex-basis: calc(100% - 95px);
    }
}