.slider.product-narrow .product-card {
    width: 315px;
    max-height: 517px;
}

.slider.product-wide .product-card {
    width: 390px;
   /* max-height: 493px;*/
    max-height: 533px;
}

@media all and (max-width: 768px) {
    .slider.product-narrow .product-card,
    .slider.product-wide .product-card {
        width: 100%;
    }
}

.swiper-slide {
    width: auto;
    height: auto;
}

.slider .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Product Card*/
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 10px 10px 10px 0 #00000026;
}

.product-card .image-wrapper {
    height: 200px;
}

.product-card .info-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 10px 30px;
}

.product-card .info-wrapper .title {
    font-weight: 700;
    margin-bottom: 10px;
}

.product-card .info-wrapper .description {
    margin-bottom: 10px;
}

.product-card .info-wrapper .link {
    margin-bottom: 15px;
}

.product-card .button {
    margin-top: auto;
}

.slider .swiper .swiper-pagination {
    position: relative;
    text-align: unset;
    display: flex;
    margin-top: 50px;
}

.slider .swiper .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 4px solid var(--color-blue-100);
    opacity: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider .swiper .swiper-pagination-bullet-active {
    background-color: var(--color-blue-100);
}

.review-card {
    display: flex;
    flex-direction: column;
    width: 380px;
    padding: 50px;
    background-color: var(--color-blue-light);
    height: 100%;
}

@media all and (max-width: 768px) {
    .review-card {
        width: 100%;
    }
}

.review-card .person-info-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-family: var(--headline-font-family), serif;
    font-size: 18px;
    font-weight: 500;
}

.review-card .person-info-wrapper .image-wrapper {
    width: 80px;
    height: 80px;
    box-shadow: 0 4px 4px 0 #00000040;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-card .text {
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.review-card .link {
    margin-top: auto;
}

.slider-container .title {
    margin-bottom: 20px;
}

.review-container .title {
    margin-bottom: 20px;
}

@media all and (min-width: 768px) {
    .slider-container .title {
        margin-bottom: 30px;
    }

    .review-container .title {
        margin-bottom: 30px;
    }
}

