/*
Theme Name: Laon Custom Theme
Theme URI: https://laonpeople.com
Author: UX Designer
Version: 1.0
*/

/* 기본 리셋 및 예시 스타일 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css");
*,::before,::after {
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    word-break: auto-phrase;
    word-break: keep-all;
    text-wrap-style: pretty;
}
:root {
    --black: #181818;
    --white: #ffffff;
    --gray01: #fafafa;
    --gray02: #f9f9f9;
    --gray03: #d9d9d9;
    --gray04: #efefef;
    --dark-gray01: #999999;
    --dark-gray02: #666666;
    --dark-gray03: #333333;   
    --green: #00993E;    
  }
html {
    /* scroll-behavior: smooth; */
    /* scroll-behavior: auto !important; */
}
body {
    line-height: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;    
    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;
    font-weight: 500;
    letter-spacing: -0.2px;
    text-size-adjust: 100%;    
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
h1, h2, h3, h4, strong{
    font-weight: 700;
}

html, body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 1.0rem;
    color:var(--black);    
}
a, a:link, a:visited {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}
button{
    cursor: pointer;
    border:0;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea{
    outline-color: var(--green);
}
input[type="checkbox"],
input[type="radio"]{
    accent-color: var(--green);
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(./assets/images/arrow_down_black.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) 50%;
    background-size: 20px;
}
.round-button{
    padding: 12px 24px;
    border-radius: 32px;
    border:1px solid #dfdfdf;
}
.wrap{
    display: flex;
    flex-direction: column;
}
section .container{
    width:100%;
    margin-inline:auto;    
    padding: 120px 100px;
}
.w-max{
    width: 100% !important;
}

header .logo{
    position: relative;
    z-index: 2;
    width: 132px;
    height: 32px;
    background-image: url(./assets/images/logo_green.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
header .util{
    position: absolute;
    right: 100px;
    top: 0;
    display: flex;
    gap: 2vw;
    font-size: 0.875rem;
    align-items: center;
    height: 100%;
}
header .util li{
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}
header .util .language{
    padding-left: 24px;
    background-image: url(./assets/images/icon_globe_black.svg);
    background-repeat: no-repeat;
    background-position: 0 50%;
}
header nav > div > h1{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    padding-inline: 16px;
}
header nav h1:hover{
    color:var(--green);
    font-weight: 700;    
}
header nav > div > h1:hover::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    border-bottom: 2px solid var(--green);
}
header .util li.contact{
    display: flex;
    align-items: center;
    border: 1px solid var(--green);    
    color: white;
    background-color: var(--green);
    border-radius: 32px;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 700;
    gap: 8px;
    align-items: center;
    height: auto;
}
header:hover .util .language{
   background-image: url(./assets/images/icon_globe_black.svg);
}
footer{
    display: flex;
    /* justify-content: center; */
    align-content: center;
    flex-direction: column;
    background-color: #f5f5f7;
    padding-top: 80px;
}
footer .logo{
    margin-bottom: 16px;
}
footer .logo img{
    height: 26px;
}
footer .contact li{
    padding-block: 4px;
}
footer .container{
    display: flex;
    justify-content: space-between;
    /* width:clamp(320px,100%,1240px); */
    width: 100%;
    margin-inline: auto;
    padding-inline: 100px;
}
footer .contact{
    font-size: 0.875rem;
}
footer .sitemap{
    display: flex;
    justify-content: space-between;
    width: clamp(640px,100%,1024px);
}
footer .sitemap h1{
    font-weight: 700;
    margin-bottom: 16px;
}
footer .sitemap h2{
    font-size: 0.75rem;
    margin-bottom: 8px;
    opacity: .4;
    margin-top: 24px;
}

footer .sitemap li{
    font-size: 0.875rem;
    padding-block: 8px;
}
footer .copyright{
    border-top: 1px solid var(--gray03);
    padding-block: 20px;
    margin-top: 64px;
    font-size: 0.875rem;
}
footer .copyright .container{
    /* justify-content: flex-start; */
    align-items: center;
}
footer .copyright p{
    width: 490px;
}
footer .copyright ul{
    display: flex;
    gap: 64px;
    width: clamp(640px,100%,1024px);
    margin-right: auto;
}
footer .sns{
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

/* Slider */
button.prev,
button.next{
    font-size: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 0;
    background-color: var(--white);
    cursor: pointer;
    background-image: url(./assets/images/arrow_black.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.black button.prev,
.black button.next{
    background-color: var(--black);
    background-image: url(./assets/images/arrow_white.svg);
}
button.prev{
    transform: rotate(180deg);
}
.swiper-button-disabled{
    opacity: .3;
    cursor: none;
}
nav.slider-btn-box{
    display: flex;
    gap: 16px;
}
.title-36{
    font-size: 2.25rem;
}

/* GNB */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10;
    height: 80px;
    padding-inline: 100px;
    transition: all 0.3s ease-out;
}
.off .navbar{
    transform: translateY(-100%);
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;    
}
.dropdown{
    /* padding-inline: 8px; */
}
.dropdown > div, .sub-dropdown > div {
    cursor: pointer;
}
.dropdown .menu a:hover h1{
    color:var(--green);
}

/* Transparent */
.transparent .navbar{
    background-color: transparent;
    color: white;
}
.transparent .dropdown > div{
    border-color: transparent;
}
.transparent .navbar .logo{
    background-image: url(./assets/images/logo_white.svg);
}
header:hover .navbar{
    background-color: white;
    color: var(--black);
}
header:hover .navbar .logo{
    background-image: url(./assets/images/logo_green.svg);
}
.transparent .util .language{
    background-image: url(./assets/images/icon_globe_white.svg);
}
.transparent .navbar{
    border-bottom-width: 0;
}

section.faq .container{
    margin-top: 0;
}
.faq details summary{  
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid var(--gray03);
    padding-block: 28px;
    font-size: 1.25rem;  
    font-weight: 700;
  }
  .faq details:first-of-type summary{
    border-top: 1px solid var(--gray03);
  }  
  .faq details summary::after{
    content: '';
    display: block;
    width: 24px;  
    height: 24px;
    margin-left: 16px;
    background-image: url(./assets/images/icon_plus_circle_black.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
    opacity: 0.5;
  }
  .faq details[open] summary{    
    border-bottom: 0;
    font-weight: 800;
    color:var(--green);
  }
  .faq details[open] summary::after{
    transform: rotate(135deg);
    opacity: 1;
  }
  .faq details:not([open]){    
    color:var(--dark-gray03)
  }
  .faq details .content{
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.3s;  
  }
  details[open] .content {
    height: auto;
    opacity: 1;
  }
  .faq details .content p{
    padding-bottom:24px;
    font-size: 1.0rem;    
    border-bottom: 1px solid var(--gray03);
  }

.bg-black{
    /* background-color: var(--black);     */
}
.bg-green{
    background-color: var(--green);
}

.btn-to-top{
    position: fixed;
    z-index: 5;
    right: 24px;
    bottom: 0px;    
    width: 64px;
    height: 64px;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border:1px solid #dddddd;    
    background-image: url(./assets/images/to_top_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    opacity: 0;
    transition: 0.3s;
    cursor: pointer;
}
.btn-to-top.on{
    bottom: 32px;
    opacity: 1;
}
#family-site-select{
    padding:8px 36px 8px 12px;
    border-radius: 4px;
}
:root{        
    --marquee-width: 100%;  
    --marquee-elements-displayed: 14;    
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));        
    --marquee-animation-duration: calc(var(--marquee-elements) * 8s);
}
.marquee {
    position: absolute;
    bottom: 0;    
    display: flex;    
    width: 100%;    
    overflow: hidden;
    padding-bottom: 64px;
    
}
.marquee-content {
  list-style: none;  
  display: flex;
  gap: 64px;
  animation: scrolling-rtl var(--marquee-animation-duration) linear infinite;
}

body:has(.sub) .navbar {
    box-shadow: 0 1px 0 #f0f0f0;
}
body:has(.sub) .off .navbar {
    box-shadow: none;
}

@keyframes scrolling-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
  }
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;  
  flex-shrink: 0;    
  white-space: nowrap;
}

.marquee-content li img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.modal { 
    position: fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(0,0,0,0.6); 
    z-index:9999;
    overflow: auto;
 }
.modal-content { 
    background:#fff; 
    max-width:800px; 
    margin:4% auto; 
    padding: 0; 
    position:relative; 
    border-radius: 24px;
}
.modal-content .title-box{
    padding: 40px;
    background: #f7f7fa;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
}
.modal-content .title-box h1{
    width: 80%;
    word-wrap: break-word;
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 800;
}
.modal-content .title-box h2{
    font-size: 18px;
}
.modal-content .case-content{
    padding: 20px 40px 40px;
}
.modal-content .case-content h1{
    font-size: 24px;
    font-weight: 800;
    color:var(--green);
    padding-block: 24px 12px;
}
.modal-content .case-content p{
    line-height: 140%;
}
.modal-close,
.modal-close-terms { 
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0;
    width: 40px;
    height: 40px;
    background-color: #efefef;
    background-image: url(./assets/images/icon_x_black.svg);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.terms-modal .modal-content {    
    padding: 2rem;    
    width: 100%;    
    position: relative;
    max-width: 500px;
    height: fit-content;
}

.terms-body {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.terms-body h2{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}
.terms-body p{
    padding-block: 8px;
}
.mo-h{
    /* display: none; */
}
.counter { visibility: hidden; }
.counter.is-ready { visibility: visible; }

/* Responsive Design */
@media screen and (max-width: 1023px) {
    .mo-h{
        display: none;
    }
    .navbar{
        height: 64px;
        padding: 16px;   
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);     
    }
    body:has(.sub) .off .navbar{
        box-shadow: 0 1px 0 #f0f0f0;
    }
    .menu-container{
        background: #fff;
        position: absolute;
        top: 4.4em;
        left: 0;
        width: 100%;
        overflow-y: hidden;
        transition: 0.3s ease-in-out;
    }
    .mega-menu{
        padding: 0 24px 24px 24px;
    }
    .mega-menu li{
        font-weight: bold;        
    }
    .mega-menu li > h2{
        font-size: 0.75rem;
        color:#999999;
        font-weight: 600;
        margin-top:24px;
    }
    .mega-menu > li > div{
        position: relative;
        padding-block: 28px;
        border-bottom: 1px solid #d9d9d9;
    }
    .mega-menu > li > div > span{
        font-size: 20px;
    }
    li.menu-show > div > span{
        color:var(--green);
    }
    .mega-menu li > div{
        display: flex;
        justify-content: space-between;
        align-items: center;
        white-space: nowrap;
    }    
    .mega-menu > li > div:after{
        content: '';
        position: absolute;
        display: block;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url(./assets/images/arrow_black.svg);
        background-position: 100% 50%;
        background-repeat: no-repeat;
        background-size: 28px;
        transition: transform 0.3s;
    }
    .mega-menu > li.menu-show > div:after{
        transform: translateY(-50%) rotate(90deg);
        background-image: url(./assets/images/arrow_green.svg);
    }
    .menu li h1{        
        font-size: 1.0rem;
        font-weight: 600;
    }
    .mega-menu li p{
        display: none;
    }
    .menu a{
        display: block;
        padding: 16px 0;
    }
    .menu{        
        height: 0;
        overflow: hidden;
        transition: height 0.3s;
    }
    /* Toggle class for Javascript */
    .menu-show .menu{
        overflow: visible;
        height: 220px;        
    }    
    .menu-show.AI .menu{
        height: 348px;
    }
    .menu-show.company .menu{        
        height: 169px;        
    }
    .menu-show.IR .menu{
        height: 118px;
    }
    .menu-show.customer .menu{
        height: 118px;
    }
    .material-symbols-outlined{
        transition: 0.3s;
    }
    /* Toggle class for javascript */
    .icon-rotated{
        transform: rotate(90deg);
    }
    .dropdown>div, .sub-dropdown > div{
        cursor: pointer;
        padding: 20px 0;
    }
    .sub-menu{
        font-size: 1.0rem;
        /* display: none; */
        border-bottom: 1px solid #d9d9d9;
        padding-bottom: 16px;
    }    
    .AI .sub-menu{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        
    }
    .AI li:first-of-type .sub-menu{
        border-color: #eeeeee;
        margin-bottom: 24px;
    }
    .AI .sub-menu li{
        display: flex;
        gap: 8px;        
    }
    .AI .sub-menu li .icon{
        width: 20px;
    }
    .AI .sub-menu li .icon img{
        width: 100%;
    }    
    /* Toggle class for Javascript */
    .sub-menu-show{
        display: block;
    }    
    /* Hide menu */
    .menu-container{
        height: 0;        
        position: fixed;
        top: 64px;
        z-index: 3;        
        overflow: hidden;
    }
    /* Toggle class for javascript */
    .mega-menu-show{
        display: flex;
        flex-direction: column;
        height: calc(100vh - 64px);
        border-top: 1px solid var(--gray03);
        overflow-y: auto;
    }
    header .logo{
        width: 120px;
        margin-left: 8px;
        margin-top: 4px;    
    }
    .navbar .util{
        position :relative;
        height: auto;
        padding:24px;
        gap: 0;
        right: auto;
        margin-top: auto;        
        gap: 24px;
        display: flex;
        justify-content: space-between;
    }
    .navbar .util .language{
        margin-right: auto;
    }
    .off .navbar{
        transform: none;
    }
    .menu-btn{
        position: absolute;
        right: 0;
        top: 0;
        width: 64px;
        height: 64px;
        background-image: url(./assets/images/icon_menu.svg);
        background-position: center;
        background-repeat: no-repeat;    
        background-color: transparent; 
        background-size: 28px;       
    }
    .menu-btn.mega-menu-show{        
        background-image: url(./assets/images/icon_x_01.svg);
        background-size: 12px;
        background-color: var(--gray01);
        border-radius: 50%;
        width: 32px;
        height: 32px;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        border: 0;
    }
    section .container{
        padding-block: 80px;
    }
    .title-36{
        font-size: 1.75rem;
    }
    footer{
        padding-top: 60px;
    }
    footer .container{
        padding-inline: 24px;
    }
    footer .sitemap{
        display: none;
    }
    footer .copyright{
        margin-top: 30px;
    }
    footer .copyright p{
        width: 140px;
    }
    footer .copyright ul{
        gap: 16px;
        margin:0 0 0 auto;
    }
    footer .family-site{
        display: none;
    }
    footer .contact{
        position: relative;
        width: 100%;
    }
    footer .sns{
        position: absolute;
        right: 0;
        top: -22px;
    }
    .marquee-content{
        gap: 48px;
    }
    .marquee-content li img{
        height: 28px;        
    }
    .btn-to-top{
        display: none;
    }
    .modal-content{
        margin: 4%;
    }
    .modal-content .title-box h1{
        font-size: 24px;
    }
    .modal-content .title-box h2{     
        font-size: 16px;
    }
    .modal-content .title-box{
        padding: 24px;
    }
    .modal-close{
        width: 32px;
        height: 32px;
        background-size: 20px;
    }
    .modal-content .case-content{
        padding: 24px 24px 48px 24px;
    }
    header .util li.contact{
        width: 100%;
        justify-content: center;
        height: 42px;
    }
}
@media screen and (min-width: 1024px) {
    .mo-h{
        display: inline-block;
    }
    .dropdown > div{
        display: flex;
        align-items: center;
        font-size: 1.0rem;
        padding-inline:24px;
        height: 80px;
    }
    .menu-container{
        position: absolute;
        z-index: 1;        
        width: 100%;
        left: 0;
    }
    .mega-menu{
        display: flex;
        justify-content: center;        
    }    
    .menu-btn{
        display: none;
    }
    .menu{
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        overflow-y: hidden;
        transition: transform 0.3s ease-in-out;
        display: flex;
        justify-content: center;        
    }    
    .dropdown > div{
        font-weight: 700;         
        transition: 0.3s;
    }
    .dropdown > div span{
        border-block: 2px solid transparent;
        padding-inline: 16px;
    }
    .dropdown:hover > div span{
        display: flex;
        align-items: center;
        height: 100%;
        /* border-bottom-color: var(--green) !important; */
        color:var(--green);
        border-bottom: 2px solid var(--green);
    }    
    .AI .menu .sub-menu{
        display: grid;        
        gap: 24px 60px;
    }
    .AI .menu .sub-dropdown:last-of-type .sub-menu{
        grid-template-columns: 1fr;
    }
    .AI .menu .sub-dropdown{
        padding: 40px 64px;
    }
    .AI .menu .sub-dropdown:first-child{
        border-left: 1px solid var(--gray04);
    }
    .menu .sub-menu li p{
        font-size: 0.75rem;
        color:var(--dark-gray02);
        margin-top: 4px;
    }
    .menu .sub-dropdown > h2{
        font-size: 0.75rem;
        font-weight: 800;        
        margin-bottom: 16px;
        padding-left: 4px;
    }
    .menu .sub-dropdown{        
        padding: 40px 64px;        
    }
    .mchine-vision .menu .sub-dropdown{
        margin-left: -168px;
    }
    .IR .menu .sub-dropdown{
        margin-left: 230px;
    }
    .AI .menu .sub-dropdown{                
        border-right:1px solid var(--gray04);
    }
    .customer .menu .sub-dropdown{
        margin-left: 460px;
    }    
    .menu .sub-menu{
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .menu .sub-menu li{
        display: flex;
        gap: 20px;
        align-items: center;
    }
    .menu .sub-menu li .icon{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--gray01);
    }

    /* Hide menu */
    .menu{
        height: 0;
    }
    .dropdown:hover .menu{
        height: auto;
        border-top: 1px solid var(--gray03);                
    }
    .dropdown:hover .menu:after{
        content: '';
        position: fixed;
        width: 100%;
        height: 100vh;
        left: 0;
        top: 90px;
        background-color: rgba(0,0,0,.5);
        z-index: -1;
        pointer-events: none;     
    }    
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    section .container{
        padding-inline: 32px;       
    }
    .terms-modal .modal-content{
        margin: auto;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1280px){
    .navbar{
        padding-inline: 70px;
    }
    header .util{        
        right: 70px;

    }
}