/** Shopify CDN: Minification failed

Line 124:0 All "@import" rules must come first
Line 127:27 Expected ")" to end URL token
Line 171:14 Expected identifier but found whitespace
Line 171:16 Unexpected "{"
Line 171:25 Expected ":"
Line 171:60 Expected ":"
Line 174:14 Expected identifier but found whitespace
Line 174:16 Unexpected "{"
Line 174:25 Expected ":"
Line 174:56 Expected ":"
... and 16 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-two-row {
  width: 100%;
  margin: 0 auto;
}
.section-two-row .row {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
}
.section-two-row .row1 {
  align-items: center;
}
.section-two-row .row1 .left-col {
  flex: 1 1 50%;
  padding-right: 20px;
}
.section-two-row .row1 .right-col {
  flex: 1 1 50%;
  text-align: center;
}
.section-two-row .row1 .right-col img {
  max-width: 100%;
  height: auto;
}
.section-two-row .row1 .benefits-list {
  margin-top: 20px;
  list-style-type: disc;
  padding-left: 20px;
}
.section-two-row .row2 {
  flex-direction: column;
  text-align: center;
  padding-top: 60px;
}
.section-two-row .row2-headline {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.section-two-row .row2-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.section-two-row .row2-images img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}
@media(max-width: 768px) {
  .section-two-row .row1 {
    flex-direction: column;
  }
  .section-two-row .row1 .left-col,
  .section-two-row .row1 .right-col {
    flex: 1 1 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .section-two-row .row2-images img {
    max-width: 100px;
  }
}
.feature-icons-section {
  padding: 40px 20px;
}

.feature-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.7);
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #e6f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-card__icon img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.feature-card__text {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}
@import url('https://cdn.jsdelivr.net/npm/flickity@2/dist/flickity.min.css');

.video-reviews-section {
  background-image: url({{ section.settings.background_image | image_url }});
  background-size: cover;
  background-position: center;
  padding: 10px;
  text-align: center;
}

.video-reviews-section h2 {
  margin-bottom: 10px;
}

.video-reviews-section p.description {
  margin-bottom: 30px;
}

.flickity-carousel {
  direction: ltr;
}

.flickity-viewport {
  overflow: visible !important;
}

.video-carousel .video-item {
  width: 50%;
  padding: 0 10px;
  box-sizing: border-box;
}

.video-carousel video {
  width: 100%;
  aspect-ratio: 9/16;
  display: block;
}

/* Tablet & PC override */
@media screen and (min-width: 750px) {
  .video-carousel .video-item {
    width: 25%;
  }
}

@media screen and (max-width: 749px) {
  .video-reviews-section h2 {
    font-size: {{ section.settings.headline_size_mobile }}px;
  }
  .video-reviews-section p.description {
    font-size: {{ section.settings.desc_size_mobile }}px;
  }
}
@media screen and (min-width: 750px) and (max-width: 1024px) {
  .video-reviews-section h2 {
    font-size: {{ section.settings.headline_size_tablet }}px;
  }
  .video-reviews-section p.description {
    font-size: {{ section.settings.desc_size_tablet }}px;
  }
}
@media screen and (min-width: 1025px) {
  .video-reviews-section h2 {
    font-size: {{ section.settings.headline_size_pc }}px;
  }
  .video-reviews-section p.description {
    font-size: {{ section.settings.desc_size_pc }}px;
  }
}