@charset "utf-8";

#shSubBnr {
  padding: 0 60px;
  font-family: var(--main-font);
}
#shSubBnr .bg {
  position: relative;
  height: 350px;
  border-radius: 30px;
  background: url("./sub_banner.png") center no-repeat;
  background-size: cover;
  overflow: hidden;
}
#shSubBnr .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
#shSubBnr .sub_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
#shSubBnr .sub_txt .txt01 {
  display: inline-block;
  position: relative;
  /* margin-bottom: 28px; */
  font-size: 40px;
  font-weight: 600;
  font-family: var(--e-font);
  text-transform: uppercase;
}
#shSubBnr .sub_txt .txt02 {
  overflow: hidden;
  font-size: 45px;
}
#shSubBnr .sub_txt .txt02 span {
  opacity: 0;
  position: relative;
  bottom: -46px;
}

/* 반응형 [s] */
@media (max-width: 1024px) {
  #shSubBnr {
    padding: 0px;
  }
  #shSubBnr .bg {
    border-radius: 0px;
    height: 320px;
  }
  #shSubBnr .sub_txt .txt01 {
    margin-bottom: 18px;
    font-size: 24px;
  }
  #shSubBnr .sub_txt .txt02 {
    font-size: 36px;
  }
  #shSubBnr .sub_txt .txt02 span {
    bottom: 0px !important;
    opacity: 1 !important;
  }
}
@media (max-width: 768px) {
  #shSubBnr .bg {
    height: 280px;
  }
  #shSubBnr .sub_txt .txt01 {
    margin-bottom: 20px;
  }
  #shSubBnr .sub_txt .txt02 {
    font-size: 32px;
  }
  #shSubBnr .bg::before {
    background: rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 480px) {
  #shSubBnr .bg {
    height: 150px;
  }
  #shSubBnr .sub_txt .txt01 {
    font-size: 18px;
  }
  #shSubBnr .sub_txt .txt02 {
    font-size: 16px;
    color: #000;
  }
}
/* 반응형 [e] */
