.reviews {
  width: 100%;
}

.reviews .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews_swiper {
  width: 100%;
}

.reviews .swiper-wrapper {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}

.reviews_swiper_slide {
  height: auto;
  width: calc(100% / 3 - (60px / 3));
  border-radius: 20px;
  border: 1px solid var(--Light-Silver);
  padding: 30px 23px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.column .reviews_swiper_slide {
  width: calc(100% / 2 - (60px / 2));
}

.reviews_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: auto;
}

.reviews_row {
  border-top: 1px solid var(--Light-Silver);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding-left: 72px;
  position: relative;
  min-height: 60px;
}

.reviews_wrap .lozad {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 60px;
  height: 60px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.reviews_name {
  color: var(--Blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.reviews_city {
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.reviews_ratting {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

.reviews_ratting::before {
  content: "";
  min-width: 20px;
  height: 20px;
  background-color: var(--Orange);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.reviews .reviews_swiper_pagination {
  display: none;
}

@media (max-width: 1100px) {
  .reviews_swiper_slide,
  .column .reviews_swiper_slide {
    width: calc(100% / 2 - (30px / 2));
    padding: 24px 15px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .reviews .swiper-wrapper {
    margin-top: 16px;
    flex-wrap: nowrap;
    gap: 0;
  }

  .reviews .reviews_swiper_slide {
    height: max-content;
  }

  .reviews .reviews_swiper_pagination {
    display: flex;
  }

  .reviews .reviews_swiper_pagination .swiper-pagination-bullet-active {
    background: var(--Blue);
  }
}
