
/*[ Gallery ]
///////////////////////////////////////////////////////////
*/

.wrap-label-gallery {
  width: 950px;
}

.label-gallery {
  border-radius: 10px;
  padding: 2px 11px;
  margin: 5px 0;
}

.label-gallery:hover {
  background-color: #111111;
  color: white;
}

.is-actived {
  background-color: #111111;
  color: white;
}

img.gallery {
  vertical-align: text-top;
  border-style: none;
  height: 498px;
  object-fit: cover;
}

/* ------------------------------------ */
.wrap-gallery {
  width: 100%;
  box-sizing: border-box;
}

.item-gallery {
  width: calc( (100% - 140px) / 3 ) ;
  margin: 30px 15px;
  position: relative;
}

.overlay-item-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(236,29,37,0.8);
  opacity: 0;
}

.overlay-item-gallery:hover {
  opacity: 1;
}

.b-105 {
	margin-bottom: -105px;
}

.btn-show-gallery {
  font-size: 18px;
  color: #222222;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
}

@media (max-width: 812px) {

	.wrap-label-gallery {
	  width: inherit;
	}
	.lable-txt {
	  font-size: 13px;
	}
}

@media (max-width: 768px) {
  .item-gallery {
    width: calc((100% - 110px) / 2);
  }
	.b-105 {
		margin-bottom: inherit;
	} 
	.wrap-label-gallery {
	  width: inherit;
	}
	.lable-txt {
	  font-size: 13px;
	}
}

@media (max-width: 576px) {
  .item-gallery {
    width: calc((100% - 30px) / 1);
  }
  .wrap-gallery {
    padding-left: 0;
    padding-right: 0;
  }

}

