.show-default {
  display: block !important;
}

.hide-default {
  display: none !important;
}

.header {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.header-logo {
  display: inline-block;
  width: 126px;
  height: 43px;
}

.gnb {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 40px;
}
.gnb > div {
  position: relative;
}

.gnb-depth1 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Manrope";
  text-transform: uppercase;
}
.gnb-depth1.active {
  color: #6e2f94;
}

.gnb-depth2 {
  position: absolute;
  z-index: 10;
  background-color: #fff;
  padding: 20px;
  left: 50%;
  top: 30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 12px;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  display: none;
}
.gnb-depth2 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px 0;
}
.gnb-depth2 > div > a {
  font-size: 14px;
  font-weight: 700;
  font-family: "Manrope";
}
.gnb-depth2 > div > a:hover {
  color: #6e2f94;
}

.lang {
  margin-left: 40px;
  padding: 15px;
  background-color: #f2f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lang > a {
  color: #6e2f94;
  font-family: "Manrope";
}
.lang > a:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 10px;
  margin: 0 10px 0 8px;
  background-color: #6e2f94;
  display: inline-block;
}
.lang > a.active {
  font-weight: 800;
}

.footer {
  background: #f6f6f6;
  padding: 60px 0;
}
.footer address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 17px 0;
}
.footer address p,
.footer address a {
  color: #4b4b4b;
  font-size: 16px;
  font-style: normal;
  font-family: Manrope;
  padding-left: 36px;
  background-size: 24px;
  background-repeat: no-repeat;
  display: block;
  min-height: 24px;
}
.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-logo {
  display: inline-block;
  width: 126px;
  height: 43px;
  margin-bottom: 26px;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  gap: 0 25px;
}
.footer-nav > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer-nav p {
  color: #000;
  font-family: Manrope;
  font-weight: 700;
  letter-spacing: 0.28px;
}
.footer-nav a {
  color: #4b4b4b;
  font-family: Manrope;
  line-height: 121.429%;
  letter-spacing: 0.28px;
}
.footer-nav a:hover {
  color: #6e2f94;
}

.footer-copy {
  margin-top: 75px;
  padding-top: 25px;
  border-top: 1px solid #e1e1e1;
  color: #7d7d7d;
  font-family: Manrope;
  letter-spacing: 0.28px;
  width: 100%;
}

.sidebar {
  display: none;
}

@media all and (max-width: 1400px) {
  .footer-nav {
    width: 100%;
    margin-top: 60px;
  }
  .footer-copy {
    margin-top: 60px;
  }
}
@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }
  .hide-1024 {
    display: none !important;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 998;
    border-bottom: 1px solid #eee;
  }
  .header .lang,
  .header .gnb {
    display: none;
  }
  .header .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hamburger-btn {
    width: 40px;
  }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    z-index: 9999;
  }
  .sidebar .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow-y: scroll;
    max-height: 100vh;
  }
  .sidebar .gnb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  .sidebar .gnb > div {
    border-bottom: 1px solid #eee;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .sidebar .gnb-depth1 {
    font-size: 42px;
    padding-right: 50px;
    position: relative;
    display: inline-block;
    font-family: Montserrat;
    font-weight: 600;
  }
  .sidebar .gnb-depth1::before {
    content: "";
    background-image: url(/assets/images/common/arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 19px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sidebar .gnb-depth1.active {
    color: #6e2f94;
  }
  .sidebar .gnb-depth1.active::before {
    background-image: url(/assets/images/common/arrow_active.svg);
  }
  .sidebar .gnb-depth2 {
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    border: none;
    margin-top: 20px;
  }
  .sidebar .gnb-depth2 > div > a {
    font-size: 28px;
    font-family: Montserrat;
  }
  .sidebar .lang {
    margin-left: 0;
    display: inline-block;
    width: auto;
    margin-top: 50px;
  }
  .sidebar .lang > a {
    font-size: 24px;
  }
  .sidebar .lang > a:not(:last-child)::after {
    height: 20px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
    margin-left: 12px;
  }
  .sidebar-top {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 50px;
    width: 100%;
  }
  .sidebar-top .close-btn {
    width: 30px;
  }
}
@media all and (max-width: 750px) {
  .show-750 {
    display: block !important;
  }
  .hide-750 {
    display: none !important;
  }
  .sidebar-top,
  .header {
    height: 18.667vw;
  }
  .header-logo {
    width: 31.467vw;
    height: auto;
  }
  .hamburger-btn {
    width: 6.4vw;
  }
  .sidebar .inner {
    padding-bottom: 10.667vw;
  }
  .sidebar-top .close-btn {
    width: 4vw;
  }
  .sidebar-top {
    margin-bottom: 12vw;
  }
  .sidebar .gnb-depth1 {
    font-size: 6.4vw;
    padding-right: 6.4vw;
  }
  .sidebar .gnb-depth1::before {
    width: 3.2vw;
    height: 1.6vw;
  }
  .sidebar .gnb-depth2 > div > a {
    font-size: 4vw;
    font-weight: 500;
  }
  .sidebar .gnb-depth2 {
    margin-top: 8.533vw;
  }
  .sidebar .gnb-depth2 > div {
    gap: 5.333vw 0;
  }
  .sidebar .gnb > div {
    margin-bottom: 6.933vw;
    padding-bottom: 6.933vw;
  }
  .sidebar .lang {
    padding: 4vw;
    margin-top: 0;
  }
  .sidebar .lang > a {
    font-size: 3.733vw;
  }
  .sidebar .lang > a:not(:last-child)::after {
    height: 3.2vw;
  }
  .footer {
    padding: 13.333vw 0 8vw;
  }
  .footer-logo {
    width: 37.333vw;
    height: auto;
    margin-bottom: 8.533vw;
  }
  .footer address p,
  .footer address a {
    font-size: 3.467vw;
    background-size: 5.6vw;
    padding-left: 9vw;
  }
  .footer address {
    gap: 4.267vw 0;
  }
  .footer-nav {
    margin-top: 8vw;
    padding-top: 8vw;
    border-top: 1px solid #e1e1e1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10.933vw 0;
  }
  .footer-nav > div {
    gap: 5.333vw 0;
  }
  .footer-nav > div:last-child{
    margin-top: -67vw;
  }
  .footer-nav p {
    font-size: 3.733vw;
  }
  .footer-nav a {
    font-size: 3.467vw;
  }
  .footer-copy {
    margin-top: 8vw;
    padding-top: 8vw;
    font-size: 3.2vw;
  }
}

.blind {display:none;}