#hd_pop > h2 {
  display: none;
}

.header_wrap {
  height: 70px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 75px;
  background-color: #000000;
}

header .logo {
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 60px;
  width: 173px;
  height: 34px;
  background-image: url(/img/layout/logo2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

header .logo a {
  display: block;
  height: 100%;
}
header .menu_box {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  height: 100%;
}
header .tel {
  gap: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}
header .tel a {
  color: #fff;
  display: block;
}

header .menu_list {
  color: #fff;
  display: flex;
  justify-content: center;
}

header .menu_list li {
  position: relative;
  margin-right: 40px;
}

header .menu_list li a {
  color: #fff;
  font-size: 18px;
}
header .menu_list li.active a {
  color: #bb1b21;
  position: relative;
}
body.open header .menu_list li.active a {
  color: #bb1b21;
}

header .menu_list li.active:before {
  content: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000000;
}
body.open header .menu_list li.active:before {
  background-color: #fff;
}

header .slide_btn {
  display: none;
}

.fixed_form_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #000;
  opacity: 1;
  height: 100px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.fixed_form_wrap .sec_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  max-width: 1430px;
  justify-content: center;
  gap: 40px;
}

.fixed_form_wrap .m1 {
  color: #fff;
  font-size: 22px;
  margin-bottom: -3px;
}

.fixed_form_wrap .m2 {
  color: #fff600;
  font-size: 24px;
}

.fixed_form_wrap .left {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #870000;
  height: 100%;
  padding: 0 0px 0 40px;
}
.fixed_form_wrap .left .logo {
  width: 30%;
}
.fixed_form_wrap .left .tel {
}
.fixed_form_wrap .form_box ul {
  display: flex;
  gap: 10px;
}

.fixed_form_wrap .form_box {
  color: #fff;
  height: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}

.fixed_form_wrap .form_box .cont {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.fixed_form_wrap .form_box ul input[type="text"] {
  padding: 0 10px;
  box-sizing: border-box;
  height: 40px;
}

.fixed_form_wrap .qk_send {
  background: #870000;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 0;
  font-size: 18px;
  padding: 0 20px;
  color: #fff;
}
.fixed_form_wrap .tc_agree {
  font-size: 14px;
}

.fixed_form_wrap #U_checkAgreement2 {
  margin: 0;
  margin-top: -3px;
  padding: 0;
}
/* 기본 모달 스타일 */
.fixed_form_wrap .modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

.fixed_form_wrap .modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 40px 40px;
  width: 80%;
  max-width: 1000px;
  box-sizing: border-box;
}
.fixed_form_wrap .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.fixed_form_wrap .close:hover,
.fixed_form_wrap .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.fixed_form_wrap .modal-content p {
  line-height: 2;
  font-size: 16px;
}

.fixed_form_wrap .modal-content h2 {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 30px;
}
.fixed_form_wrap .m_btn {
  display: none;
}
@media (max-width: 1000px) {
  header,
  .header_wrap {
    height: 60px;
  }
  header .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: 0;
    z-index: 1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    height: 35%;
  }
  header .tel {
    left: 15px;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    line-height: 1;
    width: auto;
    display: inline-block;
  }
  header .slide_btn {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  header .slide_btn .s1 {
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
  }
  header .menu_box {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    background: rgb(0 0 0);
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    box-shadow: -5px 0px 5px rgb(0, 0, 0, 0.1);
    overflow-y: auto;
    padding-top: 70px;
    box-sizing: border-box;
    padding-left: 20px;
  }
  body.open header .menu_box {
    right: 0px;
    opacity: 1;
  }

  header .menu_box ul {
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  header .menu_list li {
    margin: 0;
  }
  header .menu_list li a {
    font-size: 14px;
  }
  body.open header .menu_list li.active:before {
    content: none;
  }
  header .dim {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    opacity: 0;
    display: none;
    background: rgba(0, 0, 0, 0.5);
  }
  body.open header .dim {
    opacity: 1;
    display: block;
  }
  header .slide_close {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 15px;
    top: 30px;
    cursor: pointer;
  }

  header .slide_close:before,
  header .slide_close:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transform-origin: center;
  }

  header .slide_close:before {
    transform: rotate(45deg);
  }

  header .slide_close:after {
    transform: rotate(-45deg);
  }

  .fixed_form_wrap {
    box-sizing: border-box;
    padding: 0 20px 0 0;
    height: 70px;
  }

  .fixed_form_wrap .sec_inner {
    justify-content: space-between;
  }

  .fixed_form_wrap .left {
    padding: 0 20px;
  }
  .fixed_form_wrap .left .logo {
    display: none;
  }
  .fixed_form_wrap .form_box {
    display: none;
  }

  .fixed_form_wrap .m_btn {
    display: flex;
    background: #870000;
    height: 80%;
    padding: 0 30px;
    border-radius: 5px;
    border: 0;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    word-break: keep-all;
  }
  .fixed_form_wrap .m_btn a {
    color: #fff;
  }

  .fixed_form_wrap .m1 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .fixed_form_wrap .m2 {
    font-size: 18px;
  }

  #sec03 .swiper-button-next:after,
  #sec03 .swiper-button-prev:after {
    font-size: 18px;
  }
}
