@font-face {
	font-family: 'CenturyGothic';
	src: url('./CenturyGothic.ttf') format('truetype');
}
body{
	margin: 0px;
	font-family: 'CenturyGothic';
	font-size: 1.3vw;
}
/* header */
header{
	z-index: 1;
	width: 100%;
	position: fixed;
	background: #fff;
}
header>a>img{
	height: 100px;
	width: auto;
	display: block;
	margin: auto;
    transition: opacity 0.3s;
}
/* Contenido principal */
content{
	padding-top: 100px;
	display: flex;
	padding-bottom: 40px;
}
/* menú lateral */
content>aside{
	background: #fff;
	position: fixed;
	top: 100px;
	width: 25%;
	z-index: 1;
	margin: 0px;
}
aside>ul{
	margin: 5px 0px;
	list-style-type: none;
	padding: 0px 22px 0px 0px;
	text-align: right;
}
aside>ul>li,div>li{
	padding-bottom: 10px;
}
aside>ul>li>a,div>li>a{
	text-decoration: none;
	color: #000;
}
aside>ul>li>a:hover{
	font-weight: bold;
}
aside>ul>li>a>img{width: 25px;height: auto;}
/* contenido */
content>article{
	width: 50%;
	padding-left: 25%;
	padding-right: 25%;
}
content>article>div{
	display: flex;
}
/* tarjetas */
content>article>div>a{
	display: table;
	color: rgba(0,0,0,0);
	text-decoration: none;
	text-align: center;
	margin: 0px 10px 10px 0px;
	width: 32.5%;
	height: 15.5vw;
	transition: color 0.3s, opacity 0.3s;
	position: relative;
}
content>article>div>a:last-child{
	margin: 0px 0px 10px 0px;
}

content>article>div>a>div{
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s;
    display:table-row;
    width:100%;
    height: 15.5vw;
}
content>article>div>a:hover>div{
	opacity: 25%;
}
content>article>div>a:hover{
	color: rgba(0,0,0,255);
}
content>article>div>a>h3{position:absolute;bottom:46%;text-align: center;width: 100%;}
content>article>div>a>span{position:absolute;bottom:40%;text-align: center;width: 100%;right: 0%;}
/* articulos */
.articulo>div:first-child{
	width: 65%;
	margin-right: 2%;
}
.articulo>div:last-child{
	width: 33%;
	font-size: 15px;
	text-align: justify;
}
.articulo>div>h2,.articulo>div>h3{
	margin: 3px;
	font-size: 18px;
	text-align: center;
}
.articulo>div>h3{
	color: #666;
}
.articulo>div>img{
	width: 100%;
	height: auto;
}
.articulo>div>.doble>img{
	width: 49%;
	margin-bottom: 2%;
}
.articulo>div>.doble>img:first-child{
	margin-right: 2%;
}
.doble{
	display: flex;
}
/* formulario */
form>div{
	padding: 0px 2.5%;
	display: flex;width: 95%;
}
input[type=text], select, textarea{
	width: 95%;
	padding: 16px 2.5%;
	display: inline-block;
	border: 1px solid #ccc;
	resize: vertical;
}
textarea{
	height: 100px;
}
::placeholder{
	color: #aaa;
	font-family: 'CenturyGothic';
}
input[type=submit]{
	border: none;
	width: 100%;
	text-align: right;
	background: none;
	font-family: 'CenturyGothic';
	font-weight: bold;
	padding: 20px 2.5%;
}
input[type=submit]:hover{
	color: #444;
	cursor: pointer;
}
/* footer */
footer{
	background: #fff;
	width: 50%;
	bottom: 0;
	position: fixed;
	padding: 5px 25% 0px 25%;
	text-align: center;
	font-size: 12px;
	height: auto;
}
footer>div{
	padding-bottom: 6px;
}
/* movil */
@media (max-width: 750px) {
	body{font-size: 16px;}
	/* contenido*/
	content{display: block;}
	/* menú lateral */
	content>aside{width: 100%;}
	content>aside>ul{display: flex;padding: 0px;text-align: center;}
	content>aside>ul>li{width: 25%;}

	/* contenido principal */
	content>article{width: 100%;padding: 0px;}
	content>article>div{
		display: block;
		width: 100%;
	}
	/* tarjetas */
	content>article>div>a{
		width: 96%;
		height: 90vw;
		margin: 2%;
	}
	content>article>div>a:last-child{
		margin: 2%;
	}
	content>article>div>a>div{
		height: 90vw;
	}
	content>article>div>a>h3{margin: -50% 0px 0px 0px;}
	/* articulos */
	.articulo>div:first-child,.articulo>div:last-child{
		width: 92%;
		margin: 0px 4%;
	}
	/*footer*/
	footer{
		padding-right: 5%;
		padding-left: 5%;
		width: 90%;
	}
	footer>div>span{
		display: inline-block;
		width: 100%;
	}
	h3,h4{
		text-align: center;
	}
}
/* ultrawide */
@media screen and (min-width: 1300px) {
	body{font-size: 16px;}
	content>article>div>a>h3{margin: -60% 0px 0px 0px;}
}