.margin-5 {
    margin-top: -10px;
}
.size_font_12 {
    font-size: 12px;
}
.img_cover {
    object-fit: cover;
    width:100%;
    max-height:600px;
  }
.img_button {
    object-fit: cover;
    width:100%;
    max-height:300px;
    border: 1 1 1 1;
}

.img_button_hover {
    object-fit: cover;
    width:100%;
    max-height:300px;
    border: 1 1 1 1;
    background-color: aqua;
}

figure {
    width: 100%;
    height: 100%;
}

figure:hover {
    background-color: rgb(217, 217, 217);
    opacity: 0.9;
}

.iconos_rrss_50 {
  width: 50px;
}

.iconos_rrss_30 {
    width:30px;
  }

  .text_xs {
    font-size: xx-small;
  }
  
.ekko-lightbox-nav-overlay a {
    color: goldenrod;
}
.gallery-title {
    text-align: center;
	font-weight: 500;
	border-bottom: 1px dotted orange;
	margin-top: 1em;
}
.blue {
	color: #669999;
}
.grid-gallery {
  display: grid;
  grid-auto-rows: 200px;
  gap: 1rem;
  grid-auto-flow: row dense;
}

@media all and (min-width: 320px) {
  .grid-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media all and (min-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (min-width: 1024px) {
  .grid-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

.grid-gallery__item:nth-child(11n+1) {
  grid-column: span 1;
}

.grid-gallery__item:nth-child(11n+4) {
  grid-column: span 2;
  grid-row: span 1;
}

.grid-gallery__item:nth-child(11n+6) {
  grid-column: span 3;
  grid-row: span 1;
}

.grid-gallery__item:nth-child(11n+7) {
  grid-column: span 1;
  grid-row: span 2;
}

.grid-gallery__item:nth-child(11n+8) {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-gallery__item:nth-child(11n+9) {
  grid-row: span 3;
}

.grid-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}