@import "/public/node_modules/bootstrap-icons/font/bootstrap-icons.css";
@import "/public/node_modules/bootstrap/dist/css/bootstrap.min.css";
@import "/public/node_modules/sweetalert2/dist/sweetalert2.min.css";
@import "/public/node_modules/swiper/swiper-bundle.min.css";
@import "/public/fonts/fonts.css";
@import "/public/css/custom.css";

@import "/public/components/HighlightedPropertyGrid/HighlightedPropertyGrid.css";
@import "/public/components/WhatsappChatModal/WhatsappChatModal.css";
@import "/public/components/HomepageSearch/HomepageSearch.css";
@import "/public/components/ContactusForm/ContactUsForm.css";
@import "/public/components/PropertyPopUp/PropertyPopUp.css";
@import "/public/components/SiteHeader/SiteHeader.css";
@import "/public/components/SiteFooter/SiteFooter.css";

/********************************/

* {
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.center {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 1rem;
}

/********************************/

.banner-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(100, 18, 28, 0.25);
}

.banner-section .banner-logo {
    width: 100%;
    max-width: 500px;
}

.banner-section:before {
    background: url("/public/multimedia/images/city.jpg") no-repeat no-repeat left top fixed;
    background-size: cover;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/********************************/

.highlighted-section {
    min-height: 50vh;
    padding: 4rem 0;
}

.highlighted-section h2 {
    color: rgba(100, 18, 28,1);
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 2.8rem;
}

/********************************/

.service-section {
    min-height: 50vh;
    background-color: rgba(100, 18, 28, .9);
    padding: 4rem 0;
}

.service-section h2 {
    color: #d9d5c7;
    font-size: 3.5rem;
    text-transform: uppercase;
}

.service-section p {
    font-size: 1.30rem;
    color: #d9d5c7;
}

.service-section p:nth-child(2) {
    font-size: 1.6rem !important;
}

.service-section img {
    width: 100%;
    max-width: 140px;
    object-fit: cover;
    object-position: center center;
}

/********************************/

.contact-section {
    padding: 5rem 0 3rem;
}

.contact-section h2 {
    color: rgba(100, 18, 28,1);
    max-width: 800px;
    margin-left: auto;
    font-size: 3.5rem;
    padding-left: 1rem;
}

.contact-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/********************************/

@media (max-width: 400px) {
    .highlighted-section h2,
    .service-section h2,
    .contact-section h2 {
        font-size: 2.8rem;
        line-height: 2.3rem;
    }
}