.header-area h1{
    font-size: 24px;
    color: #816979;
}
.header-area h1 span{
    display: block;
    font-size: 14px;
    color: #35405c;
}
.gallery ul {
    display: flex;
    margin: -10px;
    flex-wrap: wrap;
    padding: 0;
}
.gallery ul li {
    width: 33.33%;
    padding: 10px;
    height: 320px;
    list-style: none;
}
.fetch-img-src {
    display: none;
}
.set-bg {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.gallery .gal-img {
    width: 100%;
    height: 100%;
    /* border: 2px solid #ee6c18; */
}
.video-block{
    height: 315px;
    width: 100%;
}
.map{
    margin-top: 20px;
}
.banner-area{
    padding-top: 54px;
}
.overlay{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(00, 00, 00, 0.8);
    z-index: 9999;
    display: none;
}
.overlay.active{
    display: block;
}
.modal-popup{
    display: none;
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.modal-popup .modal-content{
    width: 640px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 20px 0;
}
.modal-popup .btn-close{
    position: absolute;
    right: 20px;
    top: 20px;
}
.popup-slider .item{
    border: 1px solid #eee;
}
.modal-popup .text-info{
    background: #816979;
    margin: 0 -20px;
    padding: 20px;
    text-align: center;
}
.modal-popup .text-info p{
    color: #fff;
    font-size: 20px;
}
.modal-popup .text-info a{
    display: inline-block;
    background: #02123a;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
}
.modal-popup h2{
    background: -webkit-linear-gradient(#eee, #02123a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.details-item video{
    width: 100%;
    height: auto;
}
@media only screen and (max-width:420px){
    .gallery ul li {
        width: 100%;
    }
    .modal-popup .modal-content{
        max-width: 100%;
    }
    .modal-popup .text-info p{
        color: #fff;
        font-size: 15px;
    }
    .details-item video{
        width: 100%;
        height: auto;
    }
}
@media only screen and (min-width:420px) and (max-width:768px){
    .gallery ul li {
        width: 50%;
    }
    .modal-popup .modal-content{
        max-width: 100%;
    }
    .modal-popup .text-info p{
        color: #fff;
        font-size: 16px;
    }
    .details-item video{
        width: 100%;
        height: auto;
    }
}


/* Popup Overlay */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      display: flex;
      justify-content: center;
      align-items: center;
		z-index: 999999;
    }

    /* Popup Box */
    .popup-box {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      width: 520px;
      text-align: center;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
      animation: bounceIn 0.8s ease;
    }

    .popup-box h2 {
      margin: 0 0 15px;
      color: #333;
		font-size: 26px;
    }
    .popup-box p {
      margin: 8px 0 12px 0;
      font-size: 15px;
      color: #444;
		text-align: left;
    }
.popup-box p a{
	color: #444;
    }

    /* Close Button */
    .close-btn {
      	margin-top: 15px;	
	 	display: inline-block;
		color: #fff;
		background-color: #816979;
		padding: 12px 25px;
		font-weight: 500;
		border: 0;
		-webkit-transition: .5s;
		transition: .5s;
		opacity: 1!important;
		z-index: 1;
		position: relative;
    }
    .close-btn:hover {
      background: #a4161a;
    }

    /* Bounce Animation */
    @keyframes bounceIn {
      0%   { transform: scale(0.5); opacity: 0; }
      60%  { transform: scale(1.2); opacity: 1; }
      80%  { transform: scale(0.9); }
      100% { transform: scale(1); }
    }