@charset "utf-8";

.contacto-area {
	background-color: #e5e5e5;
	padding-bottom: 30px;
}

.contacto-header {
	padding-top: 80px;
}

.contacto-header__title {
	font-size: 43px;
	color: #00377a;
	margin: 2vw auto 30px;
	width: 90%;
	text-align: center;
	font-weight: 400;
}

.contacto-header__subtitle {
	color: #315b9d;
	max-width: 900px;
	display: block;
	text-align: center;
	font-size: 16px;
	margin: 0 auto 20px;
	font-weight: 400;
}

.contacto-info {
	display: flex;
	flex-direction: row;
	background-color: #315b9d;
}

.contacto-info > div {
	display: flex;
	position: relative;
	width: 45%;
	margin: 0 2%;
	flex-direction: column;
}

.contacto-info__media {
	justify-content: flex-end;
	align-items: flex-end;
}

.contacto-info__content {
	justify-content: flex-start;
	padding: 4vw 2vw;
}

.contacto-info__content a {
	color: #fff;
}

.contacto-info__content a:hover {
	text-decoration: underline;
}

.contacto-info__image {
	margin-top: -12vw;
	width: 29vw;
}

.contacto-info__company {
	text-align: left;
	color: #fff;
	font-size: 2vw;
	line-height: 1.8em;
	margin: 0;
	max-width: none;
	font-weight: 400;
}

.contacto-info__content p {
	text-align: left;
	color: #fff;
	font-size: 1vw;
	line-height: 1.4em;
	font-variant: normal;
	margin-bottom: 1.5em;
}

.contacto-info__content ul {
	color: #fff;
	padding-left: .2em;
}

.contacto-banner-cintaroja {
	background-color: #f71c20;
	color: #fff;
	font-size: 2vw;
	border-top: 2px #fff solid;
	border-bottom: 2px #fff solid;
	padding: 1vw;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
	text-align: center;
	font-weight: 400;
}

@media (max-width:600px) {
	.contacto-area {
		background-attachment: fixed;
	}

	.contacto-info {
		display: flex;
		flex-direction: column-reverse;
		background-color: #315b9d;
		padding: 0 4vw;
	}

	.contacto-info > div {
		width: 100%;
	}

	.contacto-info__media {
		justify-content: center;
	}

	.contacto-info__content {
		justify-content: center;
	}

	.contacto-info__image {
		width: 80%;
		margin-top: 2vw;
	}

	.contacto-info__company {
		font-size: 7.5vw;
		line-height: 1.6em;
	}

	.contacto-info__content p {
		font-size: 4vw;
		line-height: 1.6em;
	}

	.contacto-banner-cintaroja {
		font-size: 6.5vw;
	}
}