.gallery-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .gallery-area {
    margin: 80px 0;
  }
}
.gallery-area:before {
  position: absolute;
  content: "";
  left: -300px;
  top: 10%;
  height: 634px;
  z-index: -1;
  width: 634px;
  transform: translateY(-10%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(194, 255, 84, 0.2) 0%, rgba(163, 177, 138, 0) 100%);
}
.gallery-area:after {
  position: absolute;
  content: "";
  right: -300px;
  bottom: 10%;
  z-index: -1;
  height: 634px;
  width: 634px;
  transform: translateY(-10%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(194, 255, 84, 0.2) 0%, rgba(163, 177, 138, 0) 100%);
}

.gallery-tab {
  text-align: center;
  margin-bottom: 65px;
  z-index: 2;
}

.tab-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tab-menu li {
  display: inline-block;
  background: #212121;
  box-shadow: inset 0px 0px 10px rgba(6, 6, 6, 0.15);
  border-radius: 5px;
  font-style: normal;
  font-size: 18px;
  color: #FFFFFF;
  padding: 12px 30px;
  cursor: pointer;
  margin: 0 12.5px;
  transition: all 0.5s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tab-menu li {
    margin: 0 8.5px;
  }
}
@media (max-width: 767px) {
  .tab-menu li {
    padding: 10px 15px;
    margin: 0 5.5px;
    margin-bottom: 20px;
  }
}
.tab-menu li:hover {
  background-color: #344E41;
}
.tab-menu li.active {
  background-color: #344E41;
  position: relative;
}
.tab-menu li.active:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #344E41;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.single-gallery {
  min-height: 100%;
}

.single-gallery img {
  width: 100%;
}

.load-more {
  text-align: center;
  margin-top: 50px;
}