@charset "utf-8";
/* 초기 설정 */
* {
    margin: 0;
    padding: 0;
    font-family: 'SUIT', sans-serif;
    font-weight: 400;
    color: #111;
}
body{
    padding-right: 0 !important;
}
html,
body {
    overflow-x: hidden;
}
ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
label {
    margin: 0;
}

.row {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.view-768 {
    display: none !important
}

.hide-768 {
    display: block !important
}

.view-1210 {
    display: none !important
}

.hide-1210 {
    display: block !important
}

.d-flex.hide-1210 {
    display: flex !important
}

span.hide-1210 {
    display: inline !important
}

.wrap-1730{
    width: 100%;
    max-width: 1730px;
    margin: 0 auto;
}
.wrap-1440{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.wrap-1120{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
.wrap-1020{
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
}


/* 미디어 쿼리 */

@media(max-width:1210px) {

    .view-1210 {
        display: block !important
    }

    .hide-1210 {
        display: none !important
    }

    span.view-1210 {
        display: inline !important
    }

    span.hide-1210 {
        display: none !important
    }

    span.hide-1210,

    img.hide-1210 {
        display: none !important;
    }

    img.view-1210 {
        display: inline !important;
    }
}



@media(max-width:768px) {

    .view-768 {
        display: block !important
    }

    .hide-768 {
        display: none !important
    }

}


/******************************** header ********************************/
#top{
    position: fixed;
    z-index: 99999;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    background-color: #001b54;
    border: 1px solid #001b54;
    cursor: pointer;
    transition: .3s;
}
#top.on{
    border-color: #fff;
    background-color: transparent;
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: .3s;
    z-index: 9999;
}
.header_wrap::after{
    content: "";
    width: 100%;
    height: 510px;
    background-color: #fff;
    border-top: 1px solid #ccc;
    position: absolute;
    top: 125px;
    left: 0;
    z-index: -1;
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.header_wrap.on::after{
    opacity: 1;
    visibility: visible;
}
header .wrap-1730{
    padding-top: 40px;
}
header .mainnav-list{
    padding-bottom: 40px;
}
header .mainnav-list>a{
    font-weight: 800;
    font-size: 17px;
    text-align: center;
    padding: 0 37px;
    color: #fff;
}

header .sub-menu{
    
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding-top: 40px;
}

header .sub-menu>li{
    width: calc(33.3333% - 15px);
    position: relative;
    margin-bottom: 30px;
}
header .sub-menu>li img{
    display: block;
    width: 100%;
}
header .sub-menu>li p{
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #fff;
}
header .sub-menu .sub-menu_title h3{
    font-size: 36px;
    font-weight: 700;
    padding: 20px 0 0 20px;
}
header .sub-menu .sub-menu_title h3 span{
    display: block;
    position: relative;
    width: fit-content;
    font-weight: 700;
}
header .sub-menu .sub-menu_title h3 span::after{
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #008cd6;
    position: absolute;
    right: -22px;
    bottom: 7px;
}
header .sub-menu_wrap{
    transition-property: opacity, visibility;
    transition-duration: 0.2s;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 126px;
    left: 50%;
    transform: translateX(-50%);
}

header .menuList{
    padding-top: 20px;
}
header .pageSelectBox{
    width: 240px;
    position: relative;
    margin-top: 10px;
}
header .newsSelect{
    width: 100%;
}
header .pageSelectBox .newsFn{
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    padding: 6px;
    display: block;
    background-color: transparent;
    border: 1px solid #fff;
}
header .pageSelectBox .newsFn:hover{
    outline: none;

}
header .pageSelectBox svg{
    display: inline-block;
    width: 10px;
    height: 8px;
    vertical-align: middle;
    margin-left: 30px;
}
header .pageSelectBox svg .select_arrow{
    fill: #fff;
}
header .newBox {
    height: 250px;
    overflow-y: scroll;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #333;
    display: none;
}
header .newBox ul li{
    padding: 8px 20px;
    color: #666;
    font-size: 17px;
    color: #888888;
}
header .pageSelectBox .newsFn.on{
    background-color: #333;
    border-color: #adadad;
}
header .newBox.on{
    display: block;
}
header .logoBox .logo_img_hover{
    display: none;
}
header.style,header.hover{
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

header.style .mainnav-list>a,header.hover .mainnav-list>a{
    color: #111;
}

header.style .logoBox .logo_img,header.hover .logoBox .logo_img{
    display: none;
}
header.style .logoBox .logo_img_hover,header.hover .logoBox .logo_img_hover{
    display:block
}
header.style .pageSelectBox .newsFn,header.hover .pageSelectBox .newsFn{
    background-color: transparent;
    border: 1px solid #808080;
    color: #2b2b2b;
}
header.style .pageSelectBox svg .select_arrow,header.hover .pageSelectBox svg .select_arrow  {
    fill: #2b2b2b;
}
header.style .pageSelectBox .newsFn.on{
    background-color: #eee;
}
header.style .newBox.on{
    background-color: #eee;
}
@media (hover: hover) {
    header .mainnav-list>a:hover{
        color: #008cd6;
    }
    header .mainnav-list.sub_open:hover>a{
        color:#008cd6
    }
    header .mainnav-list.sub_open:hover .sub-menu_wrap{
        opacity: 1;
        visibility: visible;
    }
    header.style .mainnav-list>a:hover{
        color: #008cd6;
    }
}
@media(max-width:1600px){
    header .wrap-1730 {
        padding: 0 35px;
        padding-top: 40px;
        
    }
}
@media(max-width:1210px){
    header .wrap-1730 {
        padding:35px;

    }
    header .menuList {
        padding-top: 0;
        position: fixed;
        top: 124px;
        left: 0;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        padding: 50px 35px;
        overflow-y: auto;
        /* transition-property: opacity, visibility;
        transition-duration: 0.2s;
        opacity: 0;
        visibility: hidden; */
        display: none;
    }
    header .menuList.on{
        display: block;
    }
    header .mainnav-list {
        padding-bottom: 20px;
    }
    header .mainnav-list>a{
        font-size: 35px;
        padding: 0;
    }
    header .nav{
        flex-direction: column;
    }
    header .sub-menu_wrap {
         opacity: 1;
         visibility: visible;
         position: relative;
        top: 0;
        left: 0;
        transform: translateX(0);
    }
    header .sub-menu_wrap>.wrap-1020{
        margin: 0;
    }
    header .sub-menu{
        padding-top: 10px;
    }
    header .mainnav-list>a{
        text-align: left;
    }
    header .sub-menu>li p {
        position: relative;
        bottom: 0;
        left: 0;
        color: #111;
    }
    header .sub-menu>li {
        width:100%;
        position: relative;
        margin-bottom:5px;
    }
    header .sub-menu>li p{
        font-size: 25px;
        color: #666666;
    }
    header .pageSelectBox{
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        margin-top:30px;
    }
    header .mainnav-list>a,header.hover .mainnav-list>a{
        color: #111;
    }
    header.hover .logoBox .logo_img{
        display: none;
    }
    header.hover .logoBox .logo_img_hover{
        display:block
    }
    
    header.hover .pageSelectBox .newsFn,header .pageSelectBox .newsFn{
        border: 1px solid #808080;
        color: #2b2b2b;
    }
    header.hover .pageSelectBox svg .select_arrow,header .pageSelectBox svg .select_arrow  {
        fill: #2b2b2b;
    }
    header .pageSelectBox .newsFn.on{
        background-color: #eee;
    }
    header .newBox.on{
        background-color: #eee;
    }
    header .newBox{
        height: 90px;
    }
    header .wrap-1730>.d-flex{
        align-items: center !important;
    }
    .menuBtn span{
        display: block;
        width: 55px;
        height: 7px;
        background-color: #fff;
        margin-bottom: 6px;
    }
    .menuBtn span:last-of-type{
        margin-bottom: 0;
    }
    header.style .menuBtn span{
        background-color: #111;
    }
    .menuBtn .close{
        display: none;
    }
    .menuBtn.on .span_box{
        display: none;
    }
    .menuBtn.on .close{
        display: block;
    }
}
@media(max-width:759px){
    header .wrap-1730 {
        padding: 25px 20px;
    }
    header .menuList {
        top: 104px;
        padding: 40px 20px;
    }
    header .mainnav-list>a {
        font-size: 27px;
    }
    header .sub-menu>li p {
        font-size: 20px;
    }
    .menuBtn span{
        width: 34px;
        height: 1px
    }
}
/******************************** header ********************************/

/******************************** footer ********************************/

footer{
    background-color: #001b54;
    padding: 65px 0;
}
footer .text-center{
    color: #fff;
    font-weight: 300;
}
footer .copy{
    font-size: 14px;
    color: #949cac;

}
@media(max-width:1210px){
    footer{
        padding: 65px 35px;
    }
    footer ul{
        flex-wrap: wrap;
    }
    footer ul li{
        width: 100%;
    }
    footer .text-center{
        text-align: left !important;
        padding-top: 40px;
        padding-bottom: 10px;
    }
}
/******************************** footer ********************************/
