/* Awesome Banners */
.awesome-banner-wrapper {
  overflow: clip;
  margin-bottom: var(--block-space);
}

.content > .awesome-banner-wrapper:first-child {
  margin-top: calc(-1 * var(--content-top-space));
  margin-bottom: var(--content-top-space);
}

.awesome-banner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--white-secondary-color);
  color: var(--main-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: var(--banner-lg-height, 650px);
}

.awesome-banner[data-theme="dark"] {
  background-color: var(--main-color);
  color: var(--white-color);
}

.awesome-banner__main {
  height: 100%;
  position: relative;
  z-index: 2;
}

.awesome-banner__main .container {
  height: 100%;
}

.awesome-banner__inner {
  display: flex;
  align-items: flex-end;
  padding: var(--banner-lg-padding, 80px) 0;
  position: relative;
  height: 100%;
}

.awesome-banner__content {
  flex-grow: 1;
  min-width: 1px;
  max-width: 59%;
  font-weight: 500;
}

.awesome-banner__content .h1 {
  font-weight: 500;
  margin: 0 0 16px;
}

.awesome-banner__content p,
.awesome-banner__content .list {
  margin: 0 0 24px;
}

.awesome-banner__content .list li {
  margin-bottom: 10px;
}

.awesome-banner__content p:last-child,
.awesome-banner__content .list:last-child,
.awesome-banner__content .list li:last-child {
  margin-bottom: 0;
}

.awesome-banner__buttons {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.awesome-banner__buttons .btn[href^="#"] .icon {
  transform: rotate(90deg);
  margin-left: -8px;
}

.awesome-banner__price,
.awesome-banner__info {
  display: flex;
  flex-direction: column;
  padding: 4px 14px;
  background: var(--accent-color);
  color: var(--main-color);
}

.awesome-banner__price-title,
.awesome-banner__info-title {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}

.awesome-banner__price-value,
.awesome-banner__info-value {
  white-space: nowrap;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.awesome-banner__price-value {
  font-weight: bold;
}

.awesome-banner[data-size="small"] {
  height: auto;
}

.awesome-banner[data-size="small"] .awesome-banner__content {
  max-width: 880px;
}

@media (min-width: 1200px) {
  .awesome-banner__content {
    font-size: 20px;
    line-height: 28px;
  }

  .awesome-banner__content .h1 {
    font-size: 70px;
    line-height: 80px;
  }

  .awesome-banner__content .list li {
    padding-left: 40px;
  }

  .awesome-banner__content .list li:before {
    width: 24px;
    height: 24px;
    left: 0;
    top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%231F1F1F' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 11h4v2h-4v4h-2v-4H7v-2h4V7h2v4Z'/%3E%3C/svg%3E");
  }

  .awesome-banner__buttons {
    margin-top: 40px;
  }

  .awesome-banner[data-size="small"] {
    --banner-lg-padding: 48px;
  }

  .awesome-banner[data-size="small"] .awesome-banner__content {
    font-size: 18px;
    line-height: 26px;
  }

  .awesome-banner[data-size="small"] .awesome-banner__content .h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 575.98px) {
  .awesome-banner {
    height: auto;
    padding-bottom: 83px;
  }

  .awesome-banner__main {
    position: static;
  }

  .awesome-banner__inner {
    position: static;
    padding-bottom: 20px;
  }

  .awesome-banner__content {
    max-width: 100%;
  }

  .awesome-banner__content p,
  .awesome-banner__content .list {
    margin: 0;
  }

  .awesome-banner__buttons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 15px;
    column-gap: 10px;
    border-top: 1px solid;
  }

  .awesome-banner__buttons .btn .icon {
    display: none;
  }
}

.awesome-banner__media-wrapper {
  position: absolute;
  width: calc(var(--banner-lg-height, 650px) * 972 / 650);
  height: var(--banner-lg-height, 650px);
  height: 100%;
  left: 50%;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.awesome-banner__media {
  font-size: 10px;
  width: 97.2em;
  height: 65em;
  position: relative;
  flex-shrink: 0;
}

.awesome-banner__media-el {
  --animation-delay: 0s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation-duration: 10s;
  animation-delay: var(--animation-delay);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;
}

.slick-slide .awesome-banner__media-el {
  --animation-delay: 0s;
}

.slick-slide:not(.slick-current):not(.custom-animation) .awesome-banner__media-el {
  animation: none !important;
}

@media (max-width: 1199.98px) {
  .awesome-banner__media {
    font-size: calc(10px * 450 / 650);
  }
}

@media (max-width: 575.98px) {
  .awesome-banner__media-wrapper {
    position: static;
    width: 100%;
    height: 325px;
    overflow: hidden;
  }

  .awesome-banner__media {
    font-size: 5px;
  }
}
/* ! Awesome Banners */
