@charset "UTF-8";
/* ELLIPSIS */
/*************** PUBLIC ***************/
/* #B1005D -> ci컬러로 교체 */
::-webkit-scrollbar {
  display: none;
}

::selection {
  background-color: #b1005d;
  color: #fff;
}

body::-webkit-scrollbar {
  width: 5rem;
  display: block;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: #b1005d;
}

/* LAYOUT */
.container {
  width: 100%;
  height: 100%;
  position: relative;
  padding-left: 100rem !important;
  padding-right: 100rem !important;
}
.container.ty2 {
  padding-left: 60rem !important;
  padding-right: 60rem !important;
}

.inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex_sb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex_sb.top {
  align-items: flex-start;
}
.flex_sb.btm {
  align-items: flex-end;
}
.flex_sb.jtop {
  justify-content: flex-start;
}
.flex_sb.jbtm {
  justify-content: flex-end;
}

.flex_gr {
  flex-grow: 1;
}

.p_center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.f_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kor {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.eng {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* TEXT */
strong {
  font-weight: 500;
}

em {
  color: #b1005d;
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 1px #b1005d;
}

.vh100 {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/* BG용 IMG : 이미지태그를 배경으로 쓸때 쓰임 */
.cover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}

/* rotate 애니메이션 */
.rotate {
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* [ ● TXTXTXTXTXT ] 형태 텍스트 & 레이아웃 */
.dotTxt,
.dotList > li {
  position: relative;
  padding-left: 18rem;
}

.dotTxt::before,
.dotList > li::before {
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  background-color: #b1005d;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 8rem;
}

/* 팝업 
-----------------------------------
<div class="popup_wrap">
	<div class="popup">
		<div class="close pop_btn">close</div>
		<div>컨텐츠 박스</div>
	</div>
	<div class="dim pop_btn"></div>
</div>
------------------------------------ 
BODY 최상단에 삽입하세요.
*/
.popup_wrap {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.5s ease;
  pointer-events: none;
  touch-action: none;
  z-index: 9999999;
}
.popup_wrap .pop_btn {
  cursor: pointer;
}
.popup_wrap .popup {
  max-width: calc(100% - 200rem);
  max-height: calc(100% - 100rem);
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 5;
  transition: 1s ease;
  opacity: 0;
  width: 100%;
  aspect-ratio: 1720/948;
}
.popup_wrap .popup .close {
  position: absolute;
  z-index: 1;
  right: 30rem;
  top: 30rem;
  width: 40rem;
  height: 40rem;
  background: url(https://doochpumpvn.com/wp-content/uploads/2025/08/close_white_icon.svg) center center no-repeat;
  background-size: 100%;
}
.popup_wrap .popup .close span {
  display: none;
}
.popup_wrap .popup .videoSrc {
  width: 100%;
  height: 100%;
}
.popup_wrap .popup .videoSrc * {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.popup_wrap .dim {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s ease;
}
.popup_wrap.on {
  opacity: 1;
  pointer-events: auto;
  touch-action: auto;
}
.popup_wrap.on .popup {
  top: 50%;
  opacity: 1;
}
.popup_wrap.on .dim {
  opacity: 1;
}

/* WAVE */
.wave {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.wave > * {
  flex-shrink: 0;
  animation: wave 70s linear infinite;
}
.wave > * + * {
  margin-left: 20rem;
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.wave.reverse > * {
  animation-direction: reverse;
}

/* TEXT EFEECT */
.fx {
  display: block;
  overflow: hidden;
}
.fx b {
  display: block;
  transform: translateY(130%);
  transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.fx:nth-child(2) b {
  transition-delay: 0.1 s;
}
.fx:nth-child(3) b {
  transition-delay: 0.2 s;
}
.fx:nth-child(4) b {
  transition-delay: 0.3 s;
}
.fx:nth-child(5) b {
  transition-delay: 0.4 s;
}
.fx:nth-child(6) b {
  transition-delay: 0.5 s;
}
.fx:nth-child(7) b {
  transition-delay: 0.6 s;
}
.fx:nth-child(8) b {
  transition-delay: 0.7 s;
}
.fx:nth-child(9) b {
  transition-delay: 0.8 s;
}
.fx:nth-child(10) b {
  transition-delay: 0.9 s;
}
.fx:nth-child(11) b {
  transition-delay: 1 s;
}

.aos-animate > .fx b,
.aos-animate.fx b,
.swiper-slide-active .fx b {
  transform: translateY(0);
}

/* ETC */
.wImg {
  filter: brightness(0) invert(1);
} /* 이미지 하얀색으로 만들기*/
.bImg {
  filter: brightness(0);
} /* 이미지 검정색으로 만들기 */
.tcX {
  touch-action: none;
  pointer-events: none;
}

.remImg {
  display: none;
}

/*************** HEADER ***************/
#header {
  font-size: 16rem;
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  transition: 0.5s ease;
  background: #fff; /*transform: translateY(-100%);*/
}
#header.load, #header.nav-up {
  transform: translateY(0);
}
#header.nav-down {
  transform: translateY(-100%);
}
#header .top {
  background-color: #404041;
  height: 40rem;
  line-height: 40rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  z-index: 99999;
}
#header .top > p {
  text-align: center;
}
#header .top .lang {
  position: absolute;
  right: 100rem;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 19rem;
  z-index: 3;
}
#header .top .lang p {
  cursor: context-menu;
}
#header .top .lang .langList {
  position: absolute;
  width: max-content;
  top: 100%;
  background-color: #404041;
  color: #fff;
  padding: 0 25rem 0 19rem;
  right: -5rem;
  text-align: right;
  border-radius: 0 0 15rem 15rem;
  display: none;
  z-index: 1;
}
#header .top .lang img {
  position: absolute;
  width: 13rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: top;
}
#header .top .lang:hover img {
  transform: rotate(180deg) translateY(-50%);
}
#header .top .lang:hover .langList {
  display: block;
}
#header .gnbWrap {
  display: flex;
  justify-content: space-between;
  height: 68rem;
  position: relative;
  border-bottom: 1rem solid #404041;
  background-color: #fff;
}
#header .gnbWrap #gnb {
  font-size: 18rem;
}
#header .gnbWrap #gnb > ul {
  display: flex;
  align-items: center;
  height: 100%;
}
#header .gnbWrap #gnb > ul > li {
  height: 100%;
}
#header .gnbWrap #gnb > ul > li > a {
  height: 100%;
  line-height: 68rem;
  position: relative;
}
#header .gnbWrap #gnb > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  width: 0;
  height: 3rem;
  background-color: #b1005d;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}
#header .gnbWrap #gnb > ul > li:hover > a::after {
  opacity: 1;
  width: 100%;
  left: 0;
}
#header .gnbWrap #gnb > ul > li:hover .dep2 {
  display: flex;
  height: 79rem;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
#header .gnbWrap #gnb > ul > li + li {
  margin-left: 60rem;
}
#header .gnbWrap #gnb > ul > li .dep2 {
  position: absolute;
  height: 0;
  background-color: #fff;
  width: 100vw;
  left: 0;
  line-height: 79rem;
  font-size: 16rem;
  border-top: 1rem solid #404041;
  z-index: 1;
  overflow: hidden;
  transition: height 0.5s ease;
}
#header .gnbWrap #gnb > ul > li .dep2 > li:hover {
  color: #b1005d;
}
#header .gnbWrap #gnb > ul > li .dep2 > li + li {
  margin-left: 40rem;
}
#header .gnbWrap .logo {
  width: 99rem;
  transition: 1s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#header .gnbWrap .right {
  display: flex;
  align-items: center;
}
#header .gnbWrap .right .loginWrap {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 500;
}
#header .gnbWrap .right .loginWrap a + a {
  margin-left: 56rem;
}
#header .gnbWrap .right .allMenuBtn {
  width: 40rem;
  height: 12rem;
  position: relative;
  margin-left: 60rem;
  cursor: pointer;
}
#header .gnbWrap .right .allMenuBtn span {
  width: 100%;
  height: 2rem;
  background-color: #404041;
  position: absolute;
  transition: all 0.1s;
  top: 0;
}
#header .gnbWrap .right .allMenuBtn span:nth-child(2) {
  top: auto;
  bottom: 0;
}
#header .allMenuWrap {
  position: absolute;
  top: 108rem;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 68rem);
  height: 100%;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: all 0.3s;
}
#header .allMenuWrap .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
#header .allMenuWrap .inner .allMenu {
  height: auto;
  max-height: 100%;
  width: calc(100% - 758rem);
  padding: 85rem 100rem;
}
#header .allMenuWrap .inner .allMenu .allMenu_items {
  width: 100%;
}
#header .allMenuWrap .inner .allMenu .allMenu_items + .allMenu_items {
  margin-top: 60rem;
}
#header .allMenuWrap .inner .allMenu .allMenu_items .itemsTitle {
  padding-bottom: 10rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #404041;
}
#header .allMenuWrap .inner .allMenu .allMenu_items .itemsTitle .eng {
  margin-bottom: 9rem;
  font-size: 35rem;
  font-weight: 500;
  color: #404041;
  font-family: "Plus Jakarta Sans", sans-serif;
}
#header .allMenuWrap .inner .allMenu .allMenu_items .itemsTitle .kor {
  font-size: 15rem;
  font-weight: 400;
  color: #404041;
}
#header .allMenuWrap .inner .allMenu .allMenu_items .dep2 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 5rem;
}
#header .allMenuWrap .inner .allMenu .allMenu_items .dep2 li {
  margin: 15rem 0 0 45rem;
  flex-shrink: 1;
  min-width: 90rem;
}
#header .allMenuWrap .inner .allMenu .allMenu_items .dep2 li:nth-of-type(1) {
  margin-left: 0;
}
#header .allMenuWrap .inner .allMenu .allMenu_items .dep2 li a {
  font-size: 16rem;
  font-weight: 400;
  color: #404041;
}
#header .allMenuWrap .inner .allMenu .allMenu_items .dep2 li a:hover {
  color: #b1005d;
}
#header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 {
  justify-content: space-between;
}
#header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 li {
  width: 183rem;
  margin: 15rem 45rem 0 0;
  flex-shrink: 1;
}
#header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 li:nth-of-type(4n) {
  margin-right: 0;
}
#header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 li:nth-of-type(4n-3) {
  width: 162rem;
}
#header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 li:nth-of-type(4n-2) {
  width: 229rem;
}
#header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 li:nth-of-type(4n-1) {
  width: 249rem;
}
#header .allMenuWrap .inner .allMenu .allMenu_items.active .itemsTitle .eng {
  color: #b1005d;
}
#header .allMenuWrap .inner .menuMedia {
  width: 758rem;
  height: 100%;
  position: relative;
}
#header .allMenuWrap .inner .menuMedia .link {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
}
#header .allMenuWrap .inner .menuMedia .link * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#header .allMenuWrap .inner .menuMedia .link .menuMediaBtn {
  bottom: 70rem;
  right: 100rem;
  width: 60rem;
  height: 60rem;
  position: absolute;
  border-radius: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  background-image: url("https://doochpumpvn.com/wp-content/uploads/2025/08/customer_youtube.svg");
  background-position: center center;
  background-size: 20rem auto;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
#header .allMenuWrap .inner .menuMedia .link .menuMediaBtn:hover, #header .allMenuWrap .inner .menuMedia .link .menuMediaBtn.active {
  border: 1px solid #b1005d;
  background-color: #b1005d;
}
#header .allMenuWrap .inner .menuMedia .link.active {
  display: block;
}
#header.nav-down .allMenuWrap {
  height: 100vh;
}
#header.active .sub_gnb .allMenuBtn img.oBtn {
  display: none;
}
#header.active .sub_gnb .allMenuBtn img.cBtn {
  display: block;
}
#header.active .allMenuWrap {
  transform: translateX(0);
}
#header.active .gnbWrap .right .allMenuBtn span:first-of-type {
  top: 50%;
  transform: rotate3d(0, 0, 1, 15deg) translateY(-50%);
}
#header.active .gnbWrap .right .allMenuBtn span:last-of-type {
  top: 50%;
  bottom: auto;
  transform: rotate3d(0, 0, -1, 15deg) translateY(-50%);
}

/*************** FOOTER ***************/
#footer {
  background: #000;
  position: relative;
  /* quick */
}
#footer .footer_top {
  padding: 50rem 100rem;
  border-bottom: 1px solid #404041;
}
#footer .footer_top .footer_logo {
  width: 300rem;
}
#footer .footer_top .footer_logo img {
  width: 100%;
  object-fit: cover;
}
#footer .footer_infoList {
  border-bottom: 1px solid #404041;
  align-items: stretch;
}
#footer .footer_infoList > div {
  width: 389rem;
  padding: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-right: 1px solid #404041;
}
#footer .footer_infoList > div:last-of-type {
  border-right: 0;
}
#footer .footer_infoList > div p {
  font-size: 20rem;
  line-height: 1.1;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
#footer .footer_infoList > div span {
  margin-top: 20rem;
  font-size: 18rem;
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
}
#footer .footer_infoList .f_info {
  padding: 30rem 30rem 50rem 100rem;
  width: 632rem;
}
#footer .footer_infoList .f_info span {
  font-size: 15rem;
}
#footer .footer_infoList .f_tel .f_tel_email {
  margin-top: 20rem;
}
#footer .footer_infoList .f_customer {
  padding: 30rem 100rem 30rem 30rem;
  width: 510rem;
}
#footer .footer_btm {
  padding: 30rem 100rem;
}
#footer .footer_btm .footer_tp {
  font-size: 18rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#footer .footer_btm .footer_tp a:hover {
  text-decoration: underline;
}
#footer .footer_btm .footer_tp a + a {
  margin-left: 30rem;
}
#footer .footer_btm .footer_copyright {
  font-size: 18rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
#footer .dim {
  display: none;
}
#footer .quickWrap {
  right: 20rem;
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#footer .quickWrap .quick {
  width: 60rem;
  border-radius: 47rem;
  padding: 10rem 15rem;
  background: rgba(64, 64, 65, 0.7);
  margin-bottom: 10rem;
  transition: all 0.3s ease;
}
#footer .quickWrap .quick .quickList {
  width: 100%;
}
#footer .quickWrap .quick .quickList li + li {
  margin-top: 10rem;
}
#footer .quickWrap .quick .quickList li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#footer .quickWrap .quick .quickList li a img {
  width: 30rem;
  height: 30rem;
  object-fit: cover;
}
#footer .quickWrap .quick .quickList li a b {
  margin-left: 10rem;
  font-size: 0;
  letter-spacing: -0.14rem;
  font-weight: 500;
  color: #fff;
  width: 0;
  opacity: 0;
}
#footer .quickWrap .quick:hover {
  width: 170rem;
  border-radius: 15rem;
  padding: 10rem 15rem 10rem 10rem;
  background: rgba(177, 0, 93, 0.7);
}
#footer .quickWrap .quick:hover .quickList li a b {
  transition: all ease 0.2s 0.1s;
  opacity: 1;
  width: max-content;
  font-size: 14rem;
}
#footer .quickWrap #scrTop {
  width: 60rem;
  height: 60rem;
  font-size: 15rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #404041;
}
#footer .quickWrap #scrTop img {
  width: 12rem;
  height: 6rem;
  margin-bottom: 5rem;
}

@media screen and (min-width: 1001px) {
  .mo {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
  .container {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }
  .container.ty2 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }
  .dotTxt,
  .dotList > li {
    padding-left: 14rem;
  }
  .dotTxt::before,
  .dotList > li::before {
    top: 5rem;
  }
  .popup_wrap .popup {
    max-width: calc(100% - 20rem);
    max-height: calc(100% - 20rem);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    aspect-ratio: 320/176;
  }
  .popup_wrap .popup .close {
    position: absolute;
    right: 10rem;
    top: 10rem;
    width: 15rem;
    height: 15rem;
  }
  /*************** HEADER ***************/
  #header {
    font-size: 16rem;
    width: 100%;
  }
  #header .top {
    height: 25rem;
    line-height: 25rem;
  }
  #header .top > p {
    display: none;
  }
  #header .top .lang {
    right: 20rem;
    padding-right: 15rem;
  }
  #header .top .lang p {
    font-size: 12rem;
    line-height: 1;
    cursor: context-menu;
  }
  #header .top .lang .langList {
    top: 19rem;
    padding: 0 20rem 0 13rem;
    border-radius: 0 0 10rem 10rem;
  }
  #header .top .lang img {
    width: 10rem;
  }
  #header .top .lang a {
    font-size: 12rem;
  }
  #header .top .lang:hover img {
    transform: rotate(180deg) translateY(-50%);
  }
  #header .top .lang:hover a {
    display: block;
  }
  #header .gnbWrap {
    height: 40rem;
  }
  #header .gnbWrap #gnb {
    font-size: 18rem;
  }
  #header .gnbWrap #gnb > ul {
    display: flex;
    align-items: center;
    height: 100%;
  }
  #header .gnbWrap #gnb > ul > li {
    height: 100%;
  }
  #header .gnbWrap #gnb > ul > li > a {
    height: 100%;
    line-height: 68rem;
    position: relative;
  }
  #header .gnbWrap #gnb > ul > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1.5rem;
    width: 0;
    height: 3rem;
    background-color: #b1005d;
    z-index: 2;
    opacity: 0;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }
  #header .gnbWrap #gnb > ul > li:hover > a::after {
    opacity: 1;
    width: 100%;
  }
  #header .gnbWrap #gnb > ul > li:hover .dep2 {
    display: flex;
    height: 79rem;
  }
  #header .gnbWrap #gnb > ul > li + li {
    margin-left: 60rem;
  }
  #header .gnbWrap #gnb > ul > li .dep2 {
    position: absolute;
    height: 0;
    background-color: #fff;
    width: 100vw;
    left: 0;
    line-height: 79rem;
    font-size: 16rem;
    border-top: 1rem solid #404041;
    z-index: 1;
    overflow: hidden;
    transition: height 0.5s ease;
  }
  #header .gnbWrap #gnb > ul > li .dep2 > li:hover {
    color: #b1005d;
  }
  #header .gnbWrap #gnb > ul > li .dep2 > li + li {
    margin-left: 65rem;
  }
  #header .gnbWrap .logo {
    width: 57rem;
    left: 20rem;
    top: 50%;
    transform: translate(0, -50%);
  }
  #header .gnbWrap .right {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  #header .gnbWrap .right .loginWrap {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
  }
  #header .gnbWrap .right .loginWrap a {
    font-size: 13rem;
    font-weight: 500;
    color: #404041;
  }
  #header .gnbWrap .right .loginWrap a + a {
    margin-left: 20rem;
  }
  #header .gnbWrap .right .allMenuBtn {
    width: 30rem;
    height: 12rem;
    margin-left: 20rem;
  }
  #header .allMenuWrap {
    top: 65rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 65rem);
    min-height: 100vh;
    min-height: unset;
    overflow-y: auto;
  }
  #header .allMenuWrap .inner {
    width: 100%;
    height: max-content;
    position: relative;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  #header .allMenuWrap .inner .allMenu {
    height: auto;
    max-height: unset;
    width: 100%;
    padding: 30rem 20rem 60rem;
    overflow-y: unset;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items + .allMenu_items {
    margin-top: 50rem;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items .itemsTitle {
    padding-bottom: 15rem;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items .itemsTitle .eng {
    margin-bottom: 0;
    font-size: 25rem;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items .dep2 {
    width: 100%;
    padding-top: 0;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items .dep2 li {
    margin: 15rem 30rem 0 0;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items .dep2 li a {
    font-size: 15rem;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items .dep2 li:nth-of-type(1) {
    margin-left: 0;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(1) .dep2 li {
    min-width: unset;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 {
    justify-content: space-between;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 li {
    width: 100%;
    margin-right: 0;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 li:nth-of-type(4n-3), #header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 li:nth-of-type(4n-2), #header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(2) .dep2 li:nth-of-type(4n-1) {
    width: 100%;
  }
  #header .allMenuWrap .inner .allMenu .allMenu_items:nth-of-type(5) .dep2 li:nth-of-type(4) {
    margin-right: 0;
  }
  #header .allMenuWrap .inner .menuMedia {
    width: 100%;
    height: 230rem;
  }
  #header .allMenuWrap .inner .menuMedia .link {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
  }
  #header .allMenuWrap .inner .menuMedia .link * {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #header .allMenuWrap .inner .menuMedia .link .menuMediaBtn {
    bottom: 20rem;
    right: 20rem;
    width: 40rem;
    height: 40rem;
    background-size: 20rem;
  }
  #header.nav-down .allMenuWrap {
    height: 100vh;
  }
  #header.active .sub_gnb .allMenuBtn img.oBtn {
    display: none;
  }
  #header.active .sub_gnb .allMenuBtn img.cBtn {
    display: block;
  }
  #header.active .allMenuWrap {
    transform: translateX(0);
  }
  #header.active .gnbWrap .right .allMenuBtn span:first-of-type {
    top: 50%;
    transform: rotate3d(0, 0, 1, 15deg) translateY(-50%);
  }
  #header.active .gnbWrap .right .allMenuBtn span:last-of-type {
    top: 50%;
    bottom: auto;
    transform: rotate3d(0, 0, -1, 15deg) translateY(-50%);
  }
  /*************** FOOTER ***************/
  #footer {
    /* quick */
  }
  #footer .footer_top {
    padding: 30rem 22rem;
  }
  #footer .footer_top .footer_logo {
    width: 148rem;
  }
  #footer .footer_infoList {
    padding: 30rem 20rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #footer .footer_infoList > div {
    width: 100%;
    padding: 0;
    border-right: 0;
    margin-top: 30rem;
  }
  #footer .footer_infoList > div:first-of-type {
    margin-top: 0;
  }
  #footer .footer_infoList > div p {
    font-size: 15rem;
  }
  #footer .footer_infoList > div span {
    margin-top: 10rem;
    font-size: 15rem;
  }
  #footer .footer_infoList .f_info {
    padding: 0;
    width: 100%;
  }
  #footer .footer_infoList .f_info span {
    font-size: 15rem;
  }
  #footer .footer_infoList .f_tel .f_tel_email {
    margin-top: 15rem;
  }
  #footer .footer_infoList .f_customer {
    padding: 0;
    width: 100%;
  }
  #footer .footer_btm {
    padding: 0;
    flex-direction: column;
  }
  #footer .footer_btm .footer_tp {
    width: 100%;
    padding: 15rem 20rem;
    font-size: 15rem;
    letter-spacing: -0.15rem;
    border-bottom: 1px solid #404041;
  }
  #footer .footer_btm .footer_copyright {
    width: 100%;
    font-size: 13rem;
    padding: 15rem 20rem;
  }
  #footer .dim {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 999999;
  }
  #footer .quickWrap {
    top: auto;
    bottom: 20rem;
    right: 20rem;
    transform: translateX(0);
  }
  #footer .quickWrap .quick {
    width: 50rem;
    padding: 0;
    background: transparent;
  }
  #footer .quickWrap .quick .mo_quick_btn {
    width: 50rem;
    height: 50rem;
    border-radius: 100%;
  }
  #footer .quickWrap .quick .mo_quick_btn img {
    width: 100%;
    width: 100%;
    object-fit: cover;
  }
  #footer .quickWrap .quick .mo_quick_btn img.on {
    display: none;
  }
  #footer .quickWrap .quick .quickList {
    display: none;
    margin-bottom: 10rem;
  }
  #footer .quickWrap .quick .quickList li + li {
    margin-top: 5rem;
  }
  #footer .quickWrap .quick .quickList li a {
    width: 50rem;
    height: 50rem;
    border-radius: 100%;
    background: #010101;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #footer .quickWrap .quick .quickList li a img {
    width: 30rem;
    height: 30rem;
  }
  #footer .quickWrap .quick .quickList li a b {
    right: calc(100% + 10rem);
    font-size: 14rem;
    letter-spacing: -0.14rem;
    line-height: normal;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    display: block;
    margin-left: 0;
    opacity: 1;
    width: max-content;
  }
  #footer .quickWrap .quick .quickList li a b br {
    display: none;
  }
  #footer .quickWrap .quick:hover {
    width: 50rem;
    padding: 0;
    background: transparent;
  }
  #footer .quickWrap .quick:hover .quickList li a b {
    display: block;
  }
  #footer .quickWrap .quick.on .mo_quick_btn img.off {
    display: none;
  }
  #footer .quickWrap .quick.on .mo_quick_btn img.on {
    display: block;
  }
  #footer .quickWrap #scrTop {
    width: 50rem;
    height: 50rem;
  }
  #footer .quickWrap #scrTop img {
    margin-bottom: 3rem;
  }
}