/** Shopify CDN: Minification failed

Line 76:9 Unexpected "{"
Line 76:18 Expected ":"
Line 86:9 Unexpected "{"
Line 86:18 Expected ":"
Line 90:9 Unexpected "{"
Line 90:18 Expected ":"

**/
/* Place any CSS overrides in this file. */
.shape-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shape-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}
/* Prevent zoom on mobile banner images */
.banner__media img,
.hero__media img {
  object-fit: contain !important;
  width: 100% !important;
  height: auto !important;
}

@media (max-width: 749px) {
  .banner__media img,
  .hero__media img {
    object-position: center center !important;
  }
}
.custom-liquid-button {
  display: inline-block;
  background-color: var(--color-button-primary);
  color: var(--color-button-text);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.custom-liquid-button:hover {
  background-color: var(--color-button-text);
  color: var(--color-button-primary);
}
footer {
  position: relative !important;
  bottom: auto !important;
}
.banner__buttons .button:nth-child(2) {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
  box-shadow: none !important;
}

.banner__buttons .button:nth-child(2):after {
  display: none !important;
}

.banner__buttons .button:nth-child(2):hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
#Banner-{{ section.id }} .button--secondary {
  --color-button: 255, 255, 255 !important;
  --color-button-text: 255, 255, 255 !important;
  --alpha-button-background: 0 !important;
  border: 1px solid #ffffff !important;
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

#Banner-{{ section.id }} .button--secondary:after {
  display: none !important;
}

#Banner-{{ section.id }} .button--secondary:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
/* Stack certification logos and social icons vertically in GET CONNECTED column */
.footer__block:last-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* If the logos are in a separate block, target both blocks */
.footer__blocks {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Make the certification logos block and social block stack */
.footer__block:nth-child(1) {
  grid-row: 1;
}

.footer__block--certification,
.footer__block--social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Reduce spacing between cert logos */
.footer__block img {
  margin-bottom: 0;
  margin-right: 15px;
}