@charset "utf-8";
/* CSS Document */
*{
	padding:0;
	margin:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	font-family: 'Open Sans', sans-serif;
}

body{
	background:FEFEFE;
}

.menu_bar{
	display:none;
}

header{
	width:100%;
}

header nav{
	background:#023859;
	z-index:1000;
	max-width:auto;
	width:auto;
	margin:20px, auto;
	font-size:20px;
}

header nav ul{
	list-style:none;
}

header nav ul li{
	display:inline-block;
	position:relative;
}

header nav ul li:hover{
	background:#DBE1EB;
	-webkit-transition: background 1s;
    -moz-transition: background 1s;
    -o-transition: background 1s;
    transition: background 1s;
	border: 25px;
	-moz-border-radius:28px;
	-webkit-border-radius:28px;
	border-radius:28px;
	color:#023859;
}
	

header nav ul li a{
	color:#b3c3cd;
	display:block;
	text-decoration:none;
	padding:35px;
}

header nav ul li a span{
	margin-right:5px;
}

header nav ul li .caret{
	position:relative;
	top:3px;
	margin-left:10px;
	margin-right:0px;
	color:#b3c3cd;
}
	
/* estilos submenu */

header nav ul li:hover .children{
	display:block;
}

header nav ul li .children{
	display:none;
	background:#023859;
	position:absolute;
	min-width:170px;
	width:auto;
	border-bottom-left-radius:16px;
	border-bottom-right-radius:16px;
	z-index:1000;
}

header nav ul li .children li{
	display:block;
	overflow:hidden;
	border-bottom:1px solid rgba(255,255,255,.5);
}

header nav ul li .children li a{
	display:block;
}

header nav ul li .children li a span{
	float:right;
	position:relative;
	top:3px;
	margin-right:0;
	margin-left:10px;
}

/* haciendo el menu responsive para movil */
@media screen and (max-width:854px){
 header nav{
	 width:auto;
	 max-width:75%;
	 min-width:40%;
	 height:100%;
	 
	 margin:0;
	 position:fixed;
 }
 header nav ul li{
	 display:block;
	 float:none;
	 border-bottom:1px solid rgba(255,255,255,.3);
 }
 
 header nav ul li .children{
	
	background:#345f7a;
	position:absolute;
	width:100%;
	 text-align:center;
	
	border-bottom-left-radius:16px;
	border-bottom-right-radius:16px;
	z-index:1000;
}
 
 .menu_bar{
	 display:block;
	 width:100%;
	 color:#fff;
	 font-family: 'Open Sans', sans-serif;
 }
 
 .menu_bar .bt-menu{
	 display:block;
	 padding:20px;
	 background:#023859;
	 text-decoration:none;
	 font-family: 'Open Sans', sans-serif;
	 font-size:25px;
	 font-weight:bold;
	 color:#FFF;
	 -webkit-box-sizing:border-box;
	 -moz-box-sizing:border-box;
	 box-sizing:border-box;
 }
 .menu_bar span{
	 float:right;
	 font-size:40px;
	 color:#FFF;
	 }
	 
  .social{
	  display:none;
  }
}
