@charset "UTF-8";
/* Charset */
/* Import common.scss */
/* Charset */
/* Gmarket Sans 폰트 정의 */
@font-face {
  font-family: "Gmarket Sans";
  src: url("../fonts/GmarketSansTTFBold.ttf") format("truetype"), url("../fonts/GmarketSansBold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
/* Pretendard 폰트 정의 */
@font-face {
  font-family: "Pretendard Variable";
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PretendardVariable.woff2") format("woff2-variations");
}
/* Variables */
/* Mixins */
/* Base styles */
body {
  height: auto;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  line-height: 1.6;
}
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track {
  /* background-color: rgba(0, 0, 0, .5); */
  background-color: transparent;
  border-radius: 20px;
}
body::-webkit-scrollbar-thumb {
  /* background-color: #dddddd40; */
  background-color: #dddddd;
  border-radius: 20px;
}

/* Utility classes */
.position-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.max-width-1400 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* Header Classes */
.hd-wrap {
  width: 100%;
  /*background-color: rgb(51 51 51 / 55%);
  backdrop-filter: blur(2.1875rem);
  */
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -moz-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -ms-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -o-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.hd-wrap.scrolled {
  background-color: #ffffff;
  transform: translateY(-123px);
  -webkit-transform: translateY(-123px);
  -moz-transform: translateY(-123px);
  -ms-transform: translateY(-123px);
  -o-transform: translateY(-123px);
  /*.hd-logo-block {
    display: none;
  } */
}
.hd-wrap.scrolled .gnb-block {
  /* background-color: $primary-color; */
  background-color: #ffffff;
  border-bottom: 0;
}
.hd-wrap.scrolled .gnb-block .gnb a {
  /* color: #ffffff; */
  color: #004098;
  font-weight: bold;
}

.hd-block {
  width: 100%;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
}

.hd-logo {
  max-width: 450px;
  margin: 0px auto;
  padding: 40px 0;
}
.hd-logo img {
  width: 100%;
  display: block;
}

.gnb {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gnb li {
  width: 100%;
  padding: 13px 0;
}
.gnb a {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

/* Popup */
#hd_pop {
  max-width: 1920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  top: 182px;
  z-index: 100;
}
#hd_pop .hd_pops {
  /* position: unset; */
  /* margin: 0 5px 10px 0; */
  border: 0;
}
#hd_pop .hd_pops img {
  display: block;
}
/* Popup END */
/* Footer Classes */
.ft-wrap {
  padding: 100px 0;
  background: #252525;
}

.ft-logo {
  max-width: 480px;
  margin: 0 auto;
}
.ft-logo img {
  width: 100%;
}

.ft-info {
  line-height: 1;
  margin-top: 60px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
}
.ft-info ul {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ft-info ul:last-child {
  margin-bottom: 0;
}
.ft-info li {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}
.ft-info li a {
  color: #ffffff;
}
.ft-info li a.ft-nonpay {
  width: auto;
  font-size: 16px;
  font-weight: 500;
  background-color: #f2f2f2;
  color: #1a1a1a;
  border-radius: 30px;
  padding: 7px 10px 3px 10px;
  margin-left: 5px;
  white-space: nowrap;
  display: inline-block;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.ft-info li::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 80%;
  background: #ffffff;
}
.ft-info li:last-child::before {
  content: unset;
}

@media (max-width: 1024px) {
  /* Header Classes */
  .gnb-block {
    overflow-x: scroll;
  }
  .gnb-block::-webkit-scrollbar {
    height: 6px;
  }
  .gnb-block::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 20px;
  }
  .gnb-block::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 20px;
  }
  .gnb li {
    width: auto;
    padding: 13px 20px;
    white-space: nowrap;
  }
  /* Popup */
  #hd_pop {
    top: 189px;
  }
  #hd_pop .hd_pops {
    width: 80vw;
    max-width: 387px;
    margin: 0;
    position: absolute;
    top: 0px !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
  #hd_pop .hd_pops_con {
    width: 100% !important;
    height: 100% !important;
  }
  /* Popup END */
}
@media (max-width: 768px) {
  /* Utility classes */
  .max-width-1400 {
    width: 94%;
  }
  /* Header Classes */
  .hd-logo {
    width: 70%;
    max-width: 515px;
    padding: 5.3333vw 0;
  }
  .gnb li {
    padding: 2.6666vw 2.6666vw;
  }
  .gnb a {
    font-size: 4vw;
  }
  /* Popup */
  #hd_pop {
    top: 35vw;
  }
  /* Popup END */
  /* Footer Classes */
  .ft-wrap {
    padding: 10.6666vw 0;
  }
  .ft-logo {
    max-width: 625px;
    width: 84%;
  }
  .ft-logo img {
    width: 100%;
  }
  .ft-info {
    font-size: 2.9333vw;
    line-height: 1.6;
    margin-top: 8vw;
  }
  .ft-info ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
  }
  .ft-info li {
    margin: 0;
    padding: 0;
  }
  .ft-info li a.ft-nonpay {
    font-size: 2.9333vw;
    border-radius: 4vw;
    padding: 0.9333vw 1.3333vw 0.4vw 1.3333vw;
    margin-left: 0.6666vw;
    -webkit-border-radius: 4vw;
    -moz-border-radius: 4vw;
    -ms-border-radius: 4vw;
    -o-border-radius: 4vw;
  }
  .ft-info li::before {
    content: unset;
  }
  .ft-info li.ft-line {
    margin-right: 1.3333vw;
    padding-right: 1.3333vw;
  }
  .ft-info li.ft-line::before {
    content: "";
    height: 50%;
  }
  .ft-info .ft-name {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .ft-info .ft-name::before {
    content: unset;
  }
}