/* Reset */
*{
	box-sizing: border-box;
}

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;
}

/* Generales ----------------------------------------
-------------------------------------------------- */

img {
    width: 100%;
    height: auto;
}

p {
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	color: #000;
	line-height: 1.4;
	padding-bottom: 25px;
	text-align: left;
}

h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
	color: #77ced8;
	padding-top: 20px;
	padding-bottom: 10px;
	text-transform: uppercase;
	line-height: 1.2;
	margin-top: 30px;
}

h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Específicos --------------------------------------
-------------------------------------------------- */

#sumario {
	max-width: 1000px;
	margin: auto;
	margin-bottom: 60px;
	margin-top: 30px;
}

#sumario > p {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 300;
}

.cuerpo {
	max-width: 750px;
	margin: auto;
}

.cuerpo > p > span {
	font-weight: 700;
}

.blue {
	background-color: #77ced8;
	margin-top: 50px;
}

#blue_tit_01 {
	max-width: 389px;
	margin: auto;
	margin-bottom: 20px;
}

.blue > .cuerpo > p {
	color: #fff;
}

.blue > .cuerpo > h2 {
	color: #fff;
}

.bullet {
	max-width: 500px;
	margin: auto;
	margin-bottom: 20px;
}

.blue > .bullet > p {
	text-align: center;
	color: #fff;
}

.chart {
	max-width: 900px;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

.resaltado {
	font-weight: 700;
	font-size: 35px;
}

.quote {
	max-width: 500px;
	margin: auto;
}

.quote > h3 {
	font-size: 36px;
	color: #fff;
}

.quote > p {
	color: #fff;
}

.header {
	background-color: #fff;
	border-bottom: solid;
	border-color: #ff6158;
	border-width: 1px;
	margin-bottom: 10px;
}

#logo {
	width: 80px;
	margin-top: 10px;
	margin-left: 100px;
}

/* media queries ------------------------------------
-------------------------------------------------- */
@media screen and (max-width: 1024px){
#sumario {
	margin: 20px;
}
}

@media screen and (max-width: 768px){
.cuerpo {
	margin: 100px;
}
.chart {
	margin: 20px;
}
}

@media screen and (max-width: 425px){
.cuerpo {
	margin: 30px;
}

.quote {
	margin: 20px;
}
.quote > h3 {
	font-size: 24px;
}

}