.noticias {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	margin: 0px;
	padding: 0px;
	height: 100%;
}

.noticias .texto-redes-sociales {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.texto-noticias {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	margin-right: 50px;
}

.texto-noticias h1{
	width: 400px;
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid black;
}

.texto-noticias p{
	width: 300px;
	text-align: center;
}

.noticias-redes-sociales img{
	margin-left: 25px;
	margin-right: 25px;
}

.camioncito-imagen{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.camioncito-imagen img{
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.camioncito-imagen .linea-noticias{
	position: absolute;
	bottom: 0px;
	left: 100px;
	height: 1px;
	width: 90%;
	border-bottom: 2px black;
	border-bottom-style: dashed;
}

@media only screen and (max-width: 590px) {

	.noticias {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		margin: 0px;
		padding: 0px;
		height: 700px;
	}

	.noticias .texto-redes-sociales {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.texto-noticias {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		margin-bottom: 60px;
		margin-right: 0px;
	}

	.texto-noticias h1{
		width: 200px;
		align-self: center;
		text-align: center;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid black;
	}

	.texto-noticias p{
		width: 300px;
		text-align: center;
	}

	.noticias-redes-sociales img{
		transform: scale(0.8);
		margin-left: 5px;
		margin-right: 5px;
	}


	.camioncito-imagen{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}

	.camioncito-imagen img{
		position: absolute;
		bottom: 0px;
		left: 0px;
	}

	.camioncito-imagen .linea-noticias{
		position: absolute;
		bottom: 0px;
		left: 100px;
		height: 1px;
		width: 200px;
		border-bottom: 2px black;
		border-bottom-style: dashed;
	}

}