{% require_css %}
<style>
  .apr_hero {
    background: linear-gradient(360deg, #566AB2 0%, #1D3E62 83.24%);
    overflow: hidden;
    padding: 151px 0 124px;
  }
  .apr_hero-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .apr_hero-lft {
    flex: 0 0 38%;
    max-width: 38%;
    padding-top: 40px;
  }
  .apr_hero-rgt {
    flex: 0 0 53%;
    max-width: 53%;
    padding-left: 20px;
  }
  .apr_hero-cnt {
    margin-bottom: 35px;
  }
  .apr_hero-cnt * {
    color: #FFF;
  }

  /* --- Pixelated Card Styling --- */
  .pixelated-image-card {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    border-radius: 2%;
    width: 100%;
    padding-top: 100%;
  }
  .pixelated-image-card__default,
  .pixelated-image-card__active,
  .pixelated-image-card__pixels {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
  }
  .pixelated-image-card__default img,
  .pixelated-image-card__active img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pixelated-image-card__active {
    display: none;
    pointer-events: none;
  }
  .pixelated-image-card__pixel {
    background-color: currentColor;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
  }
</style>
{% end_require_css %}
