/*Estilos galerias-portafolio*/
*{margin: 0; padding: 0;}

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body{
  background: fffffa;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
}

.grupog{
  background-color: #F7F7F7;
  text-align: center;
  padding-bottom: 100px;
  margin-top: auto;
  margin-left: auto;
}

.galeria{
  width: 90%
  max-width: 1000px;
  overflow: hidden;
  margin: auto;
}

.galeria ul{
  position: relative;
  width: 100%;
  margin: 60px 0;
}

.galeria ul li{
  font-family: 'Roboto', sans-serif;
  list-style: none;
  display: inline-block;
  padding: 10px 20px;
  color: #079290;
  border-radius: 20px;
  border: solid #fff;
  margin-right: 15px;
  text-transform: capitalize;
  -webkit-box-shadow: 2px 12px 19px 0px rgba(117,117,117,1);
  -moz-box-shadow: 2px 12px 19px 0px rgba(117,117,117,1);
  box-shadow: 2px 12px 19px 0px rgba(117,117,117,1);

}

.galeria ul li:hover , .activo{
  background: #fff;
  color: #262626;
  cursor: pointer;
}

.galeria .fotos{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 60px;
}

.galeria .caja{
  width: 32%;
  height: 50%;
  margin-bottom: 20px;
  overflow: hidden;
  -webkit-box-shadow: 2px 12px 19px 0px rgba(117,117,117,1);
  -moz-box-shadow: 2px 12px 19px 0px rgba(117,117,117,1);
  box-shadow: 2px 12px 19px 0px rgba(117,117,117,1);
}

.galeria .caja img{
  width: 100%;
  height: 100%;
  vertical-align: top;
  object-fit: cover;
}

.caja img:hover {
  transform: scale(1.2);
  transition: all ease 1.5s;
  cursor: pointer;
}



