/*reset.css*/

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: visible !important;
  height: auto !important;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
}

body,
html,
input,
textarea,
select,
button,
table {
  font-family: "pretendard", serif;
  -webkit-font-smoothing: antialiased;
}

form,
fieldset,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  word-break: keep-all;
}

form,
fieldset,
button {
  border: none;
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
  word-break: keep-all;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

a,
a:hover {
  text-decoration: none;
}

#nc_container {
  z-index: 9999999999 !important;
}

/*header*/
header {
  position: fixed;
  z-index: 9998;
  top: 0;
  width: 100%;
  transition: all .3s;
}

header,
header * {
  box-sizing: border-box;
}

.hd_con {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lg {
  display: block;
  font-size: 20px;
  line-height: 1em;
  white-space: nowrap;
}

.lg>img {
  display: block;
  width: 160px;
  transition: .3s;
}

.mn {
  display: flex;
  align-items: center;
}

/*gnb*/
#gnb {
  position: relative;
  z-index: 5;
}

#gnb>ul {
  display: flex;
  flex-flow: row wrap;
  padding-left: 0;
  margin-bottom: 0;
}

#gnb>ul>li {
  position: relative;
  z-index: 1;
  transition: .3s;
}

#gnb>ul>li>a {
  display: flex;
  align-items: center;
  padding: 37px 20px;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  gap: 8px;
}

#gnb>ul>li>a>span {
  display: block;
  width: 9px;
  height: 9px;
  transition: .2s;
  position: relative;
  opacity: 0.85;
}

#gnb>ul>li>a>span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 1px;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

#gnb>ul>li>a>span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 9px;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

#gnb>ul>li>a>span.rotate {
  opacity: 1;
  transform: rotate(180deg);
}

#gnb>ul>li>a>span.rotate::after {
  transform: translate(-50%, -50%) scaleY(0);
}

#gnb>ul>li>a::before {
  content: "";
  position: absolute;
  top: 95%;
  left: -22px;
  right: -22px;
  height: 30px;
}

#gnb>ul>li>ul {
  position: absolute;
  z-index: 1;
  top: calc(100% + 16px);
  left: -20px;
  display: none;
  width: 100%;
  min-width: 250px;
  box-sizing: border-box;
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 14px;
  padding: 9px;
  background-color: rgba(255, 255, 255, .72);
  box-shadow: 0 24px 60px rgba(8, 22, 38, .26);
}

#gnb>ul>li>ul>li {
  position: relative;
  z-index: 1;
  text-align: center;
}

#gnb>ul>li>ul>li>a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 9px;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
  color: rgba(20, 32, 43, .82);
  font-weight: 600;
  transition: .2s;
}

#gnb>ul>li>ul>li>a:hover {
  background: rgba(17, 17, 17, .05);
  color: #0f1720;
}

#gnb>ul>li>ul>li>a>i {
  display: inline-block;
  font-size: 12px;
  color: #f1614d;
  opacity: 0;
  transition: .2s;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
}

#gnb>ul>li>ul>li>a:hover>i {
  right: 15px;
  opacity: 1;
}

#gnb>ul>li>ul {
  counter-reset: gnb-d2;
}

#gnb>ul>li>ul>li {
  counter-increment: gnb-d2;
}

#gnb>ul>li>ul>li>a .gnb-d2-num::before {
  content: "0" counter(gnb-d2);
}

#gnb .gnb-d2-num {
  flex: none;
  font-size: 11px;
  font-weight: 800;
  color: rgba(20, 32, 43, .4);
  font-variant-numeric: tabular-nums;
  transition: .2s;
  display: inline-block;
}

#gnb>ul>li>ul>li>a:hover .gnb-d2-num {
  color: #7e9b40;
}

#gnb>ul>li>ul>li>ul {
  position: absolute;
  z-index: 1;
  top: -10px;
  left: calc(100% + 15px);
  padding: 10px 0;
  display: none;
  min-width: 150px;
  box-shadow: 0 12px 30px -2px rgba(0, 0, 0, .1);
  background-color: #fafafa;
}

#gnb>ul>li>ul>li>ul>li>a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}

#gnb>ul>li>a:hover {
  color: #fff;
}

.hd-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 20px;
}

.langbtn>ul {
  display: flex;
  padding: 4px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .25);
  transition: .3s;
  backdrop-filter: blur(6px);
}

.langbtn>ul>li>a {
  display: block;
  font-size: 14px;
  padding: 7px 15px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  border-radius: 50px;
  transition: .3s;
}

.langbtn>ul>li.on>a {
  color: #111;
  background: #fff;
}

/* scr */
header.scr {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 #E4E8EB;
}

header.scr #gnb>ul>li>a {
  color: rgba(17, 17, 17, .72);
  padding: 30px 20px;
}

header.scr .langbtn>ul {
  background: rgba(17, 17, 17, .09);
}

header.scr .langbtn>ul>li>a {
  color: rgba(17, 17, 17, .55);
}

header.scr .langbtn>ul>li.on>a {
  background: #111;
  color: #fff;
}

header.scr #gnb>ul>li>a>span::after,
header.scr #gnb>ul>li>a>span::before {
  background-color: rgba(17, 17, 17, .72);
}

.menu-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f1614d;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  cursor: pointer;
}

.menu-btn:hover {
  background: #7e9b40;
  transform: translateY(-2px)
}

.menu-btn-lines {
  position: relative;
  width: 18px;
  height: 12px;
  display: block
}

.menu-btn-lines::before,
.menu-btn-lines::after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

.menu-btn-lines::before {
  top: 0;
  width: 18px
}

.menu-btn-lines::after {
  bottom: 0;
  width: 12px
}

.menu-btn:hover .menu-btn-lines::before {
  width: 12px
}

.menu-btn:hover .menu-btn-lines::after {
  width: 18px
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #141414;
  color: #fff;
  display: flex;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: .6s;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0)
}

/* 닫기 버튼 */
.menu-overlay .close {
  position: absolute;
  top: 34px;
  right: clamp(28px, 4vw, 56px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  transition: .3s;
  background: transparent;
  cursor: pointer;
}

.menu-overlay .close:hover {
  background: #7e9b40;
  border-color: #7e9b40
}

.menu-overlay .close i {
  font-size: 14px
}

.menu-left {
  flex: 1 1 56%;
  display: flex;
  flex-direction: column;
  padding: 44px clamp(32px, 5vw, 80px);
  position: relative;
  z-index: 2
}

.menu-logo {
  display: flex;
  width: 160px;
}

.menu-logo img {
  width: 100%;
}

.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  counter-reset: overlay-menu;
}

.menu-nav>#menugnb>ul>li {
  transform: translateY(26px);
  opacity: 0;
  transition: .5s;
}

.menu-nav>#menugnb>ul>li>a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: clamp(10px, 1.4vw, 18px) 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  counter-increment: overlay-menu;
}

.menu-overlay.open .menu-nav>#menugnb>ul>li {
  transform: translateY(0);
  opacity: 1
}

.menu-overlay.open .menu-nav>#menugnb>ul>li:nth-child(1) {
  transition-delay: .14s
}

.menu-overlay.open .menu-nav>#menugnb>ul>li:nth-child(2) {
  transition-delay: .20s
}

.menu-overlay.open .menu-nav>#menugnb>ul>li:nth-child(3) {
  transition-delay: .26s
}

.menu-overlay.open .menu-nav>#menugnb>ul>li:nth-child(4) {
  transition-delay: .32s
}

.menu-overlay.open .menu-nav>#menugnb>ul>li:nth-child(5) {
  transition-delay: .38s
}

.menu-overlay.open .menu-nav>#menugnb>ul>li:nth-child(6) {
  transition-delay: .44s
}

.m-idx {
  font-size: 14px;
  font-weight: 600;
  color: #f1614d;
  min-width: 30px;
  letter-spacing: .05em
}

.menu-nav .m-idx::before {
  content: "0" counter(overlay-menu);
}

.m-txt {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: .3s
}

.menu-nav>#menugnb>ul>li>a:hover .m-txt {
  transform: translateX(14px);
  color: #7e9b40
}

.menu-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  opacity: 0;
  transition: .5s
}

.menu-overlay.open .menu-foot {
  opacity: 1
}

.mc-label {
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px
}

.mc-mail {
  font-size: 18px;
  font-weight: 700
}

.mc-mail:hover {
  color: #7e9b40
}

.mc-addr {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  margin-top: 6px
}

.menu-sns {
  display: flex;
  gap: 12px
}

.menu-sns a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: .3s
}

.menu-sns a:hover {
  background: #7e9b40;
  border-color: #7e9b40;
  transform: translateY(-3px)
}

/* 우측 비주얼(느린 켄번스 줌) */
.menu-right {
  flex: 1 1 44%;
  position: relative;
  overflow: hidden;
  background: #0d0d0d
}

.menu-visual {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  transform: scale(1.05);
  animation: menuKen 12s ease-in-out infinite alternate
}

@keyframes menuKen {
  from {
    transform: scale(1.05)
  }

  to {
    transform: scale(1.15)
  }
}

.menu-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(241, 97, 77, .18), rgba(13, 13, 13, .55) 70%)
}

.menu-visual-cap {
  position: absolute;
  left: 36px;
  bottom: 34px;
  z-index: 2;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4)
}

/* footer */
#footer {
  width: 100%;
  background: #050E2B;
  padding: 60px 0;
}

.ft-con {
  width: 100%;
  max-width: 1640px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.ft-tp {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.ft-lg {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.ft-lg>img {
  width: 100%;
  display: block;
  max-width: 160px;
}

.ft-info>p {
  font-size: 13px;
  color: #8A949C;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ft-wrap {
  text-align: right;
}

.ft-wrap>p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 4px;
}

.ft-wrap>ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}

.ft-wrap>ul>li {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
}

.ft-wrap>ul>li::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  right: -11px;
  transform: translateY(-50%);
}

.ft-wrap>ul>li:last-child::after {
  display: none;
}

.ft-wrap>h5 {
  font-size: 12px;
  color: #8A949C;
  font-weight: 400;
}

/*wrapper*/
.article_mover {
  position: absolute;
  z-index: -1;
  bottom: 100%;
}

.topbtn {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f1614d;
  color: #fff;
  font-size: 14px;
  position: fixed;
  right: 32px;
  bottom: 1rem;
  z-index: 8888;
  border-radius: 12px;
  gap: 1px;
  font-weight: 600;
  box-shadow: 0 18px 45px rgba(17, 17, 17, .08);
  transition:
    opacity 0.4s ease 0.4s,
    bottom 0.4s ease 0.4s,
    background 0.2s,
    transform 0.2s;
  opacity: 0;
}

.topbtn>span {
  font-size: 12px;
}

.topbtn:hover {
  transform: translateY(-2px);
  background: #C73D29;
}

.topbtn.scr {
  bottom: 32px;
  opacity: 1;
}

/* mediaquery */

@media(min-width:1601px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }
}

@media(min-width:1025px) {

  .d-lg-flex {
    display: flex !important;
  }

  .mo-fixed {
    display: none;
  }

  .mt-menu {
    display: none;
  }

  .hd-btn {
    display: none;
  }

  #menugnb>ul>li>ul {
    display: none;
  }
}

@media(max-width:1600px) {
  .ft-con {
    max-width: 1340px;
  }

  .m-txt {
    font-size: 40px;
  }

  .d-none {
    display: none !important;
  }

  .d-block {
    display: block !important;
  }
}

@media(max-width:1440px) {
  .menu-nav>#menugnb>ul>li>a {
    gap: 12px;
  }

  .m-txt {
    font-size: 34px;
  }
}

@media(max-width:1024px) {

  .d-flex {
    display: flex !important;
  }

  #gnb {
    display: none;
  }

  .lg {
    padding: 20px 0;
    transition: .2s;
  }

  header.scr .lg {
    padding: 1rem 0;
  }

  .hd-btn {
    position: fixed;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #222;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
  }

  .mt-menu {
    width: 50%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -51%;
    background-color: #fff;
    z-index: 99998;
    transition: .8s ease-in-out;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
  }

  .mt-menu.mt-open {
    left: 0;
    box-shadow: 4px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }

  .mt-top {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #222;
  }

  .mt-logo {
    display: flex;
    width: 160px;
  }

  .mt-logo img {
    width: 100%;
  }

  .hd-close {
    display: flex;
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: #222;
    line-height: 1;
  }

  .mo_mn_mn {
    padding: 10px 0 2rem;
    width: 100%;
  }

  .mo_mn_mn>li>a {
    display: block;
    padding: 20px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    border-bottom: 1px solid #f3f3f3;
    transition: .2s;
  }

  .mo_mn_mn>li>ul {
    display: none;
    background-color: #f8f9fa;
  }

  .mo_mn_mn>li>ul>li>a {
    display: block;
    padding: 15px 34px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    border-bottom: 1px solid #eee;
  }

  .mo_mn_mn>li>a.more {
    position: relative;
  }

  .mo_mn_mn>li>a.more::after {
    content: "";
    width: 10px;
    height: 2px;
    background-color: #E00B41;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
  }

  .mo_mn_mn>li>a.more::before {
    content: "";
    width: 2px;
    height: 10px;
    background-color: #E00B41;
    position: absolute;
    top: 50%;
    right: 29px;
    transform: translateY(-50%);
    transition: .3s;
  }

  .mo_mn_mn>li>a.more.act {
    background-color: #222;
    color: #fff;
  }

  .mo_mn_mn>li>a.more.act::after {
    background-color: #fff;
  }

  .mo_mn_mn>li>a.more.act::before {
    opacity: 0;
    background-color: #fff;
  }

  .ft-mq>ul {
    gap: 30px;
  }

  .ft-mq>ul>li {
    font-size: 28px;
  }

  .ft-mq>ul>li>span {
    font-size: 14px;
  }

  #menugnb>ul>li>ul {
    counter-reset: gnb-d2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 1rem;
  }

  #menugnb>ul>li>ul>li {
    counter-increment: gnb-d2;
    padding-left: 6px;
  }

  #menugnb>ul>li>ul>li>a .gnb-d2-num::before {
    content: "0" counter(gnb-d2);
  }

  #menugnb>ul>li>ul>li>a {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 16px;
  }

  #menugnb .gnb-d2-num {
    flex: none;
    font-size: 10px;
    font-weight: 700;
    color: #f1614d;
    font-variant-numeric: tabular-nums;
    transition: .2s;
    display: inline-block;
  }

  .topbtn{
    right: 20px;
  }
  .topbtn.scr{
    bottom: 30px;
  }

  .ft-wrap {
    text-align: center;
  }

  .ft-tp {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }

  .ft-info {
    width: 100%;
  }

  .ft-lg {
    justify-content: center;
  }

  .ft-info>p {
    line-height: 1.6;
    text-align: center;
  }

  .ft-wrap>p {
    margin-bottom: 10px;
  }

  .ft-wrap>ul {
    gap: 4px;
    flex-direction: column;
  }

  .ft-wrap>ul>li::after {
    display: none;
  }

  .menu-sns {
    gap: 8px;
    justify-content: center;
  }

  .ft-bt {
    padding-top: 20px;
  }

  #footer {
    padding: 50px 0;
  }
}

@media(max-width:700px) {

  .topbtn{
    width: 46px;
    height: 46px;
    font-size: 12px;
    gap: 0;
    right: 10px;
  }
  .topbtn>span{
    font-size: 10px;
  }

  .hd-menu {
    gap: 10px;
  }

  .menu-right {
    display: none;
  }

  .m-txt {
    font-size: 30px;
  }

  .menu-left {
    flex: auto;
    width: 100%;
    padding: 24px;
    overflow-y: scroll;
  }

  .mc-label {
    font-size: 12px;
  }

  .mc-mail {
    font-size: 16px;
  }

  .mc-addr {
    font-size: 12px;
  }

  .menu-overlay .close {
    top: 24px;
    right: 24px;
  }
}

@media(max-width:587px) {
  .mt-menu {
    width: 100%;
    left: -101%;
  }

  .mo_mn_mn>li>a {
    padding: 1rem 25px;
  }

  .lg>img {
    width: 140px;
  }

  header.scr .lg {
    padding: 14px 0;
  }

  .ft-lg>img {
    max-width: 140px;
  }

  .menu-left {
    padding: 20px;
  }

  .menu-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .menu-overlay .close {
    top: 20px;
    right: 20px;
  }

  .m-txt {
    font-size: 24px;
  }

  .langbtn>ul>li>a {
    font-size: 13px;
    padding: 4px 12px;
  }

  #menugnb>ul>li>ul {
    padding-top: 10px;
    gap: 8px;
  }

  #menugnb>ul>li>ul>li>a {
    font-size: 15px;
    gap: 23px;
  }

  #menugnb>ul>li>ul>li {
    padding-left: 10px;
  }
}


@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}