/** Shopify CDN: Minification failed

Line 24:8 Expected identifier but found whitespace
Line 24:10 Unexpected "{"
Line 24:19 Expected ":"
Line 24:45 Expected ":"
Line 32:11 Expected identifier but found whitespace
Line 32:13 Unexpected "{"
Line 32:22 Expected ":"
Line 32:49 Expected ":"

**/
 
  @media(min-width: 1450px){
    .custom-image-overlay{
      height:810px !important;
    }
    .custom-image-overlay-section{
      padding:0 50px !important;
    }
  }
  .custom-image-overlay-section {
    display: flex;
    gap: {{ section.settings.gap_between }}px;
    justify-content: center;
    padding:0 35px;
  }

  .custom-image-overlay {
    position: relative;
    width: 50%;
    height: {{ section.settings.image_height }}px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit:contain;
    flex-direction: column;
  }

  .custom-image-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, {{ section.settings.overlay_opacity | divided_by: 100.0 }});
  }

  .custom-overlay-text {
    position: relative;
    font-family: "The_Seasons_Regular";
    color: white;
    font-size: 50px;
    font-weight: 500;
    line-height:65px;
    letter-spacing:2px;
    z-index: 2;
    
  }
.custom-overlay-button-text {
  margin-top: 1rem;
    padding: 0.5rem;
  background-color:white;
  color:black;
  border:white;
}
   @media (max-width: 768px) {
    .custom-image-overlay-section {
      flex-direction: column;
      padding: 0 13px;
      gap: 20px;
    }

    .custom-image-overlay {
      width: 100%; 
      height:345px;
    }

    .custom-overlay-text {
      font-size: 30px; 
    }
  }
