#contacto {
	height: 100vh;
	width: 100%;
	background: url('../img/piano2.jpg');
	background-color: rgba(0, 0, 0, 0.7);
	background-size: cover;
  	z-index: 0;	
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
}

#contacto h1 span{
	color: var(--principal-color);
}

#contacto h1{
	color: white;
	font-size: 50px;
}

#contacto h2{
	color: gray;
	font-size: 30px;
}

.contacto-body {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.contenedor-fila {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.card-contacto {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	background-color: rgba(255,255,255,0.7);
	color: black;
	width: 450px;
	height: 100px;
	border: 1px solid white;
	box-shadow: 2px 2px 2px rgba(255,255,255,0.7);
	margin: 50px;
	border-radius: 10px;
}

.card-contacto:hover {
	background-color: rgba(101, 189, 0,0.7);
    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
}

.contenedor-icono-contacto {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background-color: #ececec;	
	margin-left: 20px;
	margin-right: 20px;	
}

.contenedor-icono-contacto i {
	color: var(--principal-color);
}

.titulo-subtitulo {
	display: flex;
	flex-direction: column;
}

.titulo-subtitulo h4{
	margin-top: 0px;
	margin-bottom: 0px;
}

.rs-contacto {
	display: flex;
	flex-direction: row;
}

.rs-contacto i {
	margin-left: 5px;
	margin-right: 5px;
}

.rs-contacto a {
	text-decoration: none;
	color: black;
}

.gif-contacto {
	margin-left: 120px;
}

.gif-contacto img {
	display: none;
	max-width: 60px;
}

@media only screen and (max-width: 590px) { 

	#contacto {
		height: auto;
	}

	#contacto h1 span{
		color: var(--principal-color);
		font-size: 30px;
	}

	.contacto-body{
		width: 100%;
		align-items: center;
		justify-content: center;
	}

	.card-contacto {
		margin: 0px;
		width: 100%;
		margin-bottom: 20px;
		align-items: center;
		justify-content: flex-start;
	}

	.contenedor-fila {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}

	.titulo-subtitulo {
		font-size: 15px;
	}

	.gif-contacto {
		display: none;
	}

}