.offerBox h3 {
  font-size: 56px;
  font-family: var(--sfont);
  color: var(--dark);
  margin-bottom: 50px;
}
.offerBox .list {
  gap: 50px 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.offerBox .list .offer-item {
  position: relative;
  max-width: 321px;
  overflow: hidden;
  border-radius: 20px;
  transition: all 200ms linear;
  flex: 1 1 250px;
}
.offerBox .list .offer-item img {
  border-radius: 20px;
  display: block;
}
.offerBox .list .offer-item .text {
  padding: 25px 20px 20px;
}
.offerBox .list .offer-item .text h2 {
  font-size: 24px;
  color: var(--dark);
  height: 2em;
  margin-bottom: 18px;
  line-height: 1.2em;
  padding-right: 40px;
  position: relative;
}
.offerBox .list .offer-item .text h2:after {
  content: "\e0ec";
  font-family: var(--icons);
  color: var(--main-color);
  right: 0;
  top: 2px;
  font-size: 24px;
  position: absolute;
}
.offerBox .list .offer-item .text .offer-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}
.offerBox .list .offer-item .text .offer-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 0;
}
.offerBox .list .offer-item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.offerBox .list .offer-item:hover h2:after {
  opacity: 0.8;
}/*# sourceMappingURL=offer.css.map */