
#our-happy .component-heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: calc(var(--pr-font-size-display3) + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight: var(--pr-font-weight-heading);
    margin-bottom: var(--pr-spacing-07);
}

#our-happy .component-heading > svg {
    margin-left: var(--pr-spacing-02);
}

#our-happy .component-heading > small {
    width: 100%;
    display: flex;
    gap: 4px;
    grid-gap: 4px;
    font-size: 15px;
    font-weight: 400;
    color: #595959;
}

.our-happy-content {
    position: relative;
    overflow: hidden;
}
.our-happy-content:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: var(--pr-spacing-05);
}

.our-happy-content:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(n + 6) {
    display: none
}


.customers-say-item-image {
    position: relative;
    margin-bottom: var(--pr-spacing-02);
}

.customers-say-item-image {
    content: "";
    display: block;
    padding-top: 100%;
}

.customers-say-item-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.review-wrapper {
    display: grid;
    grid-gap: 6px;
}

.customer-name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    grid-gap: 4px;
}

.customer-name span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: 500;
    font-size: 14px;
}

.customers-review-title {
    font-size: 500;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 0;
}

.customers-review-content {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: italic;
}

.heading-comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 6px;
    margin-top: 10px;
}
.heading-comment .product-rating {
    flex: 0 0 auto;
}
.product-url {
    font-size: 14px;
}

#our-happy .home-module-wrapper {
    margin-top: 24px !important;
}

@media (max-width: 1179px) {
    .our-happy-content {
        grid-template-rows: auto;
        grid-auto-flow: column;
        overflow-x: scroll;
        grid-template-columns: auto;
        grid-gap: var(--pr-spacing-04);
        display: flex;
    }

    .customers-say-item {
        width: calc(175px + (195 - 175) * ((100vw - 300px)/(1200 - 300)));
        min-width: calc(175px + (195 - 175) * ((100vw - 300px)/(1200 - 300)));
    }

    #our-happy .component-heading > small {
        font-size: 13px;
    }
}