@charset "UTF-8";
/* CSS Document */
*{
	font-family: "Poppins", sans-serif;
	margin: 0;
	padding: 0;
}
body{
	background: #f4f4f4;
	margin: 0;
	padding: 0;
}
h1{
	color: #001F91;
	font-size: 42px;
	text-align: center;
	font-weight: 900;
	margin: 50px auto 50px;
	line-height: 1.1em;
	max-width: 580px;
}
h2{
	color: #444;
	font-size: 22px;
	text-align: center;
	font-weight: 600;
	max-width: 890px;
	margin: 50px auto 40px;
	line-height: 1.1em;
}
.logo {
    max-width: 360px;
    margin: 0 auto;
    left: -6%;
    position: relative;
}
.container-general{
	width: 100vw;
	height: 100vh;
	display: flex;
	align-content: center;
	align-items: center;
}
.container-inner{
	width: 90%;
	max-width: 980px;
	margin: auto;
	text-align: center;
}
.icon{
	width: 100%;
	max-width: 24px;
	margin: 0 8px 0 0;
	text-align: center;
	display: inline-flex;
}
.icon img{
	width: 24px;
	max-width: 24px;
	height: auto;
}
.txt-icon{
	width: auto;
	margin: 0 0 0 0;
	text-align: left;
	display: inline-flex;
	font-weight: 500;
	font-size: 20px;
	color: #787878;
}
a{
	display: inline-flex;
	text-decoration: none;
	cursor: pointer;
}
a .txt-icon{
	color: #787878;
	text-decoration: none;
	transition: all ease-in-out .4s;
	display: inline-flex;
}
a:hover .txt-icon{
	color: #001F91;
	text-decoration: none;
	transition: all ease-in-out .4s;
}
a:focus .txt-icon{
	text-decoration: underline;
}
.row{
	width: 100%;
	max-width: 100%;
	display: flex;
}
.row.contacto {
    max-width: 380px;
	margin: 0 auto 0;
}
.col-6 {
    width: 50%;
    max-width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}
@media (max-width: 680px) {
	h1{
		font-size: 32px;
	}
	h2 {
		font-size: 18px;
		max-width: 296px;
	}
	.row {
		width: 100%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-content: center;
		align-items: flex-start;
	}
	.row.contacto {
		max-width: 296px;
		margin: 0 auto 0;
	}
	.col-6 {
		margin-bottom: 10px;
	}
}
