/** Shopify CDN: Minification failed

Line 82:14 Unexpected "*"

**/
.about-us-section-wrapper {
  display: flex;
  gap: 4em;
  padding: 4em 8em;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 1em 2em;
  }
  @media (max-width: 1200px) {
    flex-direction: column;
    gap: 2em;
  }
}
.about-us-section {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  gap: 4em;
  @media (max-width: 1200px) {
    flex-direction: column;
    gap: 2em;
  }
}
.about-us-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: center;
}
.about-us-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us-image img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}
.image-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 1rem;
  gap: 1rem;
  p {
    margin: 0;
    color: #6b7280;
  }
  svg {
    opacity: 0.5;
  }
}
.about-us-content-2 {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.about-us-content-container {
  max-width: 38rem;
  display: grid;
  gap: 2em;
  text-align: center;
}
.secondary-cta,
.secondary-cta* {
  -webkit-tap-highlight-color: transparent !important;
}
.secondary-cta {
  padding: 1rem 2rem;
  border: 2px solid var(--green-pea-dark);
  border-radius: 999px;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white !important;
}
.secondary-cta svg {
  fill: white !important;
  stroke: white !important;
}
.secondary-cta:hover,
.secondary-cta:focus,
.secondary-cta:active,
.secondary-cta:visited {
  background-color: var(--green-pea-dark);
  color: white !important;
  outline: none;
}
