.las-offer-cards {
  width: 100%;
}
.las-offer-cards__grid {
  display: grid;
  grid-template-columns: repeat(var(--las-cols, 3), 1fr);
  gap: var(--las-gap, 24px);
}
.las-offer-cards__card {
  position: relative;
  background: #FDFFEB;
  border-radius: 10.0444px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
}
.las-offer-cards__top-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.las-offer-cards__icon {
  position: relative;
  flex-shrink: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.las-offer-cards__icon svg, .las-offer-cards__icon img, .las-offer-cards__icon i {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.las-offer-cards__icon i {
  font-size: 52px;
  line-height: 1;
  color: #4E8B6E;
}
.las-offer-cards__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.las-offer-cards__title {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 92%;
  color: #75A37E;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .las-offer-cards__title {
    font-size: 24px;
    line-height: 92%;
  }
}
.las-offer-cards__subtitle {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: #4A4A4A;
  margin: 0;
}
@media (max-width: 768px) {
  .las-offer-cards__subtitle {
    font-size: 16px;
    line-height: 110%;
  }
}
.las-offer-cards__highlight {
  margin: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #75A37E;
}
@media (max-width: 768px) {
  .las-offer-cards__highlight {
    font-size: 16px;
    line-height: 130%;
  }
}
.las-offer-cards__features {
  flex: 1;
  width: 100%;
}
.las-offer-cards__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.las-offer-cards__features li {
  position: relative;
  padding-left: 28px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 172%;
  color: #727272;
}
@media (max-width: 768px) {
  .las-offer-cards__features li {
    font-size: 14px;
    line-height: 150%;
  }
}
.las-offer-cards__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%234E8B6E'/%3E%3Cpath d='M5.5 10l3 3 6-6' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .las-offer-cards__features li::before {
    top: 0;
  }
}
.las-offer-cards__features li strong {
  font-weight: 700;
}
.las-offer-cards__btn {
  color: #1a1a1a;
  text-align: center;
  text-decoration: none;
  transition: filter 0.2s ease;
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 14px;
  gap: 12.56px;
  background: #E9C46A;
  border-radius: 81.6111px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  width: 100%;
}
@media (max-width: 768px) {
  .las-offer-cards__btn {
    max-width: 100%;
    padding: 20px 48px;
    gap: 10px;
    background: #E9C46A;
    border-radius: 65px;
    width: 100%;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
  }
}
.las-offer-cards__btn:hover {
  filter: brightness(0.92);
  text-decoration: none;
}
.las-offer-cards__btn--text {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: auto;
  color: #727272 !important;
  cursor: default;
  pointer-events: none;
}
.las-offer-cards__btn--text:hover {
  filter: none;
  text-decoration: none;
}
@media (max-width: 768px) {
  .las-offer-cards__btn--text {
    background: transparent;
    border-radius: 0;
    padding: 0;
    width: auto;
  }
}
.las-offer-cards__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.las-offer-cards__btn-icon svg, .las-offer-cards__btn-icon i {
  width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 1;
  color: inherit;
}
.las-offer-cards--centered .las-offer-cards__card {
  align-items: center;
  text-align: center;
}
.las-offer-cards--centered .las-offer-cards__top-row {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.las-offer-cards--centered .las-offer-cards__header {
  align-items: center;
}
.las-offer-cards--centered .las-offer-cards__title {
  text-align: center;
}
.las-offer-cards--centered .las-offer-cards__subtitle {
  text-align: center;
}
.las-offer-cards--centered .las-offer-cards__highlight {
  text-align: center;
}
.las-offer-cards--centered .las-offer-cards__features {
  text-align: left;
}
.las-offer-cards--centered .las-offer-cards__btn {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: auto;
  font-size: 18px;
  font-weight: 700;
  color: #75A37E;
}
.las-offer-cards--centered .las-offer-cards__btn:hover {
  filter: none;
  color: #4E8B6E;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .las-offer-cards--centered .las-offer-cards__btn {
    background: transparent;
    border-radius: 0;
    padding: 0;
    width: auto;
    font-size: 14px;
  }
}
.las-offer-cards--services .las-offer-cards__card {
  align-items: center;
  text-align: center;
}
.las-offer-cards--services .las-offer-cards__top-row {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.las-offer-cards--services .las-offer-cards__header {
  align-items: center;
}
.las-offer-cards--services .las-offer-cards__title {
  text-align: center;
  font-size: 36px;
  line-height: 105%;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .las-offer-cards--services .las-offer-cards__title {
    font-size: 26px;
  }
}
.las-offer-cards--services .las-offer-cards__subtitle,
.las-offer-cards--services .las-offer-cards__highlight {
  display: none;
}
.las-offer-cards--services .las-offer-cards__features {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.las-offer-cards--services .las-offer-cards__features ul {
  max-width: 340px;
  width: 100%;
}
.las-offer-cards--services .las-offer-cards__features li {
  font-size: 16px;
  font-weight: 400;
  color: #4A4A4A;
  line-height: 160%;
}
@media (max-width: 768px) {
  .las-offer-cards--services .las-offer-cards__features li {
    font-size: 13px;
  }
}
.las-offer-cards--services .las-offer-cards__btn {
  display: none;
}/*# sourceMappingURL=las-offer-cards.css.map */