/* 
Last Updated: 30 may 2017
Author: www.citrom.com
Description: CSS to Error Citriom;
-------------------------------

/* 

	INDICE

	1. RESET

	2. ESTILOS UTILITARIOS

	3. TIPOGRAFÍAS Y COLORES

	4. ESTRUCTURA GENERAL

	5. MÓDULOS DE CONTENIDO

--------------------------------

/* 

	1. RESET

*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display: block;
}

nav ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

input, select {
    vertical-align: middle;
}


/* 

	2. ESTILOS UTILITARIOS

*/


.red {
	color: #C53C3B;
}

.yellow {
	color: #E6AA00;
}


/* 

	3. TIPOGRAFÍAS Y COLORES

*/

body {
	color: #9A9A9A;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	line-height: 1.4em;
	margin-top: 0px;
	font-weight: 300;
}


/* 

	4. ESTRUCTURA GENERAL

*/

#page {
	text-align: center;
}

#page img {
	width: 100%;
}

#page h1 img {
	width: auto;
}

#header {
	padding: 1em;
}

#domain {
	text-align: center;
	font-weight: 700;
	color: #575757;
	font-size: 50px;
	margin: 1em auto;
}

#content {	
	display: -webkit-box;	
	display: -webkit-flex;	
	display: -ms-flexbox;	
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.DosCol {
	width: 50%;
}

/* 

	4.1. MEDIA QUERIES ESTRUCTURA GENERAL

*/


@media screen and (max-width: 830px){
	.DosCol {
		width: 100%;
	}
}

/* 

	5. MÓDULOS DE CONTENIDO

*/

.mod-txt {
	padding: 1em;
	text-align: center;
}

.mod-txt h1 {
	font-size: calc(14px + 1vw);
	font-weight: 300;
}

.DosCol .mod-txt {
	text-align: left;
	padding: 3em;
}

.DosCol .mod-txt h1 {
	font-size: calc(14px + 0.3vw);
	font-weight: 800;
}

.DosCol .mod-txt h2 {
	font-size: calc(14px + 0.3vw);
    font-weight: 500;
    margin-bottom: 1.2em;
    text-transform: uppercase;
    color: #343532;
}

.DosCol .mod-txt p {
	margin-top: 0.25em;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2em;
}

@media(min-width: 1100px) {
    #page > img {
		width: 65%;
	}
}

@media(max-width: 830px) {
	.DosCol .mod-txt {
		text-align: center;
	}
}

@media(max-width: 430px) {
    .mod-txt h1 {
		font-size: 25px;
		line-height: 1.2em;
	}
}



