/*=================================================
		00. 공통 
=================================================*/
*,
html,
body{
	font-family: 'Raleway', sans-serif;
	-webkit-font-smoothing: antialiased;
}

body,
.ui_modal{
	padding: 0;
	word-break: keep-all;
}

.loading-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 50px;
    z-index: 10000;
    background-color: #333333;
}

.loading-layer .symbol{
	-webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.container-fluid{
	margin: 0;
	padding: 0;
}

.form-control{
	margin-bottom: 10px;
}

.pagination{
	margin-top: 15px;
}

.bcat-btn{
	cursor: pointer;	
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** md *****/

.banner{
    margin-top: 40px;
    background-repeat: no-repeat;
    background-origin: content-box;
    display: block;
    background: url("/jpg/main-img1.jpeg");
    background-size: 100%;
    height: 500px;
    background-repeat: no-repeat;

}

@media (max-width: 450px){
.banner{
    margin-top: 40px;
    background-origin: content-box;
    display: block;
    background: url("/jpg/main-2.jpeg");
    background-size: 100%;
    height: 430px;
    background-repeat: no-repeat;

}
}


@media (min-width: 992px) and (max-width: 1199px){

}

/***** sm *****/
@media (min-width: 768px) and (max-width: 991px){

}

/***** xs *****/
@media (max-width: 767px){

}


/*=================================================
		01. 메인 네비게이션
=================================================*/
/*****#####===== 전체 =====#####*****/
#main-gnb {
	width: 100%;
	z-index: 1000;
	
	background-color: #383735;
	
    -webkit-box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.09);
    
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease-in-out;
}

#main-gnb.float {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;

	background-color: #FFFFFF;
	-webkit-box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.09);
}

/*****#####===== 리스트 =====#####*****/
/***** 일반 메뉴 *****/
#main-gnb #menu-navbar .navbar-nav li a{
	padding: 23.5px 15px;
	position:relative;
	
	font-size: 15px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease-in-out;
}

#main-gnb.float {
	background-color: #383735;
	
}

#main-gnb.float #menu-navbar .navbar-nav li a{
	padding: 15px 15px;
	
	font-weight: 700;
}

#main-gnb #menu-navbar .navbar-nav li a span{
	display: inline-block;
}

/***** 메뉴 선택 *****/
#main-gnb #menu-navbar .navbar-nav li:hover a span,
#main-gnb #menu-navbar .navbar-nav li.active a span{
	color: #fff;
	border-bottom:2px solid #fff;
	
}


/***** 언어 메뉴 *****/
#main-gnb #locale-navbar{
	margin-left:5px;
}

#main-gnb #locale-navbar li a{
	padding: 5px;
	
	color: #FFFFFF;
	font-weight:300
}

#main-gnb.float #locale-navbar li a{
	color: #555555;
}

#main-gnb #locale-navbar li a.active, 
#main-gnb #locale-navbar li a:hover{
    font-weight: 600;
}

/*****#####===== 로고 =====#####*****/
#main-gnb .navbar-brand{
	height: auto;
	padding: 10px 15px;
	
	font-size: 30px;
	line-height: 1;
}

#main-gnb .navbar-brand img{
	
}

#main-gnb.float .navbar-brand img{
	height: 30px;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** md *****/
@media (min-width: 992px) and (max-width: 1199px){

}

/***** sm *****/
@media (min-width: 768px) and (max-width: 991px){

}

/***** xs *****/
@media (max-width: 767px){
	#main-gnb .navbar-brand img {
	    height: 30px;
	}	
}
/*=================================================
		02. 섹션
=================================================*/
/*****#####===== 섹션 일반 =====#####*****/
header,
section{
	position: relative;
	
	text-align: center;
}

section{
	padding: 80px 0 50px;
}

section.banner{
	padding: 25px 0;
}

section.no-padding{
	padding: 0;
}

section.light-grey{
	background-color: #F5F5F5;
}

section.grey{
	background-color: #EFEFEF;
}

/*****#####===== 섹션 타이틀 =====#####*****/
.section-title-wrap {
	margin-bottom: 30px;	
}
@media (max-width: 767px) {

    #core .section-title-wrap {
        margin-bottom: -45px;
    }
}



    /***** 타이틀 *****/
    .section-title-wrap .section-title {
        font-size: 32px;
        color: #4d4d4d;
        font-weight: 600;
        display: block;
        margin: 0;
    }

        .section-title-wrap .section-title .emphasis {
            padding: 0 10px;
            background-color: #898B96;
            border-radius: 5px;
            color: #FFFFFF;
        }

        .section-title-wrap.white .section-title,
        .section-title-wrap.white .section-subtitle,
        .section-title-wrap .section-title.white,
        .section-title-wrap .section-subtitle.white {
            color: #FFFFFF;
        }

    .section-title-wrap.left .section-title,
    .section-title-wrap.left .section-subtitle {
        text-align: left;
    }


    .section-title-wrap.left .separator {
        margin: 20px 0;
        text-align: left;
    }

    /***** 서브타이틀 *****/
    .section-title-wrap .section-subtitle {
        display: inline-block;
        color: #777;
        font-size: 15px;
    }

    .section-title-wrap .section-logotitle {
        color: #aaa;
        font-size: 16px;
        font-weight: 500;
        display: block;
        text-align: center;
        margin: 0 0 16px 0;
        padding: 0;
    }
    /***** 언더바 *****/
    .separator {
        display: block;
        width: 100px;
        height: 3px;
        margin: 10px auto;
        background-color: #01559F;
    }

        .separator.white {
            background-color: #FFFFFF;
        }

        .separator.left {
            margin-left: 0;
            margin-right: 0;
            text-align: left;
        }


    /*****#####===== 미디어 쿼리 =====#####*****/
    /***** xs *****/
    @media (max-width: 767px) {
        section {
            padding: 30px 0 15px;
        }

        .section-title-wrap .section-title {
            font-size: 20px;
        }
    }
    /*=================================================
		03. 게시판
=================================================*/
    /*****#####===== 게시판 카테고리 =====#####*****/
    .bcat-btn-wrap {
        margin-bottom: 30px;
    }

        .bcat-btn-wrap ul li .bcat-btn {
            margin-bottom: 7px;
            padding: 7px 20px 6px 20px;
            background: #F7F7F7;
            border: 1px solid #000;
            color: #000;
            text-transform: uppercase;
        }

            .bcat-btn-wrap ul li .bcat-btn.active,
            .bcat-btn-wrap ul li .bcat-btn:hover,
            .bcat-btn-wrap ul li.active .bcat-btn {
                background-color: #254592;
                color: #FFFFFF;
            }

    /*=================================================
		04. 푸터
=================================================*/
    footer {
        padding: 40px 0;
        background-color: #727071;
        color: #FFFFFF;
        font-size: 14px;
    }

        footer .company-info {
            margin: 0;
            text-align: center;
        }

            footer .company-info li {
                line-height: 1.8;
                position: relative;
                margin-left: 10px;
            }

                footer .company-info li:after {
                    position: absolute;
                    display: block;
                    content: "/";
                    right: -10px;
                    top: 0
                }

                footer .company-info li:last-child {
                    display: none;
                }

        footer hr {
            margin-top: 40px;
            border-top: 1px solid #111111;
            border-bottom: 1px solid #555555;
        }

    /*****#####===== 미디어 쿼리 =====#####*****/
    /***** xs *****/
    @media (max-width: 767px) {
        footer {
            padding: 14px 0;
            font-size: 11px;
            text-align: center;
        }

            footer .company-info li {
                margin: 0 8px 0 0;
                line-height: 1.8;
            }
    }
