/** Shopify CDN: Minification failed

Line 71:3 Unexpected "/"

**/
.image_banner.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  align-items: center;
}

.back_images {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 2.43;
  align-items: stretch;
}

.hero-bg-image {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  height: 100%;
  max-width: 33.33%;
  vertical-align: top;
}

.hero-content {
  max-width: 781px;
  margin: 0 auto;
  padding: 60px;
  text-align: center;
  background-color: #272B39;
  color: #fff;
  position: absolute;
  bottom: 70px;
}

.hero-logo {
  width: 100%;
  max-width: 152px;
  margin-bottom: 29px;
}

.hero-title {
  font-size: 18px;
  font-family: "Libre Caslon Text", serif;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 15px 0;
}

.hero-description {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 33px;
  color: #CDCDCD;
  font-family: var(--font-body-family);
  font-weight: 300;
  letter-spacing: 0;
}

.story_link:hover {
  border-color: white;
  transition: 0.5s;
} */

a.hero-button:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.story_link {
  position: relative;
  display: inline-block;
  border: 1px solid #60636B;
  border-radius: 36px;
  padding: 9px 24px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
  z-index: 1;
  vertical-align: top;
}
.story_link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  width: 0;
  transition: width 0.5s ease;
  z-index: -1;
}
.story_link:hover::before {
  width: 100%;
}
.story_link:hover {
  border-color: #ffffff;
  color: #000; 
}
.story_link:hover a.hero-button {
  color: #000;
}


.hero-button {
  font-family: var(--font-body-family);
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.5;
  transition: color 0.4s ease, border-color 0.4s ease;
}

@media (max-width: 1440px) {
  .back_images {
    aspect-ratio: 1.88;
  }
}

@media (max-width: 1199px) {
  .hero-content {
    bottom: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: unset;
 }
 .story_link {
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
 }
}



/* Responsive Styling */

@media (max-width: 1024px) {
  .hero-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: unset;
    width: 70%;
    max-width: calc(100% - 30px);
    height: auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 24px 80px; 
 }
  .hero-logo {
      margin-bottom: 15px;
      max-width: 100px;
      height: auto;
      vertical-align: top;
  }
 .hero-description {
    margin: 0 0 15px;
  }

}

@media (max-width: 1024px) {
  .hero-content {
    padding: 30px 30px;
  }
  .hero-title {
    font-size: 16px;
  }
  .hero-description {
    font-size: 16px;
  }
}

@media (max-width: 989px) {
  .hero-content {
    width: 100%;
    max-width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
  .hero-title {
    margin: 0 0 10px;
  }

}

@media (max-width: 749px) {
  .hero-content {
    padding: 15px;
  }

  .hero-logo {
    width: 100%;
    max-width: 152px;
    margin-bottom: 20px;
  }

  .hero-description {
    margin: 0 0 20px;
  }
}

@media (max-width: 749px) {
  .hero-content {
    padding: 24px 15px;
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
    margin: auto;
  }
  .hero-logo {
      width: 100%;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100px;
      height: auto;
  }
  .hero-description {
    margin: 0 0 12px;
    font-size: 14px;
  }

  .story_link {
    padding: 6px 14px;
  }

  .hero-button {
    font-size: 14px;
  }
}