@charset "utf-8";

/* root */
:root{
    /* font */
    --main-font: 'Pretendard', sans-serif;
    --heading-font: 'Red Hat Display', sans-serif;
    /* color */
    --brand-color: #5F298C;
    --bg-color-brand: #F9F7FA;
    --bg-color-gray: #F8F8F8;
    --text-color: #111;
}


/* reset */
body{
    font-size: 18px;
    color: var(--text-color);
    font-family: var(--main-font);
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
button{
    margin: 0;
    padding: 0;
    cursor: pointer;
    background: none;
    line-height: normal;
    text-transform: none;
    border: 0;
}
a{
    color: var(--text-color);
}
.en{
    font-family: var(--main-font);
}
h2{
    color: inherit;
}


/* header */
header .gnb .logo > a{
    color: var(--brand-color);
    width: 180px;
}
header .gnb .logo .white{
    display: block;
}
header .gnb .logo .black{
    display: none;
}
header.active .gnb .logo .white, header.on .gnb .logo .white{
    display: none;
}
header.active .gnb .logo .black, header.on .gnb .logo .black{
    display: block;
}
header .util{
    display: flex;
    gap: 20px;
}
header .lang-wrap{
    position: relative;
}
header .lang-wrap .current{
    color: #fff;
    cursor: pointer;
}
header .lang-wrap .lang{
    display: flex;
    gap: 15px;
    align-items: center;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 17px;
    padding: 10px;
}
header .lang-wrap .arrow{
    display: block;
    background-image: url(../img/dvision/arrow-white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    width: 16px;
    height: 16px;
}
header .lang-wrap ul{
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 2px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
header.active .lang-wrap .lang, header.on .lang-wrap .lang{
    color: var(--text-color);
}
header .lang-wrap ul li:hover a{
    color: var(--brand-color);
}
header.active .lang-wrap .arrow, header.on .lang-wrap .arrow{
    background-image: url(../img/dvision/arrow-black.png);
}

nav .navlist li .dp1{
    font-family: var(--heading-font);
    font-weight: 700;
    transition: none;
}
nav .navlist li.depth1{
    position: relative;
}
nav .navlist > li .dp1::before{
    display: none;
    background: var(--brand-color);
}
nav .navlist li .lnb::before{
    display: none;
}
nav .navlist li .lnb .dp2 li:hover a{
    color: var(--brand-color);
}
header .gnb nav .navlist li:hover .dp1{
    color: var(--brand-color);
}
header.active .header_wr::before {
    height: 100%;
}

nav .navlist li .lnb{
    /* display: block; */
    width: auto;
    height: auto;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -10px);
    margin: 0;
    /* transition: all 0.3s; */
}

nav .navlist li .lnb .dp2{
    display: flex;
    flex-direction: column;
    height: auto;
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px 10px;
}
nav .navlist li .lnb .dp2 li{
    min-width: 180px;
    padding: 12px 20px;
}
nav .navlist li .lnb .dp2 li:not(:last-child):after{
    display: none;
}
nav .navlist li .lnb .dp2 li > a {
    line-height: 1.5;
    font-size: 17px;
    font-weight: 400;
    white-space: nowrap;
}





/* index */
/* banner */
#main_wr .visual .inset .banner .img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 8s ease-in-out;
    transform: scale(1.1);
}
#main_wr .visual .inset .banner .img.active{
    transform: scale(1);
    transition: transform 4s ease-in-out;
}
#main_wr .visual .inset .banner.slide1 .img{
    background-image: url(../img/dvision/banner01.jpg);
}
#main_wr .visual .inset .banner.slide2 .img{
    background-image: url(../img/dvision/banner02.jpg);
}
#main_wr .visual .inset .banner.slide3 .img{
    background-image: url(../img/dvision/banner03.jpg);
}
#main_wr .visual .inset .banner.slide4 .img{
    background-image: url(../img/dvision/banner04.jpg);
}
#main_wr .visual .inset .banner .text-box{
    flex-direction: column;
    gap: 35px;
}
#main_wr .visual .inset .banner .text-box .text-wrap{
    position: static;
}
#main_wr .visual .inset .banner .text-box .text-wrap > h1 > br:last-child{
    display: block;
}
#main_wr .visual .inset .banner .text-box{
    text-align: center;
    justify-content: center;
    max-width: none;
}
#main_wr .visual .inset .banner .text-box .text-wrap > h1{
    font-family: var(--heading-font);
    font-size: 62px;
    font-weight: 700;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
#main_wr .visual .inset .banner .text-box .text-wrap > p{
    font-size: 22px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);

}

/* banner-control */
.indicator{
    display: flex;
    justify-items: center;
    top: auto;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 30%;
    width: auto;
}
.indicator-wrap{
    display: flex;
    align-items: center;
    gap: 20px;
}
.slick-dots{
    margin: 0;
}
.slick-dots li{
    width: auto;
    height: auto;
}
.slick-dots li + li{
    margin-left: 20px;
}
.slick-dots li button{
    width: 12px;
    height: 12px;
    border: 0;
    background: #fff;
    opacity: 0.6;
}
.slick-dots li button:hover, .slick-dots li button:focus{
    opacity: 1;
}
.slick-dots li.slick-active button{
    width: 30px;
    opacity: 0.98;
    border-radius: 5px;
}
.slick-dots li button:before{
    content: none;
}
.slick-dotted.slick-slider{
    margin: 0;
}

.indicator .control button{
    width: 36px;
    height: 36px;
}
.indicator .control button.play{
    display: none;
    opacity: 0.8;
}
.indicator .control button.play:hover{
    opacity: 1;
}
.indicator .control button.pause{
    opacity: 0.8;
}
.indicator .control button.pause:hover{
    opacity: 1;
}

/* banner-scroll */
#main_wr .visual .scroll-wrap{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}
#main_wr .visual .scroll{
    transform: rotate(90deg);
    width: 100px;
    /* padding-bottom: 60px; */
    overflow: hidden;
}
#main_wr .visual .scroll-line {
    position: relative;
    width: 100px;
    overflow: hidden;
}
#main_wr .visual .scroll .scroll-line::before{
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}
#main_wr .visual .scroll .scroll-line::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    top: -1px;
    left: -10%;
    transform: scaleX(0);
    transform-origin: left;
    animation: scrollAni 2.5s infinite;
}
@keyframes scrollAni{
    0% {
        transform: scaleX(0);
        left: -10%; 
        /* transform: scaleX(0) translateX(-10%); */
    }
    100% {
        transform: scaleX(1);
        left: 100%; 
        /* transform: scaleX(1) translateX(100%); */
        
    }
}

/* section */
/* title */
#main_wr{
    font-size: 17px;
}
#main_wr .wrap{
    max-width: 1680px;
    margin: 0 auto;
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    gap: 200px;
}
#main_wr .tit-wrap .small-tit{
    font-family: var(--heading-font);
    color: #5F298C;
    font-weight: 700;
}
#main_wr .tit-wrap h3{
    font-size: 52px;
    font-weight: 700;
    margin-top: 12px;
    line-height: 1.2;
}

/* sectino1 - company */
#main_wr .company .top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    align-items: flex-end;
    gap: 20px;
}
#main_wr .company .txt-content{
    padding-top: 20px;
}
#main_wr .company .btn-wrap {
    display: flex;
    gap: 12px;
    height: auto;
}
#main_wr .company .btn-wrap .txt{
    /* display: block; */
    font-family: var(--heading-font);
    color: #666;
    font-weight: 600;
    white-space: nowrap;
}
#main_wr .company .btn-wrap:hover .txt{
    color: var(--brand-color);
}
#main_wr .company .btn-wrap .img-wrap{
    width: 8px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main_wr .company .btn-wrap .img-wrap img{
    display: block;
    object-fit: contain;
}
#main_wr .company .btn-wrap .img-wrap .purple{
    display: none;
}
#main_wr .company .btn-wrap:hover .img-wrap .gray{
    display: none;
}
#main_wr .company .btn-wrap:hover .img-wrap .purple{
    display: block;
}
#main_wr .company .bottom .img-wrap{
    overflow: hidden;
}


/* section2 - product*/
#main_wr .product{
    position: relative;
}
#main_wr .product .tit-wrap{
    position: absolute;
    top: 0;
    left: 0;
}
#main_wr .product .swiper {
    /* display: flex; */
    padding-left: 50%;
    overflow: visible;
}
#main_wr .product .swiper .img-wrap{
    height: 800px;
    overflow: hidden;
}
#main_wr .product .swiper .img-box img{
    width: 100%;
    height: 100%;
    transform: scale(1.05);
    transition: all 2s ease-in-out;
}
#main_wr .product .swiper .swiper-slide:hover .img-box img{
    transform: scale(1);
}
#main_wr .product .swiper .swiper-slide a::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
    z-index: 10;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
#main_wr .product .swiper .swiper-slide a:hover::after{
    opacity: 0.3;
}
#main_wr .product .swiper .pagination{
    position: absolute;
    left: 0;
    top: 24%;
    display: flex;
    flex-direction: column;
    width: 55%;
    z-index: 10;
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet{
    width: auto;
    height: auto;
    color: var(--text-color);
    background: inherit;
    opacity: 1;
    margin: 0;
    padding: 35px 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s;
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet.on{
    color: #fff;
    background: var(--brand-color);
    box-shadow: 10px 15px 20px rgba(0, 0, 0, 0.2);
    padding-left: 110px;
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet p{
    display: flex;
    flex-direction: column;
    padding-left: 35px;
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet span{
    display: block;
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet .tit{
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 10px;
}

#main_wr .product .swiper .pagination .swiper-pagination-bullet::after{
    content: '';
    width: 10px;
    height: 18px;
    background: url(../img/dvision/arrow-white.png) no-repeat center / contain;
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet.on::after{
    opacity: 1;
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet::before{
    content: '';
    display: inline-block;
    width: 80px;
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet:nth-of-type(1)::before{
    background-image: url(../img/dvision/section02-icon01.png);
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet:nth-of-type(2)::before{
    background-image: url(../img/dvision/section02-icon02.png);
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet:nth-of-type(3)::before{
    background-image: url(../img/dvision/section02-icon03.png);
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet:nth-of-type(4)::before{
    background-image: url(../img/dvision/section02-icon04.png);
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet.on:nth-of-type(1)::before{
    background-image: url(../img/dvision/section02-icon01-white.png);
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet.on:nth-of-type(2)::before{
    background-image: url(../img/dvision/section02-icon02-white.png);
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet.on:nth-of-type(3)::before{
    background-image: url(../img/dvision/section02-icon03-white.png);
}
#main_wr .product .swiper .pagination .swiper-pagination-bullet.on:nth-of-type(4)::before{
    background-image: url(../img/dvision/section02-icon04-white.png);
}
.swiper-button-prev:after, .swiper-button-next:after{
    color: var(--text-color);
    content: '';
    display: none;
    background: url(../img/dvision/arrow-black.png) no-repeat center / contain;
}


/* seciont3 - community*/
#main_wr .community{
    display: flex;
}
#main_wr .community .txt-wrap{
    width: 30%;
    /* flex: 1; */
}
#main_wr .community .sns-btn-wrap{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 100px;
}
#main_wr .community .sns-btn-wrap a{
    display: flex;
    width: 210px;
    padding: 15px 35px;
    border: 1px solid #666;
    border-radius: 8px;
    align-items: center;
    justify-content: space-between;
}
#main_wr .community .sns-btn-wrap .sns-left{
    display: flex;
    gap: 5px;
}
#main_wr .community .sns-btn-wrap .sns-icon{
    width: 24px;
}
#main_wr .community .sns-btn-wrap .sns-icon img{
    object-fit: contain;
}
#main_wr .community .sns-btn-wrap span{
    font-size: 18px;
    font-weight: 700;
}
#main_wr .community .sns-btn-wrap .arrow{
    width: 8px;
}

#main_wr .community .media-wrap{
    width: 70%;
}
#main_wr .community .media-wrap .tit-box{
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: start;
}
#main_wr .community .media-wrap .tit-box .icon{
    height: 30px;
    width: auto;
}
#main_wr .community .media-wrap .tit-box .icon img{
    object-fit: contain;
    object-position: left;
}
#main_wr .community .media-wrap .insta-wrap .tit-box .icon{
    width: 30px;
}
#main_wr .community .media-wrap .tit-box span{
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    /* color: #111; */
}
#main_wr .community .media-wrap .youtube-wrap{
    margin-bottom: 50px;
}
#main_wr .community .media-wrap .con-wrap ul{
    display: grid;
    gap: 20px;
}
#main_wr .community .media-wrap .youtube-wrap .con-wrap ul{
    grid-template-columns: repeat(2, 1fr);
}
#main_wr .community .media-wrap .insta-wrap .con-wrap ul{
    grid-template-columns: repeat(4, 1fr);
}
#main_wr .community .media-wrap .con-wrap ul li{
    border: 1px solid #d9d9d9;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}
#main_wr .community .media-wrap .youtube-wrap .con-wrap ul li{
    aspect-ratio: 16 / 9;
}
#main_wr .community .media-wrap .insta-wrap .con-wrap ul li{
    aspect-ratio: 1/1;
    position: relative;
}
/* instagram */
.insta-empty{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.insta-empty > a:hover{
    color: var(--brand-color);
}
#main_wr .community .media-wrap .insta-wrap .con-wrap ul li a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s;
}
#main_wr .community .media-wrap .insta-wrap .con-wrap ul li a::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/dvision/insta-hover.png) no-repeat center/contain;
    width: 60px;
    height: 30px;
    opacity: 0;
    transition: all .3s;
}
#main_wr .community .media-wrap .insta-wrap .con-wrap ul li a:hover::before,
#main_wr .community .media-wrap .insta-wrap .con-wrap ul li a:hover::after{
    opacity: 1;
}

/* section4 - support */
#main_wr .support{
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
    overflow: hidden;
}
#main_wr .support .bg-img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    background: url(../img/dvision/symbol-bg.png) no-repeat center / contain;
}
#main_wr .support .tit-wrap{
    text-align: center;
}
#main_wr .support .btn-wrap{
    display: flex;
    gap: 20px;
    justify-content: center;
}
#main_wr .support .btn-wrap a{
    display: block;
    position: relative;
    width: 310px;
    padding: 24px 30px;
    color: #fff;
    font-weight: 600;
    background: var(--brand-color);
    border-radius: 15px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.19);
    margin-top: 70px;
    transition: all 0.4s;
}
#main_wr .support .btn-wrap a:hover{
    transform: translate(-5px, -5px);
}
#main_wr .support .btn-wrap li:last-child a{
    background: #424242;
}
#main_wr .support .btn-wrap a::after{
    content: '';
    width: 10px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: url(../img/dvision/arrow-white.png) no-repeat center / contain;
}


/* footer */
footer .footer-wrap{
    flex-direction: column;
    max-width: 1680px;
    margin: 0 auto;
    padding: 80px 40px;
}
footer .footer-wrap .top{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
footer .footer-wrap .top .footer-logo{
    width: 180px;
    height: auto;
}
footer .footer-wrap .top .footer-logo img{
    object-fit: contain;
    object-position: top;
}
footer .footer-wrap .top .info li + li{
    padding-top: 6px;
}
footer .footer-wrap .bottom{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #b3b3b3;
}
footer .footer-wrap .bottom .sns-wrap{
    display: flex;
    gap: 30px;
}
footer .footer-wrap .bottom .sns-icon{
    display: block;
    width: 30px;
    height: 30px;
    transition: all 0.3s;
}
footer .footer-wrap .bottom .sns-icon img{
    object-fit: contain;
}
footer .footer-wrap .bottom .sns-icon:hover{
    opacity: 0.8;
}

.top-btn-wrap{
    position: fixed;
    opacity: 0;
    bottom: -50px;
    right: 35px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 8px;
    background: var(--brand-color);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 1000;
}
.top-btn-wrap.active{
    bottom: 35px;
    opacity: 1;
}

.top-btn-wrap img{
    transition: all 0.3s;
}
.top-btn-wrap:hover img{
    transform: translateY(-3px);
}

/* subpage */
/* sub-banner */
#page_title .inner-wrap .contents .page-tab-menu .tab-inset{
    gap: 50px;
}
#page_title .inner-wrap .contents .page-tab-menu .tab-inset .dp1::after{
    background: var(--brand-color);
}
#page_title .inner-wrap .contents .page-tab-menu .tab-inset .dp2 .dp2-list li.on a{
    color: var(--brand-color);
}
#page_title .bg{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.1);
    opacity: 0.9;
    transition: all 4s ease-in-out;
}
#page_title .bg.active{
    transform: scale(1);
    opacity: 1;
}
#page_title.about .bg{
    background-image: url(../img/dvision/sub-banner01.jpg);
}
#page_title.bs .bg{
    background-image: url(../img/dvision/sub-banner02.jpg);
}
#page_title.rnd .bg{
    background-image: url(../img/dvision/sub-banner03.jpg);
}
#page_title.ir .bg{
    background-image: url(../img/dvision/sub-banner04.jpg);
}
#page_title.community .bg{
    background-image: url(../img/dvision/sub-banner05.jpg);
}

/* 공통 */
.page-head .s-tit{
    color: var(--brand-color);
    font-weight: 700;
    font-family: var(--heading-font);
}
#page_title .inner-wrap .contents .page-tab-menu .tab-inset .dp2 .dp2-list li a{
    white-space: nowrap;
}

/* company */
#page_cont .company .text-box{
    text-align: center;
}
#page_cont .company .content{
    margin: 100px 0;
}
#page_cont .company .company-bg{
    margin: 150px 0;
    position: relative;
    width: 100%;
    height: max(48.541667vw, 740px);
}
#page_cont .company .company-bg .bg-img{
    clip-path: inset(0% 0% 0%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#page_cont .company .company-bg .bg-img::before{
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/dvision/company-bg.jpg) no-repeat center / cover;
}
#page_cont .company .inner_box .page-head{
    text-align: left;
}
#page_cont .company .content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    place-items: center;
}
#page_cont .company .content .circle{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    width: 300px;
    height: 300px;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    padding: 27px;
}
#page_cont .company .content .circle.point{
    width: 330px;
    height: 330px;
    background: var(--brand-color);
    color: #fff;
    position: relative;
}
#page_cont .company .content .circle.point img{
    width: 180px;
    object-fit: contain;
}
#page_cont .company .content .circle .tit{
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
#page_cont .company .content .circle .circle-list li{
    position: relative;
    padding-left: 10px;
    font-size: 16px;
}
#page_cont .company .content .circle .circle-list li + li{
    margin-top: 8px;
}
#page_cont .company .content .circle .circle-list li::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--brand-color);
}
#page_cont .company .content .circle.point .circle-list li::after{
    background: #fff;
}
#page_cont .company .content::before,
#page_cont .company .content::after{
    content: '';
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/dvision/company-dot.png) no-repeat center / contain;
    width: 70px;
    height: 10px;
    z-index: -1;
}
#page_cont .company .content::after{
    left: auto;
    right: 30%;
}
#page_cont .company .content .c-side:last-of-type::before{
    transform: scaleX(-1);
    left: -35px;
    right: auto;
}
/* #page_cont .company .content .circle img{
    width: auto;
    height: auto;
    margin: 0 auto;
} */
/* #page_cont .company .content .circle.point .img-box{
    position: relative;
} */
#page_cont .company .content .circle.point::before,
#page_cont .company .content .circle.point::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    /* transform: translate(-50%, -50%); */
    width: 100%;
    height: 100%;
    margin: -50% 0 0 -50%;
    background: var(--brand-color);
    border-radius: 50%;
    animation: circle 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: -1;
}
#page_cont .company .content .circle.point::after{
    width: 120%;
    height: 120%;
    margin: -60% 0 0 -60%;
}
@keyframes circle{
    0% {
        transform: scale(0.8);
        opacity: 1;
        transform-origin: center;
    }
    80%, 100% {
        transform: scale(1.2);
        opacity: 0;
        transform-origin: center;
    }
}

.mc_con{
    font-size: inherit;
}
.list_year{
    font-family: var(--heading-font);
    font-size: inherit;
    font-weight: 700;
    color: var(--text-color);
    padding: 40px 0;
    margin: 0;
    border-bottom: 1px solid #e6e6e6;
}
.year-list-contents{
    margin-top: 12px;
}
.year-list-title{
    font-size: 32px;
    margin-right: 95px;
    line-height: 1.5;
}
.mc_con {
    /* font-size: ; */
    line-height: 1.5;
    font-family: var(--main-font);
    /* display: flex; */
    /* gap: 8px; */
}
.mc_con + .mc_con{
    margin-top: 18px;
}
.mc_con .list_month::after{
    background: var(--brand-color);
}
.mc_con .list_month{
    /* width: 22px; */
    /* justify-content: center; */
    font-weight: 400;
    /* position: relative; */
}
/* .mc_con .list_content{
    position: relative;
    padding-left: 10px;
}
.mc_con .list_content::after{
    content: '';
    width: 2px;
    height: 2px;
    background: var(--brand-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.mc_con .list_month input{
    position: absolute;
    left: -30px;
} */



.bo_fx{
    display: block;
    margin-top: 20px;
}
.tbl_wrap table{
    border: 0;
    margin-bottom: 20px;
}
#bo_w .btn_confirm{
    justify-content: center;
}
#bo_w .btn_submit{
    width: 200px;
    height: 50px;
    background: var(--brand-color);
    color: #fff;
    font-family: var(--main-font);
}
#bo_w .btn_cancel{
    width: 200px;
    height: 50px;
    font-family: var(--main-font);
}
#bo_w .btn_confirm{
    gap: 30px;
}
#bo_w .btn_cancel{
    background: var(--bg-color-gray);
    font-family: var(--main-font);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c8c8c8;
}
.btn_write {
    width: 200px;
    height: 52px;
}
.btn_bo_adm input{
    width: 200px;
    height: 52px;
}

/* esg */
section .text-box {
    font-size: 24px;
}
section.ty2 .text-box{
    font-family: var(--heading-font);
}
.rnd-cont-wrapper .rnd-list .hover-box .bullet::before{
    content: none;
}
.rnd-cont-wrapper .rnd-list .hover-box .bullet{
    padding-left: 0;
}
.rnd-cont-wrapper .rnd-list li{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.rnd-cont-wrapper .rnd-list li.bg01{
    background-image: url(../img/dvision/esg01.jpg);
}
.rnd-cont-wrapper .rnd-list li.bg02{
    background-image: url(../img/dvision/esg02.jpg);
}
.rnd-cont-wrapper .rnd-list li.bg03{
    background-image: url(../img/dvision/esg03.jpg);
}

/* organization */
.org .chart img.mo{
    display: none;
}

/* partners */
#page_cont .ptns .inner_box{
    display: flex;
}
#page_cont .ptns .inner_box .tit{
    font-weight: 700;
    font-size: 40px;
    flex: 1;
}
#page_cont .ptns .inner_box .box-wrap{
    flex: 3;
}
#page_cont .ptns .inner_box .box-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}
.ptns .box-wrap .box-list li{
    border: 0;
    padding: 0;
}

/* global */
#page_cont .global .list-wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}
#page_cont .global .map-wrap{
    background: #E1E7F0;
    width: 100%;
    padding: 20px 0;
    /* margin: 0 auto; */
    margin: 150px 0;
}
#page_cont .global .map-box{
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
#page_cont .global .marker{
    background: url(../img/dvision/map-marker.png) no-repeat center / contain;
    position: absolute;
    width: 50px;
    height: 50px;
    /* transform: translate(-50%, -50%); */
    margin: -25px 0 0 -25px;
    z-index: 10;
    animation: floatMarker 2.5s ease-in-out infinite;
}
#page_cont .global .marker.m1{
    top: 42%;
    left: 39.3%;
}
#page_cont .global .marker.m2{
    top: 28%;
    right: 15.5%;
}
#page_cont .global .marker.m3{
    top: 33%;
    right: 16.5%;
}
#page_cont .global .marker.m4{
    top: 52.5%;
    right: 22%;
}
#page_cont .global .marker.m5{
    top: 44%;
    right: 22%;
}
#page_cont .global .marker.m6{
    top: 49%;
    right: 23.5%;
}
#page_cont .global .marker span{
    position: absolute;
    display: block;
    width: 200px;
    padding-left: 30px;
    font-family: var(--main-font);
    font-weight: 700;
    text-align: left;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
    opacity: 0;
    display: none;
    /* top: 0; */
}
@keyframes floatMarker {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* #page_cont .global .marker::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: -10% 0 0 -10%;
    border-radius: 50%;
    background: var(--brand-color);
    opacity: 0.5;
    animation: circle 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: -10;
} */



#page_cont .global .list-box{
    padding: 50px 20px;
    border-top: 1px solid #e6e6e6;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
#page_cont .global .list-box .tit{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}
#page_cont .global .list-box .info li{
    display: flex;
}
#page_cont .global .list-box .info li + li{
    margin-top: 10px;
}
#page_cont .global .list-box .info span{
    font-weight: 700;
    color: var(--brand-color);
    width: 80px;
    display: block;
}

/* location */
#page_cont .loca .inner_box{
    display: flex;
    gap: 60px;
}
#page_cont .loca iframe{
    width: 100%;
    height: 100%;
}
#page_cont.en .loca .map{
    width: calc(100% - 500px);
    height: 500px;
}
#page_cont .loca .info-wrap .tit{
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    padding: 20px 0;
    border-top: 4px solid var(--brand-color);
}
#page_cont .loca .info-wrap li{
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #d9d9d9;
    /* gap: 10px; */
}
#page_cont .loca .info-wrap span{
    display: block;
    font-weight: 700;
    width: 80px;
    color: var(--brand-color);
}
#daumRoughmapContainer1762329642884{
    height: 100%;
}
.root_daum_roughmap .wrap_map{
    height: calc(100% - 32px);
}
.root_daum_roughmap .cont{
    display: none;
}



/* R&D */
/* ref - 연구 분야 */
.bs-cont-wrap .img-box{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}
.bs-cont-wrap .img-box img.mo{
    display: none;
}
.bs-cont-wrap .img-box .bg-txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    padding: 0 40px;
    /* white-space: nowrap; */
}
.bs-cont-wrap .text-box{
    margin-top: 0;
}
.bs-cont-wrap .text-box + .text-box{
    margin-top: 60px;
}
.bs-cont-wrap .text-box .subtit{
    padding: 60px 20px 60px 0;
    font-size: 40px;
}
.bs-cont-wrap .text-box .cont{
    line-height: 1.5;
    padding: 60px 0;
}
.bs-cont-wrap .text-box + .text-box .cont{
    border-top: 1px solid #e6e6e6;
}
.bs-cont-wrap .text-box .cont .cont-list{
    border: 0;
}
.bs-cont-wrap .text-box .cont .intro{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}
.bs-cont-wrap .text-box .cont-list .list-tit{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.bs-cont-wrap .text-box .cont-list + .cont-list{
    margin-top: 40px;
}
.bs-cont-wrap .text-box .cont .cont-list li + li{
    margin-top: 12px;
    border-top: 0;
    padding: 0;
}

.bs-cont-wrap .text-box .cont .cont-list li{
    position: relative;
    padding: 0;
    padding-left: 19px;
    font-weight: 400;
    color: inherit;
    font-size: inherit;
}
.bs-cont-wrap .text-box .cont .cont-list li + li{
    padding-left: 19px;
}
.bs-cont-wrap .text-box .cont-list ul li::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--brand-color);
}

/* rnd - 연구현황 */
.inner_box .pg_wrap .pg .pg_current{
    color: var(--text-color);
}
.research #bo_gall #gall_ul{
    border-top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
}
.research #bo_gall .gall_li{
    padding: 0;
    border-bottom: 0;
}
.research #bo_gall .gall_img {
    width: 100%;
    height: 100% !important;
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}
.research #bo_gall .gall_con{
    flex-direction: column;
}
.research #bo_gall .gall_img img{
    /* vertical-align: top; */
    width: 100%;
    height: 100%;
}
.research #bo_gall .gall_con .gall_img_txt{
    padding: 0;
    margin-top: 25px;
}
.research #bo_gall .gall_text_href{
    margin: 0;
    text-align: left;
    line-height: 1.5;
    color: var(--text-color);
    font-size: inherit;
}
.research #bo_gall .bo_tit{
    line-height: 1.5;
    font-size: inherit;
    font-weight: 400;
}
.research #bo_gall .research-title{
    font-size: 24px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.research #bo_gall .research-contents{
    font-size: 16px;
    color: #555;
}
.research #bo_gall .gall_info {
    margin-top: 12px;
}
.research #bo_gall .gall_info .gall_date{
    font-size: 14px;
    font-weight: 300;
}
.research #bo_gall .gall_img span.no_image img{
    max-width: 100%;
}
.research #bo_gall .research-contents{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* write */
#bo_w .bo_w_tit #btn_autosave{
    display: none;
}
#bo_w .cke_sc{
    display: none;
}
#bo_w .bo_w_flie .frm_file {
    margin-top: -3px;
}

/* view */
.inner_box #bo_v_con {
    font-size: inherit;
}
#bo_v header {
    /* border-top: 0; */
}
#bo_v_title{
    background: none;
    border-bottom: 1px solid #e6e6e6;
}
.write-info-box{
    border-bottom: 0;
}
.write-info-box .info-writer, .write-info-box .info-hit{
    display: none;
}
.write-info-box .write-info{
    justify-content: right;
    color: #555;
    font-size: 16px;
    /* padding: 0; */
}
.write-info-box .write-info .write-info-title{
    display: none;
}
#bo_v_title .bo_v_cate {
    font-size: 18px;
    color: var(--brand-color);
    background: none;
    /* border: 1px  solid var(--brand-color); */
    line-height: 1.5;
    border-radius: 30px;
    /* padding: 8px 25px; */
    padding: 0;
}
#bo_v_title .bo_v_tit {
    margin: 0;
    /* padding: 30px 50px; */
}
.inner_box #bo_v_title .bo_v_tit{
    font-size: 48px;
    font-weight: 700;
    /* border-bottom: 1px solid #e6e6e6; */
    /* margin-bottom: 40px; */
    text-align: center;
}
.inner_box #bo_v .view_header{
    border-bottom: 0;
}
#bo_v_atc{
    border-bottom: 0;
}
.bo_v_nb li .nb_date{
    color: #555;
}
.inner_box #bo_v .view_header{
    padding: 0;
}
.inner_box .if_date{
    font-size: 16px;
    text-align: right;
    padding: 20px 50px;
}

/* certification */
#bo_cate ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 0;
    margin-bottom: 60px;
}
#bo_cate li {
    padding: 0 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#bo_cate li + li{
    border-left: 1px solid #e6e6e6;
}
#bo_cate a{
    font-family: var(--main-font);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: #666;
    border-radius: 0;
    text-align: center;
    border: 0;
    background: none;
    padding: 0;
}
#bo_cate a:hover{
    background: inherit;
    color: var(--text-color);
}
#bo_cate #bo_cate_on {
    background: none;
    color: var(--brand-color);
    font-weight: 600;
    border: 0;
    box-shadow: none;
}
.cert #bo_gall .gall_img{
    width: 100%;
    height: auto !important;
}
/* write */
.inner_box #bo_w .btn_cancel, .inner_box #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;
}
.inner_box #bo_w .btn_submit{
    background: var(--brand-color);
    color: #fff;
}
.inner_box #bo_w .btn_cancel{
    border: 1px solid #c8c8c8;
    background: var(--bg-color-gray);
}



/* product */
/* 제품 전체 공통 */
.product .pr-intro{
    width: 100%;
    position: relative;
}
.product .dot-wrap .dot-box{
    position: absolute;
}
.product .dot-wrap .dot-box.d1{
    top: 45%;
    left: 30%;
}
.product .dot-wrap .dot-box.d2{
    top: 56%;
    left: 40%;
}
.product .dot-wrap .dot-box.d3{
    top: 75%;
    left: 41%;
}
.product .dot-wrap .dot-box.d4{
    top: 50%;
    left: 50%;
}
.product .dot-wrap .dot-box.d5{
    top: 53%;
    left: 58%;
}
.product .dot-wrap .dot{
    position: absolute;
    top: 0;
    left: 0;
    margin: -20px 0 0 -20px;
    width: 40px;
    height: 40px;
    transition: all 0.3s;
    z-index: 1;
}
.product .dot-wrap .dot-img{
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/dvision/product-dot.png) no-repeat center / contain;
    position: relative;
}
.product .dot-wrap .dot-box:hover .dot{
    transform: scale(1.2);
}
.product .dot-wrap .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;
}
.product .dot-wrap .pannel {
    padding: 30px;
    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: 5px;
    opacity: 0;
    display: none;
    white-space: nowrap;
    /* z-index: 10; */
    /* z-index: 100; */
    /* transition: all 0.3s; */
}
.product .dot-wrap .pannel .p-tit{
    font-weight: 600;
    padding-bottom: 8px;
}
.product .dot-wrap .pannel .p-list{
    font-size: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #bbb;
    border-top: 1px solid #bbb;
}
.product .dot-wrap .pannel .p-list li + li{
    margin-top: 5px;
}
.product .dot-wrap .pannel .p-btn{
    display: block;
    padding-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #666;
    margin: 0 auto;
}
.product .dot-wrap .pannel .p-btn:hover{
    color: inherit;
}

.product .cont-wrap{
    margin-top: 100px;
}
.product.product01 .cont-wrap{
    margin-top: 50px;
}
.product .cont-wrap .cont + .cont{
    margin-top: 60px;
}
.product .cont-wrap .cont .cont-tit{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}
.product .cont-wrap .cont .cont-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}
.product .cont-wrap .cont .cont-list .img-box{
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    overflow: hidden;
}
.product .cont-wrap .cont .cont-list .img-box img{
    transition: all 0.4s;
}
.product .cont-wrap .cont .cont-list .img-box:hover img{
    transform: scale(1.1);
}
.product .cont-wrap .cont .cont-list .txt{
    text-align: center;
    margin-top: 20px;
}


/* technology */
/* facilities - 설비현황 */
.facility .cont-wrap{
    display: flex;
}
.facility .cont-wrap .cont-tit{
    flex: 1;
}
.facility .cont-wrap .cont-tit li a{
    padding: 20px 0;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #666;
}
.facility .cont-wrap .cont-tit li a:hover{
    color: inherit;
}
.facility .cont-wrap .cont-tit li a::after{
    content: '';
    display: block;
    width: 10px;
    height: 18px;
    background: url(../img/dvision/arrow-gray.png) no-repeat center / contain;
}
.facility .cont-wrap .cont-tit li a:hover::after{
    background: url(../img/dvision/arrow-black.png) no-repeat center / contain;
}
.facility .cont-wrap .cont-tit li.active a{
    color: var(--brand-color);
}
.facility .cont-wrap .cont-tit li.active a::after{
    background: url(../img/dvision/arrow-purple.png) no-repeat center / contain;
}
.facility .cont-wrap .cont{
    flex: 3;
}
.facility .cont-wrap .cont .img-wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.facility .cont-wrap .cont .img-wrap .img-box{
    
    overflow: hidden;
}
.facility .cont-wrap .cont .table-wrap table{
    width: 100%;
    text-align: center;
    border-top: 2px solid #3c3c3c;
    border-bottom: 2px solid #3c3c3c;
}
.facility .cont-wrap .cont .table-wrap table th{
    padding: 16px;
    background: var(--bg-color-gray);
    font-weight: 700;
}
.facility .cont-wrap .cont .table-wrap table td{
    padding: 16px;
    border-top: 1px solid #e6e6e6;
}
.facility .cont-wrap .cont .table-wrap table .red{
    color: red;
}
/* fac02 */
.facility.fac02 .cont-wrap .cont .img-wrap .img-box{
    border: 1px solid #d9d9d9;
    /* border-radius: 12px; */
}
.facility.fac02 .cont-wrap .cont .table-wrap table td{
    padding: 5px;
}

/* process */
.process .cont-tit{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}
.process .cont-tit li{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 6px;
}
.process .cont-tit a{
    display: block;
    color: #666;
    font-size: 24px;
    font-weight: 600;
}
.process .cont-tit a:hover{
    color: inherit;
}
.process .cont-tit li.active a{
    color: var(--brand-color);
}
.process .cont-tit li + li {
    border-left: 1px solid #d9d9d9;
}

.process .step-wrap{
    width: 100%;
    background: var(--bg-color-gray);
    padding: 80px 0;
    margin: 50px 0;
}
.process .step-box{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 100px;
    grid-template-areas:
    "a b c d"
    "e f g h"
    "i  j k l";
}
.process .step{
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 25px;
    background: #fff;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: all 0.3s;
}
.process .step1{grid-area: a;}
.process .step2{grid-area: b;}
.process .step3{grid-area: c;}
.process .step4{grid-area: d;}
.process .step5{grid-area: h;}
.process .step6{grid-area: g;}
.process .step7{grid-area: f;}
.process .step8{grid-area: e;}
.process .step9{grid-area: i;}
.process .step10{grid-area: j;}
.process .step11{grid-area: k;}
.process02 .step-box, .process03 .step-box{
    grid-template-areas:
    "a b c d"
    "e f g h";
}

.process .step .num{
    font-weight: 700;
    color: #b3b3b3;
}
.process .step .tit{
}
.process .step:not(:last-of-type)::after{
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: -55px;
    background: url(../img/dvision/arrow-step.png) no-repeat center / contain;
}
.process .step:nth-child(4)::after, .process .step:nth-child(8)::after{
    top: auto;
    bottom: -50px;
    right: 50%;
    transform: translate(0) rotate(90deg);
}
.process .step:nth-child(5)::after, .process .step:nth-child(6)::after, .process .step:nth-child(7)::after{
    left: -55px;
    right: auto;
    transform: translateY(-50%) scaleX(-1);
}

.process .step.active{
    background: var(--brand-color);
}
.process .step.active .tit, .process .step.active .num{
    color: #fff;
}

.process .cont{
    display: flex;
    padding: 60px 0;
}
.process .cont + .cont{
    border-top: 1px solid #e6e6e6;
}
.process .cont .cont-tit{
    flex: 1;
    display: flex;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
}
.process .cont .cont-tit .num{
    color: #b3b3b3;
}
.process .cont .cont-img{
    flex: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}



/* community */
/* prvideo */
.prvideo .video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.prvideo .video-wrap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.prvideo .video-wrap video{
    width: 100%;
}

/* catalog */
.catalog .img-wrap {
    /* width: 100%; */
    display: flex;
    justify-content: center;
}
.catalog .img-wrap img{
    width: auto;
    height: auto;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.12);
}

/* sub-btn */
.sub-btn-wrap{
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
.sub-btn-wrap .btn{
    /* margin: 0 auto; */
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 16px 30px;
    border-radius: 10px;
    background: var(--brand-color);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
}
.sub-btn-wrap .btn:hover{
    transform: translate(-5px, -5px);
}
.sub-btn-wrap .btn-txt{
    color: #fff;
}
.sub-btn-wrap .btn-icon{
    width: 24px;
    height: 24px;
}

/* inquiry */

.inquiry #email-form-wrap .send_btn{
    border-radius: 10px;
    background: var(--brand-color);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
}
#email-form-wrap .send_btn:hover{
    transform: translate(-5px, -5px);
}
input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus{
    border: 1px solid var(--brand-color) !important;
}

/* news */
.sub-news.g-type .td_subject > a .sub-area .bo_tit{
    line-height: 1.3;
}
.sub-news.g-type .td_subject > a .sub-area .bo-cont{
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
}
.inner_box #bo_v_title .bo_v_tit{
    display: block;
    padding: 30px 50px;
}
.sub-news.g-type td.btn{
    display: none;
}



/* adm */
/* login */
.mbskin{
    width: 400px;
    max-width: 90%;
    font-family: var(--main-font);
}
.mbskin .mbskin_box{
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.19), 0 10px 10px rgba(0, 0, 0, 0.12);
    border: 1px solid #d9d9d9;
}
#mb_login .mb_log_cate{
    display: none;
}
#mb_login .login-logo{
    width: 60%;
    padding: 40px 0 15px;
    margin: 0 auto;
}
#mb_login #login_fs .frm_input{
    padding: 12px 15px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    font-family: var(--main-font);
}
#mb_login #login_fs .btn_submit{
    background: #3c3c3c;
    color: #fff;
    border-radius: 50px;
    font-family: var(--main-font);
    margin: 15px 0 30px;
}
#mb_login #login_fs .btn_submit:hover{
    background: #292929;
}
#login_info .login_if_auto label{
    font-size: 14px;
}
#login_info .login_if_auto label:hover{
    color: var(--brand-color);
}
#login_info .login_if_lpl{
    /* display: block; */
}
#login_info .login_if_lpl a{
    color: #676e70;
    font-size: 14px;
}
#login_info .login_if_lpl a:hover{
    color: #3c3c3c;
}
#login_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#login_info .login_if_auto label{
    display: flex;
    gap: 5px;
    align-items: center;
}
#login_info:after{
    content: none;
}


/* pc 끝 */

/* popup */
#hd_pop {
    z-index: 1000;
    position: relative;
    margin: 0 auto;
    height: 0;
}
#hd_pop h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}
.hd_pops {
    position: absolute;
    border: 1px solid #e9e9e9;
    background: #fff;
    overflow: hidden;
}
.hd_pops_footer {
    padding: 0;
    background: #000;
    color: #fff;
    text-align: left;
    position: relative;
}
.hd_pops_footer .hd_pops_reject {
    background: #000;
    text-align: left;
}
.hd_pops_footer button {
    padding: 10px;
    border: 0;
    color: #fff;
}
.hd_pops_footer .hd_pops_close {
    background: #393939;
    position: absolute;
    top: 0;
    right: 0;
}
.hd_pops_footer button {
    padding: 10px;
    border: 0;
    color: #fff;
}



/* 개발전까지 숨겨두기 */
/* #main_wr .community{
    display: none;
} */


