/* Slider */

.slider-container {
	position: relative;
	max-width: 100%; /* Adjust as needed */
	height: 700px;
	margin: auto;
	justify-content: center !important; /* Center horizontally */
	align-items: center !important; /* Center vertically */
	overflow: hidden;
}

.slider-wrapper {
	display: flex;
	transition: transform 0.5s ease;
	height: 100%;
}

.slider-slide {
	height: 100%;
	min-width: 100%;
	align-content: center;
	align-items: center;
	justify-content: center;

}

.slider-slide a img{
	width: 100%; /* Ensures the image width fills the container */
	height: 100%; /* Ensures the image height fills the container */
	object-fit: cover; /* Ensures the image covers the area, cropping if necessary */
	margin: 0; /* Removes the offset */
}

.slider-prev, .slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
}

.slider-prev {
	left: 10px;
}

.slider-next {
	right: 10px;
}

/* Ensure Lightbox is on top */
.lightboxOverlay, .lightbox {
	z-index: 99999 !important;
}

@media (max-width: 980px) {
	.slider-container {
	
		height: 400px;
	}
	  
	.moreinfo {
		flex-direction: column;
	}
	
	.generalinfo {
		flex-direction: column;	
	}
	
	.address_case {
	  flex-direction: column;
	  align-items: flex-start;
	  margin-bottom: 25px;
  }
}

@media (max-width: 600px) {
	.slider-slide a img{
		margin-top: 0%;
	}
}

@media (max-width: 479px) {
  	.slider-container {
	  height: 300px!important;
  	}
	  
  	.slider-slide a img{
	  	height: 300px;
  		object-fit: cover;
  	}
}


.no-scroll { overflow: hidden; }

.mobile-image-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
}

.mobile-image-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}

.mobile-image-overlay__panel {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mobile-image-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.mobile-image-overlay__title { font-weight: 600; }

.mobile-image-overlay__close {
  font-size: 22px;
  line-height: 1;
  border: 0;
  background: transparent;
  padding: 6px 10px;
  cursor: pointer;
}

.mobile-image-overlay__body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 12px 28px;
}

.mobile-image-overlay__item {
  margin: 0 0 14px;
}

.mobile-image-overlay__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.mobile-image-overlay__item figcaption {
  font-size: 12px;
  opacity: .7;
  margin-top: 6px;
}


