﻿@charset "utf-8";
/* *******************************************************
 * filename : layout.css
 * description : 전체 레이아웃 CSS
 * date : 2018-01-16
******************************************************** */

@import url("font.css");
/* 나눔고딕 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);
@import url(https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css);
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
html::-webkit-scrollbar-track {
    background-color: #999;
}

html::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.5);
}

html::-webkit-scrollbar {
    width: 5px;
}
/* layout */
body,
table,
th,
td,
button,
select,
input {
    font-family: Poppins,'Pretendard',  Arial, sans-serif;
    font-size: 13px;
    color: #666;
    -webkit-text-size-adjust: none;
}
p, span, h1, h2, h3, h4, h5, h6, a, i, button {
    transform: rotate( 0.04deg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 100%;
    font: inherit;
}
video#vid{
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black;
    background-position: center center;
    background-size: contain;
    object-fit: cover;
    z-index:-2;
}
.video-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: -1;
}
html {
    font-size: 16px;
}

body {
    background-color: #fff;
}

#wrap {
    overflow: hidden;
    width: 100%;
    min-width: 320px;
    position: relative;
}
#container{
    position:relative;
}
.section{
    height:100vh;
    position:relative;
}
.pc-hide{
    display:none;
}
/* min-width 홈페이지 컨텐츠 가로값에 맞게 변경 */
/* ****************** 공통클래스 ********************** */
.area > aside,
.area > article,
#footerInner,
ul.area, .area-wid {
    max-width: 1200px;
    margin: 0px auto;
}
.area-wid{padding-bottom: 30px;}
.serviceContent{padding-top: 20px;}
/* width 홈페이지 컨텐츠 가로값에 맞게 변경 */
.area-box {
    max-width: 1600px;
    margin:0 auto;
    text-align: left
}

.content {
    padding: 20px 0 100px;
    box-sizing: border-box;
}

.content-en {
    padding: 20px 0px 100px 400px;
    box-sizing: border-box;
}

.clearfix {
    *zoom: 1;
}

.clearfix:after {
    clear: both;
    display: block;
    content: "";
}

.blind {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 0
}

.trans200 {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s
}

.trans300 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s
}

.trans400 {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s
}

.trans500 {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s
}

.trans2000 {
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -o-transition: all 2s;
    -ms-transition: all 2s;
    transition: all 2s
}

.material-icons {
    line-height: inherit;
    color: inherit;
    vertical-align: middle;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-layout {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell-layout {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.over-img {
    overflow: hidden;
}

.over-img img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s
}

a:hover .over-img img {
    -ms-transform: scale(1.1) rotate(0.02deg);
    -o-transform: scale(1.1) rotate(0.02deg);
    -moz-transform: scale(1.1) rotate(0.02deg);
    -webkit-transform: scale(1.1) rotate(0.02deg);
    transform: scale(1.1) rotate(0.02deg);
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* ****************** HEADER ********************** */
#header {
    position: absolute;
    width: 100%;
    height: auto;
    -webkit-transition: top 0.4s;
    -moz-transition: top 0.4s;
    -o-transition: top 0.4s;
    -ms-transition: top 0.4s;
    transition: all 0.4s;
}
#header.fixed-header{position:fixed;z-index:7;}
#headerInnerWrap {
    position: relative;
    height: 100px;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

#headerInner {
    position: relative;
}

/*
#header #headerInnerWrap.on > #headerInner .logo {
    background: url(../../images/common/logo_en.png) no-repeat;
    z-index: 999;
    display: block;
    position: relative;
}*/


#header .logo {
    position: relative;
    z-index: 100;
    float: left;
    padding: 0px 0 0 30px;
}

#header .logo a {
    display: block;
    width: 290px;
    margin-top: 15px;
    display: block;
    vertical-align: top;
}

#header.headerBg #headerInnerWrap .logo a svg .st2{
    fill:#000000;
}

/* -------- Header :: UTIL BOX -------- */
.header-util-box {
    display:flex;
    align-items:center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    font-family: 'Montserrat', 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic", "돋움", Dotum, Arial, sans-serif;
}

.header-find { margin-right:12px; margin-top: 32px; display:flex; align-items:center; cursor:pointer; }
.header-find>span { font-size:16px; font-weight:500; margin-left:4px; color:#fff; }
.header-find>svg * { stroke:#fff; fill:#fff; }

.header-find:after{
    content:"";
    clear:both;
    display:block;
    width:0;
    position:absolute;
    bottom:0;
    left:0;
    height:2px;
    background-color:#666;
    transition:all 0.3s;
}

.header-find:hover:after{width:115px;}

/* Header :: 유저메뉴 */
.user-menu-box {
    float: left;
}

.user-menu-box li {
    float: left;
    margin-left: 13px;
    line-height: 90px;
}

.user-menu-box li:first-child {
    margin-left: 0;
}

.user-menu-box li a {
    display: block;
    color: #000;
}

.user-menu-box li a span {
    color: #666;
    font-size: 12.5px;
    letter-spacing: 0.1px;
    font-family: 'Poppins', sans-serif;
    margin-left: 5px;
}

/* Header :: 언어선택 */
.header-lang {
    position: relative;
    float: left;
    height: 33px;
    z-index: 100;
    line-height: 33px;
    width: 80px;
    margin-left: 28px;
    margin-top: 35px;
    transition: all 0.3s;
    margin-right: 28px;
    box-sizing: border-box;
    border-bottom:2px solid rgba(0,0,0,0);
    overflow: hidden
}
.header-lang:after{
    content:"";
    clear:both;
    display:block;
    width:0;
    position:absolute;
    bottom:0;
    left:0;
    height:2px;
    background-color:#666;
    transition:all 0.3s;
}

.header-lang a{
    overflow: hidden;
    position: relative;
    display: block;
    float:left;
    height: 100%;
    padding: 0 0 0 15px;
    font-size: 18px;
    letter-spacing: -0.25px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
}
.header-lang i{
    font-size:18px;display:block;
    float:left;
    line-height: 30px;
    color:#fff;
    margin-right:-5px;
}

.header-lang:hover{width:130px;}
.header-lang a:hover, #header.headerBg .header-lang a:hover {color:#00ae41;}
.header-lang:hover:after{width:100%;}

#header.headerBg .header-lang a, #header.headerBg .header-lang i {
    /*
    color: #333;
    */
    font-weight: 500;
}

/*
#header.headerBg .header-lang:hover:after, #headerInnerWrap.on .header-lang:hover:after{
    background-color:#333;
}
*/

/* Header :: 사이트맵(기본형 or 커스텀) */
.sitemap-line-btn {
    float: left;
    width: 90px;
    height: 90px;
    margin-left: 19px;
    background-size: 200% 200%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

.sitemap-line-btn .line {
    display: block;
    width: 22px;
    height: 1px;
    background-color: #fff;
    margin: 5px auto;
}

#header.headerBg #headerInnerWrap .sitemap-line-btn .line {
    background-color: #333;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

/* -------- Header :: GNB(PC) -------- */
.gnb-overlay-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 97;
}

/* gnb overlay BG */
#gnbBg {
    display: none;
    position: absolute;
    left: 0;
    top: 68px;
    width: 100%;
    height: 300px;
    background: #ff6100;
    border-bottom: 1px solid #111;
    z-index: 98
}

/* gnb 2depth BG */
#gnb {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0px;
    width: 100%;
    z-index: 99;
}
#gnb > ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

#gnb > ul > li {
    position: relative;
    float: left;
}

#gnb > ul > li > a {
    position: relative;
    z-index: 100;
    display: block;
    height: 100px;
    line-height: 100px;
    padding: 0 44px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    letter-spacing: -0.75px;
    font-weight: 400;
    -webkit-transition: font-size 0.4s;
    -moz-transition: font-size 0.4s;
    -o-transition: font-size 0.4s;
    -ms-transition: font-size 0.4s;
    transition: font-size 0.4s
}


#header.headerBg #gnb > ul > li > a {
    font-weight: 600;
}
#gnb > ul > li > a:before {
    position: absolute;
    top: 0px;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: #00ae41;
    content: "";
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s
}

#gnb > ul > li > a:hover:before,
#gnb > ul > li.on > a:before, 
#gnb > ul > li.active > a:before{
    width: 100%;
    margin-left: -50%;
}

#gnb > ul > li.active > a, #header.headerBg #gnb > ul > li.active > a {
    color: #35d32f;
}

/* GNB :: 2차 전체메뉴 */
#gnb.total-menu > ul > li .gnb-2dep {
    display: block;
    position: absolute;
    top: 93px;
    left: 0px;
    z-index: 99;
    width: 100%;
    height: 407px;
    text-align: left;
}
#gnb.total-menu > ul > li:last-child .gnb-2dep{
}
/* GNB :: 2차 각각메뉴 */
#gnb.each-menu > ul > li .gnb-2dep {
    display: none;
    position: absolute;
    top: 91px;
    height: 290px;
    left: 0px;
    z-index: 99;
    width: 100%;
    text-align: left;
}
#gnb > ul > li:hover, #gnb > ul > li:hover .gnb-2dep {
    background-color: #f9f9f9;
}
#gnb > ul > li .gnb-2dep > a {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #333;
    padding-top: 23px;
}
#gnb > ul > li .gnb-2dep ul {
    padding: 13px 0px;
}

#gnb > ul > li .gnb-2dep ul li {
    position: relative;
    padding: 8px 10px;
    height:55px;
    box-sizing:border-box;
}

#gnb > ul > li .gnb-2dep ul li a {
    display: block;
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 22px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    word-spacing: -1px;
}

    #gnb > ul > li .gnb-2dep ul li a:hover {
        color: #00ae41;
        font-weight: 700;
    }

/* -------- Header :: GNB(Mobile) -------- */
.nav-open-btn {
    display: none;
}

#gnbM {
    display: none
}

/* ****************** FOOTER ********************** */
.section.footer{height: auto !Important;display: table;
    table-layout: fixed;
    width: 100%;}
.section.footer .fp-tableCell{
        height: auto !important;    
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.section.footer .fp-tableCell .mBottomCon{
    height: 254px;
}
#footer {
    padding: 42px 0;
    transition: all 0.3s;
    border-top: 1px solid #e2e2e2;
    background-color: #fff;
}
#footerInner {
    position: relative;
}

#footerTop {
    margin-bottom: 30px
}

/* Footer :: TOP버튼 */
.to-top-btn {
    position: fixed;
    bottom: -100px;
    right: 15px;
    width: 46px;
    height: 46px;
    border-radius:100%;
    background-color: rgba(0, 71,157, 0.34);
    text-align: center;
    line-height: 46px;
    color: #fff;
    z-index: 99;
    filter: Alpha(opacity=0);
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -o-transition: all 2s;
    -ms-transition: all 2s;
    transition: all 2s
        /* -webkit-border-radius:50%;-moz-border-radius:50%;-o-border-radius:50%;border-radius:50%; */
}
.to-top-btn:hover{
    background-color: rgba(0, 71, 157, 1);
    color: #fff;
}
.to-top-btn.fixed {
    bottom: 15px;
    opacity: 1.0;
    filter: Alpha(opacity=100);
}

.footer-left-con {
    float: left;
}

/* Footer :: 푸터메뉴 */
.foot-menu {
    margin-bottom: 25px;
}

.foot-menu li {
    float: left;
    line-height: 20px;
    margin-left: 28px;
}

.foot-menu li:first-child {
    margin-left: 0
}

.foot-menu li a {
    color: #000;
    font-size: 16px;
    letter-spacing: -0.75px;
    font-weight: 600;
    opacity: 0.5;
    filter: Alpha(opacity=50);
}

.foot-menu li.bold a {
    opacity: 1.0;
    filter: Alpha(opacity=100);
}

.foot-logo-m {
    display: none;
}

/* Footer :: 왼쪽정보 */
.family-address p {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding-bottom: 10px;
    letter-spacing: -0.75px;
    opacity: 0.6;
    filter: Alpha(opacity=60);
}

.family-address span {
    margin-right: 22px
}

.family-address a {
    color: inherit
}

.family-address .address-tel {
    letter-spacing: -0.25px;
}

.copyright {
    font-size: 14px;
    opacity: 0.3;
    color: #000;
    font-weight: 500;
    letter-spacing: -0.75px;
    padding-top: 25px;
}

.copyright>a { color:#000; }

/* Footer :: 오른쪽정보  */
.footer-right-con {
    float: right;
    padding-top: 25px;
}

/* Footer :: 오른쪽정보 :: 패밀리사이트 */
.family-site-box {
    /* position:absolute; top:20px; right:0;*/
    position: relative;
    width: 215px;
    text-align: left;
    letter-spacing: -0.25px;
}

.family-site-box .family-site-open-btn {
    display: block;
    height: 50px;
    line-height: 50px;
    text-indent: 10px;
    font-size: 14.3px;
    border: 1px solid #111;
    background-color: #111;
    color: #fff;
}

.family-site-box .family-site-open-btn i {
    position: absolute;
    right: 3px;
    top: 50%;
    margin-top: -12px;
}

.family-site-box.open .family-site-open-btn i {
    transform: rotate(180deg);
    right: -5px
}

.family-site-list {
    position: absolute;
    bottom: 52px;
    left: 0px;
    width: 100%;
    padding: 10px 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom: 0;
    z-index: 11;
    display: none;
    box-sizing: border-box;
}

.family-site-list a {
    display: block;
    padding: 10px;
    color: #333;
    font-size: 12px;
}

.family-site-list a:hover {
    color: #000;
    text-decoration: underline;
}


/* ****************** SUB LAYOUT ********************** */
/*  SUB LAYOUT :: 비주얼 */
#visual {
    overflow: hidden;
    position: relative;
    width: 100%;
    height:100vh;
}

#visual .visual-img-con {
    position: absolute;
    left: 0;
    width: 100%;
    height:100%;
}

#visual .visual-txt-con {
    display: flex;
    position: relative;
    text-align: left;
    height: 100%;
    letter-spacing: -0.5px;
    color: #333;
    z-index: 4;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
.visual-img-box {
    width: 550px;
    position: absolute;
    top: calc(50% - 200px);
    right: 200px;
    height: 550px;
    border-radius: 100%;
    overflow: hidden;
    opacity: 0;
    filter: Alpha(opacity=0);
    visibility: hidden;
    -moz-transition: all 2s, opacity 1.0s;
    -ms-transition: all 2s, opacity 1.0s;
    -webkit-transition: all 2s, opacity 1.0s;
    -o-transition: all 2s, opacity 1.0s;
    transition: all 2s, opacity 1.0s;
    -ms-transform: translateX(30px) translateY(30px) rotate(0.0001deg);
    -o-transform: translateX(30px) translateY(30px) rotate(0.0001deg);
    -moz-transform: translateX(30px) translateY(30px) rotate(0.0001deg);
    -webkit-transform: translateX(30px) translateY(30px) rotate(0.0001deg);
    transform: translateX(30px) translateY(30px) rotate(0.0001deg);
}
#visual.active .visual-img-con:after, #visual.active .visual-img-box {
    opacity: 1.0;
    filter: Alpha(opacity=100);
    visibility: visible;
    -ms-transform: translateX(0) translateY(0) rotate(0.0001deg);
    -o-transform: translateX(0) translateY(0) rotate(0.0001deg);
    -moz-transform: translateX(0) translateY(0) rotate(0.0001deg);
    -webkit-transform: translateX(0) translateY(0) rotate(0.0001deg);
    transform: translateX(0) translateY(0) rotate(0.0001deg);
}
.visual-img-con:after {
    content: '';
    display: block;
    width: 400px;
    height: 400px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: 50px;
    z-index: -1;
    background-color: #fce3ba;
    opacity: 0;
    filter: Alpha(opacity=0);
    visibility: hidden;
    -moz-transition: transform 2s, opacity 1.0s;
    -ms-transition: transform 2s, opacity 1.0s;
    -webkit-transition: transform 2s, opacity 1.0s;
    -o-transition: transform 2s, opacity 1.0s;
    transition: transform 2s, opacity 1.0s;
    -ms-transform: translateX(-20px) translateY(-20px) rotate(0.0001deg);
    -o-transform: translateX(-20px) translateY(-20px) rotate(0.0001deg);
    -moz-transform: translateX(-20px) translateY(-20px) rotate(0.0001deg);
    -webkit-transform: translateX(-20px) translateY(-20px) rotate(0.0001deg);
    transform: translateX(-20px) translateY(-20px) rotate(0.0001deg);
}
.visual-img-box span {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/content/building.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position:60% 0;
    background-size: cover;
    transition: all 0.1s;
}
.news-con .visual-img-box span {
    background-image: url(../images/content/news.jpg);
}
.welfare-con .visual-img-box span {
    background-image: url(../images/content/recruit.jpg);
}
.businessCon1 .visual-img-box span {
    background-image: url(../images/content/renew.jpg);
}
.businessCon2 .visual-img-box span {
    background-image: url(../images/content/smartgrid.jpg);
}
.businessCon3 .visual-img-box span {
    background-image: url(../images/content/engineering.jpg);
}
.businessCon4 .visual-img-box span {
    background-image: url(../images/content/high.jpg);
}
.rndCon .visual-img-box span {
    background-image: url(../images/content/r&d.jpg);
}
.InvestCon .visual-img-box span {
    background-image: url(../images/content/invest.jpg);
}
.news-con .visual-img-con:after {
    background-color: #cffbcd;
}
.businessCon1 .visual-img-con:after {
    background-color: #5f9ea0;
}
.businessCon2 .visual-img-con:after {
    background-color: #d3c6e0;
}
.businessCon3 .visual-img-con:after, .InvestCon .visual-img-con:after {
    background-color: #8590a9;
}
.businessCon4 .visual-img-con:after {
    background-color: #94b996;
}
#visual .visual-tit {
    display: inline-block;
    font-weight: 700;
    font-size: 60px;
    letter-spacing: -1.5px;
    margin-bottom: 10px
}

#visual .visual-sub-txt {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-top: 40px;
    letter-spacing: -2px;
}
#visual .visual-tit,
#visual .visual-sub-txt{
    position: relative;
    opacity: 0;
    filter: Alpha(opacity=0);
    visibility: hidden;
    -moz-transition: transform 2s, opacity 1.0s;
    -ms-transition: transform 2s, opacity 1.0s;
    -webkit-transition: transform 2s, opacity 1.0s;
    -o-transition: transform 2s, opacity 1.0s;
    transition: transform 2s, opacity 1.0s;
    -ms-transform: translateX(-20px) rotate(0.0001deg);
    -o-transform: translateX(-20px) rotate(0.0001deg);
    -moz-transform: translateX(-20px) rotate(0.0001deg);
    -webkit-transform: translateX(-20px) rotate(0.0001deg);
    transform: translateX(-20px) rotate(0.0001deg);
}

/* Active */
#visual.active .visual-img-con {
    -ms-transform: scale(1.0, 1.0) rotate(0.0001deg);
    -o-transform: scale(1.0, 1.0) rotate(0.0001deg);
    -moz-transform: scale(1.0, 1.0) rotate(0.0001deg);
    -webkit-transform: scale(1.0, 1.0) rotate(0.0001deg);
    transform: scale(1.0, 1.0) rotate(0.0001deg);
}

#visual.active .visual-tit,
#visual.active .visual-sub-txt{
    opacity: 1.0;
    filter: Alpha(opacity=100);
    visibility: visible;
    -ms-transform: translateX(0) rotate(0.0001deg);
    -o-transform: translateX(0) rotate(0.0001deg);
    -moz-transform: translateX(0) rotate(0.0001deg);
    -webkit-transform: translateX(0) rotate(0.0001deg);
    transform: translateX(0) rotate(0.0001deg);
}

#visual.active .visual-tit, #visual.active .visual-img-box {
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#visual.active .visual-sub-txt, #visual.active .visual-img-con:after {
    opacity: 0.7;
    filter: Alpha(opacity=70);
    -webkit-transition-delay: 0.8s;
    -moz-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    -ms-transition-delay: 0.8s;
    transition-delay: 0.8s
}



/*  SUB LAYOUT :: 이전페이지,다음페이지 버튼 */
.visual-prev-next-btn {
    position: absolute;
    top: 0px;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 12;
}

.visual-prev-next-inner {
    max-width: 1730px;
    height: 100%;
    margin: 0px auto;
    position: relative;
}

.sub-page-controls-btn {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    margin-top: -25px;
    text-align: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px solid #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1)
}

/* margin-top:수정*/
.sub-page-controls-btn.sub-prev-page-btn {
    left: 15px;
}

.sub-page-controls-btn.sub-next-page-btn {
    right: 15px;
}

.sub-page-controls-btn .sub-page-name {
    vertical-align: middle;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.sub-page-controls-btn span {
    color: #fff;
    vertical-align: middle;
}

.sub-page-controls-btn span i {
    margin-top: -2px;
    font-size: 24px;
}


/*네비게이션 스크롤*/
#subMenuCon {
    position: fixed;
    top:50%;
    left:20px;
    z-index:6;
}

#sideNavWrap.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #fff;
    z-index: 9999;
    height: 60px;
    border-bottom: 1px solid #e2e2e2;
}
#sideNavWrap {
    text-align: center;
}

#sideNavWrap .navList , .midNav{
    display: inline-block;
    position:relative;
}
#sideNavWrap .navList:before {
    width: 1px;
    height: calc(100% - 35px);
    background-color: #cfcfcf;
    position: absolute;
    bottom: 17px;
    left: 0px;
    content: "";
}
#sideNavWrap .navList li , .midNav li, .subNavWrap ul > li{
    position: relative;
    transition: all 0.3s;
    height:60px;
    line-height:60px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1px;
    width:155px;
}
#sideNavWrap .navList li {
    height: 35px;
    line-height: 35px;
    width: auto;
    text-align: left;
    padding-left: 20px;
}
.subNav {
    width: 100%;
    position: absolute;
    background-color:#fff;
    margin-top: 835px;
    border-bottom: 1px solid #cfcfcf;
    padding: 0 360px;
    z-index: 6;
}
.subNav.on{
    top:0;
    left:0;
    position:fixed;
    margin-top:0;
}
.subNav>div{
    min-width: 150px;
    width:auto;
}
.subNav>div.subNav2{
    width:auto;
}
.subNav>div:last-child .subNavText{
    min-width:155px;
    width: auto;
    box-sizing: border-box;
    padding-right: 35px;
}
.subNav > a, .subNav>div {
    display: inline-block;
}
.subNav>a i{
    font-size: 20px;
    margin-top: -1px;
    margin-right: 8px;
}
.subNavText {
    width: 100%;
    padding:20px 20px 20px 15px;
    text-align: left;
    font-weight: 300;
    font-size: 16px;
    position: relative;
    box-sizing: border-box;
}
.subNavText:after{
    position:absolute;    
    top: calc(50% - 12.5px);
    right:5px;
    content:'\e313';
    font-family:'Material Icons';
    display:block;
    transition:all 0.3s;
    font-size:25px;
    font-weight:lighter;
}
.subNavText:before{
   display: block;
    content: '';
    width: 1px;
    height: 15px;
    background-color: #cfcfcf;
    position: absolute;
    top: calc(50% - 7.5px);
    left: 0;
}
.subNavText.active:after{
    transform:rotate(180deg);
}
.subNavWrap {
    position: absolute;
    display: none;
    border:1px solid #e2e2e2;
    border-top:1px solid #fff;
    background-color:#fff;
    z-index:5;
}
.subNavWrap ul > li{
    display: block;
    box-sizing:border-box;
    float: inherit;
    padding:0 15px;
    height: 40px;
    line-height: 40px;
}
.subNavWrap ul > li a{
    display:block;
}
.subNavWrap ul > li.active a{
    color:#00479D;
}
.subNavWrap ul > li .gnb-2dep {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
}
#sideNavWrap .navList li a, .midNav li a{
    display: inline-block;
}
#sideNavWrap .navList li:before, .midNav li:before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: calc(50% - 3px);
    position: absolute;
    left: -3px;
    display: block;
    clear: both;
    content: "";
    background-color: #bbb;
    transition:all 0.3s;
}
/*.midNav li:after, #sideNavWrap .navList li a:after {
    transition: all 0.3s;
    width: 0px;
    height: 10px;
    position: absolute;
    bottom: 5px;
    display: block;
    right: -20px;
    content: "";
    background-color: rgba(215, 25, 33, 0.25);
}*/

#sideNavWrap .navList li.on a:after{
    width:40px;
}
#sideNavWrap .navList li.on,
#sideNavWrap .navList li:hover {
    font-weight: 600;
}
#sideNavWrap .navList li.on:before,
#sideNavWrap .navList li:hover:before {
    background-color: #00479D;
}
/*  SUB LAYOUT :: 상단정보 (공통) */
#contentInfoCon {
    position: relative;
    padding-top: 30px;
    margin-bottom:50px;
    text-align: left;
}
#contentInfoCon .content-tit, #fullpage .section .content-tit  {
    color: #333;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

 #fullpage .section h4.content-tit{
    font-weight: 400; letter-spacing: -2px;font-size: 25px;
    text-indent:0;
     margin: 30px 50px 0 50px;border-bottom: 1px solid #d4d4d4;padding-bottom: 10px;
     position:relative;
}
#fullpage .section .midea-news h4.content-tit {
    margin-right: 0;
}
.content-tit-btn{position:absolute;right:10px;top:0;width:20px;height:20px;}

.content-tit strong:before {
    content: "";
    clear: both;
    position: absolute;
    /*bottom: -5px;left: -5px;*/
    top: -5px;
    z-index: -1;
    display: block;
    width: 30px;
    height: 5px;
    background-color: #00479D;
    /*background-color: rgba(215, 25, 33, 0.25);*/
}
.content-tit span{
    font-size: 16px;
    color: #999;
    font-weight: 500;
}

.content-tit p, .content-info-style02 > p, .content-tit-txt {
    font-size: 20px;
    color: #333;
    font-weight: 400;
    line-height: 24px;
    margin-top: 50px;
}
.content-info-style02>p{margin-top: 30px;line-height: 20px; letter-spacing: -1px;}

.main-content-tit {
    position: relative;
    top: 1px;
    font-size: 45px;
    color: #333;
    letter-spacing: -2.5px;
    font-weight: 700;
    padding-right: 5px;
}

.content-tit{
    position: relative;
    top: 1px;
    font-size: 45px;
    text-align:left;
    color:#333;
    letter-spacing: -2.5px;
    font-weight: 700;
    padding-right: 5px;
}
.content-tit-right {
    text-align: right;
}

.content-tit-center {
    text-align: center;
}
.content-tit strong{
    position:relative;
    font-weight:inherit;
}
.content-tit.wit, .wit {
    color: #fff;
}
/*  SUB LAYOUT :: 컨텐츠 레이아웃 */



/* ****************** MODAL LAYERPOPUP ********************** */
.popup .modal-content{border:0;}
.popup .modal-body {
    border: 1px solid #e2e2e2;
    border-bottom-left-radius: .3rem;
    border-bottom-right-radius: .3rem;
    border-top:0;
}
.popup .modal-header {
    border-bottom:0;
    background: #ef7321;
    background: -moz-linear-gradient(left, #ef7321 0%, #d71921 100%);
    background: -webkit-linear-gradient(left, #ef7321 0%,#d71921 100%);
    background: linear-gradient(to right, #ef7321 0%,#d71921 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef7321', endColorstr='#d71921',GradientType=1 );
}
.popupViewer { max-width: 95% !important}
.popupViewer .modal-content{border-radius:0;}
.popupViewer .modal-header{display:block;}
.popupViewer .modal-body{padding:0;}
.popupViewer .modal-header .modal-title{letter-spacing:-1px;font-size:20px;font-weight:550;}
.popupViewer .card-body{padding-left:0;padding-right:0;max-height:600px;height:auto; overflow-y:auto;margin-bottom:0;}
.popupViewer .card-img-top{width:60%; margin:0 auto;padding:30px 0;}
.popupViewer .card-img-top img{width:100%;}
.popupViewer .card-text {padding:15px;box-sizing:border-box;}
.popupViewer .card-text table {width:100% !important;}
.popupViewer .card-text table img{width:100%;}
p.news-date, .news-info{float:right;margin:10px 0 0 0;}
.news-info{float:left;}
.popupViewer .btn{float:right;}
.popup .modal-header .close {
    opacity: 1;
}
.popup .modal-header .card-close {
    width:15px;
}
.popup .modal-title {
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -1px;
    color: #fff;
}
.popup .card-title{
    font-size:1rem;letter-spacing:-1px;
}
.popup .btn-primary, .popup .btn-outline-secondary {
    font-size: 14px;
}
.popup .btn-primary:hover{
    background-color:#333;
    border-color: #333;
}
.popup .btn-dark{float:right;background-color:#333;}
.popupViewer .scrollbar {
    float: left;
    width: 100%;
    background: #fff;
    overflow-y: scroll;
    margin-bottom: 25px;
}
.popupViewer .force-overflow {
    min-height: 500px;
}
.popupViewer .scrollbar-primary::-webkit-scrollbar, .bbs-con-inner::-webkit-scrollbar {
    width: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}
.popupViewer .scrollbar-primary::-webkit-scrollbar-thumb, .bbs-con-inner::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #404040;
}
.popupViewer .scrollbar-primary {
    scrollbar-color: #404040 rgba(0, 0, 0, 0.1);
}
/* modal layer */
.modal-fixed-pop-wrapper {
    display: none;
    overflow-y: hidden;
    overflow-x: hidden;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000;
    background: rgba(0, 0, 0, 0.8);
}

.modal-fixed-pop-inner {
    position: absolute;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}

.modal-inner-box {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.modal-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    z-index: 10000;
}

.modal-inner-content {
    text-align: left;
}

.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 8px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

/* modal layer content */
.footer-modal-content {
    position: relative;
    width: 96%;
    max-width: 1000px;
    margin: 20px auto;
    background-color: #fff;
}

.footer-modal-content2 {
    position: relative;
    width: 96%;
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
}

.footer-modal-content h1 {
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-align: center;
    padding: 0;
    background-color: #062f87;
    color: #fff;
    margin: 0px
}

.modal-close-btn {
    position: absolute;
    top: 11px;
    right: 10px;
    color: #fff;
    z-index:3;
}

.modal-close-btn i {
    font-size: 38px;
}

.modal-close-btn i:hover {
    color: #fff
}

.footer-inner-box {
    padding: 30px;
}

.footer-inner {
    padding: 20px;
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ddd;
}

/* 사이트맵 */
.sitemap-wrapper {
    padding: 30px;
}

.sitemap-wrapper > ul {
    overflow: hidden;
}

.sitemap-wrapper > ul > li {
    float: left;
    width: 16.66%;
    text-align: center;
}

/* 메뉴 갯수에 맞게 %로 계산, 두줄로 들어갈 경우 height값 설정 */
.sitemap-wrapper.menu4 > ul > li {
    width: 25%;
}

.sitemap-wrapper.menu6 > ul > li {
    width: 16.6%;
}

.sitemap-wrapper.menu7 > ul > li {
    width: 14.2%;
}

.sitemap-wrapper > ul > li > h2 {
    color: #191919;
    margin: 0 2% 20px 2%;
    padding-bottom: 20px;
    font-size: 18px;
    border-bottom: 1px solid #888;
    letter-spacing: -1.0px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.sitemap-wrapper > ul > li .sitemap-2dep {
    padding: 0 5%;
}

.sitemap-wrapper > ul > li .sitemap-2dep a {
    display: block;
    padding: 10px 0;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
}

.sitemap-wrapper > ul > li .sitemap-2dep a:hover {
    color: #000;
    text-decoration: underline;
}

/* 추가 */
.content-header-bg { position:relative; height:835px; background-position:center; background-size:cover; }
.content-header-text { position:absolute; left:15%; top:50%; transform:translateY(-50%); }
.content-header-text>h2 { font-size:70px; font-weight:800; color:#fff; margin-bottom:25px; }
.content-header-text>span { font-size:23px; font-weight:400; color:#fff; word-break:keep-all; }
.area-find { pointer-events:none; opacity:0; transition:opacity 0.3s; background-color: #fff; height:300px; display:flex; justify-content:center; width:100%; z-index: 99; position: absolute; }
.area-find.on { opacity:1; pointer-events:unset; }
.area-find>div { margin:0px 15px; width:210px; }
.area-find>div>p { padding-bottom:8px; text-align:left; font-size: 16px; font-weight: 600; border-bottom: 2px solid #666; }
.area-find>div>span { cursor:pointer; height:30px; width:100%; display:flex; align-items:center; }
.area-find>div>span>span { flex:1; font-size:13px; font-weight:500; text-align:left; }
.area-find>div>span>p { text-align:right; font-size:12px; font-weight:500; color:#B9BABE; }
