/** Shopify CDN: Minification failed

Line 97:10 Unexpected "{"
Line 97:19 Expected ":"
Line 98:14 Expected identifier but found whitespace
Line 98:16 Unexpected "{"
Line 98:25 Expected ":"
Line 101:10 Unexpected "{"
Line 101:19 Expected ":"
Line 102:17 Expected identifier but found whitespace
Line 102:19 Unexpected "{"
Line 102:28 Expected ":"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
.as-seen-in {
  margin-top: 2rem;
}

.as-seen-in__header {
  text-align: center;
  margin-bottom: 2rem;
}

.as-seen-in__heading {
  margin-bottom: 1rem;
}

.as-seen-in__description {
  max-width: 80%;
  margin: 0 auto;
}

.as-seen-in__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.as-seen-in__logo-item {
  flex: 0 0 auto;
  width: calc(33.333% - 2rem);
  min-width: 160px;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.as-seen-in__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  position: relative;
}

.as-seen-in__logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.as-seen-in__logo-text {
  font-weight: bold;
  /* font-size moved to typography-variables.css */
}

.as-seen-in__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.as-seen-in__caption {
  margin-top: 0.5rem;
  /* font-size moved to typography-variables.css */
}

@media screen and (max-width: 749px) {
  .as-seen-in__logo-item {
    width: calc(50% - 2rem);
  }
  
  .as-seen-in__description {
    max-width: 100%;
  }
}

.section-{{ section.id }}-padding-top {
  padding-top: {{ section.settings.padding_top | times: 0.1 | append: 'rem' }};
}

.section-{{ section.id }}-padding-bottom {
  padding-bottom: {{ section.settings.padding_bottom | times: 0.1 | append: 'rem' }};
}
.benefit-cards {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.benefit-cards__header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefit-cards__heading {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

.benefit-cards__description {
  max-width: 80%;
  margin: 0 auto;
}

.benefit-cards__grid {
  display: grid;
  gap: 2rem;
}

.benefit-cards__card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-cards__card-inner {
  background-color: rgba(var(--color-foreground), 0.04);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-cards__card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-cards__icon {
  /* font-size moved to typography-variables.css */
  margin-bottom: 1.5rem;
  line-height: 1;
}

.benefit-cards__card-heading {
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.benefit-cards__card-text {
  color: rgba(var(--color-foreground), 0.75);
}

.section-{{ section.id }}-padding-top {
  padding-top: {{ section.settings.padding_top | times: 0.1 | append: 'rem' }};
}

.section-{{ section.id }}-padding-bottom {
  padding-bottom: {{ section.settings.padding_bottom | times: 0.1 | append: 'rem' }};
}

@media screen and (max-width: 749px) {
  .benefit-cards__description {
    max-width: 100%;
  }
  
  .benefit-cards__grid {
    gap: 1.5rem;
  }
}