.home-banner-coffee {
  margin-top: var(--header-height);

  .home-banner-row {
    display: flex;
  }

  .home-banner-line-v {
    width: var(--global-border-size);
    background-color: var(--color-brand-white);
    opacity: 0.5;
  }

  .home-banner-line-h {
    height: var(--global-border-size);
    background-color: var(--color-brand-white);
    opacity: 0.5;
  }

  .home-banner-big {
    position: relative;
    width: calc(66.66666666666666666% - var(--global-border-size));
  }
  .home-banner-small {
    position: relative;
    width: 33.33333333333333333%;
  }

  .home-banner-bg {
    position: absolute;
    inset: 0px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16.5px);
    z-index: 1;
  }

  .home-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
  }

  .first-row {
    min-height: 180px;
  }

  .logo-row {
    min-height: 220px;
    .home-banner-content {
      display: flex;
      img {
        width: 254px;
        margin: auto;
      }
    }
  }

  .empty-row {
    min-height: 280px;
  }

  .title-row {
    min-height: 180px;
    .home-banner-content {
      display: flex;
      align-items: center;
      padding: 12px 24px;
      h1 {
        font-size: 26px;
        line-height: 42px;
        text-transform: uppercase;
        color: var(--color-brand-white);
        margin-bottom: 0px;
      }
    }
  }

  .desc-row {
    min-height: 410px;
    .home-banner-content {
      display: flex;
      align-items: center;
      padding: 24px;
      p {
        font-size: 17px;
        line-height: 100%;
        color: var(--color-brand-white);
        margin-bottom: 0px;
        max-width: 500px;
      }
    }
  }

  @media (width <= 480px) {
    .first-row {
      min-height: 90px;
      .home-banner-big {
        width: 100%;
      }
      .home-banner-line-v {
        display: none;
      }
      .home-banner-small {
        display: none;
      }
    }

    .logo-row {
      min-height: 180px;
      .home-banner-big {
        width: 100%;
      }
      .home-banner-line-v {
        display: none;
      }
      .home-banner-small {
        display: none;
      }
    }

    .empty-row {
      min-height: 140px;
      .home-banner-big {
        width: 100%;
      }
      .home-banner-line-v {
        display: none;
      }
      .home-banner-small {
        display: none;
      }
    }

    .title-row {
      min-height: 180px;
      .home-banner-small {
        width: 100%;
      }
      .home-banner-line-v {
        display: none;
      }
      .home-banner-big {
        display: none;
      }
    }

    .desc-row {
      min-height: 205px;
      .home-banner-big {
        width: 100%;
      }
      .home-banner-line-v {
        display: none;
      }
      .home-banner-small {
        display: none;
      }
    }
  }
}
