.feedback-block__wrapper {
    display: flex;
    gap: 30px;
    flex-direction: column;
}
.feedback-block__items.swiper-wrapper {
    align-items: stretch;
}
.feedback-block__slide.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    width: 360px;
    height: auto;
}
.feedback-block__slide.image {
    position: relative;
    cursor: pointer;
}
.feedback-block__item-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: var(--head-primary);
}
.feedback-block__bottom {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.swiper .feedback-block__slide.image .image-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--primary);
  pointer-events: none;
  z-index: 1;
  transition: all .3s ease-in;
  opacity: 0;
}
.swiper .feedback-block__slide.image .image-hover svg {
  width: 20px;
  height: 20px;
  color: var(--background);
}
.swiper .feedback-block__slide.image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: all .3s ease-in;
  opacity: 0;
  border-radius: 10px;
  pointer-events: none;
}
@media screen and (min-width: 992px) {
    .swiper .feedback-block__slide.image:hover:after {
        opacity: 1;
    }
    .swiper .feedback-block__slide.image:hover .image-hover {
        opacity: 1;
    }
}
@media screen and (max-width: 576px) {
    .feedback-block__bottom {
        flex-direction: column;
        align-items: center;
    }
}
