/*****  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: #00ADE9;
	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: #00ADE9;
	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: #00ADE9;
	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(56%) sepia(95%) saturate(1363%) hue-rotate(142deg) brightness(98%) contrast(104%);
}

.data-information{
	font-size: 14px;
	color: black;
	font-weight: bold;
}

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

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

.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 #000D22;
    background-color: rgb(250 250 250 / 50%);
    border-bottom: 1px solid #000D22;
    position: fixed;
    background-color: #000D22;
    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: white;
	cursor: pointer;
	text-transform: uppercase;
	transition: .2s all;
}

.menu:hover, #menu-agenda:hover{
	color: #00ADE9;
	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: white;
	border: 1px solid white;
	height: 35px;
	width: 35px;
	border-radius: 40px;
	margin-top: 5px;
	vertical-align: top;
	transition: .3s all;
}

#social-networks > div:hover{
	background-color: #00ADE9;
	border: 1px solid #00ADE9;
	border-radius: 10px;
}

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

#social-networks > div > a > img{
	filter: brightness(0) saturate(100%) invert(34%) sepia(17%) saturate(1360%) hue-rotate(172deg) brightness(87%) contrast(88%);
}

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


@media only screen and (max-width: 991px)
 {
	#general-information{
		position: fixed;
		top: 0;
		bottom: 0;
		width: 100%;
		background-color: rgb(0 31 63 / 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(0 31 63 / 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: #00ADE9;
	}
	
	#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%);
	}

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