.financing-offers {
  background-color: #232323;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent 0,
    transparent 120px,
    rgba(0, 0, 0, 0.25) 120px,
    rgba(0, 0, 0, 0.25) 190px
  );
  overflow: hidden;
}

.financing-offers .financing-offers__head {
  text-align: center;
}

.financing-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background-color: #444444;
  padding: 36px 24px;
  text-align: center;
}

.offer-card__head {
  min-height: 96px;
}

.offer-card__title {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  color: #1cb03b;
  text-transform: uppercase;
}

.offer-card__subtitle {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 8px;
}

.offer-card__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.offer-card__list li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.4;
}

.offer-card__list li + li {
  margin-top: 14px;
}

.offer-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #da251c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.offer-card__note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.offer-card__badge {
  margin-top: auto;
  padding-top: 24px;
}

.offer-card__badge span {
  display: block;
  background-color: #da251c;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  padding: 14px 16px;
}

.offer-card--featured {
  background-color: #ffffff;
  color: #232323;
}

.offer-card--featured .offer-card__title {
  color: #da251c;
  font-size: 44px;
}

.offer-card--featured .offer-card__list {
  border-top-color: rgba(35, 35, 35, 0.12);
}

.offer-card--featured .offer-card__note {
  color: rgba(35, 35, 35, 0.55);
}

.financing-offers__cta {
  text-align: center;
}

.financing-offers__cta .btn-primary {
  min-width: 320px;
}

@media (max-width: 1199px) {
  .offer-card__title {
    font-size: 28px;
  }

  .offer-card--featured .offer-card__title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .financing-offers__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .offer-card__head {
    min-height: 0;
  }

  .offer-card--featured {
    order: -1;
  }

  .financing-offers__cta .btn-primary {
    min-width: 0;
    width: 100%;
    max-width: 480px;
  }
}
