.reviews__link {
  display: block;
  text-decoration: none;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
  margin: 8px auto;
  margin-bottom: 30px;
  border-radius: 8px;
  border: 2px solid #666666;
  padding: 12px 15px;
  color: var(--dark-grey-text-color);
  cursor: pointer;
}

.reviews-slider {
  width: 70%;
  height: 240px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 30px;
}
.review-slider__container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.review-slider__items {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  animation: slider 65s linear infinite;
}
.review-slider__item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #474747;
  width: 320px;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  background-color: #1a222f;
}
.review-slider__image {
  width: 100%;
}
.review-slider__side-effects {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-slider__side-effect {
  height: 100%;
  width: 80px;
}
.review-slider__side-effect:nth-child(1) {
  background: linear-gradient(90deg, var(--dark-color), transparent);
}
.review-slider__side-effect:nth-child(2) {
  background: linear-gradient(270deg, var(--dark-color), transparent);
}