/** Shopify CDN: Minification failed

Line 138:21 Unexpected "{"
Line 138:30 Expected ":"
Line 138:59 Unexpected "{"
Line 138:68 Expected ":"

**/
.image-under-text__subtitle {
  margin: 0 0 1rem 0;
}

.image-under-text__buttons a{
      /* font-family: RoyalHefana; */
}
 
.image-under-text__title {
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0;
    margin:1rem 0;
}

.image-under-text__bold-title {
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0;
}

.image-under-text__description {
  font-size: 1.6rem;
  line-height: 1.66;
  letter-spacing: 0;
  margin: 0;
}

.image-under-text {
  position: relative;
  overflow: hidden;
  min-height: 60vh; /* Add minimum height to accommodate absolute image */
}

.image-under-text__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 2; /* Ensure content stays above the absolute image */
  padding: 0 7.8rem
}

.image-under-text__top-content {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 2rem;
}

.image-under-text__heading-column {
  flex: 1;
  max-width: 25%;
}

.image-under-text__description-column1 {
  flex: 1;
  max-width: 555px;
}
.image-under-text__description-column2 {
  flex: 1;
  max-width: 309px;
}

.image-under-text__bottom-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2rem;
  margin: 15rem 2rem 0;
}

.image-under-text__image-section {
    position: absolute;
    left: 0;
    z-index: 1;
    max-width: 60vw;
    bottom: 0;
}

.image-under-text__main-image {
  position: relative;
  width: 100%;
}

.image-under-text__main-image img {
  width: 100%;
  height:100%;
  object-fit: contain;
}

.image-under-text__buttons {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.image-under-text__button {
  padding: 1.2rem 2.4rem;
  border-radius: 5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button--primary-cstm {
  background-color: rgba(var(--color-button), 1);
  color: rgba(var(--color-button-text), 1);
}

.button--secondary-cstm {
  background-color: transparent;
  border-color: rgba(var(--color-foreground), 0.3);
}

.button--primary-cstm:hover {
  background-color: rgba(var(--color-button), 0.8);
  transform: translateY(-2px);
}

.button--secondary-cstm:hover {
  background-color: rgba(var(--color-foreground), 0.1);
  border-color: rgba(var(--color-foreground), 0.6);
}



@media screen and (max-width: 1200px) {
   #shopify-section-{{ section.id }} h1, #shopify-section-{{ section.id }}  .h1 {
     font-size: calc(var(--font-heading-scale) * 3rem);
  }
}
@media screen and (max-width: 990px) {
  .image-under-text__content{
    padding: 0 1.5rem;
  }
  .image-under-text {
    min-height: 50vh;
  }
  
  
  .image-under-text__top-content {
    flex-direction: column;
    /* align-items: center; */
    gap: 2rem;
    /* text-align: center; */
  }
  
  .image-under-text__heading-column,
  .image-under-text__description-column1,
  .image-under-text__description-column2  {
    max-width: 100%;
  }
  
  .image-under-text__bottom-content {
           flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2rem;
        margin: 2rem 0 0
    
  }
  .image-under-text__main-image img{
    height: 25vw;
  }
  
  .image-under-text__image-section {
    position: static; /* Reset to normal flow on mobile */
    max-width: 100%;
    order: 1; /* Show image first on mobile */
  }
  
  .image-under-text__buttons {
    order: 2; /* Show buttons after image on mobile */
    justify-content: center;
  }
}

@media screen and (max-width: 749px) {
  .image-under-text {
    min-height: 40vh;
  }
  
  
  .image-under-text__description {
   
  }
  
  .image-under-text__buttons {
  justify-content: flex-start;
        width: 100%;
  }
  
  .image-under-text__button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
  }
  
  .image-under-text__image-section {
    max-width: 100%;
  }
}