body
{
	font-family: 'Alata', sans-serif;
	font-size: 18px;
	margin: 0;
	padding: 0;
	width: 100%;
	color: #282828;
}
figure
{
	line-height: 0;
	padding: 0;
	margin: 0;
}
img
{
	line-height: 0;
	width: 100%;
}
header
{
	width: 100%;
}
header #header-site
{
	display: flex;
	justify-content: space-between;
	padding: 0.5em 1em;
	background: #f7f7f8;
}
header #header-site figure
{
	width: 150px;
}
header #header-site nav
{
	display: flex;
	justify-content: space-between;
	width: 60%;
	margin: 0;
	padding: 0;
}
header #header-site nav ul 
{
	
	width: 100%;
	display: flex;
	list-style: none;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 0;
}
header #header-site nav ul li
{
	padding: 0.5em;
	position: relative;
}
header #header-site nav ul li ul
{
	position: absolute;
	display: none;
	margin: 0;
	padding: 0;
	left: 0px;
	top: 2em;
}
header #header-site nav ul li:hover > ul
{
	display: block;
	z-index: 1000;
}
header #header-site nav ul li ul li
{
	padding: 0;
	margin: 0;
	width: 200px;
}
header #header-site nav ul li ul li a
{
	display: block;
	border:1px solid #dadada;
	width: 100%; 
	padding: 0.5em;
	margin: 0;
	background: #f7f7f8;
	color: #282828;
	text-decoration: none;
	transition: 1s all ease-out
}
header #header-site nav ul li ul li a:hover
{
	background: rgba(255,255,255,0.7);
}
header #header-bg
{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
}
header #header-bg div#title
{
	position: absolute;
	padding: 1em;
	z-index: 1;
	background: rgba(255,255,255,0.7);
	width: 50%;
	max-width: 500px;
}
header #header-bg div#title h1
{
	text-align: center;
	font-size: 2em;
	margin: 0;
	padding: 0;
	font-weight: bold;
}
header #header-bg figure
{
	position: relative;
	z-index: 0;
}
footer
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 1em 0;
	width: 100%;
	margin: 1em 0 0 0;
	background: #edeef0;
}
footer figure
{
	width: 100px;
}
footer div#datos ul
{
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.8em;
}
footer div#datos ul li
{
	
}
footer div#datos ul p
{
	margin: 0;
}
footer div#empresa
{
	margin: 0;
	padding: 0;
	font-size: 0.8em;
}
footer div#empresa p
{
	margin: 0;
	padding: 0;
}
footer div#empresa a
{
	display: block;
	color: #5b5b5f;
}
/*-----------------------------------------------------------------------------------*/
@media (min-width: 780px) and (max-width: 1024px) 
{
	body
		{
			
		}
	header #header-site nav
	{
		display: flex;
		justify-content: space-between;
		width: 70%;
		margin: 0;
		padding: 0;
	}
}
/*-----------------------------------------------------------------------------------------------------------------------------------*/
@media (min-width: 200px) and (max-width: 780px) 
{
	body
		{
			
		}
	header #header-site
		{
			display: flex;
			flex-wrap: wrap;
			justify-content:space-around;
			padding:0 0.5em;
			background: #f7f7f8;
		}
		header #header-site figure
		{
			padding: 1em;
			width: 200px;
		}
		header #header-site nav
		{
			display: flex;
			justify-content: space-between;
			width: 100%;
			margin: 0;
			padding: 0.5em;
		}
		header #header-site nav ul
		{
			flex-wrap: wrap;
			justify-content: space-between;

		}
		header #header-site nav ul li
		{
			padding: 0.2em 0;
			margin: 0;
		}
		header #header-site nav ul li ul
		{
			position: absolute;
			display: none;
			margin: 0;
			padding: 0;
			left: 0px;
			top: 1.5em;
		}
		header #header-bg div#title h1
		{
			text-align: center;
			font-size: 1.3em;
			margin: 0;
			padding: 0;
			font-weight: bold;
		}
		header #header-bg div#title
		{
			position: absolute;
			padding: 0.5em;
			z-index: 1;
			background: rgba(255,255,255,0.7);
			width: 70%;
			max-width: 500px;
		}
		footer
		{
			flex-wrap: wrap;
		}
		footer div
		{
			width: 80%;
			padding: 2em;
			text-align: center;
		}