/* Root Css */
:root {
    --dark-bg: #0f172a;
    --light-bg: #fff;
    --black-bg: #000;
    /* --heading-font: "rosart_regularregular"; */
    /* --body-font: "unica_regular"; */
    --heading-font: "Poppins", sans-serif;
    --body-font: "Poppins", sans-serif;
}

/* @font-face {
    font-family: 'rosart_regularregular';
    src: url('../fonts/rosart-regular-webfont.woff2') format('woff2'),
        url('../fonts/rosart-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "pitchsans_regular";
    src: url('../fonts/PitchSansApp-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "unica_regular";
    src: url('../fonts/Unica77LLWeb-Regularc.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */

/************ Global Css ************/
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

* {
    outline: none !important;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

p {
    /* font-weight: 200; */
    font-size: 14px;
}

p:empty {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

body {
    font-family: var(--body-font);
    background: #fff;
    color: #111;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #000;
}

.heading {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 600;
    display: inline-block;
}

.common-btn {
    background: var(--dark-bg);
    border-width: 2px;
    font-weight: 700;
    border-radius: 55px;
    padding: 0.75rem 2.5rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--dark-bg);
    color: var(--light-bg);
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.common-btn:hover {
    color: var(--dark-bg);
    background: transparent;
    transform: translateY(-10px);
}

.btn-outline {
    border-width: 2px;
    font-weight: 700;
    border-radius: 55px;
    padding: 0.75rem 2.5rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--light-bg);
    color: var(--light-bg);
    transition: all 0.3s ease-in-out;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-10px);
}

/* Navbar */
header.site-header {
    background: #fff;
    box-shadow: 0 5px 18px rgb(0 0 0 / 0.1);
    /* border-bottom: 2px solid var(--dark-bg); */
    padding-bottom: 05px;
    padding-top: 05px;
    position: sticky;
    top: 0;
    display: block;
    z-index: 1030;
}

header .site-branding img {
    height: 25px;
    object-fit: contain;
    width: max-content;
}

.main-menu .menu-item>a {
    color: #000;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 16px;
    padding: 0.5rem 1rem;
    position: relative;
    font-family: var(--heading-font);
}

.main-menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--dark-bg);
    transition: 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-menu .menu-item a:hover,
.main-menu .menu-item.current-menu-item a {
    color: var(--dark-bg);
}

.main-menu .menu-item:hover a::after,
.main-menu .menu-item.current-menu-item a::after {
    width: 50%;
}

li.menu-item-has-children:hover {
    position: relative;
}




@media(min-width:992px) {
    ul.sub-menu {
        list-style: none;
        padding-left: 0px;
        display: none;
        position: absolute;
        left: 0px;
        top: 26px;
        background: #fff;
        box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
        border-top: 2px solid #000;
    }

    li.menu-item-has-children:hover ul.sub-menu {
        display: block;

    }

    ul.sub-menu .menu-item {
        padding: 5px 10px;
        /* border-top: 1px solid #ccc; */
        border-bottom: 1px solid #ccc;
    }

    ul.sub-menu .menu-item>a {
        font-size: 14px;
        text-transform: capitalize;
        transition: all 0.3s ease-in-out;
    }

    ul.sub-menu .menu-item:hover>a {
        opacity: 0.7;
    }


}

ul.sub-menu a::after {
    display: none;
}

/* Main Footer */
/* .footer-logo {
    width: 60%;
} */

footer .main-footer {
    padding-top: 80px;
    background-color: var(--light-bg);
}

footer ul {
    padding-left: 0;
    margin-left: 0px;
    list-style: none;
}

/* Copy Right Footer */
.footer-copyright {
    background: #222;
    padding: 05px 0;
    /* margin-top: 50px; */
}

.footer-copyright p {
    color: #969696;
    font-size: 14px;
    margin: 2px 0 0;
}

/*==================== 
	Widgets 
====================== */
.widget.widget-last {
    margin-bottom: 0px;
}

.widget.subscribe p {
    margin-bottom: 18px;
    color: var(--black-bg);
}

.widget li a {
    color: var(--black-bg);
}

.widget li a:hover {
    color: var(--dark-bg);
    text-decoration: none;
}

footer .widget-title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: var(--black-bg);
}

.widget-title span {
    background: var(--black-bg) none repeat scroll 0 0;
    display: block;
    height: 1px;
    margin-top: 16px;
    position: relative;
    width: 20%;
}

/* .widget-title span::after {
    background: var(--black-bg);
    content: "";
    height: inherit;
    position: absolute;
    top: 6px;
    width: 50%;
} */

.widget-title.text-center span,
.widget-title.text-center span::after {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

footer .social-links i {
    display: inline-block;
    background-color: var(--black-bg);
    color: var(--light-bg);
    padding: 9px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
}

footer .social-links a {
    margin: 0 5px;
    min-width: 34px;
    display: inline-flex;
    transition: all 0.3s ease-in-out;
}

footer .social-links a:hover {
    transform: translateY(-10px);
}

.footer_inner_info {
    margin-bottom: 15px;
}

.footer_inner_info span:first-child {
    margin-right: 10px;
    display: inline-block;
}

.footer_inner_info span:last-child {
    font-size: 18px;
}

.footer_inner_info a:hover {
    color: #aaa;
}

.footer-menu li {
    padding: 5px 0px;
}

.footer-menu li>a {
    font-size: 18px;
}

/* Hero Banner */
.hero-banner-video {
    position: relative;
    width: 100%;
    height: 100vh;
    /* full screen height */
    overflow: hidden;
}

.hero-banner-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

/* About Us Page */
.about-page-section {
    margin-top: 70px;
    height: 82vh;
}

.about-page-section .about-content {
    background-color: #f8f6f6;
    min-height: 100%;
    padding: 2rem;
}

.about-content h1 {
    /* font-size: 80px; */
    font-size: 28px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 14px;
}

.owner-image {
    height: 450px;
    width: 100%;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0px -80px;
}

/*  */
.inner-propery-section {
    margin-top: 20px;
}

.inner-propery-section .row {
    justify-content: center;
}

.property-main-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.property-inner-grid {
    width: calc(100% / 2 - 8px);
}

.property-inner-grid img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.property-inner-grid a {
    position: relative;
    display: inline-block;
    height: 100%;
}

.property-inner-grid a h3 {
    opacity: 0;
    position: absolute;
    top: 50%;
    font-size: 20px;
    left: 16%;
    color: #fff;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.property-inner-grid a::after {
    content: '';
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
}

.property-inner-grid a:hover h3 {
    opacity: 1;
}

.property-inner-grid a:hover::after {
    opacity: 1;
}

.property-modal-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
}

.property-modal-inner {
    width: 50%;
}

.modal-content-text {
    padding-right: 2rem;
    border-right: 2px solid #b5b5b5;
    margin-right: 20px;
}

.property-modal-body.modal-content {
    border-radius: 0;
}

.modal-content-img img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.property-modal-grid .owl-dot span {
    transition: all 0.3s ease-in-out;
}

.property-modal-grid .owl-dot.active span {
    width: 40px;
}

button.btn-close {
    position: absolute;
    right: 20px;
    opacity: 1;
    color: #fff;
    top: 20px;
}


.info-card-section {
    padding-top: 70px;
    height: 90vh;
}

.info-cards {
    /* background-color: var(--light-bg);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    /* padding: 30px; */
    /* min-height: 100%; */
    /* margin-bottom: 30px; */
}

/* .btn-lg-square {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background: var(--black-bg);
    color: var(--light-bg);
    border-radius: 5px;
}

.info-cards .fa-arrow-right {
    font-size: 24px;
} */

.contact-form-section {
    padding-top: 70px;
    padding-bottom: 80px;
}

.form-floating .form-control {
    width: 100%;
    max-width: 100%;
    border: 1px solid #69727d;
    background-color: transparent;
    color: #1f2124;
    vertical-align: middle;
    flex-grow: 1;
    color: #666;
    background-color: #f8f8f8;
    border-style: solid;
    border-width: 0px;
    border-radius: 0px;
    padding: 12px 15px !important;
}

.form-floating .form-control:hover,
.form-floating .form-control:focus {
    box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
}

textarea.wpcf7-form-control {
    height: 110px;
}

input.wpcf7-form-control.wpcf7-submit {
    background: var(--black-bg);
    color: var(--light-bg);
    border-radius: 34px;
    padding: 15px 55px;
    font-size: 16px;
}


/* ============= Responsive Css ================ */
@media (max-width:991px) {
    header .site-branding {
        width: 65%;
    }

    ul#menu-header-menu {
        margin-left: 10px;
    }

    header.site-header {
        padding-bottom: 0px;
        padding-top: 0px;
    }

    button.navbar-toggler {
        padding: 0px;
        border: 0;
        box-shadow: none !important;
    }

    button.navbar-toggler .fas {
        font-size: 20px;
    }

    .menu-header-menu-container {
        position: fixed;
        width: 100%;
        background: #ffff;
        right: -100%;
        transition: all 0.3s ease-in-out;
        padding-bottom: 50px;
    }

    .main-menu .menu-item>a {
        width: 100%;
    }

    .navbar-collapse.show .menu-header-menu-container {
        right: 0px;
    }

    header .menu-item {
        width: 100%;
        padding: 10px 0px;
    }

    .business-sldier p>br {
        display: none;
    }

    ul.sub-menu {
        margin-left: 28px;
        padding-left: 0;
        list-style: none;
        padding-right: 25px;
        margin-top: 8px;
    }

    ul.sub-menu .menu-item {
        padding: 0px;
        border-bottom: 1px solid #ccc;
    }

    ul.sub-menu .menu-item>a {
        font-size: 14px;
        padding-left: 0;
    }
}

/* ============= Responsive Css ================ */
@media (max-width:767px) {
    .hero-banner-video {
        height: 80vh;
    }

    .about-page-section {
        margin-top: 20px;
    }

    .owner-image {
        height: 350px;
        width: 100%;
    }

    .owner-image img {
        object-position: 0px -40px;
    }

    .about-content h1 {
        font-size: 40px;
        margin-bottom: 0px;
    }

    .about-page-section .about-content {
        padding: 1rem;
        /* text-align: justify; */
    }

    .info-card-section {
        padding-top: 20px;
    }

    .info-card-section .col-md-4 {
        margin-top: 20px;
    }

    .heading {
        font-size: 30px;
    }

    .contact-form-section {
        padding-top: 40px;
        padding-bottom: 10px;
    }

    .property-inner-grid {
        width: calc(100% / 1);
        margin-bottom: 13px;
    }

    .inner-propery-section {
        margin-top: 30px;
    }

    .property-modal-inner {
        width: 100%;
    }

    .modal-content-text {
        padding-right: 0;
        border-top: 2px solid #b5b5b5;
        margin-right: 0;
        margin-top: 20px;
        padding-top: 20px;
        border-right: 0;
    }

    .modal-content-img img {
        height: auto;
        max-height: 260px;
        min-height: 260px;
    }

    .property-modal-grid {
        flex-direction: column-reverse;
        padding: 1.25rem;
    }

    .modal-header h3 {
        padding-right: 30px;
    }

    header .site-branding img {
        height: 17px;
    }
    .about-page-section{
        height: auto;
    }
}

.modal-header h3 {
    font-size: 20px;
}

footer#footer a {
    display: none;
}

.page-id-25 footer#footer a {
    display: block;
}

.page-id-389 section.inner-propery-section {
    height: 89vh;
}