/** Shopify CDN: Minification failed

Line 134:20 Unexpected "{"
Line 134:29 Expected ":"
Line 134:36 Unexpected "{"

**/


/* CSS from section stylesheet tags */
.health-goals {
  padding: 80px 0;
}

.health-goals__heading {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 60px;
}

.health-goals__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.health-goals__block {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  width: 100%;
}


.health-goals__block--2,
.health-goals__block--3 {
  margin-top: -80px;
}

.health-goals__image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: contain;
  height: max-content;
}

.health-goals__content {
  max-width: 400px;
}

.health-goals__number {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.health-goals__title {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  font-family: 'BaseNeueTrial';
}

.health-goals__text {
  font-size: 16px;
  line-height: 1.5;
}

.health-goals__apps {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.health-goals__apps img {
  height: 40px;
}

.health-goals__block.layout--text_first {
  text-align: right;
}

.health-goals__block.layout--text_first .health-goals__content {
  text-align: right;
  margin-left: auto;
}

@media (max-width: 768px) {
  .health-goals__block {
    flex-direction: column;
    text-align: center;
  }

  /* Ensure text always comes first on mobile */
  .health-goals__block.layout--text_first,
  .health-goals__block.layout--image_first {
    flex-direction: column;
  }

  /* Center text content and images */
  .health-goals__content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

 .health-goals__image {
    order: 2;
    width: 90%;
}

  .health-goals__block--2,
  .health-goals__block--3 {
    margin-top: 40px;
  }

  .health-goals__block.layout--text_first .health-goals__content {
    text-align: center;
  }

  .health-goals__apps svg {
    max-width: 150px;
  }

  .health-goals__apps {
    display: flex;
    justify-content: center;
  }
}
#quiet-bounce-app--{{ section.id }} {
  position: relative;
}

.quiet-bounce-app__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  justify-content: end;
  gap: 40px;
}

.quiet-bounce-app__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
}

.quiet-bounce-app__title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  display: inline-block;
  padding: 8px 5px;
  margin: 0;
  width: max-content;
}

.quiet-bounce-app__subtitle {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #000;
  text-align: left;
}

.quiet-bounce-app__subtitle--highlight {
  display: inline;
  color: #000;
  padding: 2px 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  white-space: normal;
  border-radius: 2px;
}

.quiet-bounce-app__buttons {
  display: flex;
  gap: 10px;
}

.quiet-bounce-app__button img {
  height: 40px;
  width: auto;
  display: block;
}

.quiet-bounce-app__image-wrapper {
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}

.quiet-bounce-app__image {
  width: 100%;
  position: relative;
  z-index: 2;
  object-fit: contain;
  height: max-content;
  opacity: 0;
}

/* ============== Animation ============== */
@keyframes quiet-bounce-slide {
  0% {
    transform: translateX(20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============== Responsive ============== */
@media (max-width: 992px) {
  .quiet-bounce-app__container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }

  .quiet-bounce-app__image-wrapper {
    justify-content: center;
    margin-top: 40px;
  }

  .quiet-bounce-app__image {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .quiet-bounce-app__subtitle {
    font-size: 14px;
  }

  .quiet-bounce-app__button svg {
    max-width: 150px;
  }

  .quiet-bounce-app__title {
    font-size: 24px;
  }
}
.scrolling-text-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 35px;
    display:flex;
    white-space: nowrap;
  }

  .scrolling-text-wrapper {
    display: flex;
    align-items: center;
  }

  .scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-text linear infinite;
    padding-right: 50px; /* Adjust this for spacing between repeats */
  }

  .scrolling-text.duplicate {
    margin-left: 0;
  }

  @keyframes scroll-text {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }