/** Shopify CDN: Minification failed

Line 71:13 Expected ":"
Line 71:15 Expected identifier but found "13px"

**/
.testimonial-section .testimonial-header {
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-header .main-heading {
    margin: 0;
}

.testimonial-header .main-heading + .main-subheading {
    margin: 16px 0 0;
}

.testimonial-header .main-subheading + .stars {
    margin: 5px 0 0;
}

.testimonial-header .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
}

.testimonial-header .stars svg {
    width: 34px;
    height: 34px;
}

.testimonial-section .testimonial-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid;
    height: 100%;
}

.testimonial-card .testimonial-card__media {
    aspect-ratio: 1 / 1;
}

.testimonial-card .testimonial-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .testimonial-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
}

.testimonial-card__content .review-meta {
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonial-card__content .review-content {
    font-size; 13px;
}

.testimonial-card__content .review-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    width: fit-content;
}

.testimonial-card__content .review-stars svg {
    width: 18px;
    height: 18px;
}

.review-meta .verified {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 2px;
    font-weight: 700;
    background: #f3f3f3;
    display: flex;
    width: fit-content;
}

.testimonial-card .author-name {
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 700;
    margin-top: 16px;
}

.testimonial-section .testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-navigation .swiper-button-prev,
.testimonial-navigation .swiper-button-next {
    width: 40px;
    height: 40px;
    background: black;
    color: white;
    border-radius: 50%;
    position: relative;
    transform: unset;
    margin: 0 !important;
    inset: auto;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background ease-in-out 0.3s, color ease-in-out 0.3s;
}

.testimonial-navigation .swiper-button-prev:hover,
.testimonial-navigation .swiper-button-next:hover {
    background: white;
    color: black;
    transition: background ease-in-out 0.3s, color ease-in-out 0.3s;
}

.testimonial-navigation .swiper-button-prev::after,
.testimonial-navigation .swiper-button-next::after {
    content: unset;
}

.testimonial-navigation .swiper-button-prev span,
.testimonial-navigation .swiper-button-next span {
    display: flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
}

.testimonial-navigation .swiper-button-prev span svg {
    transform: rotate(-180deg);
}


@media (max-width: 749px) {
    .testimonial-section .testimonial-header {
        margin: 0 0 32px;
    }
}