.hero-banner {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
}


.hero-overlay {
  position: relative;
  width: 100%;
  /* height: 100%; */
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* position: absolute; */
  top: 0;
  left: 0;
  z-index: 1;
}
.static-content .hero-img{
  object-position: bottom;
}
.carousel-caption{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 95%;
}

.hero-content {
  padding: 20px;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-content .title{
    color: #fff;
    text-transform: uppercase;
}
.static-content .hero-content {
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

@media (min-width: 1250px){
.hero-banner {
  height: 100vh;
}
.static-content .hero-banner{
  height: 80vh;
}
.hero-overlay{
  height: 100%;
}
.minimized .hero-banner{
  height: 80vh !important;
}
}






/* Overlay Hidden by Default */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 9999;
}
.popup-content > * {
  position: relative;
  z-index: 999;
}
/* Popup Box */
.popup-content {
  /* background: #fff; */
  padding: 30px;
  background-image: url(../image/banner04.png);
  background-size: cover;
  /* border-radius: 10px; */
  width: 100%;
  min-height: 80vh;
  max-width: 992px;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.5s ease;
  position: relative;
  display: flex
;
    align-items: center;
}
.popup-content:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: .7;
}
/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9;
}

/* Active States */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
  opacity: 1;
}


	.postid-618 .hero-overlay::before {
    	background: #000000eb;
	} 
	body .project-slider img {
		object-fit: contain;
	}
	body .project-slider img.carousel-popup-img {
		box-shadow: inherit;
	}
	body .carousel-inner.rounded.shadow-sm {
		box-shadow: initial !important;
	}
	
	@media (max-width:767px) {
		body .hero-banner {
			height: 325px;
		}
			a.navbar-brand img {
		width: 102px;
	}
		body .hero-content .title {
			font-size: 22px;
		}
	}
	
