/* --------Navigation--------- */

.navigation{
	/* top: 0; */
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 16;
	width: 450px;
	height: 100vh;
	position:fixed;
	transition: 1s;
	background-color: #123885;
	padding: 60px 20px 20px 10px;
	transform: translateX(100%);
	box-shadow: 0px 0px 5px rgba(255,255,255,0.45);
}
.navigationIcon{
	background-color: #009247;
}
.navWrap{
	height: calc(100vh - 100px);
    overflow-y: scroll;
	padding: 20px 15px 15px;
}
.navigation.show{
	border-radius: 0%;
	transform: translateX(0);
}
.menu_btn_area.menuC a span{
	background-color: #a8ffd2;
}
.navList{
	width: 100%;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0px 0px 8px rgba(255,255,255,0.45);
}
.navList:not(:last-child){
	margin-bottom: 30px;
}
.navList .menuT{
	font-size: 20px;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 10px;
	padding-bottom: 5px;
}
.navList ul{
}
.navList ul li{
	overflow: hidden;
	position: relative;
	padding: 8px 10px;
    margin-right: 10px;
	border-radius: 8px;
	border: 1px solid #FFF;
}
.navList ul li:after{
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	content: '';
	transition: 0.6s;
	position: absolute;
	background-color: rgba(255,255,255,1.0);
}
.navList ul li a{
	z-index: 1;
	display: block;
	font-size: 14px;
	color: #ffffff;
	font-weight: 600;
	position: relative;
}
.navList ul li:not(:last-child){
	margin-bottom: 8px;
}
.navList ul li:hover:after{
	width: 100%;
}
.navList ul li:hover a{
	color: #000000;
}


.menuC {
    right: 20px;
    top: 10px;
	width: 40px;
	height: 40px;
    padding: 5px;
    color: #123885;
    margin: 0 auto;
	line-height: 30px;
	cursor: pointer;
    font-size: 20px;
	transition: 0.6s;
	text-align: center;
    position: relative;
	display: inline-block;
	position: absolute;
    border-radius: 8px;
	background-color: #fff;
}
.menuC:hover {
    color: #fff;
	background-color: #123885;
}