.section-testimonials {
    padding: 8rem 0;
    width: 100%;
}
.section-testimonials .section-content {
    width: 100%;
}
.section-testimonials .testimonials-list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}
.section-testimonials .testimonial-item {
    display: flex;
    position: relative;
    overflow: hidden;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    background-color: #f3f3f3;
    border-radius: 2.4rem;
}
.section-testimonials .testimonial-item .link-all {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 3.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 3.2rem;
    text-transform: lowercase;
    text-align: center;
    font-weight: 200;
    flex-direction: column;
    z-index: 200;
    gap: 2.4rem;
}
.section-testimonials .testimonial-item .link-all:after {
    content: '';
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  border-radius: 20rem;
  background-image: url('./../../../media/img/common/icons/arrow-right-dark.svg');
  background-size: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background-color: #fff;
  transition: .3s;
}
.section-testimonials .testimonial-item .testimonial-item__card {
    position: relative;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    border-radius: 1.2rem;
    overflow: hidden;
}
.section-testimonials .testimonial-item .testimonial-item__card .media-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}
.section-testimonials .testimonial-item .testimonial-item__card .media-wrap .button-play {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 110;
    cursor: pointer;
    position: absolute;
}
.section-testimonials .testimonial-item .testimonial-item__card .media-wrap .button-play .play-icon {
    background-image: url('./../../../media/img/common/icons/play-light.svg');
    background-size: 2rem;
    background-position: center;
    background-repeat: no-repeat;
    width: 8rem;
    height: 8rem;
    border-radius: 3rem;
    background-color: rgba(255, 255, 255, .15);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -4rem;
    margin-left: -4rem;
    z-index: 120;
    transition: .3s;
}
.section-testimonials .testimonial-item .testimonial-item__card:hover .media-wrap .button-play .play-icon {
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .2);
}
.section-testimonials .testimonial-item .testimonial-item__card .poster-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}
.section-testimonials .testimonial-item .testimonial-item__card .testimonial__poster {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    filter: brightness(70%);
    transition: .3s;
}
.section-testimonials .testimonial-item.last .testimonial-item__card .testimonial__poster {
    /* filter: blur(1rem); */
    transform: scale(1.1);
}
.section-testimonials .swiper-slide .testimonial-item .testimonial-item__card:hover .testimonial__poster {
    filter: brightness(50%);
    transform: scale(1.1);
}
.section-testimonials .swiper-slide .testimonial-item.last .testimonial-item__card:hover .testimonial__poster {
    filter: brightness(50%);
    transform: scale(1.2);
}
.section-testimonials .testimonial-item .testimonial-item__card .video-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.section-testimonials .testimonial-item .testimonial-item__card .testimonial__video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center;
}

.section-testimonials .testimonial-item .testimonial__person {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(0deg,rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 200;
    pointer-events: none;
}
.section-testimonials .testimonial-item .testimonial__name {
    display: block;
    text-align: center;
    line-height: 1.2;
    color: #fff;
}






.section-testimonials .testimonial-popup {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 200000;
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(1rem);
    display: none;
}
.section-testimonials .testimonial-popup.active {
    display: block;
}
.section-testimonials .testimonial-popup .testimonial-popup-close {
    position: absolute;
    right: 8rem;
    top: 3rem;
    height: 6rem;
    width: 6rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: #69626d;
    cursor: pointer;
    border-radius: 10rem;
    transition: .3s;
}
.section-testimonials .testimonial-popup .testimonial-popup-close:hover {
    transform: rotate(90deg);
    opacity: .7;
}
.section-testimonials .testimonial-popup .testimonial-popup-close:before {
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 2.4rem;
    background-image: url('../../../media/img/common/icons/close-light.svg');
}
.section-testimonials .testimonial-popup .columns {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 6rem;
    align-items: stretch;
    justify-content: center;
    padding: 12rem 8rem;
}
.section-testimonials .testimonial-popup .column {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    position: relative;
}
.section-testimonials .testimonial-popup .video-wrap {
    height: 100%;
    max-height: 60rem;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    border-radius: 2.4rem;
    background-color: #fff;
}
.section-testimonials .testimonial-popup .testimonial__video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-testimonials .testimonial-popup .testimonial__person {
    display: none;
}
.section-testimonials .testimonial-popup .testimonial__name {

}
.section-testimonials .testimonial-popup  .testimonial-products {
    display: flex;
    width: 100%;
    gap: 1.2rem;
    align-items: stretch;
    flex-direction: column;
}























