.listingBanner {
  width: 100%;
  height: 480px;
  overflow: hidden;
  padding: 80px 0 50px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #1B316D;
}
@media (min-width: 1560px) {
  .listingBanner {
    height: 550px;
  }
}
.listingBanner .saveMore {
  position: absolute;
  top: 0;
  left: 0;
  background: #79FFAE;
  width: 100%;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media (min-width: 1560px) {
  .listingBanner .saveMore {
    height: 46px;
  }
}
.listingBanner .saveMore .scrollText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  white-space: nowrap;
  -webkit-animation: scrollLeft 35s linear infinite;
          animation: scrollLeft 35s linear infinite;
}
.listingBanner .saveMore .scrollText span {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}
@media (min-width: 1560px) {
  .listingBanner .saveMore .scrollText span {
    font-size: 18px;
  }
}
.listingBanner .title {
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
}
.listingBanner .title h1 {
  font-size: 32px;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .listingBanner .title h1 {
    font-size: 64px;
    font-weight: bolder;
  }
}

@-webkit-keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}