.gallery-container {
    display: flex;
    flex-direction: column;
}

.thumbnails-container {
    width: 100%;
    height: 600px;
}
@media(max-width: 728px){
  .gallery-container{
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .thumbnails-container{
    display:none;
  }
}

.thumbnail {
    cursor: pointer;
    float: left;
    overflow: hidden;
    position: relative;
    display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 25px;
    background-position: center center;
    background-size: cover;
}

.thumbnail:nth-child(1){
    width: 50%;
    height: 100%;
}
.thumbnail:nth-child(2){
    width: 50%;
    height: 50%;
}
.thumbnail:nth-child(3){
    width: 25%;
    height: 50%;
}
.thumbnail:nth-child(4){
    width: 25%;
    height: 50%;
}

.thumbnail:last-child span {
	{#padding:30% 0;#}
	text-align: center;
/* 	width:100%; */
	font-size: 30px;
	color: #fff;
	font-weight: bold;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index:200;
    background-position: center center;
    background-size: cover;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 80%;
}
.close-btn {
    position: absolute;
    top: 45px;
    right: 45px;
    font-size: 40px;
    font-weight:bold;
    color: #fff;
    cursor: pointer;
}
#lightbox-img{display:none;}
@media(max-width: 728px){
   .lightbox {
    display: block;
    position: relative;
     height: auto;
     z-index:210;
  }
  .close-btn {
    display:none;
  }
  #lightbox-img{display:block;}
}

.lightbox-navigation .next, .lightbox-navigation .prev{
    top: 50%;
    height: 80px;
    width: 80px;
}
.lightbox-navigation .next{
    right:100px;
    pointer-events: auto;
    position: absolute;
    /* height: 100%; */
    width: 80px;
}

.lightbox-navigation .prev{
    left:100px;
    pointer-events: auto;
    position: absolute;
    /* height: 100%; */
    width: 80px;
}
.lightbox-navigation .next svg, .lightbox-navigation .prev svg{
    fill: #6e6e6e;
    transition: 0.3s all ease-in;
  filter: drop-shadow(3px 5px 2px rgb(255 255 255 / 0.4));
}
@media(max-width: 728px){
  .lightbox-navigation .next, .lightbox-navigation .prev{
    top:calc(90% - 10px);
    z-index: 200;
    width:40px;
  }
  .lightbox-navigation .next svg, .lightbox-navigation .prev svg{
    fill: #fff;
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
  }
}
.lightbox-navigation .next:hover svg, .lightbox-navigation .prev:hover svg{
    fill: #fff;
}
.imgdesc{
  position: absolute;
  bottom:0;
  padding: 20px 140px;
  width:100%;
  background: #fff;
  text-align: center;
}
.imgdesc span{     
  color: #d5d5d5;
  font-size: 32px;
  position: absolute;
  right: 40px;
  top: 10px;
}
@media(max-width: 728px){
  .imgdesc{ padding:20px 45px 60px 15px; position: relative;}
  .imgdesc span{ font-size: 16px; right: calc(50% - 20px); top:calc(90% - 13px); }
}
.imgdesc span i{color:#191919; }