/** Shopify CDN: Minification failed

Line 112:24 Unexpected "{"

**/
.custom-html-heading {
    text-align: center;
  }
  .heading-with-line{
    position: relative;
  }
  .heading-with-line *{
    text-align: center;
    color: #fe911b;
    font-weight: normal;
  }
  .heading-with-line .fancyline span:before, .heading-with-line .fancyline span:after {
    top: 50%;
    transform: translateY(-50%);
  }
  
  
  .image-grid-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 20px;
  }
  .image-grid-item {
    text-align: center;
  }
  .image-grid-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
  }
  .image-grid-container a {
    color: #333;
    font-size: 1.25em;
    margin-bottom: 2px;
    font-weight: 700;
  }
  @media (max-width: 1200px) {
    .image-grid-container {
      grid-template-columns: repeat(2, minmax(150px, 1fr));
    }
  }
  @media (max-width: 768px) {
    .image-grid-container {
      grid-template-columns: repeat(1, minmax(150px, 1fr));
    }
  }
  
    .two-column-background {
      display: flex;
      flex-wrap: wrap;
      margin: -15px;
    }
    
    .two-column-background .column {
      flex: 1;
      min-width: calc(50% - 30px);
      margin: 15px;
      color: white;
      position: relative;
      background-size: cover;
      background-position: center;
      height: 300px; /* Adjust height as needed */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .two-column-background .overlay-text{
      background-color: rgba(0, 0, 0, .5);
      padding: 50px 100px;
    }
   .two-column-background .overlay-text a {
     color: #fff;
     font-size: 1.25em;
   }
  .custom-cta-button-wrapper {
    margin-block: 20px;
    text-align: center;
  }
  
  .custom-cta-button {
    color: #fff;
    background: #fe911b;
    padding: 20px 100px;
    border-radius: 15px;
  }
  
  .custom-cta-button:hover{
    color: #fff;
  }
  
  
  .testimonial-section {
      text-align: center;
      background-color: #f0f0f0;
      padding: 30px;
      border-radius: 15px;
      max-width: 600px;
      margin: 30px auto;
    }
    
    .testimonial-quote {
      font-style: italic;
      margin-bottom: 20px;
    }
    .testimonial-name,  {
      font-weight: bold;
      margin-bottom: 4px;
    }
  
    .testimonial-name, .testimonial-position{
      text-align: right;
    }
  
    .testimonial-position {
      color: #777;
    }
  
    .testimonial-logo {
      border-radius: 50%;
      height: 55px;
      width: 55px;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-bottom: 5px;
    }
    
  