﻿body,
input, button {
    font-family: 'Noto Sans KR', sans-serif;
    color: #1c1c1c;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.inner {
    width: 1200px;
    margin: 0 auto;
    transition: 0.5s ease;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover{cursor:pointer;}

.soft {
    transition: 0.5s ease;
}




/*mobile_menu*/

#mobile_slide {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100%;
    background-color: #303030;
    color: #fff;
    font-weight: 300;
    right: 0px;
    top: 0;
    display: none;
}

    #mobile_slide .slide_topmenu {
        position: relative;
        width: 100%;
        height: 100px;
    }

        #mobile_slide .slide_topmenu ul {
            position: absolute;
            top: 15px;
            left: 20px;
        }

            #mobile_slide .slide_topmenu ul li {
                float: left;
                font-weight: 400;
                line-height: 70px;
                font-size: 17px;
                margin-right: 20px;
            }

    #mobile_slide .slide_menu {
        position: absolute;
        top: 120px;
        right: 20px;
        text-align: right;
        width: 50%;
    }

    #mobile_slide .slide_submenu {
        display: none;
    }

    #mobile_slide .slide_menu ul > li > a {
        font-size: 20px;
        line-height: 50px;
    }

    #mobile_slide ul.slide_submenu > li a {
        font-size: 15px;
        line-height: 30px;
    }

        #mobile_slide ul.slide_submenu > li a:hover {
            color: #DB161F;
            font-weight: 500;
            transition-duration: 0.3s;
        }

li.active_border {
    border-bottom: 1px solid #808080;
}
/*menu-trigger*/
.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    position: fixed;
    width: 30px;
    height: 20px;
    z-index: 999;
    top: 35px;
    right: 20px;
    display: none;
}

    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #000;
        border-radius: 4px;
    }

        .menu-trigger span:nth-of-type(1) {
            top: 0;
        }

        .menu-trigger span:nth-of-type(2) {
            top: 8px;
        }

        .menu-trigger span:nth-of-type(3) {
            bottom: 0;
        }


        .menu-trigger span:nth-of-type(1) {
            -webkit-animation: menu-bar01 .75s forwards;
            animation: menu-bar01 .75s forwards;
        }

@-webkit-keyframes menu-bar01 {
    0% {
        transform: translateY(8px) rotate(45deg);
    }

    50% {
        transform: translateY(8px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(8px) rotate(45deg);
    }

    50% {
        transform: translateY(8px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
    0% {
        transform: translateY(-8px) rotate(-45deg);
    }

    50% {
        transform: translateY(-8px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        transform: translateY(-8px) rotate(-45deg);
    }

    50% {
        transform: translateY(-8px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
    background-color: #fff;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }

    50% {
        -webkit-transform: translateY(8px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(8px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(8px) rotate(0);
    }

    100% {
        transform: translateY(8px) rotate(45deg);
    }
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
    background-color: #fff;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-8px) rotate(0);
    }

    100% {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-8px) rotate(0);
    }

    100% {
        transform: translateY(-8px) rotate(-45deg);
    }
}

#mobile_slide.open {
    right: 0;
}
/*header*/
header {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100px;
    /*background-color: #fff;*/
    z-index: 800;
    /*box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);*/
}
    header:hover {
        background-color: #fff;
        transition-duration: 0.3s;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    }

        
        /*top_menu*/
        header .top_menu {
            width: 100%;
            margin: 8px 0;
        }

        header .top_menu ul {
            float: right;
        }

            header .top_menu ul li {
                float: left;
                margin-left: 20px;
                font-size: 13px;
            }



/*logo*/
    header h1 {
        float: left;
        margin-top: 43px;
        margin-left: 50px;
    }
        header h1 a:nth-child(2) {
            display:none;
        }
    header:hover h1 a:nth-child(1) {
        display: none;
    }
    header:hover h1 a:nth-child(2) {
        display: block;
    }

        header h1 a img {
            /*    width: 110px;*/
        }



/*nav*/
    header nav {
        margin-top:25px;
        float: right;
        text-align: center;
        width: 1200px;
        margin-right:50px;
    }

        header nav ul.menu > li {
            float: left;
            width: 16.6666%;
        }
            header nav ul.menu > li:last-child a {
                background-color: #DB161F;
                color: #fff;
                font-weight: 700;
                letter-spacing: 7px;
                border-radius: 30px;
				padding: 18px 25px; 
				top: 8px;
            }

            header nav ul.menu > li a {
                display: block;
                padding: 29px 25px;
                font-size: 17px;
                color:#fff;
            }
    header:hover nav ul.menu > li a {
        color:#000;
    }
    header:hover nav ul.menu > li:last-child a {
        color:#fff;
		padding: 18px 25px; top: 8px;
    }

        .top_submenu {
            width: 100%;
            position: absolute;
            z-index: 999;
            top: 100px;
            background-color: #f3f3f3;
            display:none;
        }
    .top_submenu .submenu {
        width: 1200px;
        float: right;
        margin: 20px 0px;
        margin-right: 50px;
    }
        .top_submenu .submenu ul {
            width:16.6666%;
            display: block;
            float: left;
            text-align:center;
        }
        .top_submenu .submenu a {
            padding: 15px 25px;
            display: block;
        }
        .top_submenu .submenu li:hover a {
            color:#DB161F;
            font-weight:700;
        }
        /**/
        #cssmenu ul:after {
            content: " ";
            display: block;
            font-size: 0;
            height: 0;
            clear: both;
            visibility: hidden;
        }

    #cssmenu ul li a {
        text-decoration: none;
        display: block;
        text-transform: uppercase;
        position: relative;
        -webkit-transition: color .25s;
        -moz-transition: color .25s;
        -ms-transition: color .25s;
        -o-transition: color .25s;
        transition: color .25s;
    }

        #cssmenu ul li a:hover {
        }

            #cssmenu ul li a:hover:before {
                width: 100%;
            }

        #cssmenu ul li a:before {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 0;
            background: #DB161F;
            -webkit-transition: width .45s;
            -moz-transition: width .45s;
            -ms-transition: width .45s;
            -o-transition: width .55s;
            transition: width .45s;
        }
#cssmenu ul li:last-child a:before {
    display:none;
}

#cssmenu ul li.last > a:after,
#cssmenu ul li:last-child > a:after {
    display: none;
}

    #cssmenu ul li.active a {
        color: #333333;
    }

        #cssmenu ul li.active a:before {
            width: 100%;
        }

    #cssmenu.align-right li.last > a:after,
    #cssmenu.align-right li:last-child > a:after {
        display: block;
    }

    #cssmenu.align-right li:first-child a:after {
        display: none;
    }

            /*banner*/
#banner {
    width: 100%;
    height: 650px;
    position: relative;
    background-image: url(../img/about_banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
    #banner img {
        width:100%;
        position:absolute;
        top:0;
        left:0;
    }
    #banner h1 {
        text-align:center;
        width:500px;
        line-height:50px;
        font-size:30px;
        font-weight:500;
        color:#fff;
        position:absolute;
        top:50%;
        left:50%;
        margin-top:-100px;
        margin-left:-250px;
        letter-spacing:15px;
    }
        #banner h1 span {
            font-size:35px;
            font-weight:700;
        }
        /*content*/
        #content {
            width: 100%;
            position: relative;
        }
.allbox {
    position: relative;
    width: 1200px;
    overflow: hidden;
    margin: auto;
    background-color: #fff;
    margin-top: -150px;
    z-index: 999;
    margin-bottom: 200px;
}
        /*content*/
        #content {
            width: 100%;
            position: relative;
        }
.allbox {
    position: relative;
    width: 1200px;
    overflow: hidden;
    margin: auto;
    background-color: #fff;
    margin-top: -150px;
    z-index: 500;
}
        /*cont01*/
#cont01 {
    width:100%;
    overflow:hidden;
    margin:150px 0px;
}
    .title h1 {
        font-size:35px;
        font-weight:bold;
        letter-spacing:5px;
		text-align:center;
    }
    .title span {
        display: block;
        width: 40px;
        height: 3px;
        margin: 50px auto;
        background-color: #DB161F;
    }
    #cont01 h6 {
        font-size:20px;
        color:#DB161F;
        font-weight:bold;
        letter-spacing:5px;
    }
    #cont01 .cont01_text {
        width: 80%;
        margin: 0px auto;
        padding: 50px;
        background-color: #f1f1f1;
        border-radius: 50px 0px 50px 0px;
        margin-top: 50px;
        line-height: 20px;
        font-size: 16px;
    }
        #cont01 .cont01_text strong {
            display:inline-block;
            font-size:20px;
            font-weight:bold;
            margin-top:30px;
        }
 

        /*footer*/
        footer {
            background-color: #4B4B4B;
            color: #ebebeb;
            padding: 40px 0px;
        }

    footer .f_logo {
        float: left;
        margin-right: 50px;
        width: 15%;
        padding: 35px 0px;
    }

    footer .f_right {
        width: 70%;
        float: left;
    }

        footer .f_right ul {
            display: inline-block;
            padding: 20px 0px;

        }

            footer .f_right ul li {
                float: left;
                padding: 10px 20px;
            }

        footer .f_right p {
            width: 100%;
            padding: 0 20px;
            font-weight: 100;
            font-size: 15px;
            line-height: 20px;
        }

/*fixed_Top*/
aside {
    position: fixed;
    right: 0px;
    bottom: 0px;
    display: none;
	z-index:700;
}

    aside:hover {
        cursor: pointer;
    }

    aside div {
        width: 50px;
        height: 50px;
        background-color: #DB161F;
        position: relative;
    }

        aside div a {
            position: absolute;
            margin-left: 21px;
            margin-top: 13px;
            display: block;
            width: 10px;
            height: 10px;
            border-top: 2px solid #fff;
            border-left: 2px solid #fff;
            box-sizing: border-box;
            transform: rotate(45deg);
        }

        aside div span {
            position: absolute;
            bottom: 10px;
            left: 12px;
            color: #fff;
        }
