html, body{
	margin:0px;
	padding:0px;
	font-family: 'Poppins', sans-serif;
	font-size:16px;
	line-height:150%;
	font-weight:300;
	
	--width:1280px;
	
	--color-01:#568CFC;
	--color-02:#568CFC;
	--color-03:#2CD27A;
	
	--background-01:linear-gradient(52deg, rgba(85,136,251,1) 0%, rgba(98,195,253,1) 100%);
	--background-02:linear-gradient(52deg, rgba(68,215,137,1) 0%, rgba(68,228,164,1) 100%);
	--background-03:#e9f3ff;
	--background-04:#EBFFF4;
}
*{
	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: 'Poppins', sans-serif;
	font-family: 'Fredoka', sans-serif;
	line-height:120%;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong{
	font-weight:900;
}
h1{
	font-size:55px;
}
h2{
	font-size:50px;
}
h3{
	font-size:45px;
}
h4{
	font-size:40px;
}
h5{
	font-size:35px;
}
h6{
	font-size:30px;
}
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;
}