/** Shopify CDN: Minification failed

Line 95:16 Expected identifier but found whitespace
Line 95:18 Unexpected "{"
Line 95:27 Expected ":"
Line 95:56 Expected ":"
Line 96:13 Expected identifier but found whitespace
Line 96:15 Unexpected "{"
Line 96:24 Expected ":"
Line 97:8 Expected identifier but found whitespace
Line 97:10 Unexpected "{"
Line 97:19 Expected ":"

**/
.banner-v47 {
  background-color: rgba(var(--color-foreground), 0.1);
  align-items: stretch;
}
.banner-v47 {
  background-color: #1d1d1d;
}

.banner-v47__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--pl);
  padding-right: var(--pr);
  padding-top: 2rem;
  padding-bottom: 2rem;
}


.banner-v47__img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 920px;
  overflow: hidden;
  border-radius: 24px;
}

.banner-v47__img img,
.banner-v47__img picture,
.banner-v47__img .xo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .banner-v47__img {
    min-height: 680px;
  }
}

@media (max-width: 767px) {
  .banner-v47__content {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }

  .banner-v47__img {
    min-height: 420px;
    border-radius: 18px;
  }
}

.banner-v47__title {
  font-size: clamp(2.5rem, calc(1.875vw + 1.75rem), 4rem);
  margin-bottom: 3.5rem;
  font-family: var(--font-custom-family);
  font-weight: 600;
  text-transform: uppercase;
}

.banner-v47__description {
  font-size: clamp(1.3rem, calc(0.625vw + 1.05rem), 1.8rem);
  margin-bottom: 3rem;
}

.banner-v47__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.banner-v47__custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: {{ section.settings.button_radius }}rem;
  background: {{ section.settings.custom_button_bg }};
  color: {{ section.settings.custom_button_text }};
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
}

.banner-v47__custom-btn:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.banner-v47__store-badge img {
  height: 30px;
  display: block;
}

.banner-v47__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 28px;
  margin-top: 58px;
  max-width: 720px;
}

.banner-v47__feature {
  position: relative;
  text-align: center;
  padding: 0 22px;
}

.banner-v47__feature:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 6px;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.24);
}

.banner-v47__feature-icon {
  height: 62px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-v47__feature-icon img {
  max-width: 62px;
  max-height: 62px;
  object-fit: contain;
}

.banner-v47__feature-title {
  margin: 0 0 10px;
  color: var(--feature-title-color);
  font-size: var(--feature-title-size);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.banner-v47__feature-text {
  color: var(--feature-text-color);
  font-size: var(--feature-text-size);
  line-height: 1.55;
}

@media screen and (max-width: 767px) {
  .banner-v47__content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .banner-v47__buttons {
    justify-content: center;
  }

  .banner-v47__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
    margin-top: 38px;
    max-width: 100%;
  }

  .banner-v47__feature {
    padding: 0 10px;
  }

  .banner-v47__feature::after {
    display: none;
  }

  .banner-v47__feature-icon {
    height: 52px;
    margin-bottom: 14px;
  }

  .banner-v47__feature-icon img {
    max-width: 52px;
    max-height: 52px;
  }
}
   .green-line{
          display:block;
          color:#1da628;
        }