.offerbox.center {
  gap: 30px;
  align-items: flex-start;
  padding: 0 40px;
  margin-top: 81px;
}
.offerbox.center > * {
  width: 200px;
  max-width: 360px;
  min-height: 305px;
  background-color: var(--dark);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  align-self: stretch;
  transition: all 200ms linear;
  padding-bottom: 20px;
}
.offerbox.center > * a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  font-size: 0;
}
.offerbox.center > * .info {
  padding: 30px;
  position: absolute;
  margin-top: -82px;
  bottom: 0;
  transition: all 200ms linear;
  margin-bottom: 15px;
}
.offerbox.center > * .info h2 {
  font-size: 22px;
  color: var(--white-text);
  line-height: 30px;
  max-width: 270px;
  margin-bottom: 20px;
}
.offerbox.center > * .info .more {
  position: absolute;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--main-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: -10px;
  gap: 4px;
  max-height: 40px;
  opacity: 1;
  transition: opacity 0.2s ease, max-height 0.2s ease;
  transition-delay: 0.1s;
}
.offerbox.center > * .info .more i {
  position: relative;
  top: 1px;
}
.offerbox.center > * .info p {
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  font-size: 15px;
  color: var(--ldark-text);
  line-height: 1.7;
  margin-top: -15px;
  transition: all 200ms linear;
}
.offerbox.center > *:hover .info {
  padding-bottom: 30px;
}
.offerbox.center > *:hover:before {
  height: 350px;
}
.offerbox.center > *:hover .more {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.2s ease, max-height 0.2s ease;
  transition-delay: 0s;
  pointer-events: none;
}
.offerbox.center > *:hover p {
  max-height: 300px;
}
.offerbox.center > *:before {
  background: linear-gradient(0deg, rgba(29, 51, 75, 0.95) 40%, rgba(29, 51, 75, 0) 100%);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
}/*# sourceMappingURL=mod_offer.css.map */