:root {
  --h-banner-section-max-width: 1360px;
}

.home_banner {
  display: flex;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 70px);
  min-height: 800px;
  background-size: cover;
    background-position: center
}

.home_banner_sz {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.home_banner_title {
  display: block;
  width: calc(100% - 20px);
  max-width: var(--h-banner-section-max-width);
  margin: 0;
  padding: 0;
  font-family: 'Industry_Regular', sans-serif;
  font-size: 60px;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -2.32px;
}

.home_banner_sub_title {
  display: block;
  width: calc(100% - 20px);
  max-width: var(--h-banner-section-max-width);
  margin: 30px 0 0 0;
  padding: 0;
  font-family: 'Noto_Regular', sans-serif;
  font-size: 22px;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
}

.home_banner_btn_c {
  display: flex;
  justify-content: center;
  width: calc(100% - 20px);
  max-width: var(--h-banner-section-max-width);
}

.home_banner_btn {
  display: flex;
  margin: 30px 0 0 0;
  padding: 14px 20px;
  font-family: 'Noto_Regular', sans-serif;
  font-size: 18px;
  line-height: 1;
  color: #FFFFFF;
  text-decoration: none;
  background: #F39200;
  border-radius: 0 30px 30px 30px;
  opacity: 1;
  align-items: center;
}

.home_banner_btn span:nth-child(1) svg {
  height: 14px;
  width: auto;
  margin-right: 8px;
  fill: #FFF;
}

.home_banner_btn:hover {
  color: #F39200;
  background: #FFFFFF;
}

.home_banner_btn:hover span:nth-child(1) svg {
  fill: #F39200;
}

/* Tablet */
@media (max-width: 1024px) {
  .home_banner_title {
    font-size: 50px;
    letter-spacing: -1.5px;
  }

  .home_banner_sub_title {
    font-size: 20px;
    margin-top: 25px;
  }

  .home_banner_btn {
    font-size: 17px;
    margin-top: 25px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .home_banner {
    height: calc(100vh - 60px);
  }

  .home_banner_title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .home_banner_sub_title {
    font-size: 18px;
    margin-top: 20px;
    letter-spacing: -1px;
  }

  .home_banner_btn {
    font-size: 16px;
    margin-top: 20px;
    padding: 12px 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .home_banner_title {
    font-size: 28px;
  }

  .home_banner_sub_title {
    font-size: 18px;
  }

  .home_banner_btn {
    font-size: 15px;
    padding: 10px 16px;
  }
}
