/** Shopify CDN: Minification failed

Line 92:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.custom-split-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  font-family: sans-serif;
}

.custom-split-section .left-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.custom-split-section .right-content {
  flex: 1 1 50%;
  background-color: black; 
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;       
  text-align: center;    
  padding: 60px 40px;
}

.custom-split-section .text-top,
.custom-split-section .text-bottom {
  margin: 20px 0; 
}

.custom-split-section h2 {
  font-size: calc(var(--font-heading-scale) * 4rem);
  margin-bottom: 20px;
  color:white;
}

.custom-split-section a.button-link {
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  margin: 20px 0;
  padding-bottom: 2px;
}

.custom-split-section a.button-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: white;
  transition: width 0.4s ease;
}

.custom-split-section a.button-link:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .custom-split-section {
    flex-direction: column;
  }

  .custom-split-section .left-image {
    min-height: 300px;
  }

  .custom-split-section .right-content {
    padding: 40px 20px;
  }

      .custom-split-section h2 {
        text-transform: uppercase;
        font-size: 28px;
    }
}
  .custom-split-section .text-top,
.custom-split-section .text-bottom {
  margin:0px; 
}
}