/* 배너 영역 */
.banner_menu {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  position: absolute;
  top: 20px;
  left: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  z-index: 1000;
}
.banner_menu a:hover {
  color: #38116a;
}
.bm_left {
}
.bm_left ul {
  display: flex;
}
.bm_left ul li {
}
.bm_left ul li a {
  color: #fff;
  display: inline-block;
  padding: 4px 14px;
  letter-spacing: -1px;
}
.bm_left ul li.total {
  margin-right: 10px;
}
.bm_left ul li.total a {
  border: 1px solid #fff;
  transition: all 0.3s;
  padding: 4px 10px 3px 10px;
  font-size: 14px;
}
.bm_left ul li.total a i.fa-bars {
  padding-right: 5px;
}
.bm_left ul li.total a:hover {
  background-color: #ffffff81;
  border: 1px solid #38116a;
  color: #38116a;
}
.bm_right {
  display: flex;
}
.bm_right ul {
  display: flex;
}
.bm_right ul li {
}
.bm_right ul li a {
  display: inline-block;
  color: #fff;
  padding: 7px 10px;
}
.bm_right ul:nth-child(2) {
  margin-left: 10px;
}
.bm_right ul:nth-child(2) li a {
  width: 100px;
  text-align: center;
  background-color: #fff;
  transition:
    background-color 0.3s,
    color 0.3s;
}
.bm_right ul:nth-child(2) li.white a {
  background-color: #fff;
  color: #38116a;
  padding: 7px 15px;
  border: 1px solid #38116a;
}
.bm_right ul:nth-child(2) li.white a:hover {
  background-color: #a363f7a2;
  color: #fff;
}
.bm_right ul:nth-child(2) li.purple a {
  background-color: #38116a;
  margin-left: 20px;
  padding: 7px 15px;
  border: 1px solid #38116a;
}
.bm_right ul:nth-child(2) li.purple a:hover {
  background-color: #cacacab2;
  color: #38116a;
}

/* line */
.bm_left li {
  position: relative;
}
.bm_left li.line::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #fff;
  position: absolute;
  top: 9px;
  right: 0;
}
.bm_right li {
  position: relative;
}
.bm_right li.line::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #fff;
  position: absolute;
  top: 12px;
  right: 0;
}

/* slider */
.slider {
  width: 100%;
}
.hero .swiper-wrapper {
  width: 100%;
  height: 600px;
}
.slider .ss1 {
  height: inherit;
  background: url(../img/main_slider01.webp) no-repeat top center;
  background-size: cover;
}
.slider .ss2 {
  height: inherit;
  background: url(../img/main_slider02.webp) no-repeat top center;
  background-size: cover;
}
.slider .ss3 {
  height: inherit;
  background: url(../img/main_slider03.webp) no-repeat top center;
  background-size: cover;
}
.slider .ss4 {
  height: inherit;
  background: url(../img/main_slider04.webp) no-repeat top center;
  background-size: cover;
}
.slider .ss5 {
  height: inherit;
  background: url(../img/main_slider05.webp) no-repeat top center;
  background-size: cover;
}
.slider .ss6 {
  height: inherit;
  background: url(../img/main_slider06.webp) no-repeat top center;
  background-size: cover;
}
.slider .ss7 {
  height: inherit;
  background: url(../img/main_slider07.webp) no-repeat top center;
  background-size: cover;
}
.slider .ss8 {
  height: inherit;
  background: url(../img/main_slider08.webp) no-repeat top center;
  background-size: cover;
}
.slider h2 {
  font-size: 62px;
  font-weight: 500;
  margin-top: 200px;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #fff;
  position: relative;
}
.slider h2 em {
  display: block;
  font-weight: 100;
  font-size: 59px;
}
.slider p {
  color: #fff;
  font-size: 25px;
  padding-top: 50px;
}
.slider h2::after {
  content: "";
  width: 380px;
  height: 1px;
  background: #ffffff93;
  position: absolute;
  bottom: -35px;
  left: 0;
}

/* Swiper 색깔 효과 */
.hero .swiper-button-next,
.hero .swiper-button-prev {
  color: #fff;
}
.hero .swiper-horizontal > .swiper-pagination-bullets,
.hero .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 10px;
  }
}
.hero .swiper-pagination-bullet-active {
  background: #797979;
}

/* 미디어 쿼리 */
@media (max-width: 1290px) {
  .container {
    width: 100%;
  }
  #banner {
    padding-top: 58px;
  }
}
@media (max-width: 1024px) {
  .banner_menu {
    justify-content: flex-end;
    top: 15px;
  }
  .bm_left {
    display: none;
  }
  .bm_right ul:nth-child(1) {
    display: none;
  }
}
@media (max-width: 960px) {
  .hero .swiper-wrapper {
    height: 500px;
  }
  .slider h2 {
    margin-top: 160px;
    margin-left: 15px;
    font-size: 37px;
  }
  .slider h2 em {
    font-size: 34px;
  }
  .slider p {
    font-size: 20px;
    padding-top: 35px;
    margin-left: 15px;
  }
  .slider h2::after {
    width: 250px;
    bottom: -15px;
  }
}
@media (max-width: 768px) {
  .bm_right ul:nth-child(2) li.white a,
  .bm_right ul:nth-child(2) li.purple a {
    width: 65px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 7px;
    margin-left: 10px;
  }
  .bm_right ul:nth-child(2) li.white a:hover,
  .bm_right ul:nth-child(2) li.purple a:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .hero .swiper-wrapper {
    height: 400px;
  }
  .slider h2 {
    margin-top: 140px;
    font-size: 24px;
    margin-left: 10px;
  }
  .slider h2 em {
    font-size: 20px;
  }
  .slider p {
    font-size: 14px;
    padding-top: 25px;
    margin-left: 10px;
  }
  .slider h2::after {
    width: 150px;
    bottom: -15px;
  }
}

@media (max-width: 480px) {
  .hero .swiper-wrapper {
    height: 200px;
  }
  .slider h2 {
    margin-top: 60px;
  }
}
@media (max-width: 320px) {
}
