/** Shopify CDN: Minification failed

Line 76:2 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.hero-wrapper {
    padding: 60px 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--hero-bg);
    color: var(--hero-body-color);
  }
  .hero-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 16px;
  }
  .hero-author img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
  }
  .hero-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
  }
  .hero-highlight {
    background-color: var(--highlight-color);
    padding: 0 6px;
    color: black;
    border-radius: 4px;
    text-underline-offset: 3px;
  }
  .hero-subheading {
    font-size: 18px;
    color: var(--hero-body-color);
    margin-bottom: 30px;
  }
.hero-cta {
  background-color: #00FFED;
  color: #000;
  padding: 12px 28px;
  font-size: 16px;
  border: 2px solid #00FFED;
  border-radius: 8px;
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 12px #00FFED;
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  box-shadow: 0 0 20px #00FFED, 0 0 40px #00FFED;
  transform: translateY(-5px) scale(1.03);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

  }
  .hero-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }
  .hero-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: -16px;
    border: 1px solid #fff;
  }
  .hero-caption {
    font-size: 14px;
    font-style: italic;
    color: var(--hero-review-color);
  }
  @media screen and (max-width: 640px) {
    .hero-heading {
      font-size: 28px;
    }
    .hero-subheading {
      font-size: 16px;
    }
  }
.sticky-whyus-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: var(--section-bg);
  color: var(--section-text);
  padding: 60px 20px;
  gap: 60px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.sticky-left, .sticky-right {
  flex: 1 1 50%;
}

.sticky-right {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sticky-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.sticky-frame {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sticky-frame.active {
  opacity: 1;
  transform: translateY(0px);
}

.sticky-frame img {
  max-width: 100%;
  width: var(--image-max-width);
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.sticky-frame img.left {
  margin-left: 0;
  margin-right: auto;
  display: block;
}

.sticky-frame img.center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.sticky-frame img.right {
  margin-left: auto;
  margin-right: 0;
  display: block;
}

.sticky-frame h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.sticky-frame p {
  font-size: 16px;
}

.sticky-right h2 {
  font-size: var(--sticky-headline-size);
}

.sticky-right p {
  font-size: var(--sticky-body-size);
}

@media screen and (max-width: 768px) {
  .sticky-whyus-wrapper {
    flex-direction: column;
    padding: 40px 16px;
  }
  .sticky-right {
    position: relative;
    top: auto;
    order: -1;
    margin-bottom: 30px;
  }
  .sticky-left {
    gap: 40px;
  }
  .sticky-frame img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}