.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding-top: 96px;
  padding-bottom: 16px;
  box-sizing: border-box;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-text .left {
  font-weight: 700;
  background: var(--primary-textColor);
  color: white;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 42px;
}

.banner-text .right {
  font-weight: 700;
  background: var(--bg-color-1);
  color: var(--primary-color);
  border: 1px solid transparent;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-container .banner-img {
  width: 50%;
  height: 50%;
  /* width: 723px; */
  /* height: 537px; */
  /* object-fit: cover; */
}

.bannerTitle {
  /* word-break: normal; */
  display: flex;
  text-align: center;
}

@media screen and (max-width: 980px) {
  .bannerTitle {
    /* word-break: break-all; */
    display: block;
  }
  .banner-text {
    flex-direction: column;
  }
  .banner-text .right {
    width: fit-content;
  }
  .banner-text .left {
    width: fit-content;
  }
}
