/*****  ENCABEZADO  *****/

header{
	width: 100%;
	height: 120px;
	/*background-color: rgb(250 250 250 / 50%);*/
}

header > div{
	width: 90%;
	height: 100%;
	margin: 0 auto;
	position: relative;
}

header > div > div{
	display: inline-block;
}

#logo{
	left: 0;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
}

#general-information{
	left: 0;
    position: absolute;
	height: 100%;
}

#close-general-information, #close-primary-menu{
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: #736730;
	border-radius: 40px;
	color: white;
	font-weight: bold;
	text-align: center;
	line-height: 37px;
	font-size: 20px;
	display: none;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

#show-general-information{
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: #736730;
	text-align: center;
	color: white;
	border-radius: 30px;
	font-size: 30px;
	font-weight: bold;
	line-height: 35px;
	right: 0px;
	top: 15px;
	display: none;
	cursor: pointer;
}

#show-primary-menu{
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: #736730;
	border-radius: 40px;
	text-align: center;
	line-height: 43px;
	top: 15px;
	left: 0px;
	display: none;
	cursor: pointer;
}

#show-primary-menu img{
	height: 13px;
	width: 15px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(271deg) brightness(108%) contrast(101%);
}

.information{
	display: inline-flex;
	align-items: center;
	height: 100%;
	margin-right: 35px;
}

.icon-information{
	margin: 0px 10px;
}

.icon-information img{
	filter: brightness(0) saturate(100%) invert(100%) sepia(21%) saturate(6363%) hue-rotate(320deg) brightness(88%) contrast(80%);
}

.data-information{
	font-size: 14px;
	/*color: white;*/
	font-weight: bold;
}

.data-information a{
	position: relative;
	/* top: -7px; */
	transition: .3s all;
}

.data-information a:hover{
	color: #736730;
}

.data-information p{
	margin-block-start: 8px;
	margin-block-end: 8px;
	font-size: 14px;
}

/*****  FIN ENCABEZADO  *****/


/***** MENU  *****/
#primary-menu{
	height: 50px;
	width: 100%;
	border-top: 1px solid #3B392D;
	background-color: rgb(250 250 250 / 50%);
	border-bottom: 1px solid #3B392D;
	position: fixed;
	background-color: #3B392D;
	z-index: 10;
}

#primary-menu > div{
	width: 90%;
    height: 100%;
    margin: 0 auto;
	position: relative;
}

nav{
	font-family: Helvetica;
}

nav > ul{
	list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

nav > ul > li{
	float: left;
	position: relative;
	z-index: 5;
	margin: 0 30px 0 0;
	line-height: 50px;
	font-size: 14px;
	color: #F3ECDB;
	cursor: pointer;
	text-transform: uppercase;
	transition: .2s all;
}

.menu:hover{
	color: #EAD8A6;
	font-weight: bold;
}

#social-networks{
	height: 100%; 
    position: absolute;
    right: 0;
}

#social-networks > div{
	display: inline-flex;
	align-items: center;
	margin-left: 20px;
	height: 100%;
	background-color: #F3ECDB;
	border: 1px solid #F3ECDB;
	height: 35px;
	width: 35px;
	border-radius: 40px;
	margin-top: 5px;
	vertical-align: top;
	transition: .3s all;
}

#social-networks > div:hover{
	background-color: #EAD8A6;
	border: 1px solid #EAD8A6;
}

#social-networks > div > a{
	position: relative;
	left: 7px;
	top: 2px;
}

#social-networks > div > a > img{
	filter: brightness(0) saturate(100%) invert(18%) sepia(25%) saturate(356%) hue-rotate(18deg) brightness(99%) contrast(90%);
}

/*#social-networks > div:hover > a > img{
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(271deg) brightness(108%) contrast(101%);
}*/
/*****  FIN MENU  *****/


@media only screen and (max-width: 991px)
 {
	#general-information{
		position: fixed;
		top: 0;
		bottom: 0;
		width: 100%;
		background-color: rgb(115 103 48 / 90%);
		z-index: 10;
		left: 100%;
		overflow: auto;
	}
	
	.information{
		display: block;
		height: auto;
		margin-top: 40px;
		width: 100%;
		text-align: center;
		margin-left: 0;
		margin-bottom: 40px;
	}
	
	#primary-menu{
		position: fixed;
		background-color: rgb(115 103 48 / 90%);
		width: 100%;
		height: 100%;
		top: 0;
		left: -100%;
		overflow: auto;
		z-index: 10;
	}
	
	#primary-menu > div{
		margin-top: 40px;
		margin-left: 5%;
		text-align: center;
	}
	
	#social-networks{
	    height: auto;
		border-left: initial;
		border-top: 1px solid #e5e5e5;
		position: initial;
		padding-top: 30px;
		margin-right: 0px;
	}
	
	nav > ul > li{
		float: initial;
		margin: 0;
		color: white;
	}
	
	#social-networks > div{
		padding: 5px;
		margin: 10px 10px;
		background: #736730;
	}
	
	#close-primary-menu{
		position: absolute !important;
		width: 40px !important;
		height: 40px !important;
		margin-top: 0px !important;
		margin-left: initial !important;
		right: 20px;
		z-index: 10;
	}
	
	#close-general-information, #close-primary-menu{
		display: block;
	}
	
	#logo{
		left: calc(50% - 55px);
	}
	
	#logo img{
		width: 110px;
		height: auto;
	}
	
	#show-general-information, #show-primary-menu{
		display: block;
	}
	
	/*.data-information p, nav > ul > li{
		font-size: 16px;
	}*/
	
	#visit-us-mobile{
		display: block;
		margin-top: 15px;
		margin-bottom: 30px;
		background-color: #c8d9f3;
		padding-top: 10px;
	}
	
	#visit-us-mobile a{
		color: #112857;
		font-weight: bold;
		line-height: 27px;
	}

	#social-networks > div > a > img{
		filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(271deg) brightness(108%) contrast(101%);
	}

	.color-one-text{
		color: white !important;
	}
}
