.offer-cards, .offer-cards *, .offer-cards :before, .offer-cards :after {
  box-sizing: border-box;
}

.offer-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
  flex: 0 0 100%;
  max-width: 100%;
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}
@media (min-width: 560px) {
  .offer-card {
    flex: 0 0 calc((100% - 32px) / 2);
    max-width: calc((100% - 32px) / 2);
  }
}
@media (min-width: 768px) {
  .offer-card {
    flex: 0 0 calc((100% - 64px) / 3);
    max-width: calc((100% - 64px) / 3);
  }
}
@media (min-width: 960px) {
  .offer-card {
    flex: 0 0 calc((100% - 96px) / 4);
    max-width: calc((100% - 96px) / 4);
  }
}

.offer-card-header {
  position: relative;
  padding-bottom: 24px;
}

.offer-card-logo {
  position: absolute;
  top: 0;
  left: 0;
}
.offer-card-logo__image {
  width: 40px;
  height: 40px;
}
.offer-card-logo__mark {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 18px;
  height: 18px;
  background-image: url(../img/icon-mark.svg);
  background-size: 18px;
  background-repeat: no-repeat;
}

.offer-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 52px;
  height: 44px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
}

.offer-card-recommend {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  background-color: #ff9500;
  color: #fff;
}

.offer-card-osoben {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  background-color: #4ca56a;
  color: #fff;
}

.offer-card-body {
  display: flex;
  flex-direction: column;
}

.offer-card-params {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-card-param {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.offer-card-param__label {
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
  color: #4c4c4c;
}

@media (max-width: 768px) {
  .offer-card-param__label {
    font-size: 15px;
  }
}

.offer-card-param__value {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-align: right;
  color: #171d23;
}

@media (max-width: 768px) {
  .offer-card-param__value {
    font-size: 16px;
  }
}

.offer-card-param-rate .offer-card-param__value {
  color: #171d23;
}

.offer-card-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offer-card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  background-color: #287267;
  color: #fff;
  font-weight: 600;
}
.offer-card-btn:hover {
  text-decoration: none;
  background-color: #002a3a;
  color: #fff;
}

.offer-card-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1.4;
  color: #171d23;
  text-align: center;
	padding: 1px 1px 1px 1px;
}

.offer-card-real {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1.4;
  color: #171d23;
  text-align: center;
	padding: 15px 1px 1px 1px;
}