.swiper {
  width: 100%;
  height: 100%;
}

.parent-slide img {
  width: 56px;
}

.card-author {
  color: #131313;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 700;
}

.card {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: #f6f6f8;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  min-height: 315px;
}

.card-text {
  color: #131313;
  text-align: center;
  font-family: "Montserrat";
  font-size: 14px;
}


.swiper-button-prev {
  position: absolute;
  background: url("../img/arrow-left.svg") no-repeat center / cover;
  top: 90% !important;
  width: 40px;
  height: 40px;
  left: calc(50% - 80px) !important;
}

.swiper-button-next {
  position: absolute;
  top: 90% !important;
  width: 40px;
  height: 40px;
  right: calc(50% - 80px) !important;
  background: url("../img/arrow-right.svg") no-repeat center / cover;
  width: 40px;
  height: 40px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

@media (max-width: 800px) {
  .card {
    margin: 0 auto;
    min-height: 290px;
    max-width: 360px;
  }
}

@media (max-width: 744px) {
  .swiper-button-prev, .swiper-button-next {
    top: 96% !important;
  }
  
}
