/* 14. Filter Gallery */
.awea-filter-gallery {
	margin-bottom: 100px;
}
.awea-filter-gallery-menu {
  text-align: center;
  border-bottom: 1px solid var(--e-global-color-primary);
  padding-bottom: 10px;
}
.awea-filter-gallery-menu button {
  font-size: 1.5rem;
  line-height: 2.1rem;
	border: 0;
	padding: 0;
	color: var(--e-global-color-text);
	margin: 0 16px;
	background-color: transparent;
	cursor: pointer;
}
.awea-filter-gallery-menu button.active {
  color: var(--e-global-color-secondary);
  position: relative;
}
.awea-filter-gallery-menu button:hover {
  color: var(--e-global-color-secondary);
  background-color: transparent;
}
.awea-filter-gallery-menu button.active:before {
  content: "";
  position: absolute;
  background-color: var(--e-global-color-primary);
  height: 4px;
  left: 0;
  bottom: -12px;
  width: 100%;
}
.awea-filter-gallery-menu button:focus {
  background-color: transparent;
}
.awea-single-filter-gallery {
  position: relative;
}
.awea-filter-img {
  padding-top: 100%;
  background-position: center;
  background-size: cover;
}

.awea-filter-img-overlay {
  background-size: cover;
  background-position: center;
  width: 50px;
  height: 50px;
}
.awea-image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: .3s;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
}
.awea-image-overlay:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #333;
  opacity: .8;
  z-index: -1;
}
.awea-single-filter-gallery:hover .awea-image-overlay {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.awea-image-overlay .elementor-lightbox i{
  color: #fff;
}
.awea-image-overlay img {
	width: 35px;
}