#fw-section-hero-279073ba-50aa-4d11-a4c7-256201a4a4e3 {

/* ===== IMAGE SIZE CONTROL ===== */
/* Change this value between 0 and 100 */
:root {
  --banner-image-size: 100;
}

/* Hide banner text */
section h1,
section h2 {
  visibility: hidden;
}

/* Replace text with image */
section h1::after,
section h2::after {
  content: "";
  visibility: visible;

  display: block;

  /* SCALE CONTROL */
  width: calc(var(--banner-image-size) * 1%);
  max-width: 500px;
  min-width: 0;

  aspect-ratio: 5 / 2; /* adjust if needed */

  background-image: url("https://i.imgur.com/OLefk23.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  margin: 0 auto;
}

}