.lightgallery {
  padding: 0;
  margin: -1px;
  list-style: none;
}

.lightgallery p {
  margin: 0 !important;
}

.lightgallery > li {
  padding: 1px;
  float: left;
  cursor: pointer;
}

.lightgallery > li > picture {
  display: block;
  border: 1px solid rgba(0, 0, 0, .1);
}

.lightgallery > li:first-child {
  width: 67%;
}

.lightgallery > li:nth-child(2),
.lightgallery > li:nth-child(3) {
  width: 33%;
}

.lightgallery > li:nth-child(4),
.lightgallery > li:nth-child(5),
.lightgallery > li:nth-child(6) {
  width: 33.333333%;
}

.lightgallery > li:nth-child(n+7) {
  display: none;
}

.lightgallery > li img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.lightgallery > li[data-more]:after {
    content: attr( data-more );
    font-size: 5vh;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lightgallery > li[data-more] {
    position: relative;
}
