*{
	box-sizing: border-box;
	font-family: 'Ubuntu', sans-serif;
}
body{
	margin:0;
	min-height: 100vh;
}
a{
	text-decoration: none;
	color: black;
}
p, h1, h2, h3, h4{
	margin: 0;
	padding: 0;
}

body{
	display: flex;
	flex-direction: column;
}

/* HEADER */
header{
	width: 100%;
	position: fixed;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	background: white;
}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.logoSitio{
	max-height: 32px;
}

/* MAIN */
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menuIcon{
	height: 25px;
}
.tituloPagina{
	background: lightgray;
	margin-top: 65px;
	text-align: center;
	padding: 5px 0;
}
main{
	padding: 10px;
}
.cajaPrincipal{
	background: grey;
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: url("img/1.jpg") no-repeat center;
	background-size: cover;
	color: white;
}
.cajaPrincipal h1{
	font-size: 17px;
	margin: 10px 10px;
}
.cajaPrincipal p{
	font-size: 13px;
	margin:10px 10px;
}

.cajasSecundarias{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.cajasSecundarias li{
	background: lightgray;
	margin: 10px 0;
	width: 45%;
	height: 153px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: white;
}
.cajasSecundarias li:nth-child(1) {
	background: url("img/fondoRotate.jpg") no-repeat center;
	background-size: cover;
}
.cajasSecundarias li:nth-child(2) {
	background: url("img/slide02.jpg") no-repeat center;
	background-size: cover;
}
.cajasSecundarias li:nth-child(3) {
	background: url("img/cajaTalleres.jpg") no-repeat center;
	background-size: cover;
}
.cajasSecundarias li:nth-child(4) {
	background: url("img/4.jpg") no-repeat center;
	background-size: cover;
}
.cajasSecundarias li h3{
	font-size: 15px;
	margin:10px 10px;
}
.cajasSecundarias li p{
	font-size: 11px;
	margin:10px 10px;
}

/* EVENTOS */
article{
	padding: 15px 0;
	border-bottom: 1px solid black;
}
article:first-child{
	padding-top: 0;
}
article:last-child{
	border-bottom: none;
}

h2{
	font-size: 23px;
}
h2::before{
	content: "+ ";
	font-weight: bold;
	font-size: 27px;
}
.articuloEventos p{
	font-size: 14px;
	padding: 5px 0;
}
.banner{
	display: flex;
}
.banner li{
	padding-right: 25px;
	width: 65%;
	flex-shrink: 0;
}
.titularCaja{
	height: 150px;
	display: flex;
	flex-direction: column-reverse;
	color: white;
	text-shadow: 2px 2px 2px black;
}
.titularCaja span{
	padding: 5px;
	font-size: 15px;
}

.banner li p:nth-child(2){
	text-align: justify;
	font-size: 12px;
	margin-top: 5px;
}
.tc01{
	background: url("img/sl01.jpg") no-repeat center;
	background-size: cover;
}
.tc02{
	background: url("img/sl02.jpg") no-repeat center;
	background-size: cover;
}
.tc03{
	background: url("img/sl03.jpg") no-repeat center;
	background-size: cover;
}
.tc04{
	background: url("img/sl04.jpg") no-repeat center;
	background-size: cover;
}
.tc05{
	background: url("img/sl05.jpg") no-repeat center;
	background-size: cover;
}
.tc06{
	background: url("img/sl06.jpg") no-repeat center;
	background-size: cover;
}
.tc07{
	background: url("img/sl07.jpg") no-repeat center;
	background-size: cover;
}
.tc08{
	background: url("img/sl08.jpg") no-repeat center;
	background-size: cover;
}
footer{
	background: black;
}
footer p{
	color: white;
	margin: 20px;
	font-size: 12px;
	text-align: center;
}