html, body{
	margin:0px;
	padding:0px;
	font-family: 'Montserrat', sans-serif;
	font-size:16px;
	line-height:150%;
	font-weight:300;
	
	--width:1130px;
	
	--color-01:#F40000;
	--color-02:#FFB600;
}
*{
	box-sizing: border-box;
}
div, a{
	transition:.2s all ease-in;
}
a, a:link, a:visited {
	text-decoration:none;
	cursor:pointer;
	outline:0;
	color:var(--color-01);
}
a:hover, a:active, a.active {
	text-decoration:none;
	color:var(--color-02);
}
h1, h2, h3, h4, h5, h6{
	margin:0px 0px 20px 0px;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	line-height:120%;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong{
	font-weight:900;
}
h1{
	font-size:32px;
}
h2{
	font-size:30px;
}
h3{
	font-size:28px;
}
h4{
	font-size:26px;
}
h5{
	font-size:24px;
}
h6{
	font-size:22px;
}
p{
	color:#707070;
}
small{
	font-size:12px;
}
.alignleft{
	float:left;
}
.alignright{
	float:right;
}
.aligncenter{
	display: block;
	margin: 0 auto;
}
.aligncontainer{
	overflow:auto;
}
.contenedor,
.container{
	max-width:var(--width);
	width:100%;
	margin:auto;
	overflow:auto;
}