body,
html {
    height: 100%;
    position: relative;
}

html {
    overflow-x: hidden;

}

a {
    color: #000;
}

/* 공동 변수 */
:root {
    --top_nav_hight: 97px;
    --top_nav_all_hight: 390px;
}

/* 공통 변수 마감 */

@media(min-width:1430px) {
    .container {
        width: 1430px;
    }
}

@media(max-width:1429px) {
    .container {
        width: auto;
    }
}

/* layout */

/* #header 상단 시작 */
#header {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 160px;
    transition: 0.5s height, 0.2s background;
}

#header.sticky {
    height: var(--top_nav_hight);
}

#header .top_wrap {
    display: flex;

}

#header .top_wrap .logo,
#header .top_wrap .nav,
#header .top_wrap .right {}

#header .top_wrap .logo {
    width: 10%;

}

#header .top_wrap .nav {
    width: 80%;
    justify-content: center;
    align-items: center;

}

/* 상단 오른쪽 */
#header .top_wrap .right {
    width: 10%;
    margin-top: 35px;
    position: absolute;
    right: 0;
    top: 0;
    
}

#header .top_wrap .right .flex {
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
    gap: 45px;
    color:#fff;

}
#header .top_wrap .right .flex .langs {
    
    background: rgba(255, 255, 255, .5);
    border-radius: 50px;     
    color: #000;
    font-size: 16px;
    font-weight: 500;    
    padding:5px 15px;       
    text-align: center;
   
}

#header .top_wrap .right .flex .login:after {
    position: absolute;
    width: 1px;
    margin-left: 21px;
    margin-top: 5px;
    height: 20px;
    background: rgba(255, 255, 255, .5);
    content: "";
}

#header .top_wrap .right .flex img {
    color: #000;
    font-size: 16px;
    cursor: pointer;
    width:20px;
    margin-right:4px; 
    line-height:20px;
}
#header .top_wrap .right .flex .langs ul.over {
    display: none;
    position: absolute;
    top: 35px;
    right: 43px;
    background: #FFF;
    border-radius: 0.6em;
    padding-top: 8px;
    padding-bottom: 8px;
    transition: 0.2s;

}
#header .top_wrap .right .flex .langs.clicked ul.over {
    display: block;
}
#header .top_wrap .right .flex .langs > ul > li > a {
    display: block;
    padding-left: 25px;
    padding-right: 25px;
    color: #000;
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family:'Pretendard Variable', 'Pretendard', 'NotoSans','Noto Sans KR', sans-serif;
    font-weight: 500;

}

#header .top_wrap .right .flex .langs > ul > li > a:hover {
    text-decoration: none;
}

#header.all .top_wrap .right .flex .langs ul.over,
#header.sub .top_wrap .right .flex .langs ul.over {
    background: #eeeeee;
}
#header.all .top_wrap .right .flex .login:after,
#header.sub .top_wrap .right .flex .login:after {
    position: absolute;
    width: 1px;
    margin-left: 21px;
    margin-top: 5px;
    height: 20px;
    background: rgba(3, 3, 3, 0.2);
    content: "";
}

/* 상단 오른쪽 마감 */

/* 네비 */
.header .inner {
    position: relative;
    width: 100%;
    height: var(--top_nav_hight);
    margin: 0 auto;
}

.header .inner:after {
    display: block;
    clear: both;
    content: "";
}

.header h1 {
    padding-top: 38px;
    padding-left: 40px;
}

.header h1 a {
    overflow: hidden;
    display: block;
    height: 25px;
    background: url("../../img/common/logo.png") 0 0 no-repeat;
    text-indent: -9999px;

}

.header h1.sub a {
    background: url("../../img/common/logo.png") 0 0 no-repeat;

}

.header .gnb_wrap {
    display: flex;
    justify-content: left;
    align-items: left;
}

.header .gnb {
    text-align: center;

}

.header #gnb {
    background: transparent;
}

.header .gnb li {
    float: left;
    width: 140px;
    text-align: center;
    transition: 0.4s;

}

.header .gnb li.gnb_empty,
.header .gnb li.gnb_empty a {
    font-size: 16px;
    line-height: 24px;
    width: 500px;
    text-align: center;
    color: #000;
}

.header .gnb a {
    display: inline-block;

}

.header .gnb:after {
    display: block;
    clear: both;
    content: "";
}

.header .gnb .depth1 {
    position: relative;
}

.header .gnb .depth1 > a {
    display: block;
    height: 57px;
    padding: 40px 0 0;
    font-size: 19px;
    font-weight: 500;
    line-height: 1em;
    color: #fff;
    font-family: 'Pretendard Variable', 'Pretendard','Noto Sans KR', 'Poppins', 'Ubuntu', dotum, sans-serif;
}

.header .gnb .depth1 > a:focus,
.header .gnb .depth1 > a:hover,
.header .gnb .depth1.on > a,
.header .gnb .depth1.on > a:hover {
    color: #000 !important;
    text-decoration: none;
}

.header .gnb .depth2 {
    display: none;
}

/* header sub */
#header.sub {
    background: transparent;
}

#header.sub:before {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    height: 50px;
    background: #6b9ecc;
    content: "";
}

.header.sub h1 a {
    background-position: 0 100%;
}

.header.sub .gnb .depth1 > a {
    color: #000;
}

.header.sub .gnb .depth1 > a:hover {
    color: #6b9ecc;
}
#header.sub.all {
    border-bottom: 1px #ddd solid;
}

#header.sub.all:before {
    position: absolute;
    left: 0;
    top: 97px;
    width: 100%;
    height: 260px;
    background: #fff;
    border-top: 1px #ddd solid;
    content: "";
}

/* header_hover */
#header.all {
    /* height: 390px; */
    height: var(--top_nav_all_hight);
    background: #fff;
    z-index: 1100;

}

#header.all .top_wrap {
    border-bottom: 1px #ddd solid;
}

#header.all:before {
    position: absolute;
    left: 0;
    top: 95px;
    width: 100%;
    height: 260px;
    background: #fff;
    content: "";
}

/* 마우스 오버시 가로 가격 */
#header.all .gnb li {
    width: 170px;
}

.header.all h1.sub a {
    background-position: 0 100%;
}

.header.all .gnb_wrap .gnb a {
    color: #000;
}

.header.all .gnb_wrap .gnb a:focus,
.header.all .gnb_wrap .gnb a:hover {
    color: #333;
}

.header.all .gnb_wrap .depth1 {
    overflow: hidden;
}

.header .gnb_wrap .depth1 > a {
    margin-bottom: 41px;
    color: #fff;
}

.header.all .gnb_wrap .depth1 > a:focus,
.header.all .gnb_wrap .depth1 > a:hover {
    color: #333;
}

.header.all .gnb_wrap .depth1.menu1 {
    margin-left: 0;
}

.header .gnb_wrap #gnb .depth1:first-child .depth2 {
    border-left: 0px #ddd solid;
}

.header.all .gnb_wrap .depth2 {
    display: block;
    border-right: 0px #ddd solid;
    height: 100vh;
    position: relative;
    padding-top: 22px;
    transition: 0.2s;
}

#header .gnb .depth1:hover .depth2 {    
    border-top: 2px solid #5392FF;
    
}

.header.all .gnb_wrap .depth2 > li {
    margin-bottom: 18px;
    line-height: 1em;

}

.header.all .gnb_wrap .depth2 > li > a {
    padding-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(87, 87, 87);
    font-family:'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
    display: inline-block;
    position: relative;
}

.header.all .gnb_wrap .depth2 > li > a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: transparent;
    transition: width 0.5s ease, background-color 0.5s ease;

}

.header.all .gnb_wrap .depth2 > li > a:hover:before {
    width: 100%;
    background: #000;
}

.header.all .gnb_wrap .depth2 > li > a:hover {
    text-decoration: none;
    color: #000;
}


/* sticky */
@media(min-width:992px) {
    #header.sticky {
        top: -30px;
    }

    .header.sticky {
        position: fixed !important;
        top: 0;
        background-color: rgba(255, 255, 255, 1);
        border-bottom: 1px #eee solid !important;
        z-index: 99999999999999;
        transition: 1s;

    }

    .header.sticky h1 {

        padding-top: 52px;
    }

    .header.sticky h1 a {
        overflow: hidden;
        display: block;
        height: 25px;
        background: url("../../img/common/logo.png") 0 100% no-repeat;
        text-indent: -9999px;

    }

    .header.sticky .gnb a {
        display: inline-block;
        font-weight: 500;
        line-height: 1em;
        color: #000;
        font-family:'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
    }

    .header.sticky .gnb .depth1 > a {
        display: block;
        padding: 54px 0 0;
        font-size: 16px;
    }

    .header.sticky .top_wrap .etc {
        margin-top: 15px;
        color: #000 !important;

    }

    .header.sub.sticky {
        background: #fff !important;
    }

    .header.sub.sticky .gnb a {
        color: #000;
    }

    /* header_hover */
    .header.sticky.all .gnb_wrap .depth2 > li > a {
        padding-bottom: 3px;
        font-size: 14px;
        font-weight: 500;
        line-height: 1em;
        color: rgb(87, 87, 87);
        font-family:'Pretendard Variable', 'Pretendard','Noto Sans KR', sans-serif;
        display: inline-block;
        position: relative;
    }

    /* 상단 네비 오른쪽  */

    #header.sticky .top_wrap .right {
        margin-top: 46px;
    }
    #header.sticky .top_wrap .right .flex .login:after {
        position: absolute;
        width: 1px;
        margin-left: 21px;
        margin-top: 5px;
        height: 20px;
        background: rgba(0, 0, 0, 0.5);
        content: "";
    }
    #header.sticky .top_wrap .right .flex .langs ul.over {
        display: none;
    }
    #header.sticky .top_wrap .right .flex .langs.clicked ul.over {
        display: flex;
        top: -10px;
        right: 110px;
        /* background: #ddd; */
        border: 1px #ddd solid;
    }
}

/* sticky end */

/* 모바일 메뉴 */
.nav-bar {
    position: absolute;
    top: 1px;
    right: 0;
    z-index: 9999999999999999999999999999999999999999999;
    padding-right: 15px;
    display: none;

}

.nav-bar .nav_wrap {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 99999999999999999999999999;
    position: relative;

}

.nav-bar.off .nav_wrap span {
    background: #c0c0c0;
}

.nav-bar .nav_wrap span {
    display: block;
    width: 24px;
    height: 2px;
    margin-bottom: 7px;
    background: #fff;
    transition: 0.2s;

}

.nav-btn-active span:nth-of-type(1) {
    transform: translateY(9px) rotate(45deg);
    background: #000;
}

.nav-btn-active span:nth-of-type(2) {
    opacity: 0;
    background: #000;
}

.nav-btn-active span:nth-of-type(3) {
    transform: translateY(-9px)rotate(-45deg);
    background: #000;
}

.mobile-gnb {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    display: none;
    padding-top: 30px;
    top: 0;
    left: 0;
    z-index: 100;
    z-index: 9999999;
    background: #fff;
    background: rgb(255, 255, 255, 1);

}

.mobile-gnb h1 {
    overflow: hidden;
    display: block;
    height: 25px;
    background: url("../../img/common/logo.png") 0 100% no-repeat;
    text-indent: -9999px;
    position: absolute;
    top: 26px;
    left: 15px;
    width: 100%;

}

.mobile-gnb .line {
    width: 100%;
    height: 1px;
    background: #f2f2f2;
    position: absolute;
    top: 70px;
    left: 0;
}

.gnb-menu {
    padding-top: 47px;
}

.mobile-gnb .langs
 {
    background: #f5f5f5;
    border-radius: 50px;     
    color: #000;
    font-size: 16px;
    font-weight: 500;    
    padding:15px 15px;       
    text-align: center;
    margin: 25px auto; 
    width:120px; 
   
}

.mobile-gnb .langs img {
    color: #000;
    font-size: 16px;
    cursor: pointer;
    width:20px;margin-right:4px; 
    line-height:20px;
}

.mobile-gnb .langs a:hover {color:#333;text-decoration: none}

/* 추가 */
.gnb-menu .sidebar-menu {
    padding: 0;
    margin: 0;

}

.gnb-menu .sidebar-menu > li {
    position: relative;
    margin: 0;
    padding: 0;

}

.gnb-menu .sidebar-menu > li > i {
    display: none;
}

.gnb-menu .sidebar-menu > li > a {
    padding: 20px 35px;
    display: block;
    border-left: 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-family:'Pretendard Variable', 'Pretendard', 'Noto Sans KR', 'Roboto', sans-serif;
    border: 0;
    border-bottom: 1px #eeeeee solid;
    transition: 0.6;
}

.gnb-menu .sidebar-menu > li > a > .fa {
    width: 20px;
    font-weight: 900;

}

.gnb-menu .sidebar-menu > li.active > a,
.gnb-menu .sidebar-menu > li:hover > a {
    color: #000;
    background-color: transparent;
}

.gnb-menu .sidebar-menu > li .badge,
.gnb-menu .sidebar-menu > li .label {
    margin-top: 3px;
    margin-right: 5px;
}

.gnb-menu .sidebar-menu li > a > .fa-angle-right {
    width: auto;
    height: auto;
    padding: 0;
    margin-right: 10px;
    margin-top: 3px;
    transition: 0.3s;
    color: #000;
    font-weight: 900;
    font-size: 13px;

}

.gnb-menu .sidebar-menu li > a:hover .fa-angle-right,
.gnb-menu .sidebar-menu li.active > a > .fa-angle-right {

    transform: rotate(90deg);
    color: #000;
}

.gnb-menu .sidebar-menu li.active > .sidebar-submenu {
    display: block;

}

.gnb-menu .sidebar-menu a {
    color: #b8c7ce;
    text-decoration: none;
}

.gnb-menu .sidebar-menu .sidebar-submenu {
    display: none;
    list-style: none;
    padding-left: 8px;
    margin: 0 1px;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    background: #f4f4f4;
}

.gnb-menu .sidebar-menu .sidebar-submenu > li > a {
    padding: 18px 35px;
    display: block;
    font-size: 15px;
    font-weight: 400;
    /*    color: hsla(240,6%,97%,.5); */
    color: #000;
    border-bottom: 1px #e2e2e2 solid;
}

.gnb-menu .sidebar-menu .sidebar-submenu > li:last-child > a {
    border: 0;
}

.gnb-menu .sidebar-menu .sidebar-submenu > li > a > .fa {
    width: 20px;
    display: none;
}

.gnb-menu .sidebar-menu .sidebar-submenu > li > a:hover,
.gnb-menu .sidebar-menu .sidebar-submenu > li.active > a {
    color: #000;
}

.bottom_wrap {
    margin-top: 30px;
    background: transparent;
}

.bottom_wrap li a {
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
    color: #000;
    padding-left: 0;
}

.m-copy {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 19px;
    color: rgb(145, 145, 145);
    text-align: center;
}

@media(max-width:991px) {
    .nav-bar {
        display: block !important;
    }
}

/* 모바일 메뉴 마감 */

/* 모바일 메뉴 */
.row-offcanvas {
    height: 100%;
}

.sidebar-offcanvas {
    display: none;
}

.js-offcanvas-btn {
    position: absolute;
    right: 0;
    margin-right: 15px;
    top: 20px;
    background-color: transparent;
    border: 0;
}

/* 모바일 메뉴 마감 */

/* #header 상단 마감 */

/* 인덱스 */
/* 공통 */
#index-wrap section .title dl dt {
    color: #fff;
    font-weight: 600;
    line-height: 70px;
    font-size: 63px;
    margin-bottom: 20px;
    font-family: 'Pretendard Variable', 'Pretendard','NotoSans', sans-serif;

}

#index-wrap section .title dl dd {
    font-size: 19px;
    line-height: 30px;
    color: rgba(255, 255, 255, .5);
  
}

/* 공통 마감 */
#index-wrap {
    position: relative;
    clear: both;

}

#index-wrap section.section01 {
    position: relative;
    height: 750px;

}

#index-wrap section.section01 .flex {
    display: flex;
    position: relative;
    height: 100%;

}

#index-wrap section.section01 .flex .company,
#index-wrap section.section01 .flex .product {
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-height: 100%;
    max-height: 100%;

}

#index-wrap section.section01 .flex .box {
    position: relative;
}

#index-wrap section.section01 .flex .box .title {
    padding-left: 136px;
    padding-top: 170px;
    z-index: 9;
    position: relative;
   
}

#index-wrap section.section01 .flex .box .title h4 {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 14px;
    font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', 'Ubuntu', dotum, sans-serif;
    transform: translateX(15%);
    opacity: 0;
    transition: 1s;
    transition-delay: .2s;
    display: inline-block;
     overflow: hidden;
}

#index-wrap section.section01 .flex .box .title dl dt {
    color: #fff;
    font-weight: 600;
    line-height: 66px;
    font-size: 58px;
    margin-bottom: 22px;
    font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', 'Ubuntu', dotum, sans-serif;
     transform: translateX(-15%);
    opacity: 0;
    transition: 1s;
    transition-delay: .42s;
    display: inline-block;
     overflow: hidden;
}

#index-wrap section.section01 .flex .box .title dl dd {
    color: rgba(255, 255, 255, .8);
    font-size: 19px;
    line-height: 30px;
    font-weight: 500;
     transform: translateY(15%);
    opacity: 0;
    transition: 1s;
    transition-delay: .6s;
     overflow: hidden;
}

#index-wrap section.section01 .flex .box .overay {
    /* position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 9; */
    /* position: relative; */
    padding-left: 115px;
    transition: 0.5s ease;
    /* z-index: 9; */
    opacity: 0;
    margin-top: 50px;

}

#index-wrap section.section01 .flex .box .overay .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background: rgba(0, 0, 0, 0.6);
    z-index: 8;
}

#index-wrap section.section01 .flex .box:hover .overay {
    opacity: 1;
}

#index-wrap section.section01 .flex .box .overay ul {
    display: flex;
    z-index: 9;
    position: relative;

}

#index-wrap section.section01 .flex .box .overay ul li {
    position: relative;
    display: inline-block;

}

#index-wrap section.section01 .flex .box .overay ul li a {
    color: #fff;
    display: block;
    font-size: 17px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, .8);

}

#index-wrap section.section01 .flex .box .overay ul li:first-child:before {
    display: none;
}

#index-wrap section.section01 .flex .box .overay ul li::before {
    position: absolute;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .2);
    content: '';
    margin-top: 17px;
    transition: 0.5s;

}

#index-wrap section.section01 .flex .box .overay ul li a:hover {
    text-decoration: none;

    color: rgba(255, 255, 255, 1);

}

#index-wrap section.section01 .flex .box .overay ul > li > a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 3px;
    width: 0;
    background: transparent;
    transition: width 0.5s ease, background-color 0.5s ease;

}

#index-wrap section.section01 .flex .box .overay ul:hover > li:before {
    background: rgba(255, 255, 255, 0);
    margin-top: 0;

}

#index-wrap section.section01 .flex .box .overay ul > li > a:hover:before {
    width: 65%;
    background: rgba(255, 255, 255, 1);
    margin-left: 20px;
}

#index-wrap section.section01 .flex .box .overay ul > li > a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}
#index-wrap section.section02 {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 82vh;
    overflow: hidden;
}

#index-wrap section.section02 .title {
    position: absolute;
    top: 26%;
    max-width: 480px;
}
#index-wrap section.section02 .slider-wrap {
    margin-left: 630px;
    position: absolute;
    top: 20%;
    width: 100%;
    opacity: 0;
    transition: 1s;
    transition-delay: 0s;
}
#index-wrap section.section02 .section02_slider {
    width: 100%;
    position: relative;
}

#index-wrap section.section02 .title dl dt {
    color: #000;
    font-size: 18px;
    font-family: 'Pretendard Variable', 'Pretendard', 'NotoSans', sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
    transform: translateX(15%);
    opacity: 0;
    transition: 1s;
    transition-delay: .2s;
}
#index-wrap section.section02 .title dl dt::before {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000;
    content: '';
    margin-top: 50px;
}
#index-wrap section.section02 .title dl dd {
    color: #000;
    font-weight: 900;
    font-size: 38px;
    line-height: 54px;
    transform: translateY(15%);
    opacity: 0;
    transition: 1s;
    transition-delay: .4s;
}
#index-wrap section.section02 .title .flex {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 40px;
}

#index-wrap section.section02 .title .flex .nbtn a {
    border: 2px #000 solid;
    padding: 16px 65px;
    height: auto;
    letter-spacing: 0;
    font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', 'Poppins', 'Ubuntu', dotum, sans-serif;
    font-size: 19px;
    transform: translateY(-15%);
    opacity: 0;
    transition: 1s;
    transition-delay: .2s;
}
#index-wrap section.section02 .title .flex .nbtn a:hover {
    text-decoration: none;
}
#index-wrap section.section02 .title .arrow {
    display: flex;
    align-items: center;
    margin-left: 30px;
}
#index-wrap section.section02 .title .arrow .slick-dots {
    position: static !important;
    margin: 0 !important;
    padding: 0;
    display: flex !important;
}

#index-wrap section.section02 .title .arrow .slick-dots li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

#index-wrap section.section02 .title .arrow .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    padding: 0;
    text-indent: -9999px;
    overflow: hidden;
    transition: 0.4s;

}
#index-wrap section.section02 .title .arrow .slick-dots li.slick-active button {
    background-color: rgba(0, 0, 0, 0.5);
    width: 12px;
    height: 12px;
}
#index-wrap section.section02 .section02_slider a {
    display:block;
    width: 100%;
    height: 100%;
     position: relative;
  
}

#index-wrap section.section02 .section02_slider .slide {
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 20px rgba(0, 0, 0, .4);
}
.section02_slider .slide-link {
    position: absolute;
    inset: 0; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    text-decoration: none;
    color: inherit;
    z-index: 10;
}
#index-wrap section.section02 .section02_slider .slick-list {
    margin: 0 -25px;
    padding: 0 0 0 0 !important;

}
#index-wrap section.section02 .section02_slider .slick-slide {
    margin: 0 25px;
}
#index-wrap section.section02 .section02_slider .slick-track {
    padding-bottom: 60px;
}
#index-wrap section.section02 .section02_slider .slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* 추가 */
#index-wrap section.section02 .section02_slider .slide:hover {
    transition: all 0.3s ease-in-out;

}
#index-wrap section.section02 .section02_slider .slide::before {
     pointer-events: none;
    transition: all 0.3s ease-in-out;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(3, 3, 3, 0.5) 75%);
    z-index: 2;
    bottom: -100%;
    left: 0;
}
#index-wrap section.section02 .section02_slider .slide:hover:before {
    bottom: 0;
}
#index-wrap section.section02 .section02_slider .slide .caption {
    position: absolute;
    color: #fff;
    z-index: 2;
    width: 100%;
    transition: opacity 0.2s, transform 0.3s;
    padding-left: 60px;
    top: 70%;
    transform: translate3d(0, 60px, 0);
    -webkit-transform: translate3d(0, 60px, 0);
    -moz-transform: translate3d(0, 60px, 0);
    -ms-transform: translate3d(0, 60px, 0);
    -o-transform: translate3d(0, 60px, 0);
}
#index-wrap section.section02 .section02_slider .slide .caption h2 {
    font-size: 34px;
    font-family: 'Pretendard Variable', 'Pretendard','NotoSans', sans-serif;
    font-weight: 600;
    padding-bottom: 10px;
}
#index-wrap section.section02 .section02_slider .slide .caption p {
    opacity: 0;
    color: rgba(255, 255, 255, .6);
    transition: 0.6s;
    font-size: 19px;
}
#index-wrap section.section02 .section02_slider .slide:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(3, 3, 3, 0.5) 75%);
    z-index: 2;
    bottom: -100%;
    left: 0;
}

#index-wrap section.section02 .section02_slider .slide:hover:before {}

#index-wrap section.section02 .section02_slider .slide:hover .caption {
    bottom: 40px;
    transform: translate3d(0, -5px, 0);
}
#index-wrap section.section02 .section02_slider .slide:hover .caption p {
    opacity: 1;
    color: rgba(255, 255, 255, .6);
}
#index-wrap section.section02 .section02_slider .slide a,
#index-wrap section.section02 .section02_slider .slide a:focus,
#index-wrap section.section02 .section02_slider .slide a:hover {
    outline: none !important;
}
/* 추가 마감 */
/* 뉴스 */
#index-wrap section.section02.news {
    /* background: #181819; */
    background-size: cover;
    position: relative;
    display: block;
    flex-direction: column;
    justify-content: center;
    height: 58vh;
    overflow: hidden;
}

#index-wrap section.section02.news .title dl dt {
    color: #fff;
    font-weight: 600;
    line-height: 70px;
    font-size: 63px;
    margin-bottom: 20px;
    font-family:'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
}
#index-wrap section.section02.news .title dl dt::before {
    display: none;
}
#index-wrap section.section02.news .title dl dd {
    font-size: 19px;
    line-height: 30px;
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
}
#index-wrap section.section02.news .title .btn_wrap {
    margin-top: 36px;
    transform: translateY(-15%);
    opacity: 0;
    transition: 1s;
    transition-delay: .2s;
}

#index-wrap section.section02.news .title .btn_wrap a {
    color: #5f5f5f;
    font-family: 'Pretendard Variable', 'Pretendard','Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: block;
    position: relative;
    padding-top: 6px;
    padding-bottom: 6px;

}

#index-wrap section.section02.news .title .btn_wrap a::after {
    position: absolute;
    width: 40px;
    height: 1px;
    background: #5f5f5f;
    content: '';
    margin-left: 20px;
    margin-top: 12px;
    transition: 0.4s;
}

#index-wrap section.section02.news .title .btn_wrap a:hover {
    text-decoration: none;
}

#index-wrap section.section02.news .title .btn_wrap a:hover::after {
    margin-left: 30px;
}

#index-wrap section.section02.news .slider-wrap {
    margin-left: 634px;
    position: absolute;
    top: 17%;
    opacity: 0;
    transition: 1s;
    transition-delay: 0s;
}

#index-wrap section.section02.news .section03_slider {
    /* overflow: hidden; */
    width: 100%;
    position: relative;
    height: 305px;
}

#index-wrap section.section02.news .section03_slider .box {
    margin: 10px;
    position: relative;

}

#index-wrap section.section02.news .section03_slider .box a {
    background: #121213;
    width: 100%;
    height: auto;

    overflow: hidden;
    padding: 65px 45px;
    display: block;
}

@media(min-width:992px) {
    #index-wrap section.section02.news .section03_slider .box a {
        min-height: 305px;
    }
}

#index-wrap section.section02.news .section03_slider .box:focus a,
#index-wrap section.section02.news .section03_slider .box:hover a {
    outline: none;
    text-decoration: none;
}

#index-wrap section.section02.news .section03_slider .box a .note,
#index-wrap section.section02.news .section03_slider .box a .note .content,
#index-wrap section.section02.news .section03_slider .box a .note p {
    color: #828282;
}

#index-wrap section.section02.news .section03_slider .box a,
#index-wrap section.section02.news .section03_slider .box a:focus,
#index-wrap section.section02.news .section03_slider .box a:hover {
    outline: none !important;
}
#index-wrap section.section02.news .section03_slider .box a .note p {
    font-family: 'Pretendard Variable', 'Pretendard','NotoSans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #a6a6ab;
    transition: 0.4s;
}

#index-wrap section.section02.news .section03_slider .box a .note .content {
    margin-top: 26px;
    transition: 0.4s;

}



#index-wrap section.section02.news .section03_slider .box a .note .data-more {
    position: absolute;
    bottom: 32px;
    display: flex;
    width: 100%;

}

#index-wrap section.section02.news .section03_slider .box a .note .data-more span.data {
    font-size: 14px;
    font-family: 'Pretendard Variable', 'Pretendard','NotoSans', sans-serif;
    font-style: italic;
    color: rgba(255, 255, 255, .3);
    transition: 0.4s;
}
#index-wrap section.section02.news .section03_slider .box a .note .data-more span.data::before {
    position: absolute;
    width: 32px;

    height: 1px;
    background: rgba(255, 255, 255, .2);
    content: '';
    bottom: 40px;
    margin-top: 26px;
}
#index-wrap section.section02.news .section03_slider .box a .note .data-more i {
    color: rgba(255, 255, 255, .3);
    position: absolute;
    right: 85px;
    top: 0;
    transition: 0.4s;
}
#index-wrap section.section02.news .section03_slider .box a:hover .note .data-more i {
    margin-right: 12px;
}
#index-wrap section.section02.news .section03_slider .box a:hover .content,
#index-wrap section.section02.news .section03_slider .box a:hover .note .data-more i,
#index-wrap section.section02.news .section03_slider .box a:hover .note .data-more span {
    color: #fff;
}

#index-wrap section.section02.news .pager_wrap {
    position: absolute;
    bottom: 6%;
    margin-left: 634px;
    display: flex;
}

#index-wrap section.section02.news .pager_wrap i {
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.2em;

}

#index-wrap section.section02.news .pager_wrap i:hover {
    background: #282829;
}

#index-wrap section.section02.news .pager_wrap .prev {
    margin-right: 6px;
}

/* 뉴스 마감 */
#index-wrap section.section03 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
}
#index-wrap section.section03 .title dl dt {
    transform: translateX(5%);
    opacity: 0;
    transition: 1s;
    transition-delay: .2s;
   
}

#index-wrap section.section03 .title dl dd {
    transform: translateX(5%);
    opacity: 0;
    transition: 1s;
    transition-delay: .4s;
}
#index-wrap section.section03 .btn_wrap {
    margin-top: 30px;
    transform: translateY(-15%);
    opacity: 0;
    transition: 1s;
    transition-delay: .7s;
}

#index-wrap section.section03 .btn_wrap a {
    color: rgba(255, 255, 255, .5);
    font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: block;
    position: relative;
    padding-top: 6px;
    padding-bottom: 6px;

}

#index-wrap section.section03 .btn_wrap a::after {
    position: absolute;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .4);
    content: '';
    margin-left: 20px;
    margin-top: 12px;
    transition: 0.4s;
}

#index-wrap section.section03 .btn_wrap a:hover {
    text-decoration: none;

}

#index-wrap section.section03 .btn_wrap a:hover::after {
    margin-left: 30px;
}
/* 인덱스 마감 */

/*  sub layout */
/* 서브비주얼 */

@keyframes zoom {
    0% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.0, M12=0, M21=0, M22=1.0, SizingMethod='auto expand')"" filter: progid: DXImageTransform.Microsoft.Matrix(M11=1.0, M12=0, M21=0, M22=1.0, SizingMethod= 'auto expand')) } 100% { -moz-transform: scale(1); transform: scale(1); -webkit-transform: scale(1); -ms-transform: scale(1); -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')"" filter: progid: DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod= 'auto expand');
    }
}

#sub_visual {
    position: relative;
    height: 420px;
    padding-top: 200px;
    /* background: #f2f2f2; */
    /* margin-bottom: 80px; */
}
#sub_visual .s_visual_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 서브비주얼 bottom */

/* 서브비주얼 마감 */

/*  서브 레이아웃 */
#sub_content {
    position: relative;

}

#sub_visual .page-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;

}

#sub_visual .container .page-header {
    padding-left: 0;
}

#sub_visual .page-header h1 {
    font-size: 60px;
    font-weight: 900;
    color: #000;
    font-family: 'Pretendard Variable', 'Pretendard', 'NotoSans', sans-serif;
    padding: 0;
    margin-bottom: 10px;
}

/*  서브 레이아웃 마감 */

/* footer  */
footer {
    padding: 100px 0;
    background: #111111;
    font-family: 'Pretendard Variable', 'Pretendard', 'NotoSans', sans-serif;
    color: #484848;
    position: relative;
}
footer.sub {
    margin-top: 80px;
}
footer ul.nav2 {
    display: flex;
}

footer ul.nav2 li a {
    display: block;
    padding: 12px 29px;
    font-size: 16px;
    font-weight: 600;
    color: #bababa;
    font-family: 'Pretendard Variable', 'Pretendard', 'NotoSans', sans-serif;
}

footer ul.nav2 li:first-child a {
    padding-left: 0;
}

footer ul.nav2 li a:hover {
    text-decoration: none;
}

footer ul.nav2 li::before {
    position: absolute;
    width: 1px;
    height: 12px;
    background: #292929;
    content: '';
    margin-top: 18px;
}

ul.footer ul.nav2 li:first-child:before {
    display: none;
}

footer .flex {
    display: flex;
    width: 100%;

}
footer .flex .right {
    margin-left: auto;
}
footer .flex .right ul {
    display: flex;
}
footer .flex .right ul li a {
    color: #636363;
    border: 1px #636363 solid;
    display: block;
    margin-left: 6px;
    font-size: 15px;
    min-width: 225px;
    height: 52px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    position: relative;

}
footer .flex .right ul li:first-child a::before {
    position: absolute;
    right: 20px;
    font-size: 25px;
    content: "";
    color: #636363;
    font-family: 'xeicon';
    transition: 0.4s;

}
footer .flex .right ul li:last-child a::before {
    position: absolute;
    right: 20px;
    font-size: 25px;
    content: "";
    color: #636363;
    font-family: 'xeicon';
    transition: 0.4s;

}
footer .flex .right ul li a:hover {
    color: #a7a7a7;
    border: 1px #a7a7a7 solid;
    text-decoration: none;
}
footer .flex .right ul li a:hover::before {
    color: #a7a7a7;
    right: 25px;
}
footer address {
    margin-top: 40px;
    color: #484848;
    font-size: 16px;
    font-family: 'Pretendard Variable', 'Pretendard', 'NotoSans', sans-serif;
    font-style: normal;
    font-weight: 500;
}

footer address ul.info {
    display: flex;
    margin-bottom: 20px;
}

footer address ul.info li:first-child {
    padding-left: 0;
}

footer address ul.info li {
    display: block;
    padding: 0 12px;
    font-size: 16px;
    color: #bababa;
    font-family: 'Pretendard Variable', 'Pretendard', 'NotoSans', sans-serif;
    color: #484848;
    font-weight: 500;
}
/* footer end */
