.akt-image-banner {
  position: relative;
  width: 100%;
  height: var(--akt-image-banner-height-desktop, 420px);
  overflow: hidden;
  display: block;
}

.akt-image-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--akt-image-banner-position, center center);
}

@media (max-width: 1024px) {
  .akt-image-banner {
    height: var(
      --akt-image-banner-height-tablet,
      var(--akt-image-banner-height-desktop, 420px)
    );
  }
}

@media (max-width: 767px) {
  .akt-image-banner {
    height: var(
      --akt-image-banner-height-mobile,
      var(--akt-image-banner-height-tablet, 220px)
    );
  }
}
