.offers {
  padding: 80px 0 70px;
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

.offers__heading {
  margin-bottom: 40px;
}

.offers__link {
  display: inline-block;
  text-decoration: underline;
  font-weight: 500;
  color: var(--color-text-gray2);
  transition: color .5s;
}

.offers__link:hover {
  color: var(--color-main-light);
}

.offers .swiper-wrapper {
  margin: 0;
  align-items: stretch;
}

.offers .swiper-slide {
  flex-basis: calc((100% / 3) - 27px);
  min-width: 280px;
  padding: 0;
}

.offers .offers__btn {
  background-color: transparent;
  border: none;
}

.offers .swiper-button-prev.offers__btn {
  left: 0;
}

.offers .swiper-button-next.offers__btn {
  right: 0;
}

.offers .offers__btn::after {
  color: var(--color-main-light);
  opacity: .5;
  font-size: 22px;
  transition: opacity .5s;
}

.offers .offers__btn:hover::after {
  opacity: 1;
}

.offers .swiper-slide {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
}

.card {
  flex-grow: 1;
  display: block;
  padding: 20px;
  background-color: var(--color-main-light);
  border-radius: 12px;
  color: var(--color-text-dark);
  cursor: pointer;
  text-decoration: none;
}

.card:hover,
.card:focus {
  color: var(--color-text-dark);
  text-decoration: none;
}

.card__company {
  width: 100%;
  max-width: 138px;
  height: 50px;
}

.card__company img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.card__price {
  display: block;
  font-weight: 500;
  font-size: 28px;
  color: var(--color-accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: right;
}

.card p {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card .row.wrapper {
  align-items: flex-end;
}

.card__parameters span {
  display: inline-block;
  width: 50px;
}

.card__parameters span.label-promotion {
  background-color: var(--color-case-pink);
  text-transform: lowercase;
  width: auto;
  margin-top: 0;
  margin-bottom: 6px;
}

.card__parameters strong {
  white-space: nowrap;
}

.offers__slider {
  position: relative;
}

.offers__slider .swiper-container {
  overflow: hidden;
}

@media (min-width: 1360px) {
  .offers__slider {
    padding: 0 50px;
    margin: 0 -50px;
  }
}

@media (max-width: 1359px) and (min-width: 1200px) {
  .offers__slider {
    padding: 0 10px;
    margin: 0 -10px;
  }

  .offers .swiper-container {
    margin: 0 auto;
    width: calc(100% - 40px);
  }
}

@media (max-width: 1199px) {
  .card__price {
    font-size: 22px;
  }

  .offers .offers__btn {
    display: none;
  }

  .offers .swiper-container {
    overflow: visible;
  }
}

@media (max-width: 991px) {
  .card__price {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .offers__heading {
    margin-bottom: 20px;
  }

  .offers__link {
    margin-bottom: 40px;
  }
}