@charset "utf-8";
/* CSS Document */

.site-nav{
	width: 100%;
	max-width: 1080px;
	position: relative;
}
.site-nav ul {
	list-style-type: none;
	margin: auto;
	width: 90%;
	padding: 0.5em 0;

}
.site-nav ul li {
	display: inline-block;
	padding: 0em 1.0em;
	text-align: center;
	border-left: 2px solid #000;
	
}
.site-nav li:nth-of-type(1) {
	border-left: none;
	
}
.site-nav li:hover{
	background: #ed7225;
}
.site-nav li:hover a{
	color: white;
}

.site-nav ul li a{
	color: #000000;
	text-decoration: none;
	font-family: abril-fatface;
	font-size: 24px;
}

/*Navbar de Bootstrap*/
nav .navbar-nav{
	font-family: abril-fatface;
	font-size: 1.2rem;
	margin: auto;
	
}
.navbar-light .navbar-nav .nav-link{
	color: #000000;
}
.nav-item{
	padding: 0 5px;
}
/*nav .navbar-nav li{
	border-left: 2px solid #000;
}
nav .navbar-nav li:nth-of-type(1){
	border-left: none;
}*/
.nav_separator{
	background-color: black;
	border: 1px solid #000;
}
.navbar-light .navbar-nav .nav-item:hover{
	background: #ed7225;
}
.navbar-light .navbar-nav .nav-item:hover .nav-link{
	color: white;
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
	
}
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
	nav .navbar-nav{
		font-size: 1.1rem;
	}
}
/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
	nav .navbar-nav{
		font-size: 1.5rem;
	}
}
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	nav .navbar-nav{
		font-size: 1.8rem;
	}	
}

