.div-contacto {
	display: flex;
	padding-top: 15px;
	padding-right: 15px;
}

.contacto-left {
	width: 40%;
}

.contacto-right {
	width: 60%;
}

.p50 {
	padding-top:50px ;
}

.imageContainer {
	width: 100%;
	height: 500px;
}

.imageContainer > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.renglon {
	display: flex;
	width: 50%;
	margin-bottom: 20px;
}

.renglon-left {
	width: 50%;
}

.renglon-right {
	width: 50%;
}

@media only screen and (max-width: 768px) {
	.renglon {
		display: column;
		width: 100%;
	}

	.imageContainer {
		height: 300px;
	}

	.imageContainer > img {
		object-fit: cover;
	}
}