/** Shopify CDN: Minification failed

Line 16:17 Unexpected "{"
Line 16:26 Expected ":"
Line 27:17 Unexpected "{"
Line 27:26 Expected ":"
Line 41:17 Unexpected "{"
Line 41:26 Expected ":"
Line 45:17 Unexpected "{"
Line 45:26 Expected ":"
Line 51:17 Unexpected "{"
Line 51:26 Expected ":"
... and 18 more hidden warnings

**/
#contact-header-{{ section.id }} .container.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px;
  border-radius: var(--border-radius);
      background-size: cover;
    background-position: center;
}

#contact-header-{{ section.id }} .contact-header__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: white;
  padding: 50px;
  border-radius: var(--border-radius);
  min-height: 400px;
}

#contact-header-{{ section.id }} .split.has-bg-color{
      grid-template-columns: 1fr;
}

#contact-header-{{ section.id }} .contact-header__title{
  color: var(--purple);
  margin-bottom: 20px;
  font-size: 2em;
}

#contact-header-{{ section.id }} .contact-header__text{
  color: var(--text-color, #333);
  font-size: 1.1em;
  line-height: 1.6;
}

#contact-header-{{ section.id }} .contact-header__content .btn{
  margin-top: 30px;
}

#contact-header-{{ section.id }} .contact-header__text p{
  margin-bottom: 15px;
}

#contact-header-{{ section.id }} .contact-header__text p:last-child{
  margin-bottom: 0;
}

#contact-header-{{ section.id }} .contact-header__spacer{
  position: relative;
  z-index: 1;
}


@media (max-width: 768px) {
  #contact-header-{{ section.id }} .container.split{
    grid-template-columns: 1fr;
    gap: 30px;
    padding:30px;
  }

  #contact-header-{{ section.id }} .contact-header__content{
    padding: 10px;
  }

  #contact-header-{{ section.id }} .contact-header__title{
    font-size: 1.6em;
  }

  #contact-header-{{ section.id }} .contact-header__text{
    font-size: 1em;
  }

  #contact-header-{{ section.id }} .contact-header__spacer{
    display: none;
  }
}