@charset "UTF-8";
/* CSS Document */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 20px;
	line-height: 1.2;
}

body a{
	text-decoration: none;
}
img{
	max-width: 100%;
}

header{
	background-color: #ce202e;
	padding: .5em;
}

#hero{
	
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #01cfe6;
}

#hero-img{
	width: 76%;
	
}


#logos-cielito{
	padding: .3em;
	width: 24%;
}

.contenedor{
	padding: 2em;
}

#hub{
	display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
	    grid-gap: 20px;
}

h2{
	font-weight: 600;
	color: #ce202e;
	text-transform: uppercase;
}

.sumario{
	font-family: 'Roboto Slab', serif;
	font-size: .72em;
}

.card{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	 
}

.btn{
	background-color: #01cfe6;
	padding: .35em;
	width: 30%;
	border-radius: 10px;
	color: white;
	font-weight: 400;
	text-align: center;
}

.btn:hover{
	text-decoration: underline;
}

#card-1{
	grid-column: 1/3;
}

#card-2{
	grid-column: 3/5;
}
#card-3{
	grid-column: 1/3;
}
#card-4{
	grid-column: 3/5;
}
#card-5{
	grid-column: 1/3;
}
footer{
	border-top: solid #ce202e 5px;
}

@media screen and (max-width:800px){
	body{
		font-size: 18px;
	}
}

@media screen and (max-width:600px){
	#card-1,#card-2,#card-3,#card-4{
		grid-column: 1/5;
	}
	
	#hero{
		flex-direction: column-reverse;
	}
	
	#hero-img{
		width: 100%;
	}
	
	#logos-cielito{
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: space-around;
	}
}

@media screen and (max-width:450px){
	body{
		font-size: 16px;
	}
}

@media screen and (max-width:350px){
	body{
		font-size: 14px;
	}
}