:root {
  --desktop-viewport: 1200px;
  --tablet-viewport: 768px;
}

@layer layouts {
  .banner__bg, .banner__wrapper:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .banner__bg {
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .banner__wrapper {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 45px 32px;
    min-height: 424px;
  }
  @media screen and (min-width: 1024px) {
    .banner__wrapper {
      padding: 105px 68px;
    }
  }
  .banner__wrapper:after {
    content: "";
    background: #1B2935;
    opacity: 0.7;
    z-index: 2;
  }
  .banner__text-wrapper {
    position: relative;
    z-index: 3;
  }
  .banner__heading {
    color: #fff;
    max-width: 61%;
  }
  @media screen and (max-width: 767.9px) {
    .banner__heading:not(:last-child) {
      margin-bottom: 48px;
    }
  }
  .banner__heading span {
    color: #9BD7D2;
  }
  .banner__row {
    margin-top: 30px;
  }
  @media screen and (min-width: 768px) {
    .banner__row {
      display: flex;
      align-items: center;
      gap: 32px;
    }
  }
  @media screen and (min-width: 768px) {
    .banner__row--reverse {
      flex-direction: row-reverse;
    }
  }
  .banner__qr-code {
    display: none;
  }
  @media screen and (min-width: 1200px) {
    .banner__qr-code {
      display: block;
    }
  }
  .banner__btn {
    align-items: flex-start;
  }
  @media screen and (min-width: 1200px) {
    .banner__btn {
      display: none;
    }
  }
  @media screen and (max-width: 767.9px) {
    .banner__btn {
      margin-top: 32px;
    }
  }
  .banner__row--reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .banner__row--reverse .buttons--row {
    display: flex;
    gap: 24px;
  }
  @media screen and (min-width: 768px) {
    .banner__row--reverse .buttons--row {
      gap: 32px;
    }
  }
  .banner--light {
    background: #f8f8f8;
  }
  .banner--light .banner__wrapper {
    background: #fff;
  }
  .banner--light .banner__heading {
    color: #1B2935;
    max-width: 513px;
  }
  .banner--with-image .banner__wrapper:after {
    display: none;
  }
  @media screen and (max-width: 1199.9px) {
    .banner--with-image .banner__wrapper {
      display: flex;
      flex-direction: column-reverse;
      gap: 16px;
    }
  }
  @media screen and (max-width: 1199.9px) {
    .banner--with-image .banner__bg {
      position: static;
    }
  }
  @media screen and (max-width: 1023.9px) {
    .banner--with-image .banner__bg {
      margin-left: calc(0px - 68px);
      min-width: calc(100% + 68px * 2);
    }
  }
}