/** Shopify CDN: Minification failed

Line 40:14 Expected identifier but found whitespace
Line 40:16 Unexpected "{"
Line 40:25 Expected ":"
Line 40:64 Expected ":"
Line 43:0 Unexpected "<"
Line 105:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.shop-occasion-section {
  padding: 32px 0 0 0;
}
.shop-occasion-heading {
  margin: 10px 0;
}
.shop-occasion-heading-img {
  display: block;
  height: auto;
}
.align-left {
  margin-left: 0;
  margin-right: auto;
}
.align-center {
  margin-left: auto;
  margin-right: auto;
}
.align-right {
  margin-left: auto;
  margin-right: 0;
}

/* Responsive font size for mobile */
@media screen and (max-width: 768px) {
  .shop-occasion-heading {
    font-size: {{ section.settings.heading_font_size_mobile }}px !important;
  }
}
<style>
  .icon-box-section {
    padding: 60px 20px;
    background-color:rgb(216, 209, 209); /* optional default background, override in theme */
  }

  .icon-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .icon-box {
    width: 100%;
    max-width: 500px;
    flex: 0 0 45%;
  }

  .icon-box-inner {
    padding: 20px;
  }

  .icon-box img {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 60px;
    height: auto;
  }

  .icon-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .icon-box .rte {
    font-size: 16px;
    color: #555;
  }

  .align-left {
    text-align: left;
  }

  .align-center {
    text-align: center;
  }

  .align-right {
    text-align: right;
  }

  .align-justify {
    text-align: justify;
  }

  @media screen and (max-width: 767px) {
    .icon-box {
      flex: 0 0 100%;
    }
  }
</style>