header {
  width: 100%;
  height: 70px;
  transition: all 0.2s;
  position: fixed;
  top: 0;
  z-index: 9;
}

header.active {
  background-color: #fff;
}
.inhedaer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_left_wrap {
  height: 100%;
}
.header_left {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.logo {
  width: 142px;
}
.logo_img {
  width: 100%;
  top: 0%;
  left: 0;
}
.logo-hover {
  display: none;
}
.nav {
  height: 100%;
}
.nav ul {
  display: flex;
  align-items: center;

  height: 100%;
}
.nav_list,
.nav_list a {
  padding: 0 15px;
  height: 100%;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header_right_part_img {
  width: 30px;
  top: 0;
  display: none;
}
.header_right_part_img-white {
  position: relative;
  display: block;
}
.headerMenu {
  height: auto;
  overflow: hidden;
  background-color: #fff;
}

/* headerMenu */
.headerMenu {
  width: 100%;
  height: auto;
}
.headerMenu .container {
  padding: 48px 100px;
}
.headerMenu_wrap {
  display: flex;
  align-content: center;
  justify-content: space-between;
  gap: 30px;
}
.menuTitle {
  flex: 1;

  position: relative;
}
.menuTitle:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.384);
  right: 0;
  top: 0;
}
.menuTitle {
  flex: 0.8;
}
.gnb,
.gnb2 {
  display: none;
}
.gnb1_wrap {
  flex: 0.7;
}
.gnb2_wrap {
  flex: 0.7;
}
.headerMenu_content {
  flex: 1;
}
.headerSlider {
  max-width: 417px;
  flex: 2;
}
.header_slide_wrap {
  width: 100;
  height: 100%;
  overflow: hidden;
}
.slide_imgwrap {
  position: relative;
}
.slide_img {
  width: 100%;
}
.slide_text {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  left: 15px;
}
.slide_text_new {
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid #fff;
  font-weight: bold;
  color: #fff;
  margin-right: 5px;
}
.slide_text_text {
  font-size: 12px;

  color: #fff;
}
.menuTitle_title_h {
  color: #f02c2c;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.7px;
  position: absolute;
  display: none;
}
.gnb_list,
.gnb2_list,
.gnb2_list_list {
  padding: 5px 0px;
  cursor: pointer;
}
.gnb2_list_list {
  padding-left: 15px;
}
.gnb_list,
.gnb_list a {
  font-size: 14px;
  font-weight: 300;
}
.gnb_product {
  position: relative;
}
.gnb_product:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.384);
  right: 0;
  top: 0;
}
/* gnb2 */

.gnb2_list,
.gnb2_list a,
.gnb2_list_list,
.gnb2_list_list a {
  font-size: 14px;
  font-weight: 300;
  color: #101010;
}

/* headerMenu_content */
header > .container {
  z-index: 1;
  position: relative;
}
.headerMenu {
  position: absolute;
  z-index: 0;
  top: 70px;
  height: 0;
  overflow: hidden;
}
.headerMenu_recommend {
  padding: 5px 0;
}
.headerMenu_recommend:first-child {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
.recommend_title_h {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.7px;
}
.headerMenu_recommend-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.recommend_arrow {
  width: 30px;
  height: 30px;
}
.headerMenu_recommend-flex:hover .recommend_arrow {
  animation: recommendArrow 0.5s infinite linear alternate;
}
.headerMenu_recommend_text_p {
  font-size: 14px;
  letter-spacing: -0.7px;
  line-height: 22px;
  color: #707070;
  word-break: keep-all;
}
/* 채팅상담버튼 */
.remodel {
  position: fixed;
  bottom: 5%;
  right: 50px;
  width: 200px;
  height: 50px;
  border-radius: 50px;
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
  gap: 10px;
  background-color: #fff;
  z-index: 1;
  transition: all 0.2s;
}
.remodel a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remodel_p {
  font-size: 16px;
  color: #010101;
  transition: all 0.2s;
}
.remodel_img {
  width: 30px;
  height: 30px;
  background: url(/asset/img/icons/icon-chat-black.png) no-repeat center/cover;
  transition: all 0.2s;
}

.mobMenuBtn {
  display: none;
}
@keyframes recommendArrow {
  0% {
    transform-origin: left;
    transform: scaleX(0.9);
  }
  100% {
    transform: scaleX(1);
  }
}
.mobMenu {
  display: none;
}
@media all and (hover: hover) {
  header:hover {
    background-color: #fff;
  }
  header:hover .logo-nonhover {
    display: none;
  }
  header:hover .logo-hover {
    display: block;
  }
  header:hover .nav_list,
  header:hover .nav_list a {
    color: #101010;
  }
  header:hover .header_right_part_img-white {
    display: none;
  }
  header:hover .header_right_part_img-black {
    display: block;
  }
  .header_right_part:hover .header_right_part_img-black {
    display: none;
  }
  .header_right_part:hover .header_right_part_img-hover {
    display: block;
  }
  .remodel:hover {
    background-color: #010101;
  }
  .remodel:hover .remodel_p {
    color: #fff;
  }
  .remodel:hover .remodel_img {
    background: url(/asset/img/icons/icon-chat-white.png) no-repeat center/cover;
  }
}

@media all and (max-width: 1279px) {
  header {
    background-color: #fff;
  }
  header:hover {
    background-color: #fff;
  }
  .logo-nonhover {
    display: none;
  }
  .logo-hover {
    display: block;
  }
  .header_right {
    gap: 10px;
  }
  .header_right_part_img-black {
    display: block;
  }
  .header_right_part_img-white {
    display: none;
  }
  .header_right_part_img-hover {
    display: none;
  }
  header .container {
    padding: 0 10px;
  }
  .header_right_part_img-menu {
    display: block;
  }
  .header_right_part_img-close {
    display: none;
  }
  .mobMenuBtn,
  .mobMenu {
    display: block;
  }
  .mobMenuBtn_img {
    display: none;
  }
  .mobMenuBtn_img.active {
    display: block;
  }
  .nav {
    display: none;
  }
  .header_right_part:nth-child(2),
  .header_right_part:nth-child(3) {
    display: none;
  }
  .mobMenu {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;

    transform: translate(0, -100%);
  }
  .mobMenu.active {
    transform: translate(0, 0%);
  }
  .mobMenu_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobMenu_main {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 0 40px 15px;
  }
  .mobMenu_list {
    margin-bottom: 10px;
  }
  .mobMenu_list a {
    font-size: 22px;
    color: #333;
    letter-spacing: -0.7px;
    font-weight: 500;
  }
  .mobMenu_ul2_list {
    margin-bottom: 10px;
  }
  .mobMenu_ul2_list a {
    font-size: 15px;
    color: #707070;
    letter-spacing: -0.7px;

    font-weight: 400;
  }
  .mobMenu_sns {
    width: 100%;
    border-top: 1px solid #8d8d8d;
  }
  .mobMenu_sns_ul {
    display: flex;
    width: 100%;

    align-items: center;
  }
  .mobMenu_sns_list {
    width: 40px;
  }
}

@media all and (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
  .remodel {
    right: 15px;
  }
}
