.ipg-property-gallery {
	position: relative;
	width: 100%;
}

.ipg-swiper {
	position: relative;
	overflow: hidden;
}

.ipg-slide {
	overflow: hidden;
}

.ipg-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.ipg-slide a {
	display: block;
	line-height: 0;
	cursor: pointer;
}

/* Navigation Arrows */
.ipg-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	transition: background-color 0.3s ease, opacity 0.3s ease;
	opacity: 0;
}

.ipg-property-gallery:hover .ipg-arrow {
	opacity: 1;
}

.ipg-arrow:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.ipg-arrow svg {
	width: 50%;
	height: 50%;
}

.ipg-arrow-prev {
	left: 10px;
}

.ipg-arrow-next {
	right: 10px;
}

/* Pagination */
.ipg-swiper .swiper-pagination {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 10;
}

.ipg-swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	opacity: 0.6;
	background-color: #fff;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.ipg-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: #c4a265;
	transform: scale(1.2);
}
