/*PORTFOLIO MENU*/

.PORTFOLIO .heading-text {
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center;
}

.PORTFOLIO .heading-text span {
  font-weight: 100;
}

.PORTFOLIO ul {
  list-style: none;
}

/* Responsive image gallery rules begin*/

.PORTFOLIO .image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 10px;
  margin-left:-35px;

}

.PORTFOLIO .image-gallery > li {
  flex-basis: 350px; /*width: 350px;*/
  position: relative;
  cursor: pointer;
}

.PORTFOLIO .image-gallery::after {
  content: "";
  flex-basis: 350px;
}

.PORTFOLIO .image-gallery li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 0px;
  filter: brightness(70%);
  opacity: .8 !important;
  
}

.PORTFOLIO .image-gallery li img:hover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 0px;
  filter: brightness(90%);
  opacity: 1 !important;
  transition: all 0.2s 0.1s ease-in-out;
}

.TL{
   position: absolute;
   top: 50%;
   left: 25px;
	  text-shadow: 2px 1px 0px rgba(57, 57, 57, 0.502);
	  font-weight: bold;
	  color: white;
	  cursor: pointer;
	  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	   font-size: 24px;
}

.PORTFOLIO .image-gallery-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  border-radius: 0px;
  /* center overlay text */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.PORTFOLIO .image-gallery li:hover .overlay {
  transform: scale(0);
  opacity: 1 !important;

}
/*END PORTFOLIO MENU*/

/*Landing MAIN PAGE*/

.gallery-Landing {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-Landing .overlay {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
  background: #000;
  display: blocK;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 8;
}
.gallery-Landing .info {
  position: relative;
  width: 100%;
  z-index: 999;
  color: #fff;
  display: block;
  text-align: center;
  padding: 30px 20px 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.gallery-Landing .info h2 {
  font-family: "Lustria", serif;
  font-size: 30px;
  line-height: 50px;
}
.gallery-Landing .info p {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 30px;
  padding-bottom: 20px;
}
.gallery-Landing .info .btn {
  line-height: 30px;
  display: inline-block;
  padding: 0 10px;
  border: 1px solid #fff;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-family: "Lato", sans-serif;
  margin-bottom: 20px;
}
.gallery-Landing .info .description {
  display: none;
}
.gallery-Landing .bg-img img {
  position: absolute;
  top: 0;
  min-width: 100%;
  min-height: 100%;
}
/* END Landing MAIN PAGE*/


