.tecnologias{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}

.tecnologias-card{
	box-shadow: 0 5px 5px rgba(0,0,0,0.12), 0 5px 5px rgba(0,0,0,0.24);
	width: 25%;
	border: none;
	padding: 10px;
	margin: 10px;
	text-align: center;
	background-color: white;
}

.tecnologias-card-imagen img {
	width: 80px;
}

.s4hanalogo{
	width: 200px !important;
}

.tecnologias-card-contenido{
	color: black;
}

.botonBajar{
	width: 100%;
	text-align: center;
}

.botonBajar button{
	background: black;
	background: black;
	border: none;
	border-radius: 100%;
	margin-top: 20px;
	height: 50px;
	width: 50px;
	background-image: url("../img/flechaAbajo.svg");
	animation: float 6s ease-in-out infinite;
}

#servicios-tecnologia h2{
	font-size: 60px;
	/* padding-left: 40px; */
	/* padding-top: 20px; */
	padding-bottom: -28px;
	margin-bottom: 0px;
	margin-top: 0px;
	color: white;
	font-weight: 100;
	text-align: center;
}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}

@media (max-width: 500px) {
	.tecnologias-card{
		width: 75%;
	}
	#servicios-tecnologia{
		height: 100% !important;
	}
	.botonBajar{
		display: none;
	}
}

@media (min-width: 1920px){
	.tecnologias-card h3 {
		font-size: 2rem;
	}
	
	.tecnologias-card p{
		font-size: 1.6rem;
	}
	
	.tecnologias-card-imagen img {
		width: 110px;
	}
	
	.s4hanalogo {
		width: 300px !important;
	}
}