.new-banner {
  height: 100vh;
  background-color: white;
  padding-top: 90px;
  padding-left: 90px;
  position: relative;
}
.new-banner:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 55%;
  animation: bggrad-bl 15s infinite;
}
.new-banner .new-banner-scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.new-banner .new-banner-scroll a {
  width: 80px;
  padding-bottom: 55px;
}
.new-banner .new-banner-scroll a:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  bottom: 50px;
  left: 50%;
  background: #fff;
  animation: new-banner-scroll 1.5s infinite;
  z-index: 11;
}
.new-banner .new-banner-scroll a div {
  width: 10px;
}
.new-banner .new-banner-bg {
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-origin: content-box;
  filter: brightness(50%);
  animation: changeBackground 24s infinite ease-in-out;
}
.new-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-40%) translateX(-50%);
  text-align: center;
  color: white;
}
.new-banner .container div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.new-banner .container div span {
  font-size: 24px;
  margin-left: 20px;
}
.new-banner .container h2 {
  font-size: 80px;
  margin-bottom: 20px;
  letter-spacing: -2px !important;
}
.new-banner .container h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}
.new-banner .container p {
  font-size: 14px;
  font-weight: 300;
  max-width: 830px;
  margin: auto;
}
.new-banner .new-banner-bg-notshow {
  background-image: url('../images/index/main03.jpeg');
}
.new-banner .new-banner-bg-notshow1 {
  background-image: url('../images/index/main04.jpeg');
}
.new-banner .new-banner-bg-notshow2 {
  background-image: url('../images/index/main05.jpeg');
}
.new-banner .new-banner-bg-notshow3 {
  background-image: url('../images/index/main06.jpeg');
}
.new-banner .new-banner-bg-notshow4 {
  background-image: url('../images/index/main07.jpeg');
}
@media screen and (max-width: 1200px) {
  .new-banner {
    padding-top: 70px;
    max-height: 100vh;
  }
  .new-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-40%) translateX(-45%);
    text-align: center;
    color: white;
  }
  .new-banner .container h2 {
    font-size: 60px;
    margin-bottom: 10px;
  }
  .new-banner .container h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .new-banner .container p {
    font-size: 13px;
    font-weight: 300;
    width: 90%;
  }
}
@media screen and (max-width: 800px) {
  .new-banner {
    padding-left: 40px;
    max-height: 80vh;
  }
  .new-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-47%);
    text-align: center;
    color: white;
    padding: 0 40px;
  }
  .new-banner .container div {
    margin-bottom: 6px;
  }
  .new-banner .container h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .new-banner .container h3 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .new-banner .container p {
    font-size: 12px;
    font-weight: 300;
  }
  .new-banner:after {
    width: 40px;
  }
  .new-banner .new-banner-scroll a {
    width: 40px;
  }
}
@media screen and (max-width: 600px) {
  .new-banner {
    max-height: 40vh;
  }
  .new-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-25%) translateX(-47%);
    text-align: center;
    color: white;
    padding: 0 60px;
  }
  .new-banner .container h2 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .new-banner .container h3 {
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .new-banner .container p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: -1px !important;
    line-height: 20px;
  }
}
@keyframes new-banner-scroll {
  0% {
    height: 0;
    bottom: 50px;
  }
  100% {
    height: 50px;
    bottom: 0;
  }
}
@keyframes bggrad-bl {
  0% {
    background: #4472C4;
  }
  50% {
    background: #4473c4b0;
  }
  100% {
    background: #4472C4;
  }
}
@keyframes changeBackground {
  0% {
    background-image: url('../images/index/main01.jpeg');
    background-size: 100% 100%;
  }
  20% {
    background-image: url('../images/index/main03.jpeg');
    background-size: 110% 110%;
  }
  40% {
    background-image: url('../images/index/main04.jpeg');
    background-size: 120% 120%;
  }
  60% {
    background-image: url('../images/index/main05.jpeg');
    background-size: 130% 130%;
  }
  80% {
    background-image: url('../images/index/main06.jpeg');
    background-size: 140% 140%;
  }
  100% {
    background-image: url('../images/index/main01.jpeg');
    background-size: 100% 100%;
  }
}
