/**
 * Design Shack Respnsive Menu
 */


* {
	padding: 0;
	margin: 0;
	
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

div.navigation {
	width: 100%;
	margin: 0 auto;
	background:#1d1c6a;
	float:left;
	/*overflow: hidden;*/	
}

div.navigation ul.navstyle {
	list-style: none;
	/*overflow: hidden;*/
	margin: 0 !important;
}
div.navigation li {	float: left; list-style:none; width:12.5%;}

div.navigation li a {
	background: #1d1c6a;
	border-right: 1px solid #fff;
	color: #fff;
	display: block;

	font: 400 15px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	/*width: 12.5%;*/
	
	/*TRANSISTIONS*/
	-webkit-transition: background 0.5s ease;
	   -moz-transition: background 0.5s ease;
	     -o-transition: background 0.5s ease;
	    -ms-transition: background 0.5s ease;
	        transition: background 0.5s ease;
}

/*HOVER*/
div.navigation li a:hover {
	background: #fff;
	color: #E4AF4D;
}
div.navigation li:hover a {
	background: #fff;
	color: #E4AF4D;
}
div.navigation li.active a{
	background: #1d1c6a;
	color: #4DA5E4;
}
/*SMALL*/
div.navigation small {
	font: 100 11px/1 Helvetica, Verdana, Arial, sans-serif;
	text-transform: none;
	color: #aaa;
}

/*BORDER FIX*/
div.navigation li:last-child a {
	border: none;
}

/*BLUE MENU*/
div.navigation .blue {
	margin-top: 50px;
}

.blue li a {
	background: #75b1de;
}

.blue small {
	color: white;
}

.blue li a:hover {
	background: #444;
}

/*RED MENU*/

div.navigation .red {
	margin-top: 50px;
}

.red li a {
	background: #5C0002;
}

.red small {
	color: white;
}

.red li a:hover {
	background: #a60306;
}

/* MEDIA QUERIES*/
@media only screen and (max-width : 1220px),
only screen and (max-device-width : 1220px){
	div.navigation li a {
		font: 400 10px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;
	}
	
	div.navigation small {
		font: 100 10px/1 Helvetica, Verdana, Arial, sans-serif;
	}
}

@media only screen and (max-width : 930px),
only screen and (max-device-width : 930px){
	div.navigation li{
		width: 25%;
	}
	div.navigation li a {
		/*width: 25%;*/
		/*border-bottom: 1px solid #fff;*/
		font: 400 15px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;
	}
	
	div.navigation li:last-child a, div.navigation li:nth-child(4) a {
		border-right: none;
	}
	
	div.navigation li:nth-child(5) a, div.navigation li:nth-child(6) a, div.navigation li:nth-child(7) a, div.navigation li:nth-child(8) a {
		border-bottom: none;
	}
}

@media only screen and (max-width : 580px),
only screen and (max-device-width : 580px){
	div.navigation{ background:none;}
	div.navigation li{
		width: 50%;
	}
	div.navigation li a {
		/*width: 50%;*/
		font: 400 12px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;
		padding-top: 12px;
		padding-bottom: 12px;
		border-bottom: 1px solid #fff;
	}
	
	div.navigation li:nth-child(even) a {
		border-right: none;
	}
	
	div.navigation li:nth-child(5) a, div.navigation li:nth-child(6) a {
		border-bottom: 1px solid #fff;
	}
}

@media only screen and (max-width : 320px),
only screen and (max-device-width : 320px){
	div.navigation li a {
		font: 400 11px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;
	}
}