.empresa {
	position: relative;
	background-image: url("../img/fondo-empresa.png");
	background-size: cover;
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0px;
	padding: 0px;
	height: 100%;
}

.contenedor-empresa-mundo {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.contenedor-texto{
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color: white;
}

.contenedor-texto h1{
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid white;
}

.contenedor-texto p{
	line-height: 30px;
	font-size: 20px;
}

.contenedor-mundo{
	padding-right: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}


@media only screen and (max-width: 590px) {

	.empresa {
		display: flex;
		flex-direction: column-reverse;
		width: 100%;
		margin: 0px;
		padding: 0px;
		height: 900px;
	}

	.contenedor-empresa-mundo {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.contenedor-texto{
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
		color: white;
		font-size: 15px;
	}

	.contenedor-texto h1{
		margin-bottom: 25px;
		padding-bottom: 25px;
		width: 200px;
		align-self: center;
		border-bottom: 1px solid white;
	}

	.contenedor-texto p{
		line-height: 30px;
		font-size: 20px;
	}

	.contenedor-mundo{
		padding-right: 0px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

}