@charset "UTF-8";

/* header */
.global_header {
  position: fixed;
  top: 0;
  z-index: 999999999;
  width: 100%;

  transition: 0.45s;
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.global_header.on {
  border-bottom: 1px solid #a9d3c9;
  background: #fff;
}
.global_header .gnb {
  width: 90%;
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  max-height: 80px;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.global_header .gnb .logo {
  position: relative;
  z-index: 9999999;
}
.global_header .gnb .logo img:first-child {
  display: none;
}
.global_header.on .gnb .logo img:first-child {
  display: block;
}
.global_header .gnb .logo img:last-child {
  display: block;
}
.global_header.on .gnb .logo img:last-child {
  display: none;
}

.global_header .gnb .nav {
  display: flex;
  gap: 1.5vw;
  align-items: center;
  transition: 0.45s;
  padding: 9px 0;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  position: relative;
}
.global_header.on .gnb .nav {
  color: #303030;
  font-weight: 500;
}
.global_header .gnb .nav_menu {
  box-sizing: border-box;
  padding: 10px 0;
}
.global_header .gnb .nav_menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.global_header .gnb .nav:after {
  display: block;
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  background: #E6622A;
  border-radius: 100%;
  bottom: 0;
  left: var(--w, 0);
  opacity: 1;
  transition: 0.6s all ease;
}
.global_header .gnb .nav.off:after {
  opacity: 0;
}

.burger,
.mnav_wrap {
  display: none;
}
[class*='ico'] {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* 모바일네비 */
.mnav_wrap {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0px;
  left: 0;
  transform: translateX(100%);
  transition: 0.3s;
  background: #fff;
  z-index: 99999;
}

.mnav_wrap::-webkit-scrollbar {
  display: none;
}

/* Firefox */
.mnav_wrap {
  scrollbar-width: none;
}

/* IE, Edge */
.mnav_wrap {
  -ms-overflow-style: none;
}

.mnav_wrap.on {
  transform: translateX(0);
}

@media screen and (max-width: 1024px) {
  .global_header {
    min-height: 60px;
    display: flex;
    align-items: center;
  }
  .global_header .gnb {
    justify-content: space-between;
    min-height: 53px;
    max-height: 53px;
  }

  .global_header .gnb .logo {
    max-width: 150px;
  }
  .global_header .gnb .logo a {
    position: relative;
  }

  .mnav_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    padding: 0 50px;
  }

  .mnav_wrap .top {
    display: flex;
    justify-content: space-between;
    min-height: 60px;
    align-items: center;
    padding: 0 5vw;
    margin-bottom: 35px;
  }

  .mnav_wrap .mnav_menu {
    color: #303030;
    font-family: 'Open Sans';
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
  .mnav_wrap .mnav_menu:not(:last-child) {
    margin-bottom: 30px;
  }
  .mnav_wrap .mnav_menu span::after {
    content: '';
    display: block;
    width: 24px;
    aspect-ratio: 1/1;
    background: url('/img/common/mnav_arrow.png') center center / 100% no-repeat;
    transition: 0.3s;
  }

  .mnav_menu a.on span::after {
    transform: rotate(180deg);
  }

  .mnav_wrap .mdrop {
    display: none;
  }

  .mnav_wrap .mdrop_menu {
    color: var(--grayscale-60001, #525252);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
    border-bottom: 1px solid var(--grayscale-20003, #e5e5e5);
    background: var(--grayscale-10001, #f5f5f5);
  }
  .mnav_wrap .mdrop_menu a {
    padding: 15px 5vw;
    display: block;
    box-sizing: border-box;
  }
  .mnav_wrap .link_footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 5vw;
    gap: 10px;
  }
  .mnav_wrap .link_footer a {
    border-radius: 99px;
    text-align: center;
    background: var(
      --Blue-2,
      linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
      #0069ff
    );
    color: #fff;
    font-size: 15px;
    padding: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.32px;
  }

  .burger {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 9999999;
    padding: 11px 3px;
  }

  .global_header .burger {
    position: relative;
  }
  .global_header .burger span {
    width: 26px;
    height: 2px;
    background: #303030;
    transition: 0.3s;
  }
  .global_header .burger span:nth-child(2) {
    width: 16px;
  }
  .global_header .burger.on span:first-child {
    transform: translateY(4px) rotate(-45deg);
  }
  .global_header .burger.on span:nth-child(2) {
    transform: translateY(-4px) rotate(45deg);
    width: 26px;
  }
  .global_header .gnb .nav {
    display: none;
  }
}

/* footer */

.global_footer .inner {
  width: 90%;
  max-width: 1750px;
  margin: 0 auto;
}
.global_footer .footer_top {
  border-bottom: 1px solid #fff;
}
.global_footer .footer_bottom {
  padding: 40px 0;
  border-bottom: 1px solid #fff;
  position: relative;
}
.global_footer .footer_bottom .con_wrap {
  display: flex;
  justify-content: center;
  column-gap: 2.6vw;
  max-width: 1040px;
  margin: 0 auto;
}
.global_footer .footer_bottom .con {
  flex: 1;
}
.global_footer .footer_bottom h4 {
  color: #fff;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}
.global_footer .footer_bottom ul li {
  color: #fff;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.global_footer .footer_bottom ul li:not(:last-child) {
  margin-bottom: 10px;
}
.global_footer .footer_bottom .con b {
  color: #fff;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}
.global_footer .footer_bottom .con p {
  color: #fff;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.global_footer .footer_bottom .con > div:not(:last-child) {
  margin-bottom: 20px;
}
.global_footer .footer_bottom .link_wrap {
  display: flex;
  gap: 1.5vw;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 40px;
  color: #fff;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
.global_footer .footer_bottom .link_wrap .sns {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1350px) {
  .global_footer .footer_bottom .link_wrap {
    position: static;
    justify-content: flex-end;
  }
  .global_footer .footer_bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .global_footer .footer_top img {
    max-width: 80px;
  }
  .global_footer .footer_bottom h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .global_footer .footer_bottom {
    padding: 20px 0;
  }
  .global_footer .footer_bottom .con_wrap {
    flex-direction: column;
    row-gap: 30px;
  }
  .global_footer .footer_bottom ul li {
    font-size: 14px;
    font-weight: 300;
  }
  .global_footer .footer_bottom .con b {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .global_footer .footer_bottom .con p {
    font-size: 14px;
    font-weight: 300;
  }
  .global_footer .footer_bottom .link_wrap {
    font-size: 16px;
  }
  .global_footer .footer_bottom {
    gap: 30px;
  }
}
.quick_menu {
  padding: 20px 8px;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid var(--accent2, #c8d3e5);
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quick_item {
  color: #569082;
  text-align: center;
  font-family: 'Spoqa Han Sans Neo';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 14.4px */
  letter-spacing: -0.48px;
}
.quick_item img {
  margin: 0 auto;
}
.quick_menu_btn.mobile_block {
  display: none;
}
.quick_menu_wrap {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.quick_menu_btn {
  border-radius: 500px;
  background: linear-gradient(180deg, #569082 0%, #155855 100%);
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}
.quick_menu_wrap.on .quick_menu_btn img.open {
  opacity: 1;
}
.quick_menu_wrap.on .quick_menu_btn img.close {
  opacity: 0;
}
.quick_menu_wrap .quick_menu_btn img.close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: 0.3s;
}
.quick_menu_wrap .quick_menu_btn img.open {
  opacity: 0;
}
.global_footer {
  padding: 60px 0px;
  background: #222d2c;
  color: #fff;
}
.global_footer .f_logo {
  padding-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 30px;
}
.global_footer .f_info {
  display: flex;
  justify-content: space-between;
}
.global_footer .f_info .left .site {
  display: none;
}
.global_footer .f_info .left strong {
  color: #fff;
  font-family: 'Spoqa Han Sans Neo';
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}
.global_footer .f_info .left ul {
  display: flex;
  gap: 5px;
}
.global_footer .f_info .left ul li {
  color: #fff;
  font-family: 'Spoqa Han Sans Neo';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.global_footer .f_info .left ul li a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.global_footer .f_info .site b {
  color: #fff;
  font-family: 'Spoqa Han Sans Neo';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: normal;
  display: block;
}
.global_footer .f_info .site a {
  color: #fff;
  font-family: 'Spoqa Han Sans Neo';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 30px;
}
.global_footer .f_info .right .copy {
  color: #fff;
  font-family: 'Spoqa Han Sans Neo';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .global_footer .f_info {
    flex-direction: column;
  }
  .global_footer .f_info .left .site {
    display: block;
  }
  .global_footer .f_info .right .site {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .global_footer .f_logo {
    padding-bottom: 16px;
    margin: 0 auto 16px;
  }
  .global_footer .f_info .left strong {
    font-size: 32px;
  }
  .global_footer .f_info .site a {
    margin-bottom: 16px;
  }
  .global_footer .f_info .left ul {
    flex-wrap: wrap;
  }
  .global_footer .f_info .left {
    margin-bottom: 30px;
  }
  .global_footer .f_info .right .copy {
    font-size: 16px;
  }
  .quick_menu_btn.mobile_block {
    display: flex;
  }
  .quick_menu_wrap {
    right: 20px;
    bottom: 20px;
    transform: translate(0);
    top: auto;
  }
  .quick_menu_wrap > div {
    height: 217px;
    transition: 0.3s;
    overflow: hidden;
  }
  .quick_menu_wrap.on > div {
    height: 0;
  }
  .quick_item {
    font-size: 10px;
    letter-spacing: -0.4px;
  }
  .quick_item img {
    width: 30px;
  }
}
