/** Shopify CDN: Minification failed

Line 61:2 Expected "}" to go with "{"

**/
.cc-feature-icons {

  
  h2 {
    padding: 0 10rem;
  }
  @media (max-width: 768px) {
    h2 {
      padding: 0 1.5rem;
    }
  }
  
  .icon-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 40px; /* Adjust the spacing between icons as needed */
    padding: 0 10rem;
  }
  @media (max-width: 768px) {
    .icon-table {
        grid-template-columns: repeat(2, 1fr); /* Switch to 2 columns on smaller screens */
        padding: 0 1.5rem;
    }
  }

  /* .cc-feature-icons__icons {
    max-width: 50rem;
  } */
  
  .icon-cell {
    display: flex;
    justify-content: center; /* Center the icons horizontally */
    align-items: center; /* Center the icons vertically */
  }
  .icon-cell img {
    width: 100%; /* Adjust based on your icon size */
    height: auto;
    display: block; /* Ensure images don't add extra space below */
  }
}

.cc-rich-text {
  border: none;
  
  .bottom-right-image {
    position: absolute;
    right: -150px;
    bottom: 0;
    max-width: 100%;
  }
  @media (max-width: 768px) {
    .bottom-right-image {
        display: none;
    }
}
  