/** Shopify CDN: Minification failed

Line 53:12 Expected identifier but found whitespace
Line 53:14 Unexpected "{"
Line 53:24 Expected ":"
Line 53:40 Expected ":"
Line 125:19 Expected identifier but found whitespace
Line 125:21 Unexpected "{"
Line 125:30 Expected ":"
Line 126:8 Expected identifier but found whitespace
Line 126:10 Unexpected "{"
Line 126:19 Expected ":"
... and 12 more hidden warnings

**/


/* CSS from section stylesheet tags */
.req_three-image-section {
}

.page-width {
  max-width: 100%;
  padding: 0!important;
}

.image__container {
  margin: 0;
  position: relative;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 600px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 8px;
}

.desktop__images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: {{ settings.page_width }}px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Position the left and right images to the corners */
.left-image {
  margin-left: 0;
  margin-right: auto;
}

.center-image {
  margin-left: auto;
  margin-right: auto;
}

.right-image {
  margin-left: auto;
  margin-right: 0;
}

.desktop__image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.caption {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-align: center;
  width: 100%;
}

.heading {
  font-size: 48px;
  font-family: var(--font-heading-family)!important;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-align: center;
  width: 100%;
}

.button {
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.button:hover {
  background-color: {{ section.settings.button_background_hover_color }};
  color: {{ section.settings.button_text_hover_color }};
}

.mobile__images {
  display: none;
}

@media screen and (max-width: 1024px) {
  .page-width {
    padding: 0 10px;
  }

  .image__container {
    min-height: 800px;
  }

  .desktop__images {
    display: none;
  }

  .mobile__images {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .caption {
    font-size: 16px;
  font-family: var(--font-heading-family)!important;
  }

  .heading {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .button {
    padding: 14px 28px;
    font-size: 15px;
  font-family: var(--font-heading-family)!important;
    min-width: 180px;
  }

  .overlay-content {
    padding: 25px;
  }
  .button:hover {
  background-color: {{ section.settings.button_background_hover_color }};
  color: {{ section.settings.button_text_hover_color }};
}
  
}

@media screen and (max-width: 480px) {
  .page-width {
    padding: 0 5px;
  }

  .image__container {
    min-height: 600px;
  }

  .heading {
    font-size: 28px;
  }

  .button {
    min-width: 160px;
  }

  .overlay-content {
    padding: 20px;
  }
  .button:hover {
  background-color: {{ section.settings.button_background_hover_color }};
  color: {{ section.settings.button_text_hover_color }};
}
}