:root {
	--color1:#4cb649;
}

.logo img {
	height: 80px !important;
}
.texto-justify p {
	text-align: justify ;
}

/* Utilidades */
.boton1 {
	color: var(--color1);
	display: inline-flex;
	border: solid 2px var(--color1);
	padding: 5px 15px;
	transition: 1s;
}
.boton1:hover {
	background-color: var(--color1);
	color: white;
}
/* //Utilidades */

/* GALERIA */
.galeria {
  
	width: 60%;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 20px;
	margin:auto;
	padding-bottom: 100px
  }

 @media(max-width: 1280px){
	.galeria {
		width: 80%;
	  }
 } 

 @media(max-width: 640px){
	.galeria {
	grid-template-columns: repeat(1,1fr);
	  }
 } 
  
  .galeria .img-wraper img  {
	 width: 100%;
	 box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.2);
	 height: 250px;
  }

/* GALERIA FIN */

.mensaje {
	text-align: center;
  }

  .mensaje h1 {
	font-weight: 900;
  }
  
  .mensaje a {
	color: #fff;
	background: #96d600;
	padding: 10px;
	font-size: 20px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 15px;
	
  }
  
  .mensaje a:hover {
	background: #fff;
	color: #96d600;
	border: solid;
  }

  .btn-enviar {
	padding: 10px;
	margin-left: 15px;
	padding-left: 30px;
	padding-right: 30px;
  }
  
  .btn-enviar:hover {
	background: #4cb649;
	color: #fff;
	border: #fff solid 3px;
  }

/* CLIENTES */
.clientes {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	width: 50%;
	margin: auto;
	  
  }	

  .fondo {
	background: #4cb649;
	color: #fff;
	padding-top:70px;
	padding-bottom:50px;
  }

  .clientes li{
	font-weight: 400;
	font-size: 15px;
  }


 @media(max-width:640px){
	 .clientes {
		 width: 100%;
	 }
 } 
/* CLIENTES FIN */