#hero {
  background-image: url('../../images/vip/hero-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 23px 0 44px 0;
  margin-top: 12px;
}

#hero .title {
  font-size: 87.5px;
}
#hero .title span {
  font-size: 117px;
  line-height: 105px;
  margin-right: -29px;
  top: 10px;
  right: 15px;
  z-index: 2;
  position: relative;
  -webkit-text-stroke: 4px var(--light-blue);
}

#hero p {
  font-size: 20px;
  line-height: 21px;
  margin-top: 11px;
}

#hero .button {
  color: #000;
  height: 52px;
  line-height: 54px;
  padding: 0 32px;
  font-size: 17px;
  z-index: 2;
  position: relative;
}

#hero .border {
  content: '';
  position: absolute;
  top: 66px;
  right: -78px;
  bottom: 21px;
  left: -78px;
  border: 2px solid var(--yellow);
  border-top: none;
  z-index: 1;
}
#hero .border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 484px;
  height: 2px;
  background-color: var(--yellow);
}
#hero .border::after {
  content: '';
  position: absolute;
  top: 0;
  left: 487px;
  right: 0;
  height: 2px;
  background-color: var(--yellow);
}

@media screen and (max-width: 567px ) {
  #hero {
    margin-top: 22px;
    padding: 14px 0 36px 0;
  }
  #hero .title {
    font-size: 77px;
  }
  #hero .title span {
    line-height: 98px;
  }
  #hero p {
    font-size: 18px;
    line-height: 23px;
    max-width: 250px;
    margin: 0 auto;
  }
  #hero .button {
    margin-top: 10px;
  }
  #hero .border {
    top: 63px;
    right: -14px;
    bottom: 24px;
    left: -13px;
  }
  #hero .border::before {
    right: 331px;
  }
  #hero .border::after {
    left: 331px;
  }
}