/* General Styles */
/* body {
    font-family: 'Roboto', sans-serif;
}

#top-bar {
    background-color: #f8f8f8;
}

#header {
    background-color: #333;
}

#footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0; */
/* } */

/* #footer .social-icon {
    margin-right: 10px;
} */

/* Gallery Styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 10px);
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item:not(.visible) {
    display: none;
}

/* Slider Styles */
.slider-element {
    position: relative;
    height: 550px;
}

.slider-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-images img.active {
    opacity: 1;
}

.real-estate-info-wrap {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.real-estate-price {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.real-estate-price h3 {
    color: #FFF;
    font-size: 44px;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 991px) {
    .real-estate-price {
        position: relative;
        margin-top: 15px;
    }
    .slider-element .heading-block > h2 {
        font-size: 24px;
    }
    .slider-element .heading-block {
        width: auto !important;
    }
}

/* Footer Styles */
#footer {
    margin-top: 85px;
}

.real-estate-item {
    margin: 0 15px;
}
.amenity-item {
    font-size: 0.875em; /* This reduces the font size by approximately 2pt */
}