/** Shopify CDN: Minification failed

Line 25:21 Expected identifier but found whitespace
Line 25:23 Unexpected "{"
Line 25:32 Expected ":"

**/
 .content-image-text-grid-mobile {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  @media (min-width: 768px) {
    .content-image-text-grid-mobile {
      display: none;
    }
  }
  .content-image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: {{ section.settings.background_color }};
  }
  
  .content-image-container img {
    width: 100%;
    height: auto;
  }
  
  .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .text-content p {
    color: #000;
  }

  .text-content-header {
    display: none;
  }
  @media (min-width: 768px) {
    .text-content-header {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  }
  .content-title {
    font-size: 30px;
    text-transform: uppercase;
    margin: 24px 0;
    text-align: center;
    color: #00a4a1;
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  @media (min-width: 768px) {
    .content-title {
      font-size: 30px;
    }
  }
   
  .content-cta {
    width: 100%;
    display: block;
    padding: 10px 20px;
    background-color: #00a4a1;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    align-self: center;
    text-align: center;
  }

  .content-description-text{
    text-align: center;
    color:#595959;
  }
   @media (min-width: 768px) {
    .text-content .content-cta {
      display: block;
      width: auto;
    }
  }
  .content-cta:hover {
    background-color: #fff;
    border: 1px solid #00a4a1;
    color: #00a4a1;
  }
  
  @media (max-width: 768px) {
    .content-image-text-grid {
      grid-template-columns: 1fr;
      margin: 20px auto;
    }
  }