:root {
  --banner-bg-color: #33271B;
}

.banner-container {
  position: sticky;
  width: 100%;
  height: 56px;
  overflow: hidden;
  align-items: center;
  display: flex;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 100;
  background-color: var(--banner-bg-color);
}

.banner-wrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  transition: transform 0.5s ease-in-out;
}

.banner-item,
.banner-item span {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: break-spaces;
}

.responsive-br {
  display: none;
}

@media (max-width: 550px) {
  .banner-container {
    height: 64px;
  }

  .banner-item,
  .banner-item span {
    font-size: 14px;
    height: 64px;
  }

  .responsive-br {
    display: inline;
  }
}
