@charset "utf-8";
* {padding:0; margin:0;}
body{font-family: 'Noto Sans KR', sans-serif;}
li {list-style: none;}
a {text-decoration: none; color: #333;}
 
@font-face {
    font-family: 'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Bold-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Bold-Alphabetic.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Light-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Light-Alphabetic.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Black-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Black-Alphabetic.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Medium-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Medium-Alphabetic.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Thin-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Thin-Alphabetic.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Regular-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Regular-Alphabetic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Black-Alphabetic.woff2') format('woff2'),
        url('NotoSansKR-Black-Alphabetic.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Bold-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Bold-Alphabetic.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Light-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Light-Alphabetic.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Medium-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Medium-Alphabetic.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Thin-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Thin-Alphabetic.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Noto Sans KR', sans-serif;
    src: url('../notosans/NotoSansKR-Regular-Alphabetic.woff2') format('woff2'),
        url('../notosans/NotoSansKR-Regular-Alphabetic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* 헤더 시작------------------- */
.header {
    width: 100%;
    margin: 0 auto;
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}
.header.fixed {
    background-color: #fff;
    position: fixed;
    z-index: 10;
    /* 제트 인덱스를 넣어줘야 서브가 내려옴! */
}

/* 헤더의 탑 부분 */
.top{
    width: 1400px;
    /* overflow: hidden; */
    margin: 0 auto;
    padding-top: 23px;
}
.logo {
    float: left;
    overflow: hidden;
}
.logo>a {
    color: #000;
    display: inline-block;
}
.logo>a>span {
    float:left;
}

.logo>a>span>img{
    display: inline-block;
    width: 100px;
    height: auto;
}

/* 웹 메뉴 */
.main {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    margin-top: -18px;
}
.main>li{
    display: inline-block;
    position: relative;
}
.main>li>a {
    color: #333;
    display: inline-block;
    font-weight: bold;
    padding: 15px 65px 15px 65px;
    font-size: 16px;
    transition: .5s;
}

/* 메인 호버했을 때 하단 바 나오도록 하는 스타일 */
.main01_bar {
    position: absolute;
    width: 0%;
    height: 2px;
    background-color:#0f4a82;
    bottom: -2px;
    left: 58px;
    opacity: 0;
    transition: all 1s ease;}
.main>li:hover .main01_bar{
    width: 75px;
    opacity: 1;
}
.main02_bar {
    position: absolute;
    width: 0%;
    height: 2px;
    background-color:#0f4a82;
    bottom: -2px;
    left: 58px;
    opacity: 0;
    transition: all 1s ease;
}
.main>li:hover .main02_bar{
    width: 75px;
    opacity: 1;
}
.main03_bar {
    position: absolute;
    width: 0%;
    height: 2px;
    background-color:#0f4a82;
    bottom: -2px;
    left: 58px;
    opacity: 0;
    transition: all 1s ease;
}
.main>li:hover .main03_bar{
    width: 75px;
    opacity: 1;
}
.main>li:hover a {
    color: #959192;
}
.main04_bar {
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #0f4a82;
    bottom: -2px;
    left: 50px;
    opacity: 0;
    transition: all 1s ease;
}
.main>li:hover .main04_bar{
    width: 75px;
    opacity: 1;
}
/* 메인 호버했을 때 하단 바 나오도록 하는 스타일 끝*/

.sub {
    padding-top: 20px;
    position: absolute;
    display: none;
    /* 여기서 포지션 앱솔을 주면  main에 맞춰서 sub가 나열됨. */
    z-index: 9;
    /* 제트 인덱스를 안주면 뒷 배경의 영향 때문에 메뉴 슬라이드가 안 먹힘. */
}
.sub>li>a{
    display: block;
    font-size: 16px;
    color: #555;
    margin: 15px 0 15px 65px;
    text-align: left;
    font-weight: bold;
    transition: .5s;
    width: 180px;
}
.sub>li:hover a {
    color: #508bc3;
}
.header_back {
    position: absolute;
    width: 100%;
    height: 420px;
    background-color: #fff;
    top: 70px;
    left:0;
    z-index: 1;
    border-bottom: 1px solid #ccc;
    display: none;
}
/* 헤더 끝!---------------------------- */

/* 모바일 헤더 시작###################### */
.m_top {
    display: none;
    position: relative;
    height: 70px;
}
.m_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: auto;
}
.m_logo a {
    float: left;
    padding-right: 10px;
}

.m_logo a img { 
    display: block;
    width: 100%;
    height: auto;
}

.ham{
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    right: 25px;
    cursor: pointer;
    transform: translate(0, -50%);
}
.ham span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    position: absolute;
}
.ham span:nth-child(1){top: 0;}
.ham span:nth-child(2){top: 10px;}
.ham span:nth-child(3){top: 10px;}
.ham span:nth-child(4){top: 20px;}

.ham.on span:nth-child(1){top: 0; opacity: 0;}
.ham.on span:nth-child(2){top: 10px; transform: rotate(45deg);}
.ham.on span:nth-child(3){top: 10px; transform: rotate(-45deg);}
.ham.on span:nth-child(4){opacity: 0;}
/* 모바일 탑 메뉴 끝!!!############## */

/* 모바일 메뉴 부분 시작############## */
.m_menu {
    /* display: none; */
    position: absolute;
    top: 70px;
    left:-1200px;
    background-color: #fff;
    height: 100vh;
    width: 40%;
    z-index: 10;
    box-shadow: 0 2px 3px rgba(0,0,0,.3);
    font-family: 'Roboto', sans-serif;
}
.m_menu.on{
    left: 60%;
}
.m_main {
    position: absolute;
    width: 100%;
}
.m_main>li>a{
    display: block;
    padding: 10px 20px 10px;
    font-size:  20px;
    color:  #000;
    position: relative;
}
.m_main>li:hover > a {
    background-color: #ebedf3;
    transition: 3s;
}
.m_sub { display: none;}
.m_sub li a {
    display: block;
    padding: 10px 0 10px 30px;
    color: #555;
}
.m_sub li a:active {
    color:  #034629;
    font-weight: bold;
}

/* 헤더 끝 */


/* 서브 배너 */
.sub_banner {
    width: 100%;
    height: 280px;
    background-image: url('../img/sub_banner.png');
    background-repeat: no-repeat;
}

.sub_banner > h2, .sub_banner > p {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 3px rgba(0,0,0,.3);
}

.sub_banner > h2 {
    font-size: 32px;
    font-weight: bold;
    padding-top: 100px;
}

.sub_banner > p {
    font-size: 28px;
    font-weight: lighter;
    padding-top: 10px;
}


/* 로케이션 */
.location {
    padding-left: 5%;
    padding-top: 20px;
}
.location > li {
    float: left;
    padding-right: 10px;
}
.location > li > img {
    width: 12px;
}
.location > li > a {
    font-weight: bold;
    color: #999;
    font-size: 14px;
}


/* 컨텐츠 시작 */
section {
    width: 1200px;
    margin: 0 auto;
    margin-top: 200px;
    padding-bottom: 100px;
    text-align: center;
}

#section_last {
    padding-bottom: 100px;
}

section > h2 {
    font-weight: normal;
    font-size: 35px;
    /* padding-left: 40px; */
    text-align: center;
    padding-bottom: 90px;
}

/* 컨텐츠 1 */
.con-1 > div {
    width: 33%;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}

.con-1 > div > img {
    display: inline-block;
    width: 90%;
    height: auto;
}

/* 컨텐츠 스펙 */
section > .spec > img {
    display: block;
    padding-top:50px;
    width: 100%;
    height: auto;
}

/* footer S */
footer {
    padding-top: 50px;
    padding-bottom: 30px;
    width: 1300px;
    margin: 0 auto;
}

footer ul {
    padding-bottom: 30px;
}
footer ul li {
    display: inline-block;
    margin-left: 10px;
}

footer ul li a img {
    display: block;
    width: 35px;
    height: 35px;
}

footer > div {
    padding-bottom: 10px;
}
 
footer > div > span, footer > div > a{
font-size: 15px;
color: #777;
}

.ft-txt-1 > span{
    padding-right: 10px;
} 

.ft-txt-2 > span:first-child {
    padding-right: 10px;
}

.ft-txt-2 > a {
    padding-right: 10px;
} 



/* 반응형 시작 */
@media screen and (max-width: 1400px){
    .top{
        width:90%;}
}

@media screen and (max-width: 1300px){
    .top { width: 95%;}

    footer {
        width: 100%;
        padding-left: 5%;
        box-sizing: border-box;
    }

}

@media screen and (max-width: 1200px){
    section {
        width: 95%;
    }

    
    .con-1 > div > img {
        width: 90%;
    }
    
}

@media screen and (max-width: 1024px){
    /* .con-1 > div > img {
        width: 200px;
    } */
}

@media screen and (max-width: 1000px){

    /* 모바일 버젼 헤더 수정하기######## */
    .header { background-color: #fff;}
    .header.fixed { background-color: #fff;}
    .top { display: none;}
    .m_top { display: block;}
    .main { display: none;}

    .ft-txt-2 > span:first-child {
        display: block;
        padding-bottom: 5px;
    }
    .ft-txt-2 > span:last-child {
        display: block;
    }
    .ft-txt-2 > a {
        display: block;
        padding-bottom: 5px;
    }

}

@media screen and (max-width: 900px){
    /* .con-1 > div > img {
        width: 150px;
    } */

    
    /* .con-2 > div > img {
        width: 300px;
    }  */
}

@media screen and (max-width: 767px){
    .con-1 > div {
        width: 49%;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 640px){
    /* 모바일 메뉴 크기 조절 */
    .m_menu.on {
        left: 30%;
        width: 70%;
    }
    .con-1 > div {
        width: 90%;
        display: block;
        margin: 0 auto;
    }
    .con-1 > div > img {
        width: 70%;
    }

@media screen and (max-width:480px){
    .m_menu {
        width: 45%;
    }
    .sub_banner > h2 {
        font-size: 20px;
    }

    .sub_banner > p {
        font-size: 15px;
    }

}