/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 07 2026 | 06:41:05 */
.property-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.location-card {
	position: relative;
	height: 250px;
	background-size: cover;
	background-position: center;
	border-radius: 1.2rem;
	overflow: hidden;
	display: flex;
	align-items: self-end;
	justify-content: center;
	text-decoration: none;
	padding-bottom: 1.5rem;
}

.location-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.location-card:hover .overlay {
    background: rgba(0,0,0,0.55);
}

.location-title {
	position: relative;
	color: #fff;
	font-weight: 500;
	z-index: 2;
	text-align: center;
	font-family: "Nulshock", Sans-serif;
	font-size: 2rem;
	background: #b28a67;
	padding: 1.5rem;
	width: 90%;
}






/* ===== Gallery ==== */


.ba-gallery-wrapper {
    width: 100%;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ba-heading {
    text-align: center;
    margin-bottom: 15px !important;
	font-family: "Nulshock", Sans-serif;
	color: #161616;
    font-size: 3.5rem;
    font-weight: 500;
	line-height: 1.5;
}

.ba-column {
    column-count: 2;
    column-gap: 15px;
}

.ba-item {
    break-inside: avoid;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.ba-item img {
    width: 100%;
    display: block;
    transition: 0.3s ease;
}

.ba-item:hover img {
    transform: scale(1.05);
}
.elementor-lightbox .swiper-button-prev,
.elementor-lightbox .swiper-button-next {
    display: block !important;
    opacity: 1 !important;
}
@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
	.ba-heading {
    font-size: 2.5rem;
}
}