/* ======================================================================================================================================================================== */
/* ============================================================ header style start (yangyunji) =========================================================================== */
/* ======================================================================================================================================================================== */

nav {
  width: 100%;
}
.spinner-master input[type="checkbox"] {
  display: none;
}

/* ==================================== menu (PC) ============================================= */
#header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  transition: 0.5s ease-out;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
#header.on {
  transition: all 0.5s;
  background-color: none;
}
#header:not(.on) {
  background: #00000063;
  box-shadow: 5px 5px 20px -22px;
}

#header #logo img {
  width: 260px;
  height: auto;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#header a {
  color: #fff;
}
.header-banner {
  position: relative;
}

/* ============================== Mobile size : 1200px ============================== */

@media screen and (max-width: 1200px) {
  #header,
  #header:not(.on) {
    background: #fff;
    box-shadow: 5px 5px 20px -22px;
  }
  #header a {
    color: inherit;
  }
  #main {
    margin-top: 90px;
  }
}

.mobile-gnb,
#m_logo {
  display: none;
}

/* ===================== menu ===================== */
.menu-wrap {
  padding: 10px 0;
  position: relative;
}
.menu {
  display: flex;
  justify-content: space-between;
  height: 70px;
  transition: all ease 0.3s;
  max-width: 1800px !important;
}
#logo {
  height: 70px;
  padding-left: 20px;
}
#phone-call {
  position: absolute;
  top: 13px;
  left: 8px;
  display: none;
}
#phone-call img {
  max-width: 30px;
}

/* 1depth */
.menu .dropdown {
  display: flex;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  justify-content: center;
}
.menu .dropdown > li {
  text-align: center;
  position: relative;
  height: 70px;
  padding: 0 30px;
}
.menu .dropdown > li:hover {
  background-color: #fff;
  transition: all 0.5s ease;
}
.menu .dropdown > li:hover * {
  color: #333 !important;
}
.menu .dropdown > li > a {
  display: inline-block;
  line-height: 70px;
}

/* 2depth */
.menu .dropdown ul li {
  padding: 8px 0;
}
.menu .dropdown ul li a {
  position: relative;
  display: inline-block;
}
.menu .dropdown ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
}
.menu .dropdown ul li:hover a::after {
  width: 100%;
  transition: all 0.3s ease;
}

/* 언어 선택 */
.lang {
  top: 15px;
  right: 30px;
  position: absolute;
  display: flex;
  gap: 20px;
}
.lang img {
  height: 33px;
  transition: all 0.2s;
}
.lang a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.lang a:hover span {
  transition: all 0.2s;
}
.lang a:hover img {
  filter: brightness(0.7);
}
.lang a:hover span {
  font-weight: bold;
}

.menu-lang {
  display: none;
}

@media screen and (max-width: 1200px) {
  .lang {
    display: none;
  }

  .menu-lang {
    display: block;
  }
  .menu-lang a {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }
  .menu-lang a img {
    height: 20px;
  }
}

/* ================== sub-menu ===================== */
/* tab-menu */
.tab-menu-wrap {
  position: relative;
  height: 50px;
}
.tab-menu {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}
.tab-menu * {
  font-size: 15px;
}
.tab-menu::before {
  content: "";
  background-color: #fff;
  display: block;
  width: 100%;
  position: absolute;
  height: 50px;
  z-index: -4;
  left: 0;
  top: 0;
  border-bottom: 1px solid #dcdcdc;
}
.tab-menu .home-btn {
  display: inline-block;
  padding: 15px 15px;
  text-align: left;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  height: 50px;
}
.tab-menu .home-btn img {
  width: 50px;
  height: auto;
}
.tab-menu .inner div p.btn:hover,
.tab-menu .inner {
  display: flex;
}
.tab-menu .inner div {
  width: 100%;
}
.tab-menu .inner div ul {
  cursor: pointer;
  position: relative;
  width: 100%;
}
.tab-menu .inner div p.btn {
  display: flex;
  align-items: center;
  min-height: 50px;
  position: relative !important;
  padding: 12px 10px !important;
  border-right: 1px solid #dcdcdc !important;
  cursor: pointer;
}
.tab-menu .inner div p.btn::after {
  transition: all ease 0.5s;
  transform: translate(0, -50%);
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  width: 22px;
  height: 22px;
  background: url(../img/sub_navi_off.png) 0 0 no-repeat;
}
.tab-menu .inner div:hover p.btn::after {
  background: url(../img/sub_navi_on.png) 0 0 no-repeat;
  transition: all ease 0.5s;
}
.tab-menu .inner div ul {
  display: none;
  border: 1px solid #dcdcdc;
}
.tab-menu .inner div ul li a {
  display: block;
  padding: 7px 10px;
  background-color: #fff;
  transition: all 0.2s;
}
.tab-menu .inner div ul li a:hover {
  background-color: #0c2b64;
  color: #fff;
}

/* ============================== Mobile size : 1200px ============================== */

@media screen and (max-width: 1200px) {
  .menu-wrap {
    text-align: center;
    padding: 0;
  }
  #m_logo {
    display: inline-block;
    padding: 10px 0;
    text-align: center;
  }
  #m_logo img {
    width: 180px;
  }
  #logo {
    display: none;
  }
  #phone-call {
    display: block;
  }
  .menu {
    display: none;
    padding: 0 !important;
  }
  .menu .dropdown {
    max-width: 100%;
  }
  .menu.active {
    display: block;
    background: #fff;
    height: 100%;
  }
  .menu.active,
  .dropdown ul.active {
    max-height: 55em;
  }

  /* ==================================== menu (Mobile) ============================================= */
  /* top-menu */
  .mobile-gnb.active {
    display: flex;
    background: #525252;
    color: #fff;
  }
  .mobile-gnb li {
    font-size: 15px;
    width: 50%;
    text-align: center;
    height: 45px;
    line-height: 45px;
  }
  .mobile-gnb li a {
    color: #fff;
  }

  /* menu style all */
  #menu:hover {
    height: 100%;
  }
  #menu .dropdown {
    display: block;
  }
  #menu .dropdown:hover::before {
    display: none;
  }
  #menu .dropdown > li {
    height: 100%;
  }
  #menu .dropdown > li:hover * {
    color: #111;
  }
  #menu .dropdown > li:hover {
    height: auto;
    background-color: #fff;
  }
  #menu .dropdown > li > a {
    position: relative;
    line-height: 1.5;
    display: block;
    padding: 12px 0;
  }
  #menu .dropdown > li > a.active:after {
    content: "-";
    right: 12px;
  }

  #menu .dropdown ul {
    border-top: 1px solid #ddd;
    background: #eee;
  }
  #menu .dropdown ul li {
    padding: 0;
  }
  #menu .dropdown ul li:not(:first-child) {
    border-top: 1px solid #fff;
  }
  #menu .dropdown ul li:last-child {
    border-bottom: 1px solid #ddd;
  }
  #menu .dropdown ul li a {
    width: 100%;
    display: block;
    height: 100%;
    padding: 8px 10px;
  }
  #menu .dropdown ul li a::after {
    display: none;
  }
  #menu .dropdown ul li:hover a {
    background: #0c2b64;
    color: #fff;
    transition: all 0.1s ease;
  }

  /* 3depth style */
  .menu,
  .dropdown ul {
    overflow: hidden;
    max-height: 0;
  }
  .dropdown ul {
    display: inherit;
    position: relative;
    left: auto;
    top: auto;
    border: none;
    padding: 0px;
  }

  /* menu button style */
  .spinner-master * {
    transition: all 0.3s;
    box-sizing: border-box;
  }
  .spinner-master {
    position: absolute;
    margin: 10px;
    height: 30px;
    width: 30px;
    right: 0;
    top: 0px;
  }
  .spinner-master label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
  }
  .spinner-master .spinner {
    position: absolute;
    height: 4px;
    width: 100%;
    padding: 0;
    background-color: #ccc;
  }
  .spinner-master .diagonal.part-1 {
    position: relative;
    float: left;
  }
  .spinner-master .horizontal {
    position: relative;
    float: left;
    margin-top: 4px;
  }
  .spinner-master .diagonal.part-2 {
    position: relative;
    float: left;
    margin-top: 4px;
  }
  .spinner-master input[type="checkbox"]:checked ~ .spinner-spin > .horizontal {
    opacity: 0;
  }
  .spinner-master
    input[type="checkbox"]:checked
    ~ .spinner-spin
    > .diagonal.part-1 {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }
  .spinner-master
    input[type="checkbox"]:checked
    ~ .spinner-spin
    > .diagonal.part-2 {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-top: -12px;
  }
}

/* ============================== Mobile size : 1024px ============================== */
@media screen and (max-width: 1024px) {
  .tab-menu .inner {
    padding: 0;
  }
}

/* ============================== Mobile size : 769px ============================== */
@media screen and (max-width: 769px) {
  .tab-menu * {
    font-size: 14px;
  }
  .tab-menu .inner div p.btn:after {
    width: 18px;
    height: 18px;
    background-size: cover;
  }
  .tab-menu .inner div:hover p.btn:after {
    width: 18px;
    height: 18px;
    background-size: cover;
  }
}

@media screen and (max-width: 425px) {
  #menu .dropdown > li > a {
    padding: 8px 0;
  }
  #menu .dropdown ul li a {
    padding: 6px 10px;
    font-size: 15px;
  }

  #m_logo {
    padding: 12px 0;
  }
  #m_logo img {
    width: 170px;
  }

  .tab-menu * {
    font-size: 12px;
  }
}
