@charset "UTF-8";


@font-face{
	font-family: 'NanumBarunGothic';
	src: url(../../assets/font/NanumBarunGothic.ttf);
}

@font-face{
	font-family: 'NanumBarunGothicLight';
	src: url(../../assets/font/NanumBarunGothicLight.ttf);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	list-style: none;
	/*글자 드래그 방지*/
	-ms-user-select: none; 
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	/*그림 드래그 방지*/
	-webkit-user-drag: none;
	
}

/* clearfix */
.clearfix {*zoom:1;}
.clearfix:before, .clearfix:after {display:block; content: ''; line-height: 0;}
.clearfix:after {clear: both;}

body {
    margin: 0;
    font-family: NanumBarunGothic;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

#mainNav{
	z-index: 100;
}

#main{
	z-index: 50;
	overflow: hidden;
	min-height: 80vh;
}

a {
    color: #000;
    text-decoration: none;
}

.navbar{
	position: fixed;
	align-items: center;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
    padding: 1rem 1.5rem;
    border-bottom: 0.1rem solid #EAEAEA;
}

.navbar > .container{
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 0;
	padding-right: 0;
}

.navbar .nav-logo{
	height: 3rem;
}

.navbar .logo_img{
	width: auto;
    height: 100%;
}

.navbar .small .nav-li{
	font-size: 1.2rem;
	border-top: 0.1rem solid #DDD;
}

.navbar .nav-li .nav-menu{
	cursor: pointer;
	word-spacing: 1rem;
    letter-spacing: 0.4rem;
    display: block;
    width: 100%;
}

.navbar .small .nav-menu{
	cursor: pointer;
	word-spacing: 1rem;
    letter-spacing: 0.4rem;
    display: block;
    width: 100%;
    padding: 0.5rem 1.5rem;
}

.navbar .small .nav-menu:hover{
	background: #F3F3F3;
}

.menu_btn{
	padding: 15px 20px;
    background: #fff;
    border: unset;
    outline: unset;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

.navbar .nav{
	margin-top: 0;
	margin-bottom: 0;
	display: flex;
	padding-left: 0;
}

.navbar .small{
	position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    overflow: hidden;
    background: #fff;
    transition: height .2s;
    -webkit-transition: height .2s;
    -moz-transition: height .2s;
    -o-transition: height .2s;
}

.navbar .nav-div > .show{
	height: 80vh;
}

.small .menu-select{
	height: 0;
	transition: height .2s;
    -webkit-transition: height .2s;
    -moz-transition: height .2s;
    -o-transition: height .2s;
    overflow: hidden;
}

.small .menu-select > .container{
	padding: 0;
    font-size: 1rem;
    margin-left: 0;
    max-width: 100%;
}

.small .menu-select .menu{
	margin: 0;
    padding: 0;
}

.small .menu-select .menu .menu-item .menu-link{
	padding: 0.3rem 0rem 0.1rem 3rem;
    line-height: 1rem;
    border-bottom: 0.1rem solid #FFF;
    background: #FAFAFA;
    width: 100%;
    display: block;
}

.small .menu-select .menu .menu-item .menu-link:hover{
	background: #F5F5F5;
}

.small .nav-li > .show{
	height: 6.3rem;
    border-bottom: 0.1rem solid #EEE;
}

.mainContainer{
    background: #FFF;
	margin-top: 5.5rem;
}

.footer{
	background: #FFF;
    border-top: 1px solid #CECECE;
    margin-top: 4rem;
    padding: 2rem;
}


.container{
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

/* logo */

.top_logo{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	height: 13rem;
	background: #FFF;
}

.top_logo .top_logo_img{
	height: 13rem;
	float: right;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, white 20%);
}

.top_logo .menu_location{
	white-space: pre;
    position: absolute;
    top: 1rem;
    color: #000;
    text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}

.top_msg{
	padding: 3rem 1rem;
    font-size: 1.2rem;
	background: #F9F9F9;
}

.top_msg > .container{
	padding: 0;
	display: block !important;
}

.top_msg .msg_spase{
	width: 0;
    height: 0;
}
				
.top_msg .msg{
	width: 100%;
    padding: 0 1rem;
    text-align: justify;
}


@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
	.container {
		max-width: 60rem;
	}
	
	.menu_btn{
		display: none;
	}
	
	.navbar .nav{
		margin-top: 0.3rem;
	    margin-bottom: -0.3rem;
		display: flex;
		padding-left: 0;
	}
	
	.navbar .menu{
	    position: absolute;
	    padding: 1rem 0 0;
		z-index: 10;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		max-height: 300px;
	}
	
	.navbar .menu-link{
		display: block;
		height: 3rem;
    	width: 9rem;
	    padding-left: 1.5rem;
	    padding-top: 10%;
	    padding-bottom: 10%;
		transition: background .25s ease-in-out; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(기본) */ 
	  	-webkit-transition: background .25s ease-in-out; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 크롬/사파라ㅣ) */ 
	  	-moz-transition: background .25s ease-in-out; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 파폭) */ 
	  	-o-transition: background .25s ease-in-out; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 오페라) */
	}
	
	.navbar .menu_back{
		height: 0;
	    background: #FFF;
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    margin-top: 4.2rem;
	    transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(기본) */ 
	  	-webkit-transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 크롬/사파라ㅣ) */ 
	  	-moz-transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 파폭) */ 
	  	-o-transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 오페라) */
	  	overflow: hidden;
	  	z-index: 20;
		
	}
	
	.navbar .menu-select{
		text-align: left;
	    float: right;
	    padding: 0;
	    transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(기본) */ 
	  	-webkit-transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 크롬/사파라ㅣ) */ 
	  	-moz-transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 파폭) */ 
	  	-o-transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 오페라) */
	  	z-index: 30;
    	left: 0;
    	right: 0;
    	height: 0;
	    position: absolute;
	    overflow: hidden;
	    background: rgba(0, 0, 0, 0);
	    visibility: hidden;
	}
	
	.navbar .menu-select > .container{
		position: relative;
		padding: 0;
		display: flex;
		flex-direction: row-reverse;
	}
	
	.navbar .nav-li .on{
		height: 18rem;
	}
	
	.navbar .nav-li .select-div{
		visibility: visible;
	}
	
	.navbar .nav-div:hover .menu_back{
		height: 18rem;
	}
	
	.navbar .nav-li .nav-menu{
		text-align: center;
	    display: block;
	    padding: 1rem 1.5rem;
	    transition: background .25s ease-in-out;
	    -webkit-transition: background .25s ease-in-out;
	    -moz-transition: background .25s ease-in-out;
	    -o-transition: background .25s ease-in-out;
	}
	
	.navbar .nav-li .nav-menu:hover, 
	.navbar .nav-li .nav-menu:focus{
		text-decoration: none;
	
	}
	
	/* logo */
	
	.top_logo{
		height: 17rem;
	    max-width: 1920px;
	    margin: 0 auto;
	}
	
	.top_logo .top_logo_img{
		height: 17rem;
	}
	
	.top_logo > .container{
		padding: 5rem;
	}
	
	.top_msg > .container{
		padding: 2rem;
	    display: flex;
	}
	
	.top_msg .msg_spase{
		width: 20%;
	    padding: 0 1rem;
	}
					
	.top_msg .msg{
		width: 85%;
	    padding: 0rem 2rem 0rem 1rem;
	}
	
	
}

@media (min-width: 1200px) {
  .container {
    max-width: 80rem;
  }
}

.loading{
    width:100%;
    height:100%;
    position:fixed;
    left:0px;
    top:0px;
    background:#fff;
    z-index:1000;
}

#mainNav .nav-li .menu-active{
	display: block;
    height: 0.1rem;
    background: rgba(235, 63, 49, 1);
    margin-top: -0.7rem;
    margin-bottom: 0.6rem;
    width: 0;
    margin-left: auto;
    margin-right: auto;
    transition: width .1s ease-in-out;
	-webkit-transition: width .1s ease-in-out;
	-moz-transition: width .1s ease-in-out;
	-o-transition: width .1s ease-in-out;
}

#mainNav .nav-li > .active{
	width: 7.5rem;
	transition: width .25s ease-in-out;
	-webkit-transition: width .25s ease-in-out;
	-moz-transition: width .25s ease-in-out;
	-o-transition: width .25s ease-in-out;
}

#mainNav .nav-li .menu .menu-item-active{
	background: rgba(235, 63, 49, 1);
    height: 0.05rem;
    width: 0;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 0.75rem;
    transition: width .15s ease-in-out;
	-webkit-transition: width .15s ease-in-out;
	-moz-transition: width .15s ease-in-out;
	-o-transition: width .15s ease-in-out;
}

#mainNav .menu-item > .active{
	width: 6.5rem !important;
	transition: width .25s ease-in-out;
	-webkit-transition: width .25s ease-in-out;
	-moz-transition: width .25s ease-in-out;
	-o-transition: width .25s ease-in-out;
}

#mainNav .nav-li .menu .item-active{
	
}

.nav-shadow{
	position: fixed;
    background: rgba(195, 195, 195, 0);
    left: -10rem;
    right: -10rem;
    top: -10rem;
    z-index: 50;
    transition: background .25s ease-in-out;
	-webkit-transition: background .25s ease-in-out;
	-moz-transition: background .25s ease-in-out;
	-o-transition: background .25s ease-in-out;
}

.shadow-off{
	bottom: -10rem;
	background: rgba(195, 195, 195, 0);
}

.shadow-on{
	bottom: 0;
	background: rgba(150, 150, 150, 0.5);
}

.mainNavi_btn {display:block; width:2rem; height:1rem; position:relative; padding:0.5rem 0px 0 0;}
.mainNavi_btn .Navibar {position:absolute; width:100%; height:2px; background-color:#000; transition:all 0.3s ease;}
.mainNavi_btn .Navibar:before {position:absolute; content:''; display:block; width:100%; height:2px; background-color:#000; top:-8px; transition:all 0.3s ease;}
.mainNavi_btn .Navibar:after {position:absolute; content:''; display:block; width:100%; height:2px; background-color:#000; top:8px; transition:all 0.3s ease;}

.mainNavi_btn .trans {background-color:transparent; transition:all 0.3s ease;}
.mainNavi_btn .trans:before {display:block; content:''; position:absolute; top:0px; left:0px; transform:rotate(-45deg); transition:all 0.3s ease; transition:all 0.3s ease;}
.mainNavi_btn .trans:after {display:block; content:''; position:absolute; top:0; left:0px; transform:rotate(45deg); transition:all 0.3s ease; transition:all 0.3s ease;}

.footer_block{
	display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
}

.footer_block .footer_a{
	font-weight: bolder;
}