@font-face {
	font-family: 'Nunito Sans';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url('../../fonts/nunito-sans-latin.woff2') format('woff2');
}

/* Main menu wrapper */
.cbp-hsmenu-wrapper {
	position: relative;
}

/* Common style for all lists */
.cbp-hsmenu-wrapper ul {
	list-style: none;
	padding: 0;

}

/* Menu Azul */
.cbp-hsinner {
	width: 100%;
	height: 40px;
	border-radius: 0px 0px 10px 10px;
	position: relative;
	z-index: 100;
	text-align: right;
	margin-top: 5px;
}

/* Main menu style */
.cbp-hsmenu-wrapper .cbp-hsmenu {
	width: 100%;
/*	max-width: 50em; */
	text-align: center;
	margin: 0 auto;
	padding: 0px;
}

.cbp-hsmenu > li {
	margin-left: 0em;
	display: inline-block;
}

.cbp-hsmenu > li:first-child {
	margin-left: 0;
}

/* Main menu link style */
.cbp-hsmenu > li > a {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #074188;
	line-height: 2em;
	display: inline-block;
	position: relative;
	z-index: 10000;
	text-decoration: none;
	padding: 0px 15px 0px 15px;
	border-radius: 6px;
	text-transform: uppercase;
}



.no-touch .cbp-hsmenu > li > a:hover, .no-touch .cbp-hsmenu > li > a:focus, .cbp-hsmenu > li.cbp-hsitem-open > a {
	color: #fff;
	background: #3d6182;
}



/* Submenu style */
.cbp-hssubmenu {
	position: absolute;
	left: 0;
	top: 80%;
	width: 100%;
	z-index: 0;
	text-align: center; /* for aligning the sub items */
	visibility: hidden;
	border-radius: 0px 0px 10px 10px;
	background-color: #acc7e7;
}

.cbp-hssubmenu:before, 
.cbp-hssubmenu:after { 
	content: " "; 
	display: table; 
}
.cbp-hssubmenu:after { 
	clear: both; 
}

/* Let's allow 6 item in a row */
.cbp-hssubmenu > li {
	padding-top: 5px;
	display: inline-block;
	vertical-align: top;
	opacity: 0;
	-webkit-transition: opacity 0.1s 0s;
	-moz-transition: opacity 0.1s 0s;
	transition: opacity 0.1s 0s;
}


.cbp-hssubmenu > li a {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	color: #a2a2a2;
	text-decoration: none;
	text-transform: uppercase;
}

.no-touch .cbp-hssubmenu > li a:hover,
.no-touch .cbp-hssubmenu > li a:focus {
	color: #888;
}

.cbp-hssubmenu > li a span {
	display: block;
	padding: 3px 10px 3px 10px;
	color: #074188;
	border-radius: 2px;
	
}

.cbp-hssubmenu > li a span:hover {
	display: block;
	padding: 3px 10px 3px 10px;
	color: #fff;
	border-radius: 6px;
	background-color: #3d6182;
}

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
	z-index: 1000;
	visibility: visible;
}

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu > li {
	opacity: 1;
	-webkit-transition: opacity 0.5s 0.1s;
	-moz-transition: opacity 0.5s 0.1s;
	transition: opacity 0.5s 0.1s;
}

/* Helper div for animating the background */
.cbp-hsmenubg {

	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	z-index: 0;
	height: 0px;
	padding-bottom: 0px;
	padding-right: 30px;
}

.no-touch .cbp-hsmenubg {
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

@media screen and (max-width: 65em){
	.cbp-hsmenu-wrapper {
		font-size: 80%;
	}
}

@media screen and (max-width: 51.4375em){
	.cbp-hsmenu-wrapper {
		font-size: 100%;
	}

	.cbp-hsmenu-wrapper .cbp-hsmenu {
		padding: 0;
		max-width: none;
		width: 100%;
	}

	.cbp-hsmenu > li {
		border-top: 1px solid rgba(255,255,255,0.5);
		text-align: center;
		margin: 0 auto;
		display: block;
	}

	.cbp-hsmenu > li:first-child {
		border-top: none;
	}

	.cbp-hsmenu > li > a {
		display: block;
	}

	.cbp-hsmenu > li > a:not(:only-child):before {
		line-height: 1.8;
		right: 0;
		position: absolute;
		font-size: 200%;
	}

	.cbp-hsmenubg {
		display: none;
	}

	.cbp-hssubmenu {
		background: #f7f7f7;
		position: relative;
		overflow: hidden;
		height: 0;
	}

	.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
		height: auto;
	}

	/* Let's only allow 3 item in a row now */
	.cbp-hssubmenu > li {
		width: 30%;
	}

	/* Reset box shadows for the 6 items in row case */
	.cbp-hssubmenu > li:nth-child(-n+6),
	.cbp-hssubmenu > li:nth-child(6n+1) {
		box-shadow: -28px 0 0 -27px #ddd, 0 -28px 0 -27px #ddd;
	}

	/* First 4 items don't have upper box shadow */
	.cbp-hssubmenu > li:nth-child(-n+3) {
		box-shadow: -28px 0 0 -27px #ddd;
	} 

	/* Every 5th item does not have a left box shadow */
	.cbp-hssubmenu > li:nth-child(3n+1) {
		box-shadow:  0 -28px 0 -27px #ddd;
	}

}

@media screen and (max-width: 25em){
	/* Let's only allow 1 item in a row now */
	.cbp-hssubmenu > li {
		width: 100%;
		display: block;
	}

	.cbp-hsmenu-wrapper .cbp-hssubmenu > li {
		box-shadow: 0 1px #cecece;
		text-align: center;
	}

	.cbp-hssubmenu > li a {
		text-align: left;
		line-height: 50px;
		padding: 0.4em 0em;
	}

	.cbp-hssubmenu > li a img {
		float: left;
		max-height: 50px;
	}

	.cbp-hssubmenu > li a span {
		min-height: 0;
		margin: 0;
	}
}
.cbp-hssubmenu {
    position: absolute;
    left: 0;
    top: 80%;
    width: 100%;
    z-index: 0;
    text-align: left;
    visibility: hidden;
    border-radius: 0; 
    background-color: transparent;
}
.cbp-hsmenu-wrapper .cbp-hsmenu {
    width: 100%;
    /* max-width: 50em; */
    text-align: left;
    margin: 0 auto;
    padding: 0px;
}
.cbp-hsmenu-wrapper ul {
    list-style: none;
    padding: 0 5px;
}
.cbp-hsmenu-wrapper ul {
    list-style: none;
    padding: 5px;
}
.cbp-hsmenu > li.cbp-hsitem-open > a {
    color: #fff;
    background: #013c73;
}
.cbp-hsmenu > li > a {
	    border-radius: 0;
}
.cbp-hssubmenu > li a span:hover {
    display: block;
    padding: 3px 10px 3px 10px;
    color: #fff;
    border-radius: 0;
    background-color: #013c73;
}
.no-touch .cbp-hsmenu > li > a:focus, .cbp-hsmenu > li.cbp-hsitem-open > a {
    color: #fff;
    background: #013c73;
}
