@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Raleway:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #B38987;
    /* Rose Gold */
    --secondary-color: #1F3B4D;
    /* Navy Blue */
    --light-color: #FFFFFF;
    /* White */
    --accent-color: #1E3A5F;
    /* Watercolor Navy */
    --dark-color: #000;
    --font-primary: 'Marcellus', serif;
    /* --font-secondary: 'Work Sans', sans-serif; */
    --font-light: 'Raleway', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: #000;
    font-size: 16px;
    padding: 0;
    background-color: var(--light-color);
    overflow-x: hidden;
}

@media (min-width: 768px) {
    body {
        padding: 20px 25px 0 25px;
    }
}

h1, h2, h3, h4, h5, h6, .navbar-brand, button {
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 400;
    color: #ffffff;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 21px;
}

h5 {
    font-size: 17px;
}

h6 {
    font-size: 16px;
}


.btn-custom {
    padding: 14px 42px;
    border: 2px solid;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-primary);
    border-radius: unset;
}

.btn-primary-custom {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-primary-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary-custom {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background-color: transparent;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-light-custom {
    border-color: white;
    color: white;
    background-color: transparent;
}

.btn-light-custom:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-dark-custom {
    border-color: var(--dark-color);
    color: var(--dark-color);
    background-color: transparent;
}

.btn-dark-custom:hover {
    background-color: var(--dark-color);
    color: white;
}

.bg-dark-custom {
    background-color: var(--secondary-color) !important;
}

.bg-light-custom {
    background-color: var(--light-color) !important;
}

.text-primary-custom {
    color: #1C3063;
    width: 80%;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.navbar {
    padding: 5px 0;
    transition: all 0.3s;
    height: auto;
    /* background-color: var(--secondary-color) !important; */
    top: 30px;
}

.navbar.scroll {
    background-color: var(--light-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
    padding: 12px 13px;
}

ul.social-links a {
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: unset;
    font-size: 12px;
    margin: 0 !important;
}

a.navbar-brand img {
    width: 160px;
}

.fixed-top.scroll a.navbar-brand img.light-logo {
    filter: unset;
    display: none;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-dark.scroll .navbar-nav .nav-link {
    color: var(--secondary-color);
}

.navbar-dark.scroll .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar .logo img {
    max-height: 70px;
}

.hero-section {
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-content.text-center h2 {
    color: #fff;
    margin-bottom: 10px !important;
    font-size: 45px;
}
h1 {
    font-size: 70px;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 46%);
    z-index: -1;
}

.hero-content {
    padding: 120px 0 0;
    text-align: center;
}

.stats-section {
    padding: 96px 0;
    /* background-color: #f8f9fa; */
    background-image: url(../images/watercolor.png);
    background-size: cover;
    margin-bottom: 70px;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 64px 0;
    }
}

.stat-item {
    text-align: center;
    padding: 30px 0;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    min-width: 150px;
    color: var(--secondary-color);
}

.neighborhoods-section {
    padding: 0;
}

.neighborhood-card {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.neighborhood-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.neighborhood-card:hover .neighborhood-overlay {
    background: #171819a3;
}

.neighborhood-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(23 24 25 / 17%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 0 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.neighborhood-card:hover .neighborhood-overlay h3 {
    transform: translateY(-140px);
}

.neighborhood-card:hover .neighborhood-overlay p,
.neighborhood-card:hover .neighborhood-overlay .link {
    opacity: 1;
}

.neighborhood-overlay h3 {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0 auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.neighborhood-overlay p {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 40px;
}

.neighborhood-overlay .link {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

.neighborhood-card:hover .neighborhood-overlay .link {
    transform: translateY(100px);
}

.services-section {
    padding: 80px 0 0px;
    background: #f6f6f4;
    margin-top: 0px;
}

@media (max-width: 768px) {
    .services-section {
        padding: 64px 0 25px;
    }
}

.service-card {
    margin-bottom: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 40px;
    }
}

.service-image {
    position: relative;
    padding-bottom: 97%;
    margin-bottom: 32px;
    background-color: #f2f2f2;
}

.service-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-properties {
    padding: 0;
}

/* Property Slider Styles */
.property-slider {
    position: relative;
}

.property-slide {
    min-height: 100vh;
    padding: 144px 30px 24px;
    text-align: right;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.property-slide:before {
    content: '';
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.property-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 0;
}

.property-status {
    color: inherit;
    background-color: #000;
    padding: .5em 2em;
    z-index: 1;
    position: absolute;
    right: 0;
    top: 1em;
    text-transform: uppercase;
}

.property-info {
    position: relative;
    z-index: 2;
}

.property-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: inherit;
    margin: 20px 0;
}

.property-price {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.property-name {
    font-size: 36px;
    transition: all .2s linear;
    opacity: 1;
    font-family: var(--font-primary);
    margin: 8px 0 20px;
}

@media (max-width: 800px) {
    .property-name {
        font-size: 30px;
    }
}

.property-address {
    margin: 20px 0;
}

.property-features span {
    display: inline-block;
    line-height: 1;
}

.property-features span+span {
    padding-left: 5px;
    border-left: 2px solid;
}

.property-link {
    margin-top: 20px;
    text-decoration: none;
    outline: none;
    border-top: 1px inherit solid;
    border-color: inherit;
    color: inherit;
    font-size: 11px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.property-slider .carousel-indicators {
    bottom: 30px;
}

.property-slider .carousel-indicators button {
    width: 100%;
    height: 30px;
    background-color: transparent;
    border: none;
    position: relative;
    margin: 0;
}

.property-slider .carousel-indicators button:after {
    display: block;
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    background-color: currentColor;
    opacity: 0.5;
}

.property-slider .carousel-indicators button.active:after {
    opacity: 1;
}

.property-slider .carousel-control-prev,
.property-slider .carousel-control-next {
    width: 36px;
    height: 36px;
    border: solid 1px #D8D8D8;
    top: 50%;
    margin-top: 80px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 100;
    transition: all 0.2s;
    opacity: 1;
}

.property-slider .carousel-control-prev:hover,
.property-slider .carousel-control-next:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.property-slider .carousel-control-prev {
    left: 30px;
}

.property-slider .carousel-control-next {
    right: 30px;
}

.property-slider .carousel-control-prev i {
    margin-left: -2px;
}

.property-slider .carousel-control-next i {
    margin-left: 2px;
}

@media (max-width: 800px) {

    .property-slider .carousel-control-prev,
    .property-slider .carousel-control-next {
        margin-top: 90px;
    }
}

.open-house {
    position: absolute;
    left: 0;
    bottom: 16px;
    background: #ffffff;
    color: #000000;
    padding: 8px 24px;
    width: fit-content;
    text-transform: uppercase;
}

.testimonials-section {
    padding: 90px 0;
    /* background-color: #f8f9fa; */
}

.testimonials-section h6 {
    color: var(--primary-color);
    font-size: 22px;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 64px 0;
    }
}

.testimonial-item {
    padding: 32px 27px;
    min-height: 272px;
    position: relative;
    /* background-color: white; */
    border-radius: 5px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
}

section.testimonials-section h2 {
    color: #000;
}

.testimonial-item .border {
    display: block;
    border: 1px solid currentColor;
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.testimonial-text {
    margin-bottom: 1.666rem;
    text-transform: none;
}

.video-section {
    padding: 65px 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url(../images/Featured-Video.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.blog-section {
    padding: 96px 0;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 64px 0;
    }
}

.blog-card {
    margin-bottom: 40px;
}

.blog-image {
    height: 300px;
    position: relative;
    margin-bottom: 25px;
    background-color: gray;
}

section.blog-section h2 {
    color: #000;
}

.blog-card * {
    color: #000;
}

.blog-card a {
    text-decoration: unset;
}

.blog-card h4 {
    text-decoration: underline;
}

.blog-image:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
    transition: .3s linear;
    opacity: 0;
}

.blog-card:hover .blog-image:before {
    opacity: 1;
}

.blog-image img {
    vertical-align: top;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.newsletter-section {
    padding: 96px 0;
    background-color: #1c3063;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .newsletter-section {
        min-height: 80vh;
    }
}

form.newsletter-form label {
    text-align: start;
    margin-top: 20px;
}

form.newsletter-form label a {
    text-decoration: underline;
    color: #fff;
}

.newsletter-form .form-control {
    color: white;
    border-color: white;
    background: transparent;
    height: 70px;
    border: unset;
    border-bottom: 1px solid;
    border-radius: unset;
}

.newsletter-form .form-control::placeholder {
    color: white;
    opacity: 1;
}

.work-with-us-section {
    color: white;
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
}

.work-with-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 59%), rgb(0 0 0 / 49%)), url(../images/Why-Work-With-Us.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.instagram-section {
    padding: 96px 0;
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 64px 0;
    }
}

.instagram-grid {
    display: flex;
    flex-wrap: wrap;
}

.instagram-item {
    flex-basis: 20%;
    padding-bottom: 20%;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .instagram-item {
        flex-basis: 50%;
        padding-bottom: 50%;
    }
}

.instagram-image {
    bottom: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: lightgray;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all linear 0.2s;
    transform-origin: bottom;
}

.instagram-item:hover .instagram-image {
    height: 108%;
    width: 104%;
    margin-left: -2%;
}

@media (max-width: 768px) {
    .instagram-item:hover .instagram-image {
        height: 104%;
        width: 104%;
        margin-left: -2%;
    }
}

.footer {
    padding: 60px 0 30px;
    color: #000;
    border-top: 1px solid #eaeaea;
    background: #1F3B4D;
    background-image: url(../images/watercolor.png);
    background-size: cover;
}

@media (max-width: 560px) {
    .footer {
        padding-top: 10px;
    }
}

.footer h3 {
    margin: 0 0 15px 0;
}

.footer-contact {
    margin-bottom: 39px;
}

.footer-contact-item {
    position: relative;
    padding-left: 50px;
    width: 400px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.footer-contact-icon {
    position: absolute;
    left: 0;
    display: block;
}

.footer-contact-title {
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase !important;
}

footer.footer * {
    color: #fff;
}

.col-md-7.footer-contact {
    display: flex;
    gap: 60px;
}

.footer-contact-link {
    color: #666;
    position: relative;
}

.footer-text {
    display: flex;
    width: 100%;
    margin-bottom: 39px;
}

.footer-images {
    max-width: 186px;
    width: 100%;
    margin-right: 43px;
    display: flex;
    justify-content: space-between;
}

.footer-image {
    width: 100%;
    height: 110px;
    /* background: #fff; */
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(33.5);
}

.footer-bottom {
    padding-top: 45px;
    padding-bottom: 30px;
    border-top: 1px solid #ddd;
}

.footer-bottom p a {
    text-decoration: underline;
}

.footer-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
    border: 1px solid;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.line {
    height: 1px;
    background-color: #e4dfdf;
    width: 100%;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px !important;
    }
}

.neighborhood-card.d-flex.flex-column.justify-content-center.align-items-center.text-center.p-5 {
    background: #B76E79;
}

section.services-section h2 {
    color: #000;
}

.service-card h4 {
    color: #000;
}

section.newsletter-section button {
    width: 200px !important;
    height: 70px;
}

p.mt-4.small a {
    color: #fff;
    font-weight: 500;
}

.hero-tabs {
    display: inline-flex;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tab-btn {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: #B76E79;
    /* Rose Gold */
}

.hero-search {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.hero-search .btn-custom {
    padding: 14px 30px;
    width: 260px;
}

.hero-tabs-search-wrapper .tab-pane {
    text-align: center;
    margin: 0 auto;
}

.hero-tabs-search-wrapper ul.nav {
    border: inherit;
}

.hero-tabs-search-wrapper .nav-link {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    border-radius: unset !important;
}

.hero-tabs-search-wrapper .nav-link.active {
    background: #B76E79 !important;
    border-color: #B76E79 !important;
    color: #fff !important;
}


.search-input {
    padding: 10px 15px;
    border: none;
    font-size: 16px;
    width: 100%;
}

.hero-tabs-search-wrapper {
    text-align: center;
}

.hero-tabs-search-wrapper form {
    width: 50%;
    margin: 20px auto 0;
}

input:focus-visible {
    outline: unset;
}


ul {
    list-style: none;
    padding: 0;
}

.socail-links ul {
    display: flex;
    align-items: center;
    justify-content: end;
}





.dropdown-menu {
    background: #fff;
    border-radius: 0;
    border: none;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: 0;
}

@media (min-width: 992px) {

    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
    }
}

.dropdown-item:hover {
    background: #B76E79;
    color: #fff !important;
}

/* ===== MOBILE NAV OVERLAY MENU ===== */
@media (max-width: 991px) {

    /* Make collapse cover full screen */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(31, 59, 77, 0.97);
        /* Navy with transparency */
        padding: 60px 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease-in-out;
        /* z-index: 9999999; */
    }

    /* When open */
    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav .nav-link {
        font-size: 1.2rem;
        color: #fff !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: #B76E79 !important;
    }

    .dropdown-menu {
        position: static;
        background: none;
        border: none;
        /* text-align: center; */
        padding: 0;
    }

    .dropdown-item {
        color: #fff !important;
        font-size: 1rem;
    }

    div#hamburger {
        display: none;
    }

    .dropdown-menu.show {
        opacity: 1;
    }

    .dropdown-item:hover {
        color: #B76E79 !important;
        background: transparent !important;
    }

    .navbar-toggler {
        z-index: 1001;
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse.show {
        backdrop-filter: blur(6px);
    }
}

ul.social-links {
    margin: 0;
    display: flex;
    justify-content: end;
    gap: 15px;
}

.fixed-top.scroll ul.social-links a {
    color: #000 !important;
    border-color: #000;
}

.hamburger {
    font-size: 30px;
    cursor: pointer;
    padding: 15px;
    color: #fff;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background: #1f3b4d;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.3);
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 80px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    z-index: 9999999;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    padding: 15px 25px;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: background 0.3s, color 0.3s;
    border-radius: 8px;
    margin: 5px 10px;
}

.sidebar ul li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar ul li .arrow {
    float: right;
    transition: transform 0.3s;
}

.sidebar ul li.active .arrow {
    transform: rotate(180deg);
}

.sidebar ul li ul.dropdown {
    display: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 5px;
    border-radius: 5px;
}

.sidebar ul li ul.dropdown li {
    padding: 12px 35px;
    margin: 3px 0;
    font-size: 14px;
}

.sidebar ul li ul.dropdown li:hover {
    background: rgba(255, 255, 255, 0.2);
}

div#sidebar a {
    color: #fff;
}

a {
    text-decoration: unset;
}

section.about-wrap h2 {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 0;
}

.about-img img {
    width: 100%;
    height: 710px;
    object-fit: cover;
}

.fixed-top.scroll .hamburger {
    color: #000;
}

div#videoModal {
    background: #000;
}

#videoModal .modal-content {
    background: unset;
    position: unset;
}

#videoModal .modal-header {
    border: unset;
}

#videoModal .modal-header .btn-close {
    color: #fff;
    position: absolute;
    top: 0;
    z-index: 999;
    right: 0px;
    opacity: 1;
    font-size: 30px;
}


#videoModal .modal-dialog.modal-xl {
    height: 92%;
    display: flex;
    align-items: center;
}

.form-control:focus {
    box-shadow: unset;
}

html {
    overflow-x: hidden;
}

.about-wrap.py-5 h4 {
    font-size: 30px;
}

.logo-slider img {
    width: 50%;
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: 0.5s;
}

.logo-slider img:hover {
    opacity: 1;
}

.about-wrap.py-5 h1 {
    font-size: 40px;
}

.footer-contact-item a {
    text-transform: none;
    font-weight: 400;
}

.footer-contact-item p {
    text-transform: capitalize;
    font-weight: 400;
}

.footer-text p {
    margin-bottom: 10px;
}

.footer-text p.small {
    margin-top: 25px;
    margin-bottom: unset;
    font-size: 13px;
}

.top-neighbor-hed {
    text-align: center;
    margin-bottom: 25px;
}

.top-neighbor-hed h2 {
    color: var(--primary-color);
}

.top-neighbor-hed h2 span {
    color: #1C3063;
    display: block;
}

img.scroll-logo {
    display: none;
}

.navbar.scroll img.scroll-logo {
    display: block;
}

.hero-content.text-center h5 {
    margin-bottom: 32px;
    font-size: 20px;
}

/*Inner Banner Start*/
section.hero-section.Innerbanner-main {
    min-height: 86vh;
}
section.hero-section.Innerbanner-main h1.mb-2 {
    font-size: 61px;
}
/*iner Banner End*/

/*Buyers Page Start*/

.img-buyers img {
    width: 100%;
}

.buters-field input {
    width: 100%;
    padding: 7px;
    border-radius: 6px;
    border: 1px solid #000;
    padding: 14px 10px;
    font-family: 'Raleway';
}

.buters-field {
    margin-bottom: 16px;
}

.buyers-check label {
    font-family: 'Raleway';
    font-size: 15px;
}

.buyers-check {
    display: flex;
    align-items: center;
    gap: 7px;
}
.buyers-form-btn {
    margin-top: 19px;
}

.img-buyers img {
    border-radius: 8px;
}

section.buyers-form .row {
    align-items: center;
}

section.buyers-form {
    padding: 100px 0px;
}

.buyers-form-main {
    padding-left: 15px;
    padding-right: 15px;
}

.buyers-video img {
    width: 100%;
    border-radius: 12px;
    height: 620px;
    object-fit: cover;
}

.buyers-video a {
    border: 1px solid #fff;
    padding: 37px 43px;
    border-radius: 50%;
    background: #fff;
    font-size: 27px;
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 40%;
    border: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buyers-video {
    position: relative;
    margin-bottom: 40px;
}
section.video-section.buyers-video {
    margin-bottom: 60px;
}
.buyers-video-main-sec {
    padding: 90px 0px;
}
/*Buyers Page End*/


/*Buyers Faqs Page Start*/

section.video-section.faqs-video {
    margin-top: 50px;
}

.accordion-item {
    background: #B76E79;
    color: #fff;
    margin-bottom: 20px;
}

button.accordion-button {
    background: #B76E79;
    color: #fff;
    padding: 30px 30px;
}

.accordion-button::after {filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(1%) hue-rotate(72deg) brightness(102%) contrast(100%);}

.accordion-button:not(.collapsed) {
    background: #B76E79;
    color: #fff;
}

.faqs-main-sec {
    padding: 90px 0px;
}
/*buyers Faqs Page End*/


/*Seller Consultations Page Start*/
.seller-consu{
  max-width: 1060px;
  margin:auto;
  padding:20px;
  font-family:Arial, sans-serif;
}

.seller-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.seller-grid input{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

.seller-grid input:focus{
  border-color:#000;
}

.seller-btn{
  margin-top:20px;
  padding:14px 40px;
  border:none;
  background:#000;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  font-size:15px;
}
.seller-consultation-sec {
    padding: 90px 0px;
}
.seller-consu-btn {
    margin-top: 28px;
}

/*Seller Consultations Page Start*/



/*instant Home Valuation Page Start*/

.Innerbanner-main .hero-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.Innerbanner-main .hero-content ul li i {
    margin-right: 8px;
}

.Innerbanner-main input.search-input {
    width: 50%;
}

.Innerbanner-main button.btn.btn-light-custom.btn-custom {
    width: fit-content;
}
.proper-worth-sec .about-img img {
    height: 480px;
}
.valuation-text h2 {
    color: #1f3162;
    margin-bottom: 12px;
    font-size: 27px;
}

.valuation-text p {
    line-height: 27px;
}

.valuation-text {
    border: 2px solid #e5b4ac;
    padding: 35px 21px;
    border-radius: 0px 30px;
}
.proper-worth-sec {
    padding: 90px 0px !important;
}
.btn-start {
    text-align: end;
}
.valuation-boxes {
    padding-bottom: 90px;
}
.performed-text h2 {
    color: #000;
    font-size: 30px;
}

.performed-text p a {
    text-decoration: underline;
    font-weight: 600;
    color: #000;
}

.performed-text p {
    line-height: 30px;
}

.valuation-tags p {
    border: 1px solid #e5b4ac;
    padding: 8px 21px;
    width: fit-content;
    border-radius: 30px;
    background: #e5b4ac;
    color: #fff;
    font-size: 15px;
    margin-right: 20px;
}

.valuation-tags {
    display: flex;
    justify-content: end;
    position: relative;
}
.valuation-performed-sec {
    padding: 30px 0px;
    position: relative;
}
.center-line::before {content: '';height: 100%;top: 0;left: 50%;background-color: #e5b4ac;width: 1px;position: absolute;}

.performed-text {
    padding-left: 20px;
}
.performed-text.right-perform-txt {
    text-align: end;
    padding-left: unset;
    padding-right: 20px;
}

.valuation-tags.right-perform-btn {
    justify-content: flex-start;
}

.valuation-tags.right-perform-btn p {
    margin-left: 20px;
}

.valuation-tags::before {
    position: absolute;
    content: '';
    background: #e2b3ad;
    right: -18px;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    top: 15px;
}

.valuation-tags.right-perform-btn::before {
    right: unset;
    left: -16px;
}
.valuation-performed-sec .row {
    position: relative;
    padding: 30px 0px;
}
.valuation-performed-sec.valuation-important-sec {
    padding-top: 30px;
}
ul.list-defer li {
    list-style: disc;
    margin-left: 19px;
}
/*Instant home valuation Page End*/


/*Our marketing page Start*/
.brokrage-sec .about-img img {
    height: 100%;
}
.awards-main-sec {
    background-image: url(../images/awards-back.jpg);
    width: 100%;
    height: 730px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.awards-main-sec::before {
    position: absolute;
    content: '';
    background: #00000096;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.awards-text {
    text-align: center;
    margin-top: 50px;
}

.awards-text p {
    color: #fff;
}
.awards-text h3 {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.work-with-us-section.free-consultation-main-sec {margin-bottom: 60px;margin-top: 40px;}

.free-consultation-main-sec .work-with-us-bg {
    background-image: url(../images/watercolor.png);
}
/*Our marketing Page End*/

/*Seller Guid Videos Page STart*/
.sellers-guid-video .buyers-video img {
    height: 100%;
}
.buyers-video h3 {
    color: #000;
    margin-top: 19px;
    font-size: 24px;
}
.pagination ul {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    width: 100%;
}

.pagination ul li {
    padding: 10px 18px;
}

.pagination ul li:hover {
    background: #e5b4ac;
    color: #000;
    border-radius: 40px;
}

.pagination {
    text-align: center;
}
.pagination ul li.active {
    border-radius: 40px;
    background: #e5b4ac;
}
/*Seller Guid Videos Page End*/


/*Buyers Videos Page Start */
.buyers-video-main-sec.sellers-guide-video-main {
    padding: 10px 0px 90px;
}

.sellers-guide-video-main .buyers-video img {
    height: 100%;
}
.seller-check-vid-main .buyers-video img {
    height: 100%;
}
.faqs-main-sec.selling-checklist-main {
    padding-top: 0px !important;
}
/*Buyers Videos Page End */

.communities-main-sec {
    padding: 100px 0px;
}
.community-portrait-sec .about-img img {
    height: 100%;
}

.community-portrait-sec {
    padding-top: 100px !important;
    padding-bottom: unset !important;
}
.buyers-form-main .footer-social a {
    color: #b08888;
}
.footer-social a img {
    width: 20px;
    filter: brightness(0) saturate(100%) invert(58%) sepia(15%) saturate(534%) hue-rotate(314deg) brightness(96%) contrast(90%);
}
.buyers-form-main .footer-social {
    margin-top: 10px;
}

.buyers-form-main h2 {
    color: #000;
}
.lynette-jaiswal-contact-sec .img-buyers img {
    height: 470px;
    object-fit: cover;
}



/*Contact Page Start*/

.contact-pg {
  position: relative;
  min-height: 100vh;
  color: #fff;
  background-image: url(../images/contact-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 50px 0px;
}

.contact-pg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.contact-pg__container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-pg__heading {
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 29px;
}

.contact-pg__subheading {
  margin-top: 30px;
  margin-bottom: 21px;
  font-size: 19px;
  letter-spacing: 2px;
  color: #fff;
}

.contact-pg__info {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 14px;
}

.contact-pg__info i {
  color: #fff;
  margin-top: 3px;
  font-size: 24px;
}

.contact-pg__license {
  margin-top: 30px;
  font-size: 12px;
  color: #aaa;
  line-height: 1.6;
}

.contact-pg__socials {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.contact-pg__socials i {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-pg__socials i:hover {
  background: #fff;
  color: #000;
}

.contact-pg__form-box input,
.contact-pg__form-box textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 5px;
  color: #fff;
  margin-bottom: 30px;
  font-size: 14px;
}

.contact-pg__form-box textarea {
  min-height: 120px;
  resize: none;
}

.contact-pg__form-box input::placeholder,
.contact-pg__form-box textarea::placeholder {
  color: #fff;
  text-transform: uppercase;
}

.contact-pg__privacy {
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
  margin-top: 30px;
}
.contact-pg__info h5 span a {
    color: #FFF;
    display: block;
    text-decoration: underline;
    padding-top: 7px;
    font-family: 'Raleway';
    font-size: 15px;
    text-transform: capitalize;
}
.contact-pg__info.cont-address h5 span {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    text-transform: capitalize;
}
.contact-pg__details p.contact-pg__license {
    font-size: 15px;
    color: #ffffffcf;
    margin-bottom: 6px;
}
.contact-checkbox {
    display: flex;
    align-items: baseline;
}

.contact-checkbox input {
    width: fit-content;
    margin-right: 10px;
}

.contact-checkbox label {
    font-size: 14px;
    color: #ffffffcf;
}
.contactpg-btn {
    margin-top: 27px;
}
.contact-checkbox label a {
    text-decoration: underline;
    color: #fff;
    text-transform: capitalize;
}
/*Contact Page End*/


.policy-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #0000007d;
        }
        
        .policy-section:last-child {
            border-bottom: none;
        }
        
        .policy-section h2 {
            color: #1a3c6e;
            font-size: 22px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e6b87f;
        }
        
        .policy-section h3 {
            color: #1a3c6e;
            font-size: 18px;
            margin: 20px 0 10px;
        }
        
        .policy-section p {
            margin-bottom: 15px;
        }
        
        .policy-section ul, ol {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .policy-section ul li {
            margin-bottom: 8px;
        }
        
        .highlight-box {
            background-color: #f9f9f9;
            border-left: 4px solid #e6b87f;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        
        /* California Section */
        .california-section {
            background-color: #f0f7ff;
            border: 1px solid #c2d9ff;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }
        
        .california-section h2 {
            color: #1a3c6e;
            border-bottom-color: #e6b87f;
        }
        
        /* Contact Section */
        .contact-section {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
        }
        
        .contact-info {
            margin-top: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .contact-icon {
            width: 20px;
            margin-right: 10px;
            color: var(--primary-color);
        }
        main.privacy-content {
    padding: 70px 0px;
}

.policy-section ul {
    list-style-type: inherit;
}
.policy-main h1 {
    color: #000;
    font-size: 52px;
    margin-bottom: 30px;
}

.policy-main h1 span {
    font-style: italic;
    display: block;
    font-size: 16px;
    padding-top: 7px;
}
section.blog-section.blog-detai-sec-main .blog-image {
    height: 580px;
}