.main-banner {
  width: 100vw;
  position: relative;
  background-repeat: no-repeat;
  background-position: 0 top;
  background-size: 100%;
  min-height: 500px;
  background-color: #0C1B2E;
  color: #FFF;
}


.main-banner-left-right {
  display: flex;
  justify-content: space-between;
  padding: 240px 0 110px 0;
}
.main-banner-left {
  flex: 1;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease-out forwards;
}
.main-banner-subtitle {
  margin-top: 20px;
  color: #FFF !important;
  display: block;
  width: 90%;
}
.main-banner-right {
  padding-top: 160px;
  /* display: flex;
  flex-direction: column; */
}
.main-banner-tag {
  display: inline-block;
  height: 44px;
  padding: 0 30px;
  font-size: 16px;
  color: #FFF;
  border-radius: 22px;
  margin-bottom: 28px;
  line-height: 44px;
  background-color: #2D2D35;
  opacity: 0;
  animation: fadeSlideRight 0.7s ease-out forwards;
}
.main-banner-desc {
  color: #FFF;
  opacity: 0;
  width: 454px;
  animation-delay: .2s;
  animation: fadeSlideRight 0.7s ease-out forwards;
}
.main-banner-icons {
  display: flex;
  gap: 38px;
  align-items: center;
  margin-top: 37px;
}
.main-banner-icon {
  width: 100px;
  height: 100px;
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: bounce-in 0.7s ease-out forwards;
}
.main-banner-icon:nth-child(0) {
  animation-delay: .3s;
}
.main-banner-icon:nth-child(2) {
  animation-delay: .6s;
}
.main-banner-icon:nth-child(3) {
  animation-delay: .9s;
}

@media (max-width: 480px) {
  .scroll-down-button {
    display: none;
  }
  .main-banner-left-right {
    flex-direction: column;
    padding: 100px 15px 36px 15px;
  }
  .main-banner-right {
    padding-top: 20px;
  }
  .main-banner-desc {
    width: 100%;
  }