

/****************************************************************************************************/
/* navigation menu */
/****************************************************************************************************/

.show_menu {
	margin:0 0 0 0;
	-webkit-transition:all .5s ease-in-out;
    -moz-transition:all .5s ease-in-out;
    -o-transition:all .5s ease-in-out;
    -ms-transition:all .5s ease-in-out;
    transition:all .5s ease-in-out;
}

.main_menu {
	float:right;
    position:relative;
    left:-50%;
    text-align:left;
}

.main_menu ul {
    list-style:none;
    position:relative;
    left:50%;
}

.main_menu ul li {
	float:left;
	position:relative;
	margin:0 15px 0 0;
	line-height:70px;
}

.main_menu ul li a {
    float:left;    
    text-align:center;
    white-space:nowrap;
	color:#fff;
	text-transform:uppercase;
	font-size:1.4em;
	font-weight:700;
	-webkit-transition:all .5s ease-in-out;
    -moz-transition:all .5s ease-in-out;
    -o-transition:all .5s ease-in-out;
    -ms-transition:all .5s ease-in-out;
    transition:all .5s ease-in-out;
}

.main_menu ul li a:hover {
	color:#9f2021;
	-webkit-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    -ms-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
}

.main_menu li:last-child {
	width:100px;
	height:40px;
	margin:15px 0 0 0;
	line-height:normal;	
}

.main_menu li:last-child a {
	color:#fff;
	line-height:38px;
	width:100px;
	height:40px;
	text-align:center;	
	border:solid 1px #fff;
}

.main_menu li:last-child a:hover {
	background:#9f2021;
	border:solid 1px #9f2021;
	color:#fff;
}

.logo_icon {
	max-width:170px;
	padding:12px 0 0 0;
	cursor:pointer;
}

.logo_icon img {
	width:100%;
	height:auto;
}

/****************************************************************************************************/
/* mobile navigation menu */
/****************************************************************************************************/

.mobile_header {
	background:rgba(68,68,68,1);
	height:50px;
	position:fixed;
	width:100%;
	float:left;
	z-index:99999;
	display:none;
}

.mobile_header ul li {
	float:left;
	text-align:center;
	font-size:1.7em;
	text-transform:uppercase;
}

.mobile_header ul li a {
	display:block;
	height:50px;
	line-height:50px;
	color:#fff;
	padding:0 10px;
	border-right:solid 1px #666;
}

.mobile_header .featured_link {	
	background:#870c0d;
}

.mobile_header .featured_link a {	
	padding:0 15px;
}

.mobile_menu, .mobile_menu_btn {
	display:none;
}

.mobile_menu_btn {
	position:fixed;
	z-index:99999;
	overflow:hidden;
	width:40px;
	height:40px;
	font-size:0;
	right:7px;
	top:5px;
	text-indent:-9999px;
	cursor:pointer;
	border:none;
	background:rgba(68,68,68,0.9);
}

.mobile_menu_btn:focus {
	outline: none;
}

.mobile_menu_btn span {
	display:block;
	position:absolute;
	top:18px;
	left:4px;
	right:4px;
	height:2px;
	background:#fff;
}

.mobile_menu_btn span:before,
.mobile_menu_btn span:after {
	position:absolute;
	display:block;
	left:0;
	width:100%;
	height:2px;
	background:#fff;
	content: "";
}

.mobile_menu_btn span:before {
  top: -10px;
}

.mobile_menu_btn span:after {
  bottom: -10px;
}

.mobile_open span {
  background: none;
}

.mobile_open span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile_open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.show_mobile_menu {
	display:block;
}

.mobile_menu {
	width:100%;
    position:fixed;
    top:50px;
    height:100%;
    background:#333;
    opacity:0.9;
    filter:alpha(opacity=90);
    color:#fff;
    font-size:1.3em;
    text-transform:uppercase;
    padding:10px;
    z-index:9999;
    overflow:scroll;
	
}

.mobile_menu ul li a {
    float:left;  
	clear:left;  
	display:block;
	width:75%;
    text-align:left;
    white-space:nowrap;
	color:#fff;
	text-transform:uppercase;
	font-size:1.4em;
	font-weight:400;
	margin:5px 0;
	padding:5px 0 15px 0;
	border-bottom:solid 1px #eee;
	-webkit-transition:all .5s ease-in-out;
    -moz-transition:all .5s ease-in-out;
    -o-transition:all .5s ease-in-out;
    -ms-transition:all .5s ease-in-out;
    transition:all .5s ease-in-out;
}

.mobile_menu ul li a:hover {
	color:#9f2021;
	-webkit-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    -ms-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
}


@media screen and (max-width:870px) {
	.mobile_header, .mobile_menu_btn {
	display:block;
}
}