/** Shopify CDN: Minification failed

Line 22:13 Expected identifier but found whitespace
Line 22:15 Unexpected "{"
Line 22:24 Expected ":"
Line 37:18 Expected identifier but found whitespace
Line 37:20 Unexpected "{"
Line 37:29 Expected ":"
Line 40:14 Expected identifier but found whitespace
Line 40:16 Unexpected "{"
Line 40:25 Expected ":"
Line 40:76 Expected ":"
... and 46 more hidden warnings

**/


/* CSS from section stylesheet tags */
.custom-hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: {{ section.settings.text_alignment }};
  background-size: cover;
  background-position: center;
  color: var(--color-foreground);
}

.custom-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.custom-hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: {{ section.settings.text_alignment }};
}
.split-hero-section {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media (min-width: 768px) {
  .split-hero-section {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

.split-hero {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .split-hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: {{ section.settings.text_size | default: '2rem' }};
  margin-bottom: 2rem;
  color: var(--color-foreground-secondary);
}

.hero-button {
  background-color: var(--color-button-background);
  color: var(--color-button-text);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: bold;
  text-decoration: none;
}

.logos-text {
  font-size: {{ section.settings.text_size | default: '1.125rem' }};
  margin-bottom: 1.5rem;
  color: var(--color-foreground-secondary);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.logo-image {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}
.split-hero-section {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media (min-width: 768px) {
  .split-hero-section {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

.split-hero {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .split-hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: {{ section.settings.text_size | default: '2rem' }};
  margin-bottom: 2rem;
  color: var(--color-foreground-secondary);
}

.hero-button {
  background-color: var(--color-button-background);
  color: var(--color-button-text);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: bold;
  text-decoration: none;
}

.icon-block {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icon-block-icon {
  width: {{ section.settings.icon_size | default: '48px' }};
  height: {{ section.settings.icon_size | default: '48px' }};
}

.icon-block-title {
  font-weight: 700;
  font-size: 1.6rem;
}

  .icon-block-title p {
      margin-bottom: 0px !important;

  }

.icon-block-text {
  color: var(--color-foreground-secondary);
  font-size: {{ section.settings.text_size | default: '1.125rem' }};
}