/* .gallery-list-box .title {
  display: none;
} */
.gallery-list-box ul {
  list-style-type: none;
  padding: 0px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 5px;
}
.gallery-list-box .item {
  background: none;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  position: relative;
  overflow: hidden;
}
.gallery-list-box .owl-carousel .item {
  width: unset;
}

.gallery-list-box .item a > h3 p {
  padding: 0px;
  margin: 0px;
}
.gallery-list-box .item > a > h3 {
	position: absolute;
	bottom:0px;
	left: 0px;
	z-index: 100;
	padding: 1em;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 0px;
	transform: translateY(100%);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	width:100%;
	box-sizing: border-box;
}
.gallery-list-box .item:hover > a > h3 {
  transform: translateY(0px);
}
.gallery-list-box .item img {
  display: block;
}


.gallery-list-box .item .img {
  position: relative;
  text-align: center;
}
.gallery-list-box .item .img img {
  width: 100%;
  display: block;
  max-width: none;
}
.gallery-list-box .item .img img + img {
  height: auto;
  width: auto;
  position: absolute;
  right: 6px;
  bottom: 9px;
  height: 20px;
}
.gallery-list-box .item .glass {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgb(0 0 0 / 20%);
  text-align: center;
  opacity: 0;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out 0s;
}
.gallery-list-box .item:hover .glass {
  opacity: 1;
}
.gallery-list-box .item h3 {
  color: #000;
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  background: rgba(255, 255, 255, 0.3);
}
.gallery-list-box .item .more {
  font-size: 16px;
  display: block;
  position: relative;
  padding-left: 25px;
  display: none;
}


.gallery-list-box .return {
  clear: both;
  float: right;
}

@media screen and (max-width: 720px) {
  .gallery-list-box ul {
    display: block;
  }
  .gallery-list-box .item .glass {
    display: none;
  }
  .gallery-list-box .item {
    width: 100%;
  }
  .gallery-list-box .item .img img {
    height: auto;
    width: 100%;
    display: block;
  }
}
