@charset "utf-8";

/* root */
:root{
    /* font */
    --main-font: 'Pretendard', sans-serif;
    --point-font: 'Poppins', 'Pretendard', sans-serif;
    /* color */
    --brand-color: #0083CA;
    --bg-color: #121212;
    --text-color: #111;
    --bg-color-gray: #f6f6f6;
}

/* reset */
body{
    font-family: var(--main-font);
    line-height: 1.5;
    color: var(--text-color);
    font-size: 18px;
    letter-spacing: -0.02em;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: break-word;
}
p{
    word-break: keep-all;
    white-space: normal;
    overflow-wrap: break-word;
    color: #444;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}
a{
    color: inherit;
    cursor: pointer;
}
a.btn, .btn{
    line-height: inherit;
    height: auto;
    font-weight: inherit;
    font-size: inherit;
    transition: none;
    padding: 0;
}
button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* header */
header{
    position: relative;
}
header .header_wr{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 60px;
    transition: all 0.3s;
}
header.on .header_wr{
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    /* box-shadow: ; */
}
header .gnb{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    /* z-index: 999; */
}
header.on .gnb{
    color: var(--text-color);
}
header.active .gnb{
    color: var(--text-color);
}
header .logo{
    width: 50px;
}
header .logo img{
    object-fit: contain;
}
header .logo .black{
    display: none;
}
header.on .logo .white{
    display: none;
}
header.on .logo .black{
    display: block;
}
header.active .logo .white{
    display: none;
}
header.active .logo .black{
    display: block;
}
header nav .navlist{
    display: flex;
    /* color: var(--brand-color); */
}
header nav .depth1{
    position: relative;
    transition: all .3s linear;
}
header nav .depth1.on .dp1{
    color: var(--brand-color);
}
header nav .dp1{
    height: 80px;
    padding: 0 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    /* height: 100%; */
}
header nav .dp1:hover{
    color: var(--brand-color);
}
header nav .lnb{
    /* display: none; */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0px;
    padding: 0;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}
header nav .lnb.on{
    padding: 10px 0 40px;
    height: 350px;
    opacity: 1;
}
header nav .lnb li a{
    padding: 12px 24px;
    color: var(--text-color);
    display: block;
    white-space: nowrap;
    font-size: 16px;
}
header nav .lnb li a:hover{
    color: var(--brand-color);
}
header .nav-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    z-index: -10;
    transition: all 0.3s ease;
    /* display: none; */
}
header .nav-bg:after{
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
header .nav-bg.on:after{
    opacity: 1;
}
header .nav-bg.on{
    height: 340px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

header .lang-wrap{
    position: relative;
}
header .lang-wrap .lang{
    display: flex;
    gap: 20px;
    font-family: var(--point-font);
    align-items: center;
    font-weight: 600;
    padding: 10px;
}
header .lang-wrap .arrow {
    display: block;
    background-image: url(../img/qlab/arrow-white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
}
header.on .lang-wrap .arrow{
    background-image: url(../img/qlab/arrow-black.png);
}
header.active .lang-wrap .arrow{
    background-image: url(../img/qlab/arrow-black.png);
}
header .lang-wrap ul{
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* border-radius: 2px; */
}
header .lang-wrap ul .lang{
    color: var(--text-color);
}
header .lang-wrap ul .lang:hover{
    color: var(--brand-color);
}

header .util{
    display: flex;
    gap: 20px;
}
header .r-inset{
    display: none;
}
header .btns {
    width: 24px;
    height: 24px;
    position: relative;
}
header .gnb .toggle-btn {
    display: block;
}
header .toggle-btn {
    display: none;
    border: none;
    background: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}
header .toggle-btn > span {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    display: block;
    transition: all .2s cubic-bezier(0, 0, 0.3, 1);
}
header.on .toggle-btn > span {
    background: #333;
}
header .toggle-btn > span + span {
    margin-top: 6px;
}


/* footer */
footer{
    background: var(--bg-color);
    padding: 60px;
    font-size: 16px;
    color: #b3b3b3;
}
footer .footer-wrap{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
footer .info li{
    display: flex;
    align-items: center;
}
footer .info li + li{
    margin-top: 8px;
}
footer .info .info-tit{
    display: block;
    color: #fff;
    width: 120px;
    font-family: var(--point-font);
    flex-shrink: 0;
}
footer .info .youtube{
    width: 30px;
}
footer .info .youtube:hover{
    opacity: 0.8;
}
footer .info .youtube img{
    object-fit: contain;
}
footer .bottom{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
footer .bottom .top-btn-wrap{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eee;
}
footer .bottom .top-btn-wrap:hover{
    background: #fff;
}
footer .bottom .top-btn-wrap img{
    width: 25px;
    height: 25px;
}

/* cursor */
.cursor{
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%) scale(1);
}
.cursor .bg{
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: rgba(0, 131, 202, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--point-font);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    line-height: 105px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 0;
    transform: scale(0);
}
.cursor.on .bg{
    opacity: 1;
    transform: scale(1);
}

/* index */
#main_wr{
    background: var(--bg-color);
    color: #fff;
}
#main_wr .visual{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
#main_wr .visual .bg-img{
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transition: all 6s ease-in-out;
    /* background: url(../img/qlab/main.jpg) no-repeat center / cover; */
}
#main_wr .visual.active .bg-img{
    transform: scale(1);
}
#main_wr .visual .txt-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: all 1.5s ease-in-out;
}
#main_wr .visual.active .txt-box{
    opacity: 1;
}
#main_wr .visual .txt-box .tit-txt{
    font-family: var(--point-font);
    font-weight: 700;
    font-size: 110px;
    line-height: 1.2;
    white-space: nowrap;
    transition: all .2s linear;
}
#main_wr .visual .txt-box .sub-txt{
    font-weight: 700;
    font-size: 22px;
    margin-top: 30px;
    transition: all .2s linear;
}

#main_wr .company{
    position: relative;
    height: 100vh;
}
#main_wr .company::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, #000000, #121212);
    /* z-index: -10; */
}
#main_wr .company .bg-img{
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
}
#main_wr .company .bg-l,
#main_wr .company .bg-r{
    margin-top: 8%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 40%;
    aspect-ratio: 756 / 466;
    /* height: 466px; */
    flex-shrink: 0;
    z-index: 1;
}
#main_wr .company .bg-l{
    background-image: url(../img/qlab/section1-bg-l.png);
}
#main_wr .company .bg-r{
    background-image: url(../img/qlab/section1-bg-r.png);
}
#main_wr .company .txt-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding-bottom: 100px;
    z-index: 1;
    width: 100%;
}
#main_wr .small-tit{
    display: block;
    color: var(--brand-color);
    font-family: var(--point-font);
    font-weight: 700;
    margin-bottom: 10px;
}
#main_wr h3{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    width: 100%;
    transition: all .2s linear;
}
#main_wr .btn{
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-radius: 8px;
    margin-top: 60px;
    display: inline-block;
    padding: 12px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s;
}
#main_wr .company .btn{
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.06);
}
#main_wr .btn:hover{
    background: rgba(255, 255, 255, 0.3);
}

#main_wr .inner{
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 40px;
}

#main_wr .product{
    padding: 150px 0;
    position: relative;
}
#main_wr .product .bg-blur{
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
#main_wr .product .bg-blur::after, #main_wr .product .bg-blur::before{
    content: '';
    position: absolute;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    background: var(--brand-color);
    filter: blur(100px);
    opacity: 0.15;
}
#main_wr .product .bg-blur::after{
    top: 20%;
    left: -10%;
}
#main_wr .product .bg-blur::before{
    bottom: 20%;
    right: -10%;
}
#main_wr .product-wrap{
    display: flex;
}
#main_wr .left{
    flex: 1;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    z-index: 1;
}
#main_wr .right{
    flex: 1;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#main_wr .prd-box{
    max-width: 600px;
}
#main_wr .prd-box .img-wrap img{
    transition: all 0.4s ease-in-out;
}
#main_wr .prd-box:hover .img-wrap img{
    transform: scale(1.1);
}
#main_wr .prd-box .img-wrap{
    border-radius: 8px;
    overflow: hidden;
}
#main_wr .prd-box .tit{
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}
#main_wr .prd-box p{
    color: #999;
    margin-top: 5px;
    margin-bottom: 50px;
}
/* logo-color ani */
.txt-sticky .logo-color {
    position: relative;
    color: #888888;
    display: inline-block;
    background: linear-gradient(90deg, #007BFF 0%, #007BFF 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-size 1.2s ease;
}
[data-aos="fill-text"].aos-animate .logo-color {
    background-size: 100% 100%;
}
.txt-sticky .logo-color::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #888888;
}

#main_wr .capa{
    padding: 150px 0 100px;
    position: relative;
    background: url(../img/qlab/section3-bg.png) no-repeat center / cover;
}
#main_wr .capa .capa-wrap{
    text-align: center;
    z-index: 1;
}
#main_wr .capa .tit-wrap{
    margin-bottom: 80px;
}
#main_wr .capa .card-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}
#main_wr .capa .card-wrap .card{
    width: 100%;
    text-align: center;
    padding: 100px 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s;
}
#main_wr .capa .card-wrap .card:hover{
    background: rgba(255, 255, 255, 0.3);
}
#main_wr .capa .card-wrap .card .tit{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}
#main_wr .capa .card-wrap .card p{
    color: #b3b3b3;
}

#main_wr .media{
    padding: 150px 0 200px;
}
#main_wr .media .tit-wrap{
    margin-bottom: 80px;
    text-align: center;
}
#main_wr .media .conset .lt_gal{
    display: flex;
    gap: 24px;
}
#main_wr .media .conset .lt_gal .video-con{
    flex: 1;
}
#main_wr .media .conset .lt_gal .video-con > iframe{
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}
.lt_gal .video-tit{
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-top: 16px;
    padding-bottom: 6px;
}
.lt_gal .video-date{
    display: block;
    color: #666;
    font-size: 16px;
}

#main_wr .contact{
    padding: 100px 0;
    background: url(../img/qlab/section5-bg.jpg) no-repeat center / cover;
}
#main_wr .contact .btn{
    padding: 12px 50px;
}
#main_wr .contact .tit-wrap h3{
    font-size: 48px;
}


/* sub-page */
.sub-visual-img {
    display: none;
    overflow: hidden;
    display: none;
    height: 640px;
}
.sub-visual-list{
    display: none;
}
.sub-visual-company-wrap .sub-visual-company{
    display: block;
}
.sub-visual-main-category .sub-visual-list{
    display: block;
}
.sub-visual-sol-wrap .sub-visual-sol{
    display: block;
}
.sub-visual-capa-wrap .sub-visual-capa{
    display: block;
}
.sub-visual-media-wrap .sub-visual-media{
    display: block;
}
.sub-visual-contact-wrap .sub-visual-contact{
    display: block;
}
.sub-visual-img-inner{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.sub-visual-img-inner .sub-visual-txt{
    position: absolute;
    text-align: center;
}
.sub-visual-img-inner .sub-visual-title{
    font-size: 80px;
    font-weight: 700;
    color: #fff;
}
.sub-visual-img img{
    transform: scale(1.1);
    transition: all 4s ease-in-out;
}
.sub-visual-img.active img{
    transform: scale(1);
}
.sub-visual-img .sub-visual-txt{
    opacity: 0;
    transition: all 1.5s ease-in-out;
}
.sub-visual-img.active .sub-visual-txt{
    opacity: 0.92;
}

.sub-visual-list ul{
    display: none;
}
.sub-visual-btn .sub-visual-btn-wrap{
    display: flex;
    gap: 32px;
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    padding: 0 10px;
    height: 80px;
    align-items: center;
    font-size: 16px;
    color: #666;
}
.sub-visual-btn .sub-visual-btn-home{
    display: flex;
    gap: 6px;
    align-items: center;
}
.sub-visual-btn .sub-visual-btn-home img{
    width: 24px;
    height: 24px;
}
.sub-visual-list-button.sub-visual-main-category{
    position: relative;
}
.sub-visual-list-button.sub-visual-main-category::after,
.sub-visual-list-button.sub-visual-main-category::before{
    content: '';
    width: 12px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background: url(../img/qlab/arrow-gray.png) no-repeat center / contain;
}
.sub-visual-list-button.sub-visual-main-category::before{
    left: -22px;
}
.sub-visual-list-button.sub-visual-main-category::after{
    right: -22px;
}

#sub-page{
    padding: 150px 0 180px;
}
.page-inner{
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}
.page-head {
    text-align: center;
    margin-bottom: 100px;
}
.s-tit{
    font-family: var(--point-font);
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 10px;
}
.l-tit{
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
}

.bold{
    font-weight: 700;
    display: block;
}
.logo-color{
    color: var(--brand-color);
}



/* company */
.company .page-head{
    margin-bottom: 0;
}
.page-inner .intro-txt{
    margin-top: 50px;
    margin-bottom: 100px;
}
.page-inner .intro-txt p{
    font-size: 20px;
    text-align: center;
    color: #444;
}
.page-inner .intro-txt p + p{
    margin-top: 20px;
}
.company .card-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}
.company .card-wrap .card{
    position: relative;
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
}
.company .card-wrap .card:nth-of-type(2){
    margin-top: 60px;
    margin-bottom: 0;
}
.company .card-wrap .card .txt-box{
    color: #fff;
    position: absolute;
    bottom: 50px;
    left: 40px;
    right: 40px;
}
.company .card-wrap .card .txt-box .tit{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.company .card-wrap .card p{
    color: #fff;
}

/* history */
.history .timeline-wrap{
    width: 100%;
    position: relative;
}
.history .timeline-wrap:before{
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% - 110px);
    background: #d9d9d9;
    opacity: 0.5;
}
.history .timeline{
    width: 50%;
    margin-bottom: 40px;
    padding: 0 100px;
}
.history .timeline:last-of-type{
    margin-bottom: 0;
}
.history .timeline .year{
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
/* .history .timeline .year::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -106px;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background: var(--brand-color);
    opacity: 0.5;
} */
.history .timeline .year::after{
    content: '';
    position: absolute;
    top: 50%;
    left: -108px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid var(--brand-color);
    /* background: var(--bg-color); */
}
.history .timeline ul li{
    display: flex;
    /* gap: 20px; */
    padding-bottom: 10px;
}
.history .timeline ul li:last-of-type{
    padding-bottom: 0;
}
.history .timeline .month{
    width: 23px;
    color: #bbb;
    opacity: 0.8;
    text-align: center;
}

.history .timeline:nth-of-type(odd){
    margin-left: 50%;
}
.history .timeline:nth-of-type(even){
    text-align: right;
}
.history .timeline:nth-of-type(even) ul li{
    flex-direction: row-reverse;
}
/* .history .timeline:nth-of-type(even) .year::before{
    left: auto;
    right: -105px;
} */
.history .timeline:nth-of-type(even) .year::after{
    left: auto;
    right: -108px;
}
.history .timeline .time-img{
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}


/* location */
.map .map-wrap{
    display: flex;
}
.map .map-box{
    flex: 1;
}
.map .info-wrap{
    flex: 1;
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.map .info-wrap .info{
    margin-top: 30px;
}
.map .info-wrap .info li{
    padding: 20px 0;
    display: flex;
}
.map .info-wrap .info li:not(:last-of-type){
    border-bottom: 1px solid #eee; 
}
.map .info-wrap .info li .tit{
    display: block;
    width: 120px;
    font-weight: 700;
    flex-shrink: 0;
}


/* product */
.page-prd-head-wrap{
    display: flex;
    align-items: center;
    margin-bottom: 150px;
}
.page-prd-head-wrap .head-img{
    width: 50%;
    border-radius: 12px;
    overflow: hidden;
}
.page-prd-head-wrap .page-prd-head{
    width: 50%;
    padding-left: 80px;
}
.m-tit{
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}
.prd .video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .19);
}
.prd .video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sub-tit-wrap{
    text-align: center;
    margin-bottom: 60px;
}
.sub-tit-wrap p, .page-prd-head p{
    margin-top: 30px;
    color: #444;
}

/* prd01 - kpop 댄스 마스터 */
.prd01 .con-key .key-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}
.prd01 .con-key .key-wrap .img-wrap{
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
}
.prd01 .con-key .key-wrap .txt-wrap .tit{
    font-size: 24px;
    margin: 30px 0 12px;
    font-weight: 700;
}
.list-wrap .list{
    color: #444;
    margin-left: 10px;
    margin-bottom: 5px;
    position: relative;
}
.list-wrap .list::before{
    content: '';
    position: absolute;
    left: -10px;
    width: 3px;
    height: 3px;
    background: var(--brand-color);
    top: 50%;
    transform: translateY(-50%);
}

.prd01 .con-paly{
    background: url(../img/qlab/prd01-play-bg.jpg) no-repeat center / cover;
    padding: 100px 0 150px;
    margin: 120px 0;
    color: #fff;
}
.prd01 .con-paly .img-wrap{
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, .12);
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.prd01 .con-paly .light-wrap .light-box{
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.prd01 .con-paly .light-wrap .light-box.active{
    opacity: 1;
}
.prd01 .con-paly .light-wrap .light{
    position: absolute;
    border-radius: 12px;
    border: 3px dashed #fff;
    animation: light 1.2s infinite;
}
@keyframes light{
    0%, 100% {border: 3px dashed #fff;}
    50% {border: 3px dashed var(--brand-color);}
}
.prd01 .con-paly .light-wrap .l1{
    width: 30%;
    aspect-ratio: 3 / 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.prd01 .con-paly .light-wrap .l2-1{
    width: 15%;
    height: 50%;
    bottom: 4%;
    left: 1%;
}
.prd01 .con-paly .light-wrap .l2-2{
    width: 15%;
    height: 50%;
    bottom: 4%;
    right: 1%;
}
.prd01 .con-paly .light-wrap .l3-1{
    width: 20%;
    height: 25%;
    bottom: 4%;
    left: 12%;
}
.prd01 .con-paly .light-wrap .l3-2{
    width: 20%;
    height: 25%;
    bottom: 4%;
    right: 12%;
}

.prd01 .con-paly .btn-wrap{
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.prd01 .con-paly .btn-wrap .btn{
    position: relative;
}
.prd01 .con-paly .btn-wrap button{
    width: 250px;
    height: 70px;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}
.prd01 .con-paly .btn-wrap button:hover{
    background: rgba(255, 255, 255, .2);
}
.prd01 .con-paly .btn-wrap .desc{
    position: absolute;
    top: calc(100% + 20px);
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    color: #eee;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.prd01 .con-paly .btn-wrap .active button{
    border: 1px solid var(--brand-color);
    box-shadow: 0 4px 20px rgba(0, 131, 202, .19);
}
.prd01 .con-paly .btn-wrap .active .desc{
    opacity: 1;
}

.tab-btn {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}
.tab-btn button{
    width: 200px;
    height: 60px;
    font-size: 20px;
    color: #666;
    border-radius: 50px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
}
.tab-btn button:hover{
    border: 1px solid #666;
}
.tab-btn button.active{
    border: 0;
    background: var(--brand-color);
    color: #fff;
    font-weight: 700;
}
.prd01 .con-model .txt-wrap .tit{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.prd01 .con-model .txt-wrap p{
    color: #444;
}
.prd01 .con-model .tab-con{
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity .3s;
}
.prd01 .con-model .tab-con.active{
    opacity: 1;
    visibility: visible;
    height: auto;
}
.prd01 .con-model .tc1 .tab-wrap{
    display: flex;
    align-items: center;
}
.prd01 .con-model .tc1 .img-wrap{
    width: 50%;
    margin-right: 100px;
}
.prd01 .con-model .tc1 .img-wrap img{
    object-fit: contain;
}
.prd01 .con-model .tc1 .txt-wrap{
    width: 50%;
}
.prd01 .con-model .tc1 .table-wrap{
    margin-top: 50px;
}
.prd01 .con-model .tc1 .table-wrap .table-tit{
    display: block;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}
.prd01 .con-model .tc1 table{
    width: 100%;
    border-top: 2px solid #111;
    border-bottom: 2px solid #111;
    border-collapse: collapse; /* 필수 */
    border-spacing: 0;
    font-size: 16px;
}
.prd01 .con-model .tc1 table tr{
    border-bottom: 1px solid #dedede;
}
.prd01 .con-model .tc1 table th{
    padding: 20px;
    padding-right: 40px;
    font-weight: 700;
    text-align: left;
}
.prd01 .con-model .tc1 table td{
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.prd01 .con-model .tc1 table .pad{
    padding: 5px 20px;
}
.prd01 .con-model .tc2 .txt-wrap{
    text-align: center;
}
.prd01 .con-model .tc2 .model-list-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 30px;
    margin-top: 60px;
}
.prd01 .con-model .tc2 .model-box{
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.prd01 .con-model .tc2 .model-box:not(:last-of-type)::after{
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 1;
    background: url(../img/qlab/plus.png) no-repeat center / contain;
    top: 50%;
    right: -55px;
    transform: translateY(-50%);
}
.prd01 .con-model .tc2 .model-box:last-of-type .model-list{
    width: 50%;
}
.prd01 .con-model .tc2 .model-box .txt{
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.prd01 .con-model .tc2 .model-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 50px 30px;
    text-align: center;
}
.prd01 .con-model .tc2 .model-list img{
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}
.prd01 .con-model .tc2 .model-list .tit{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.prd .con-gallery{
    margin-top: 150px;
}
.prd .con-gallery .gallery-swiper,
.prd .con-cont .cont-swiper{
    width: 100%;
    overflow: hidden;
}
.prd .gallery-swiper .swiper-wrapper,
.prd .cont-swiper .swiper-wrapper{
    transition-timing-function: linear;
}

/* prd02 - 에듀짐*/
.prd .con-key .card-wrap{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}
.prd .con-key .card-wrap .card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, .12);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    padding: 50px 30px;
}
.prd .con-key .card-wrap img{
    width: 120px;
    height: 120px;
}
.prd .con-key .card-wrap .tit{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.prd02 .con-fms{
    width: 100%;
    height: 100vh;
    margin: 120px 0;
    background: url(../img/qlab/prd02-fms-bg.jpg) no-repeat center / cover;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.prd02 .con-fms .txt-wrap{
}
.prd02 .con-fms .m-tit{
    color: #fff;
    margin-left: 100px;
    position: relative;
    display: inline-block;
}
.prd02 .con-fms .m-tit::before,
.prd02 .con-fms .m-tit::after{
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    background: url(../img/qlab/icon-quotation.png) no-repeat center / contain;
    top: 0;
}
.prd02 .con-fms .m-tit::before{
    left: -100px;
}
.prd02 .con-fms .m-tit::after{
    right: -100px;
    transform: scaleX(-1);
}
.prd02 .con-fms .txt-box{
    margin-left: 30%;
    margin-top: 100px;
} 
.prd02 .con-fms .txt-box .tit{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
}
.prd02 .con-fms .txt-box .cont{
    font-size: 20px;
}
.prd .con-adv .txt-box .adv-img{
    display: none;
}
.prd .con-adv .img-wrap{
    overflow: hidden;
    
}
.prd .con-adv .img-wrap .page-inner{
    max-width: 1150px;
    position: relative;
    padding: 0;
}
.prd .con-adv .img-wrap .page-inner::before,
.prd .con-adv .img-wrap .page-inner::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 3px;
}
.prd .con-adv .img-wrap .page-inner::before{
    background: linear-gradient(90deg, #75EEEB, #55D1E1);
    right: 100%;
}
.prd .con-adv .img-wrap .page-inner::after{
    background: linear-gradient(90deg, #8C47AB, #9937A5);
    left: 100%;
}
.prd .con-adv .txt-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    max-width: 1150px;
    margin: 30px auto 0;
    width: 100%;
    padding: 0 25px;
}
.prd .con-adv .txt-wrap .tit{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 12px;
}
.prd02 .con-install{
    background: var(--bg-color-gray);
    width: 100%;
    margin: 120px 0;
    padding: 100px 0;
    overflow: hidden;
}
.prd02 .con-install .sub-tit-wrap{
    padding-left: 80px;
    text-align: left;
}
.prd02 .con-install .page-inner{
    display: flex;
    justify-content: space-between;   
}
.prd02 .con-install .img-wrap{
    width: 50%;
}
.prd .con-cont .cont-detail{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.prd .con-cont .cont-detail li{
    padding: 0 20px;
    display: flex;
    gap: 8px;
}
.prd .con-cont .cont-detail li:nth-of-type(2){
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
}
.prd .con-model2{
    margin-top: 150px;
}
/* .prd .con-model2 .img-wrap{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
} */
.prd .con-model2 .btn{
    margin: 60px auto 0;
    width: 250px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100px;
    background: var(--bg-color);
    font-weight: 600;
    transition: all 0.3s;
}
.prd .con-model2 .btn:hover{
    background: var(--brand-color);
}
.prd02 .con-model2 .img-wrap{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* prd03 - 브레인핏 */
.prd03 .con-key .card-wrap{
    grid-template-columns: repeat(3, 1fr);
    max-width: 1045px;
    margin: 0 auto;
}
.prd03 .con-adv{
    margin: 120px 0;
    padding: 100px 0;
    background: var(--bg-color-gray);
}
.prd03 .con-model2 .hw{
    margin: 0 auto;
    max-width: 1045px;
    text-align: center;
    margin-bottom: 60px;
}
.prd03 .con-model2 .hw .tit{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
.prd03 .con-model2 .hw .hw-card{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 30px;
}
.prd03 .con-model2 .hw .hw-card li{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 50px 30px;
    border-radius: 12px;
    border: 1px solid #ddd;
}
.prd03 .con-model2 .hw .hw-card li img{
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}
.prd03 .con-model2 .hw .hw-card li .tit{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

/* prd04 - 기타 제품 */
.page-prd-head .age{
    display: inline-block;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 10px 30px;
    margin-bottom: 20px;
}
.prd04 .prd04-2{
    padding: 120px 0 180px;
    margin-bottom: 0;
    background: var(--bg-color-gray);
}
.prd04 .prd04-2 .page-prd-head-wrap{
    margin-bottom: 0;
}
.prd04 .prd04-2 .page-prd-head-wrap .page-prd-head{
    padding: 0;
    padding-right: 100px;
}
#sub-page.prd04{
    padding: 150px 0 0;
}

/* prd-model - 에듀짐 모델 */
.prd-model .page-head{
    margin-bottom: 0;
}
.prd-model .con-intro{
    position: relative;
    margin-bottom: 150px;
}
.prd-model .con-intro .bg-img{
    position: relative;
}
.prd-model .con-intro .bg-img .img-wrap{
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}
.prd-model .con-intro .dot-box{
    position: absolute;
}
.prd-model .con-intro .dot{
    position: absolute;
    top: 0;
    left: 0;
    margin: -20px 0 0 -20px;
    width: 40px;
    height: 40px;
    transition: all 0.3s;
    z-index: 1;
}
.prd-model .con-intro .dot-box.d1{
    top: 10%;
    left: 50%;
}
.prd-model .con-intro .dot-box.d2{
    top: 25%;
    left: 48%;
}
.prd-model .con-intro .dot-box.d3{
    bottom: 40%;
    left: 50%;
}
.prd-model .con-intro .dot-box.d4{
    bottom: 45%;
    left: 20%;
}
.product .dot-wrap .dot-box:hover .dot{
    transform: rotate(90deg);
}
.prd-model .con-intro .dot-img{
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/qlab/plus.png) no-repeat center / contain;
    position: relative;
}
.prd-model .con-intro .dot-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--brand-color);
    animation: circle 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: -1;
}
@keyframes circle{
    0% {
        transform: scale(0.8);
        opacity: 1;
        transform-origin: center;
    }
    80%, 100% {
        transform: scale(2);
        opacity: 0;
        transform-origin: center;
    }
}
.prd-model .con-intro .pannel {
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    min-width: 220px;
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    display: none;
    white-space: nowrap;
    text-align: center;
}
.prd-model .con-intro .pannel .p-tit{
    font-weight: 700;
    padding-bottom: 10px;
    color: #333;
}
.prd-model .con-intro .pannel p{
    white-space: nowrap;
}

.prd-model .con-model .txt-wrap{
    text-align: center;
}
.prd-model .con-model .txt-wrap .tit{
    font-size: 32px;
    font-weight: 700;
}
.prd-model .con-model .txt-wrap .hash{
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}
.prd-model .con-model .txt-wrap .hash li{
    margin-top: 12px;
    padding: 5px 20px;
    border-radius: 30px;
    background: #eee;
    color: #444;
    font-size: 16px;
}
.prd-model .con-model .txt-wrap p{
    margin-top: 30px;
    margin-bottom: 50px;
}

.prd .view .tit{
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
.prd .view .img-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    text-align: center;
}
.prd .view .img-wrap li{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.prd .view .img-wrap img{
    width: 100%;
    object-fit: contain;
}
.prd .view .img-wrap .txt{
    display: block;
    font-size: 20px;
    font-weight: 600;
    /* margin-top: 5px; */
}
.prd-model .con-model .gallery{
    margin-top: 150px;
}
.prd-model .con-model .gallery .gallery-swiper{
    overflow: hidden;
}
.prd-model .con-model .gallery .gallery-no-swiper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.prd-model .con-model .tab-con{
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity .3s;
}
.prd-model .con-model .tab-con.active{
    opacity: 1;
    visibility: visible;
    height: auto;
}



/* capa */
/* capa01 */
.capa01 .page-head{
    margin-bottom: 0;
}
.capa01 .card-tit{
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    font-family: var(--point-font);
    margin-bottom: 40px;
}
.capa01 .card-box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.capa01 .card-box .card{
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
}
.capa01 .card-box .card .num{
    display: block;
    color: #ccc;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--point-font);
    margin-bottom: 20px;
}
.capa01 .card-box .card .tit{
    font-size: 24px;
    font-weight: 700;
}
.capa01 .card-box .card .icon-wrap{
    width: 80px;
    height: 80px;
}
.capa01 .c2{
    margin-top: 100px;
}
.capa01 .c2 .card-box .card .txt-box {
    color: #fff;
}
.capa01 .card-box .card p{
    margin-top: 10px;
    color: #fff;
}
.capa01 .c2 .card{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 450px;
}
.capa01 .c2 .card:nth-of-type(1){
    background-image: url(../img/qlab/capa01-2-1.jpg);
}
.capa01 .c2 .card:nth-of-type(2){
    background-image: url(../img/qlab/capa01-2-2.jpg);
}
.capa01 .c2 .card:nth-of-type(3){
    background-image: url(../img/qlab/capa01-2-3.jpg);
}

/* capa02 */
.capa02 .con-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    /* gap: 100px; */
}
.capa02 .con-box:last-of-type{
    margin-bottom: 0;
}
.capa02 .con-box .txt-box{
    width: 50%;
    padding-right: 100px;
}
.capa02 .con-box:nth-of-type(even){
    flex-direction: row-reverse;
}
.capa02 .con-box:nth-of-type(even) .txt-box{
    padding-right: 0;
    padding-left: 100px;
}
.capa02 .con-box .txt-box .tit{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}
.capa02 .con-box .txt-box p{
    font-size: 20px;
    color: #444;
}
.capa02 .con-box .capa-swiper{
    width: 50%;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 12px;
}
.capa-swiper .swiper-slide{
    /* overflow: hidden; */
}
.capa-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* cert */
#bo_v_img img {
    width: auto;
}
.cert #bo_gall .gall_img > a{
    pointer-events: none;
}
.cert #bo_gall a.bo_tit{
    pointer-events: none;
}
.cert #bo_gall .gall_li .gall_box {
    position: relative;
}
.cert #bo_gall .gall_li .gall_chk {
    padding: inherit;
    position: absolute;
    top: 0;
    left: 0;
}
.cert .chk_box input[type="checkbox"] + label {
    /* padding-left: 10px; */
    vertical-align: middle;
}

.cert #bo_gall .gall_text_href{
    margin: 20px 16px;
    line-height: 1.4;
    text-align: center;
    color: #444;
}
.cert #bo_gall #gall_ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 24px;
    margin-top: 10px;
}
.cert #bo_gall .gall_img {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 0;
    width: 100%;
    height: auto !important;
    overflow: hidden;
    /* max-height: unset !important; */
}
/* 페이지 */
.pg_wrap {
    float: inherit;
    margin-top: 100px;
    text-align: center;
    display: block;
}
.pg_wrap .pg{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.pg_wrap .pg .pg_page.disable{
    opacity: 0.3;
    pointer-events: none;
}
.pg_wrap .pg a {
    color: #999;
    height: auto;
    line-height: normal;
    min-width: unset;
    border-radius: 0;
    background-color: transparent;
    border: 0;
    padding: 4px 8px;
}
.pg_wrap .pg a:hover{
    color: #666;
}
.pg_wrap .pg a.pg_prev, .pg_wrap .pg a.pg_next{
    width: 24px;
    height: 12px;
    min-width: auto;
    border: 0;
    background: url(../img/qlab/arrow-black.png) no-repeat center / contain;
    transform: rotate(90deg);
    opacity: 0.8;
}
.pg_wrap .pg a.pg_prev:hover, .pg_wrap .pg a.pg_next:hover{
    opacity: 1;
}
.pg_wrap .pg a.pg_prev {
    margin-right: 20px;
}
.pg_wrap .pg a.pg_next{
    transform: rotate(-90deg);
    margin-left: 20px;
}
.pg_wrap .pg .pg_current {
    background: #fff;
    border: none;
    color: #333;
    font-weight: 700;
    font-size: inherit;
    height: unset;
    line-height: normal;
    min-width: unset;
    border-radius: 0;
    padding: 4px 8px;
    position: relative;
}


/* wrtie.skin */
#bo_w .bo_w_flie .frm_file{
    font-size: 14px;
    margin-top: 0;
}
#bo_w .btn_confirm {
    display: flex;
    align-items: center;
    margin: 40px 0 10px 0;
    gap: 20px;
    justify-content: center;
}
#bo_w .btn_cancel, #bo_w .btn_submit {
    width: 200px;
    height: 50px;
    font-family: var(--main-font);
    line-height: 1.5;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: inherit;
    color: inherit;
}
#bo_w .btn_submit {
    background: var(--brand-color);
    color: #fff;
}
#bo_w .btn_cancel {
    border: 1px solid #c8c8c8;
    background: var(--bg-color-gray);
}
/* view.skin */
#bo_v{
    margin-bottom: 0;
    padding-bottom: 0;
}
#bo_v .view_header{
    text-align: center;
    border-top: 2px solid rgba(0, 0, 0, 0.8);
}
#bo_v_title{
    border-bottom: 1px solid #e6e6e6;
}
#bo_v_title .bo_v_tit{
    display: block;
    padding: 30px 50px;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}
.if_date{
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    margin-top: 8px;
    text-align: right;
    padding: 20px 50px;
}
#bo_v_atc{
    padding: 100px;
}
.bo_v_nb li{
    padding: 24px 13px;
}
.back-to-list{
    margin-top: 100px;
}
.back-to-list .btn {
    width: 200px;
    display: block;
    text-align: center;
    color: #666;
    font-size: 20px;
    margin: 0 auto;
    padding: 12px 0;
    border: 1px solid #d9d9d9;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.back-to-list .btn:hover{
    color: var(--brand-color);
    border: 1px  solid var(--brand-color);
}

/* media */
/* prvideo */
#bo_sch{
    display: none;
}
#bo_list_total{
    display: none;
}
#bo_gall .gall_li{
    margin: 0;
    position: relative;
}
.prvideo #bo_gall #gall_ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}
.prvideo #bo_gall .gall_href{
    width: 100%;
    height: 100% !important;
    aspect-ratio: 16 / 8.9;
    border-radius: 8px;
    overflow: hidden;
}
.prvideo #bo_gall .bo_tit{
    font-size: 24px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* 2줄까지 표시 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.prvideo #bo_gall .gall_date{
    color: #666;
    font-size: 16px;
    font-weight: 300;
}
.prvideo #bo_gall #gall_ul .gall_li input[type="checkbox"]{
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;
}
.prvideo #bo_gall .gall_href img{
    transition: all 0.3s ease-in-out;
}
.prvideo #bo_gall .gall_href:hover img{
    transform: scale(1.1);
}

.bo_fx{
    display: none;
}
#bo_btn_top {
    margin: 10px 0;
}
.btn_bo_user > li {
    position: relative;
}
.btn_bo_user li {
    float: left;
    width: 40px;
    text-align: center;
    margin-left: 5px;
    background: #fff;
}
.more_opt {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    background: #fff;
    border: 1px solid #b8bfc4;
    z-index: 999;
}
.more_opt:before {
    content: "";
    position: absolute;
    top: -8px;
    right: 13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #b8bfc4 transparent;
}
.more_opt:after {
    content: "";
    position: absolute;
    top: -6px;
    right: 13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #fff transparent;
}
.more_opt li {
    border-bottom: 1px solid #f1f1f1;
    padding: 10px;
    float: inherit;
    width: 116px;
    margin: 0;
    color: #6b757c;
    text-align: left;
}
.more_opt li button, .more_opt li a {
    width: 100%;
    border: 0;
    color: #6b757c;
}

/* view.skin */
.prvideo.view iframe {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}
.prvideo .bo_v_nb {
    margin: 20px 0;
    position: relative;
    clear: both;
    text-align: left;
    float: none;
    /* width: 100%; */
    display: flex;
    flex-direction: column;
}
.prvideo .bo_v_nb li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f1f1;
}
.prvideo .bo_v_nb li:last-child {
    border-bottom: 1px solid #f1f1f1;
}
.prvideo .bo_v_nb li .nb_tit {
    display: inline-block;
    padding-right: 20px;
    color: #b3b3b3;
}
.prvideo .bo_v_nb li i {
    font-size: 13px;
    color: #b3b3b3;
}
.prvideo .bo_v_nb li .nb_date {
    /* float: right; */
    color: #b3b3b3;
}
.prvideo .bo_v_nb li .tit_wr{
    /* display: flex; */
    /* gap: 10px; */
}
.prvideo .bo_v_nb li:hover {
    background: #f6f6f6;
}
.bo_v_nb .tit-wr{
    display: flex;
    width: 80%;
}
.bo_v_nb li a{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.more_opt li i {
    float: right;
    line-height: 20px;
}

/* .prvideo #wr_content{
    display: none;
} */


/* contact */
/* inquiry */
.inquiry {
    overflow: hidden;
}
.inquiry .page-inner{
    display: flex;
}
.inquiry .page-inner .txt-box{
    flex: 1;
    padding-right: 30px;
}
.inquiry .page-inner .txt-box .tit{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}
.inquiry .page-inner .txt-box p{
    font-size: 20px;
    color: #444;
}
.inquiry .page-inner .inquiry-form{
    flex: 1;
}
#email-form-wrap form .emlist li .inbox{
    border: none !important;
}
#email-form-wrap form .emlist li{
    background: #F7F7F7;
    border-radius: 12px;
}
#email-form-wrap form .emlist li .input-tit{
    padding-left: 20px;
}
#email-form-wrap .send_btn{
    background: var(--bg-color) !important;
    border-radius: 100px;
    width: 250px !important;
    height: 60px !important;
    transition: all 0.3s;
    font-weight: 600 !important;
}
#email-form-wrap .send_btn:hover{
    background: var(--brand-color) !important;
}

/* adm - login*/
.login-container {
    background: var(--bg-color-gray);
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-container .mbskin {
    margin: 0;
    max-width: 500px;
    width: 100%;
}
.login-container .logo {
    max-width: 80px;
    margin: auto;
}
.login-container .logo img {
    object-fit: contain;
}
.login-container .mbskin_box {
    border: none;
    border-radius: 16px;
    margin-top: 28px;
}
.login-container #login_fs {
    display: flex;
    padding: 48px 40px;
    gap: 20px;
    height: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}
.login-container #login_fs .inputset {
    flex-shrink: 0;
}
.login-container #login_fs .inputset .input-group {
    margin: 0;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
}
.login-container #login_fs .inputset .input-group + .input-group {
    margin-top: 6px;
}
.login-container #login_fs .inputset .input-group label {
    min-width: 76px;
    text-align: left;
    font-size: 16px;
}
.login-container #mb_login #login_fs .frm_input {
    margin: 0;
    font-size: 15px;
    font-family: 'Pretendard';
    padding: 8px 12px;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 6px;
    height: 44px;
    border-color: #e6e6e6;
}
.login-container #login_fs .button-wr {
    width: 100%;
    background: var(--brand-color);
    border-radius: 8px;
}
.login-container #mb_login #login_fs .btn_submit {
    margin: 0;
    background: none;
    font-size: 16px;
    font-weight: 600;
    height: 100%;
}


/* en */
#main_wr.en .product h3{
    padding-right: 50px;
}

/* popup */
#hd_pop{
    width: auto;
}