.lf-slides {
  position: relative;
  width: 100%;
  height: var(--lf-height);
  min-height: 320px;
  overflow: hidden;
  color: #fff;
}

.lf-slides__track,
.lf-slide {
  width: 100%;
  height: 100%;
}

.lf-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms ease;
}

.lf-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.lf-slide__content {
  box-sizing: border-box;
  width: var(--lf-content-width);
  max-width: 1140px;
  padding: var(--lf-padding);
  text-align: left;
}

.lf-slide__title {
  margin: 0 0 24px;
  color: inherit;
  font-family: var(--lf-heading-font);
  font-size: var(--lf-heading-size);
  font-weight: var(--lf-heading-weight);
  line-height: 1.05;
}

.lf-slide__description {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.45;
}

.lf-slide__description img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

.lf-slide__button {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  border: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
}

.lf-slides__arrow,
.lf-slides__dot {
  position: absolute;
  z-index: 3;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.lf-slides__arrow {
  top: 50%;
  padding: 8px 12px;
  background: transparent;
  font-size: 48px;
  line-height: 1;
  transform: translateY(-50%);
}

.lf-slides__arrow--prev { left: 4px; }
.lf-slides__arrow--next { right: 4px; }

.lf-slides__dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 8px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.lf-slides__dot {
  position: static;
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
}

.lf-slides__dot.is-active { background: #fff; }

.lf-search {
  display: flex;
  width: 100%;
}

.lf-search input {
  min-width: 0;
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #d5d8dc;
}

.lf-search button {
  padding: 10px 18px;
  border: 0;
  background: #69727d;
  color: #fff;
}

.lf-form__field { margin-bottom: 10px; }
.lf-form__field label { display: block; margin-bottom: 3px; }
.lf-form__field label span { color: #e32636; }
.lf-form input,
.lf-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #69727d;
  background: #fff;
  color: #333;
}
.lf-form textarea { min-height: 96px; resize: vertical; }
.lf-form__submit {
  width: 100%;
  padding: 11px 18px;
  border: 0;
  background: #69727d;
  color: #fff;
  cursor: pointer;
}
.lf-form__message { margin-bottom: 12px; padding: 10px; }
.lf-form__message.is-success { background: #e8f7ec; color: #176b2c; }
.lf-form__message.is-error { background: #fdeaea; color: #9c1c1c; }
.lf-form__honey { position: absolute !important; left: -9999px !important; }

@media (max-width: 767px) {
  .lf-slides { height: var(--lf-mobile-height); }
  .lf-slide__content {
    width: var(--lf-mobile-content-width);
    padding: var(--lf-mobile-padding);
  }
  .lf-slide__title { font-size: var(--lf-mobile-heading-size); }
  .lf-slides__arrow { font-size: 38px; }
}
