@charset "UTF-8";



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

.flex-area {display: flex;}
.flex-area.row {flex-direction: row;}
.flex-area.column {flex-direction: column;}
.flex-area .position-end {margin-left: auto;}

.headline {
  font-family: 'D-DIN Bold', 'D-DIN', sans-serif;
  font-weight: 700;
}

/* header */
#m_gnb {display: none;}
.header_wrap {align-items: center;
    padding-right: 30px;
    box-sizing: border-box;
}
/* 기본 설정 */
#m_gnb {
    position: relative;
    width: 40px;
    height: 32px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
  }
  
  /* 햄버거 버튼 */
  #m_gnb .m-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
  }
  
  #m_gnb .m-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: #222;
    border-radius: 2px;
    transition: all 0.25s ease;
  }
  
  /* active 상태에서 X로 변환 */
  #m_gnb .m-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #m_gnb .m-btn.active span:nth-child(2) {
    opacity: 0;
  }
  #m_gnb .m-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
#header{
    background: #FFF;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
}

.lang-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: #ECEEF4;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 21.5px;
    width: 43px;
    height: 43px;
  }
.lang-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    /* right: 0; */
    background: #fff;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    z-index: 9999;
}
.lang-list li:hover a {
    color: #037BEB;
}
.lang-list li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* 활성 상태 */
.lang-wrap.active .lang-list {
max-height: 120px; /* 2개 항목이면 이 정도 */
opacity: 1;
}

.gnb {gap:50px;display: flex;
    margin-left: auto;}
.gnb > li:nth-child(5) {display: none;}
.gnb > li:nth-child(4) {display: none;}
.gnb > li:nth-child(3) .ulDepth2 {display: none;}
.gnb > li:nth-child(3):hover .ulDepth2 {display: none !important;}
.gnb > li {display: flex; align-items: center;position: relative;}
.gnb > li > a {font-size: 20px; font-weight: 700; color:#252525;
    display: flex;height: 100%; padding: 30px 0; align-items: center;
    text-decoration: none;
}
.gnb > li .ulDepth2 {display: none;}
.gnb > li:hover .ulDepth2 {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;
    width: 140px;
    margin-left: -35px;
    height: auto;
    background: #04293d;
}
.lang-en .gnb > li:hover .ulDepth2 {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;
    width: 100%;
    margin-left: 0;
    height: auto;
    background: #04293d;
}
.gnb > li:hover .ulDepth2 li {
    height: 50px;
    width: 100%;
}
.gnb > li:hover .ulDepth2 li:hover {
    background: #021a27;
}
.gnb > li:hover .ulDepth2 li a{
    display: block;
    height: 100%;
    width: 100%;
    color: #fff;
    font-size: 17px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


/* 문의하기 버튼 */
.gnb > li:nth-child(3) a {
    background: linear-gradient(90deg, #037BEB 0%, #17C0F0 96%);
    padding: 12px 32px;border-radius: 40px;
    display: inline-flex; align-items: center;justify-content: center;
    transition: filter 0.2s ease;
    color: #fff;font-family: 'Paperlogy', sans-serif; 
    font-weight: 700;height: auto; padding:10px 40px;}
.gnb > li:nth-child(3):hover { filter: brightness(1.1);}  


/* main */
#mainVisual {
    position: relative;
    width: 100%;
    background-size: cover;
    /* background: url(../img/main/main02-bg.png) no-repeat center; */
    /* height: 1024px; */
    height: 740px;
    min-height: 550px;;
    overflow: hidden;
}
#mainVisual .bx-wrapper,
#mainVisual .bx-viewport,
#mainVisual .sliderUl,
#mainVisual .sliderLi, 
#mainVisual .sliderLi a {width:100%; height: 100% !important;}
.bx-wrapper {
    box-shadow: none !important;
    border: none!important;
    background: none!important;
    margin-bottom: 0 !important;
}
.main-text-wrap {
    position: absolute; top:0;
    display: flex; height: 100%;
    align-items: center; justify-content: center; width:100%}
.main-text {
    width:100%; max-width: 1400px; margin: 0 auto;

}
.main-text .top {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 150% */
    letter-spacing: 2px;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
     font-family: D-DIN-Bold;
}
.main-text .main{
    margin-top: 20px;
    color: #FFF;
    font-family: Paperlogy;
    font-size: 50px;
    font-style: normal;
    line-height: normal;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);

    font-size: 45px;
    /* text-transform: uppercase; */
    font-family: D-DIN-Bold;
    max-width: 90%;
    margin-left: 0;
    line-height: 48px;
    font-weight: 700;
}
.main-text .main span{
    background: var(--Linear, linear-gradient(90deg, #037BEB 1.08%, #17C0F0 91.77%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 45px;
    /* text-transform: uppercase; */
    font-family: D-DIN-Bold;
    max-width: 90%;
    margin-left: 0;
    line-height: 48px;
    font-weight: 700;

    /* 글자 외곽선을 추가해서 안 먹히는 느낌 방지 */
    /* -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45); */

    /* 바깥쪽으로 퍼지는 글로우 */
    text-shadow:none
     
}
.main-text .desc{ 
    margin-top: 35px;
    color: #FFF;
   font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}
.main-more {
    margin-top: 50px;
    border-radius: 28px;
    background: var(--Linear, linear-gradient(90deg, #037BEB 1.08%, #17C0F0 91.77%));
    color: #FFF !important;
    font-family: Paperlogy;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    display: inline-flex;
    padding:16px 74px; transition: filter 0.2s ease;
}
.main-more:hover { filter: brightness(1.1); text-decoration: none; color: #FFF;}

/* 메인 컨텐츠 */
#mainContents {
    background: url(../img/main/top-bg.png) no-repeat top center;
    background-size: contain;
}

/* 상단 text */
.top-main-text {padding-top: 200px;
    flex-direction: column;
    display: flex; justify-content: center; gap:28px; 
}
.top-main-text h3 {
    color: #091634;
    font-family: Paperlogy;
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}
.top-main-text p {
    color: #696F7F;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* feature list */
.feature-list {}
.feature-list ul {margin-top: 83px; gap:35px}
.feature-list ul li {flex-grow: 1;
    border-radius: 50px 50px 0 50px;
    height: 218px;
    display: flex;
    gap:26px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 30%;;
}
.feature-list ul li:nth-child(1){background: #253454;}
.feature-list ul li:nth-child(2){background: #1D8FCD;}
.feature-list ul li:nth-child(3){background: #4EBACA;}
.feature-list ul li h3 {
    color: #FFF;
    font-family: Paperlogy;
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.feature-list ul li p {
    color: #FFF;
    font-family: Paperlogy;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
    text-align: center;
}
:lang(en) .feature-list ul li p {
    font-size: 20px;
  }
/* 핵심역량 */
.core-skill {margin-top: 200px; padding-bottom: 200px;;}
.core-skill h2{
    color: #091634;
    font-family: Paperlogy;
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.core-skill .title-wrap {display: flex; text-align: center;
     flex-direction: column; gap:32px; justify-content: center;}
.core-skill h2 span{
    color: #3082E3;
    font-family: Paperlogy;
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.core-skill p.desc{
    color: #696F7F;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.core-skill ul {margin-top: 60px; gap:35px;}
.core-skill ul li {flex-grow: 1; width:30%; flex-direction: column; border-radius: 50px; overflow: hidden;;}
/* .core-skill ul li .img-wrap {height: 200px;} */
.core-skill ul li .img-wrap img {
    width: 100%; height: 100%;
}
.core-skill ul li {display: flex; flex-direction: column;}
.core-skill ul li .content {
    padding:45px 40px; box-sizing: border-box;
    background: #EDF1F4;
    gap:20px;
    flex-grow: 1;
}
.core-skill ul li .content .title { justify-content: space-between;}
.core-skill ul li .content .title h3 {
    color: #152855;
    font-family: Paperlogy;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.core-skill ul li .content .title img {display: none;}
/* .core-skill ul li:hover {cursor: pointer;}
.core-skill ul li:hover .content .title img {display: block;}
.core-skill ul li:hover .content .title h3{color: #228FF2;
    font-family: Paperlogy;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;} */
.core-skill ul li .content p {
    color: #696F7F;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
      word-break: keep-all;      /* 단어 중간에서 안 끊기게 */
  white-space: normal;    
}


/* 솔루션 */
.solution-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solution-slide .ul-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 60px;
}

.solution-slide ul {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.solution-slide ul li {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 15px;
   transition: width 0.3s ease;
}

.solution-slide li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 37px;
  flex-grow: 1;
}

.solution-slide ul li img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.solution-slide ul li .photo_title {
  color: #1E273C;
  text-align: center;
  font-family: Paperlogy;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 90%;
}

.solution-slide .arrow-left,
.solution-slide .arrow-right {
  position: absolute;
  top: 50%;
 
  z-index: 10;
  width: 50px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* @keyframes circleOutLeft  {
    0%   { transform: translateX(0); }
    60%  { transform: translateX(-12px); } 
    100% { transform: translateX(-8px); }   
}
  @keyframes circleOutRight {
    0%   { transform: translateX(0); }
    60%  { transform: translateX(12px); }
    100% { transform: translateX(8px); }
} */
 
.arrow-left {
    /* transition: transform 0.35s cubic-bezier(.22,1,.36,1); */
    transition: all 0.2s;
}
.arrow-left:hover {
    /* transform: translateX(-12px) */
    background: #c2deff;
    /* background: linear-gradient(90deg, #037BEB 0%, #17C0F0 96%); */
    transition: all 0.2s;
}
.arrow-right {
    /* transition: transform 0.35s cubic-bezier(.22,1,.36,1); */
    transition: all 0.2s;
}
.arrow-right:hover {
    /* transform: translateX(12px); */
    /* background: linear-gradient(90deg, #037BEB 0%, #17C0F0 96%); */
    transition: all 0.2s;
    background: #c2deff;
  }
.solution-slide .arrow-right {
  right: 0px;
}
.solution-slide a > img {
    width: 117%;
}

/* 솔루션 타이틀  */
.solution-list {
  background: #EFF8FF url(../img/main/solu-bg.png) left bottom no-repeat;
  padding: 200px 0;
  box-sizing: border-box;
}

.solution-list .title-wrap {
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.solution-list .title-wrap .left {
  display: flex;
  flex-direction: column;
  gap: 37px;
  align-items: flex-start;
}

.solution-list .title-wrap .left .title {
  color: #091634;
  font-family: Paperlogy;
  font-size: 55px;
  font-weight: 700;
  line-height: normal;
}

.solution-list .title-wrap .left .title span {
  color: #3082E3;
}

.solution-list .title-wrap .left .desc {
  color: #696F7F;
  font-family: Pretendard;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.solution-list .title-wrap .right a.more {
  color: #1E273C;
  font-family: Paperlogy;
  font-size: 20px;
  font-weight: 700;
  border-radius: 32.5px;
  border: 1px solid #1E273C;
  width: 257px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}

.solution-list .title-wrap .right a.more:hover {
  background: linear-gradient(90deg, #037BEB 1.08%, #17C0F0 91.77%);
  color: #fff;
  border: 1px solid transparent;
}

/* main-product-list */
.main-product-list {margin-top: 200px;}
.main-product-list .title-wrap {display: flex; text-align: center;
    flex-direction: column; gap:32px; justify-content: center;}
.main-product-list h2 {
    color: #091634;
    font-family: Paperlogy;
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.main-product-list h2 span{
   color: #3082E3;
   font-family: Paperlogy;
   font-size: 55px;
   font-style: normal;
   font-weight: 700;
   line-height: normal;
}
.main-product-list p.desc{
   color: #696F7F;
   font-family: Pretendard;
   font-size: 20px;
   font-style: normal;
   font-weight: 400;
   line-height: normal;
}
.main-product-list ul {
    margin-top: 60px; gap:30px;
    padding:45px; box-sizing: border-box;
    border-radius: 70px;
    background: linear-gradient(130deg, #53A8E6 19.28%, #C4E8FF 96.01%);
    margin-top: 60px; gap:35px; flex-wrap: wrap;}
.main-product-list ul li {
    width: 30%; position: relative;
    flex-grow: 1; flex-direction: column; border-radius: 50px; overflow: hidden;;}
.main-product-list ul li .img-wrap {
    width: 100%;
    height: 200px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10px;
    box-sizing:border-box;
}
.main-product-list ul li .img-wrap img {
    width:100%;
    height:100%;
    object-fit:contain;
}
.main-product-list ul li .content {
    box-sizing: border-box;
   background: #EDF1F4;
   gap:20px;
   height: 152px;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;

}
.lang-en .main-product-list ul li .content {
    padding: 0 10px;
    box-sizing: border-box;
    gap: 10px;
}
.main-product-list ul li .content .title { justify-content: center;}
.main-product-list ul li .content .title h3 {
    color: #FFF;
    font-family: Paperlogy;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.main-product-list ul li .content .title img {display: none;}

.main-product-list ul li .content p {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/* .lang-en .main-product-list ul li .content p {font-size: 14px;} */
.lang-en .main-product-list ul li .content p br {display: none;}
.main-product-list ul li:nth-child(1) .content {background:#185F8F ;}
.main-product-list ul li:nth-child(2) .content {background: #18326C;}
.main-product-list ul li:nth-child(3) .content {background: #3082E2;}
.main-product-list ul li:nth-child(4) .content {background:#EBEBEB ;}
.main-product-list ul li:nth-child(4) .content h3,.main-product-list ul li:nth-child(4) .content p {
    color:#000;
}
.main-product-list ul li:nth-child(5) .content {background: #1E273C;}
.main-product-list ul li:nth-child(6) .content {background:#83D7E3 ;}
.main-product-list ul li:nth-child(6) .content h3,.main-product-list ul li:nth-child(6) .content p {
    color:#003037;
}
.main-product-list ul li .badge {
    position: absolute;
    top: 30px;
    padding: 10px 20px;
    border-radius: 0 23.5px 23.5px 0;
    background: var(--Linear, linear-gradient(90deg, #6C1ADF 1.08%, #4773E3 91.77%));
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-product-list ul li .badge span {
    color:#fff;
    font-family: Paperlogy;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.main-product-list ul li:nth-child(4) .badge,
.main-product-list ul li:nth-child(5) .badge,
.main-product-list ul li:nth-child(6) .badge {
    border-radius: 0 23.5px 23.5px 0;
    background: var(--Linear, linear-gradient(90deg, #037BEB 1.08%, #17C0F0 91.77%));
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}
.main-product-list .more-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    
}
.more-btn {
    display: flex;
    justify-content: center;
    width: 100%;
}
.more-btn a{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    transition: all 0.2s;height: 68px;
}
.more-btn a:hover {
    background: var(--Linear, linear-gradient(90deg, #037BEB 1.08%, #17C0F0 91.77%));
    color:#fff !important;
    transition: all 0.2s;
    border:none !important; 
}
.more-btn a:hover{color:#fff; border: 1px solid transparent;}
.main-product-list .more-btn a{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    transition: all 0.2s;
}
.main-product-list .more-btn a:hover {
    background: var(--Linear, linear-gradient(90deg, #037BEB 1.08%, #17C0F0 91.77%));;
    color:#fff;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.main-product-list .more-btn a {
    color: #232323;
    display: flex;
    justify-content: center; align-items: center;
    font-family: Paperlogy;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 32.5px;
    border: 1px solid #373737;
    box-sizing: border-box;
    width: 257px;
    height: 68px;
    flex-shrink: 0;
    text-decoration: none;
}

/* bottom */
.bottom-main-text {
    padding: 250px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/main/bottom-bg.png) no-repeat bottom center;
    background-size: contain;
    flex-direction: column;
    gap:40px;
}
.bottom-main-text h3{
    font-family: Paperlogy;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: var(--Linear, linear-gradient(90deg, #037BEB 1.08%, #17C0F0 91.77%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.bottom-main-text p{
    color: #696F7F;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.bottom-main-text .more-btn{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
   
}
.bottom-main-text .more-btn a {
    color: #232323;
    display: flex;
    justify-content: center; align-items: center;
    font-family: Paperlogy;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 32.5px;
    border: 1px solid #373737;
    width: 257px;
    height: 67px;
    flex-shrink: 0;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
}

/* footer */
#footer {
    padding:90px 0; box-sizing: border-box;
    border-top:1px solid #5F5F5F;
    background: #FFF;
}

.footer_logo img {width:180px;}
.footer_menu {gap:35px}
.footer_menu li{position: relative;}
.footer_menu li:last-child:before{display: none;}
.footer_menu li:before{position: absolute;
    width: 1px;
    height: 13px;
    display: block;
    content: '';
    top: 2px;
    right: -18px;
    background: #c7c7c7;
}
.footer_menu li a{
    color: #1E273C;
    font-family: Pretendard;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.footer_bot {gap:100px}
.footer_info {display: flex; flex-direction: column; gap:20px;}
.footer_info address,
.footer_info small {
    color: #696F7F;
    font-family: Pretendard;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* 서브 */
.navi {
    align-items: center;
    display: flex;
    gap: 10px;
}
.sub_visu {
    height: 250px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.sub-title-wrap {
    display: flex;
    flex-direction: column;
    gap:10px;
}
.sub_visu .small-en {
    color: #3B3B3B;
    font-family: Paperlogy;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
    letter-spacing: 2px;
}
.sub_visu>div {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
}
.navi_wrap{
    color: #4D6D92;
    font-family: Paperlogy;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 187.5% */
    letter-spacing: 1.6px;
}
.sub_visu>div h3{
    background: var(--Linear, linear-gradient(90deg, #037BEB 1.08%, #17C0F0 91.77%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* text-shadow: 0 0 4px rgba(0, 0, 0, 0.23); */
    font-family: Paperlogy;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.subcon_wrap {
    width: 100%;
    border-top: 1px solid #D6D6D6;;
}
.subcon_wrap .lnb .menuDepth1>a {display: none;}
.subcon_wrap .lnb ul{
    display: flex;
    justify-content: center;
    gap: 30px;
    height: 70px;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}
.subcon_wrap .lnb ul li {
    position: relative;
}
.subcon_wrap .lnb ul li.on:before{
    content: '';
    position: absolute;
    bottom:-25px; 
    right:0; 
    left:0;
    margin:0 auto;
    width: 100%;
    height: 4px;;
    background: var(--Linear, linear-gradient(90deg, #037BEB 1.08%, #17C0F0 91.77%));
}
.subcon_wrap .lnb ul li.menuDepth2 a{
    color: #343434;
    font-family: Paperlogy;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.subcon_wrap .lnb ul li.menuDepth2.on a{
    color: #2069BF;
    font-family: Paperlogy;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

