
@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900');

.menu_full {
}
#menu {
	height: auto;
	margin-top:0;
}
#menu .box {
	opacity: 1;
	_height: 40px;
	text-align: center
}
#menu ul {
	padding: 0;
	transition: 0.3s all ease-in-out;
	margin:0 auto;
	display:table;
	width:auto;
}
#menu ul li {
	margin: 0;
	line-height: normal;
	height: 40px;
	float: left;    
	list-style: none;
	_border-right:1px solid #fff;
	
}
#menu ul li:last-child {
	border-right:0px solid #c91111;
}
#menu ul li a {
	padding: 0 40px;
    font-size: 15px;
	letter-spacing:0.5px;
	text-decoration: none;
	color: #000;
	height:40px;
	line-height: 40px;
	display: block;
	position: relative;
	z-index: 1111;
	transition: 0.3s all ease-in-out;
	font-weight:normal;
	text-transform:uppercase;
	font-family: 'Lato', sans-serif;
}
#menu ul li:hover a {
	color: #fff !important;
	_background-color: #000;
	
}
#menu ul li a::after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
#toggle-nav-label, #toggle-nav {
	display: none;
}

@media screen and (max-width: 1200px) {
	#menu ul li a {
		padding: 0 20px;
		font-size:13px;
	}
}
@media screen and (max-width: 767px) {
#menu ul li a {
    padding: 0 5px;
    font-size: 9px;
}	
}
@media screen and (max-width: 450px) {
#menu ul li a {
    padding: 0 5px;
    font-size: 15px;
}
#menu ul li {
    margin: 0;
    line-height: normal;
    height: 20px;
    float: none;
    list-style: none;
    _border-right: 1px solid #fff;
    display: table;
    text-align: center;
	    width: 100%
}	
#menu ul li a {
    height: 25px;
    line-height: 25px;
}
}

@media screen and (max-width: 991px) {
	
/*.menu_full {
	background: #ce0100;
	margin-top: 0;
}
#toggle-nav-label span {
    margin-left: 43px;
    height: 40px;
    line-height: 40px;
}
#menu {
	margin: 0;
	height: 40px;
	background: none;
	border: none;
}
#menu .box {
	margin: 0;
	position: fixed;
	text-align: center;
	overflow: hidden;
	z-index: -1;
	opacity: 0;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: rgba(0,0,0,0.8);
	transition: all 0.3s ease-in-out;
	display: none;
}
#menu ul {
	position: relative;
	top: 20%;
	transform: scale(2);
	transition: all 0.3s ease-in-out;
	height: auto;
	text-align: center;
}
#menu ul li {
	width: 100%;
	display: inline;
	margin: 0;
	line-height: normal;
	height: auto;
}
#menu ul li a {
	padding: 0px 10px;
	text-decoration: none;
	font-size: 14px;
	color: #FFFFFF !important;
	transition: all 0.2s ease-in-out;
	display: block;
	border-right: none;
	height: 35px;
	line-height: 35px;
}
#menu ul li a:hover {
	background: none;
	color: #FFFFFF !important;
	border: none;
}
#toggle-nav-label {
	color: #FFFFFF;
	background: none;
	text-align: center;
	line-height: 30px;
	font-size: 16px;
	display: block;
	cursor: pointer;
	position: relative;
	z-index: 11111111;
	width: 50px;
	height: 40px;
	border-radius: 0;
	margin-bottom: 0;
	margin-top: 0;
}
#toggle-nav-label:after {
	position: absolute;
	top: 4px;
	left: 0;
	right: 0;
	font-family: FontAwesome;
	content: '\f0c9';
	font-size: 22px;
	text-align: center;
}
#toggle-nav {
	display: none;
}
#toggle-nav:checked ~ .box {
	opacity: 1;
	z-index: 111111;
	display: block;
}
#toggle-nav:checked ~ .box ul {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	margin: 0;
	padding: 0;
	float: none;
}
#toggle-nav:checked ~ #toggle-nav-label {
	position: fixed;
	left: 0px;
	top:0;
}
#toggle-nav:checked ~ #toggle-nav-label:after {
	color: #fff;
	font-family: FontAwesome;
	content: '\f00d';
	font-size: 25px;
}
#menu ul li a:before, #menu ul li a:after {
	display: none;
}
#menu ul li a i {
	display: none;
}
#menu ul li a br {
	display: none;
}*/
}



/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	background: transparent;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ce0100;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
	color: #fff;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}