
:root {
  --red: #EF4060;
  --green: #50B848;
  --blue: #33A3DC;
  --yellow: #FFDD00;
  --d-grey: #686463;

}
@font-face {
    font-family: 'Agenda';
    src: url('fonts/agenda-one-thin.otf') format('truetype');
    font-weight: 200;
}

@font-face {
    font-family: 'Agenda';
    src: url('fonts/agenda-one-light.otf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: 'Agenda';
    src: url('fonts/agenda-one-regular.otf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Agenda';
    src: url('fonts/agenda-one-bold.otf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Agenda';
    src: url('fonts/agenda-one-black.otf') format('truetype');
    font-weight: 700;
}





html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Agenda', sans-serif;
    font-size: 18px; 
    color: #2D2D2D;
    font-weight: 400;
}

/* Preloader overlay */
.preloader-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* If the user has already seen it, never render/show it */
html.skip-preloader #preloader {
  display: none !important;
}

.preloader-overlay.preloader-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}



a{-webkit-transition: all 0.32s ease-out; -moz-transition: all 0.32s ease-out; -o-transition: all 0.32s ease-out; -ms-transition:  all 0.32s ease-out; transition: all 0.32s ease-out; text-decoration:none;}
a:hover{color: var(--red); text-decoration: none;}
.privacy-policy-content a{color: #000;}
.privacy-policy-content a:hover{color: #085418;}

::placeholder { color: 000; opacity: 1; }
:-ms-input-placeholder { color: 000;}
::-ms-input-placeholder { color: 000;}

/*COMMOM STYLES*/
.ff-mo{font-family: 'Montserrat';}

.fw-bl{font-weight: 700;}
.fw-bo{font-weight: 600;}
.fw-me{font-weight: 500;}
.fw-re{font-weight: 400;}
.fw-li{font-weight: 300;}
.fw-th{font-weight: 200;}

.fs-100{font-size: 100px;}
.fs-60{font-size: 60px;}
.fs-42{font-size: 42px;}
.fs-24{font-size: 24px;}
.fs-22{font-size: 22px;}
.fs-20{font-size: 20px;}
.fs-16{font-size: 16px;}
.fs-14{font-size: 16px;}


.ls-1{letter-spacing: 1px;}
.ls-2{letter-spacing: 2px;}

.lh-2{line-height: 2;}


.bg-grey{background-color: #484c4c!important; }
.bg-dark-grey{background-color: var(--d-grey);}

.text-brand{color:#da1f31!important;}
.text-black{color:#000!important;}
.text-white{color:#FFF!important;}

.btn-brand{background-color: #000; border:none; display: inline-block;  transition: all 0.32s ease-out; color: #CBC0A8; font-weight: 200; font-size: 18px; padding: 15px 25px; letter-spacing: 1.5px; border-radius: 35px; }
.btn-brand:hover{background-color: #085418; color: #FFF!important;}

 .mh-200{min-height: 300px;}


.has-bg{background-size: contain; background-image: url('../images/bg.png'); background-repeat: no-repeat; background-position: left; height: 100%; }
.overlay{width: calc(100% - var(--bs-gutter-x) * 1); height: 100%; background-color: rgba(0,0,0,0.3); position: absolute; left: var(--bs-gutter-x) * .5; top: 0;}

.img-linked{
    -webkit-transition: all 0.32s ease-out;
    -moz-transition: all 0.32s ease-out;
    -o-transition: all 0.32s ease-out;
    -ms-transition:  all 0.32s ease-out;
    transition: all 0.32s ease-out;
}
.img-linked:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.text-linked{color: inherit;}
.text-linked:hover{color: inherit; text-decoration: underline;}

/* ========== HEADER / FIXED NAV (screenshot look) ========== */
#fixedNav {
    position: fixed;
    z-index: 9999;
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, #f8f5f0 0%, #f0ebe3 50%, #eae4db 100%);
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 10px;
}

#fixedNav .nav-logo {
    height: 76px;
    width: auto;
    max-height: 89px;
    object-fit: contain;
    margin: 10px 10px 10px 20px;
    padding-left: 11%;
    /* Subtle motion + glow to make logo feel alive */
    animation: logoFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.16));
    transition: transform 0.4s ease, filter 0.4s ease;
}

#fixedNav .nav-logo:hover {
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
    animation-play-state: paused;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

#fixedNav .nav-link {
    font-size: 0.9375rem;
    letter-spacing: 0.2em;
    color: #5e5e5e;
    font-weight: 400;
}

#fixedNav .nav-link:hover {
    color: #231f20;
}

#fixedNav .nav-link-active{
    color: #231f20;
}

#fixedNav .nav-register-btn {
    padding: 0.5rem 1.75rem;
    font-size: 1.35rem;
    letter-spacing: 0.18em;
    /* font-weight: 500; */
    color: #fff;
    background-color: #a8956e;
    border: none;
    border-radius: 0 0px 20px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

#fixedNav .nav-register-btn:hover {
    background-color: #938258;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile hamburger + nav */
#fixedNav .navbar-toggler {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    padding: 0;
    z-index: 10001;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#fixedNav .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

#fixedNav .navbar-toggler .hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #231f20;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

#fixedNav .navbar-toggler .hamburger-line + .hamburger-line {
    margin-top: 5px;
}

#fixedNav .navbar-toggler.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#fixedNav .navbar-toggler.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

#fixedNav .navbar-toggler.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    background: linear-gradient(to bottom, #f8f5f0 0%, #f0ebe3 50%, #eae4db 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9998;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 0.9375rem;
    letter-spacing: 0.18em;
    color: #5e5e5e;
}

.mobile-nav-link:hover {
    color: #231f20;
}

.mobile-nav-link-active {
    color: #231f20;
}

.mobile-nav-register {
    font-weight: 500;
}

body.mobile-nav-open {
    overflow: hidden;
}


footer{border-top: 2px solid #000;}

.site-footer{
    background-color: #f7f3eb;
}

.site-footer .footer-inner{
    padding-top: 40px;
    padding-bottom: 32px;
}

.site-footer .footer-address{
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #231f20;
}

/* .site-footer .footer-logo img{
    max-width: 220px;
} */

.site-footer .footer-social-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.25);
    color: #231f20;
    font-size: 18px;
    background-color: #fff;
    -webkit-transition: all 0.32s ease-out;
    -moz-transition: all 0.32s ease-out;
    -o-transition: all 0.32s ease-out;
    -ms-transition:  all 0.32s ease-out;
    transition: all 0.32s ease-out;
}

.site-footer .footer-social-link:hover{
    background-color: #231f20;
    color: #fff;
    border-color: #231f20;
}

@media screen and (max-width: 767px){

    .neighbourhood-eyebrow {
        font-size: 35px !important;
    }

    .neighbourhood-foreground {
        display: none;
    }
    .site-footer .footer-inner{
        padding-top: 32px;
        padding-bottom: 28px;
    }

    .site-footer .footer-logo img{
        max-width: 180px;
    }

    .site-footer .footer-social-link{
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

.hero-caption{
    position: absolute;
    bottom: 15%;
    left: 15%;
    opacity: 0;
  
}
.vid{margin-bottom: -8px;}
.everpine-txt{
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(-50%, -50%);

}



#registrationForm .form-control{border-radius: 0; border: 1px solid #000; margin-bottom: 27px;}
#registrationForm .form-control:-ms-input-placeholder { color: #495057;}
#registrationForm .form-control::-ms-input-placeholder { color: #495057;}
#registrationForm  label{font-size: 16px; color: #0A0A0A;}
#registrationForm  select {
    display: block;
   line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    margin: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%236D470F%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

#carouselSlider  .carousel-control-next-icon{
    background-image: url('../images/misc/next.png');
}

#carouselSlider  .carousel-control-prev-icon{
    background-image: url('../images/misc/prev.png');
}
#carouselSlider  .carousel-control-prev-icon,
#carouselSlider  .carousel-control-next-icon{
    width: 63px;
    height: 63px;
}

#carouselSlider  .carousel-control-next, 
#carouselSlider .carousel-control-prev{
    opacity: 1;
    width: auto;
}


.map-link{
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    display: block;
    padding: 20px 30px;
    letter-spacing: 1px;
}
.map-link:hover{color: #4A5056; cursor: pointer;}
.map-link img{margin-right: 20px; }

/* Register section */
.register-section{
    background-color: #E5DDCF;
    padding: 60px 0 0 0;
}

.register-section .container{
    max-width: 1200px;
}

.register-left{
    /* border-right: 1px solid #C0B299; */
    display: flex;
    align-items: stretch;
    min-height: 100%;
}

.register-left-inner{
    padding: 60px 0px 60px 0px;
}

.register-heading{
    letter-spacing: 2px;
    text-transform: uppercase;
}

.register-subtitle{
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5C9748;
}

.register-copy{
    line-height: 1.7;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.register-map-wrapper{
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.register-map-img{
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay text on register image */
.register-hero-overlay{
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.5) 100%); */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    text-align: start;
    padding: 2rem;
    margin-left: 60px;
    margin-top: 60px;
}

.register-hero-eyebrow{
    font-size: 2.35rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0 0px;
}

.register-hero-title{
    font-size: 52px;
    /* font-weight: 700; */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0 0px;
    line-height: 1.1;
}

.register-hero-subtitle{
    font-size: 1.9375rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
    line-height: 1.5;
    
}

.register-map-caption{
    margin-top: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.register-form-wrapper{
    padding: 10px 0 40px 40px;
}

#registrationForm .form-control{
    background-color: transparent;
    border-radius: 0;
    border-color: #3A3A3A;
    padding: 0.9rem 0.9rem;
    font-size: 16px;
}

/* Hide floating labels so placeholders act as field titles */
#registrationForm .form-floating > label{
    opacity: 0;
    visibility: hidden;
}

/* Question + checkbox / radio styling */
#registrationForm .form-check-label{
    font-size: 14px;
    letter-spacing: 0.5px;
}

#registrationForm .form-check-input{
    width: 18px;
    height: 18px;
    border-radius: 0;
    border: 1px solid #3A3A3A;
    margin-top: 0.25rem;
    background-color: #e5ddd0;
}

#registrationForm .form-check-input:checked{
    background-color: #000;
    border-color: #000;
}

.register-question-title{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #231f20;
}

.register-investing-owning{
    gap: 2.5rem !important;
}

#registrationForm .register-checkbox-inline .form-check-input{
    width: 18px;
    height: 18px;
    border-radius: 0;
    border: 1px solid #3A3A3A;
    margin-top: 0.15rem;
    margin-right: 0.5rem;
}

#registrationForm .register-checkbox-inline .form-check-label{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #231f20;
}

#registrationForm .register-radio-inline .form-check-input{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #3A3A3A;
    margin-top: 0.15rem;
    margin-right: 0.5rem;
}

#registrationForm .register-radio-inline .form-check-label{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #231f20;
}


.btn-submit{
    background-color: #D4C6A7;
    color: #111;
    border-radius: 0 0px 40px 0;
    padding: 16px 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    width: 30%;
}

.btn-submit:hover{
    background-color: #C9B794;
    color: #111!important;
}

.register-cta{
    text-align: left;
}

.register-legal{
    font-size: 12px;
    line-height: 1.5;
    color: #5e5e5e;
    letter-spacing: 0.02em;
}

#spark-registration-form .form-control:focus,
#spark-registration-form .form-select:focus,
#spark-registration-form .form-check-input:focus,
#spark-registration-form .btn:focus {
    outline: none;
    box-shadow: none;
    border-color: inherit;
}

/* Neighbourhood page */
.neighbourhood-section{
    background: linear-gradient(to bottom, #ccc1ac 0%, #ccc1ac 40%, #cbbfa7 100%);
    padding-top: 96px;
    padding-bottom: 56px;
}

.neighbourhood-hero{
    padding: 40px 7%;
    align-items: flex-start;
}

.neighbourhood-eyebrow{
    font-size: 80px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #333;
}

.neighbourhood-title span{
    display: block;
    font-size: 48px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2f7a3b;
    font-weight: 400;
}

.neighbourhood-foreground {
    z-index: 20;
    bottom: 4%;
    left: 5%;
    max-width: 16vw;
    pointer-events: none;
}



.btn-neighbourhood-register{
    background-color: #D4C6A7;
    color: #111;
    border-radius: 0 0 40px 0;
    padding: 16px 48px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
}

.btn-neighbourhood-register:hover{
    background-color: #C9B794;
    color: #111 !important;
}

/* Gallery page */
.gallery-section{
    background: linear-gradient(to bottom, #ccc1ac 0%, #ccc1ac 40%, #cbbfa7 100%);
    padding-top: 96px;
    /* padding-bottom: 40px; */
}

.gallery-hero{
    padding: 40px 7%;
    align-items: flex-start;
}

.gallery-eyebrow{
    font-size: 24px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #333;
}

.gallery-title span{
    display: block;
    font-size: 40px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2f7a3b;
}

.gallery-hero-toggle{
    margin-top: 12px;
}

.gallery-toggle-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border: none;
    background: none;
}

.gallery-toggle-label{
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.gallery-toggle-btn.active .gallery-toggle-label{
    color: #2f7a3b;
}

.gallery-toggle-btn:not(.active) .gallery-toggle-label{
    color: #231f20;
}

.gallery-toggle-btn + .gallery-toggle-btn{
    margin-left: 40px;
}

.gallery-toggle-btn img{
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1);
    opacity: 0.7;
}

.gallery-toggle-btn.active img{
    /* tint active SVG toward green */
    filter: invert(26%) sepia(74%) saturate(601%) hue-rotate(84deg) brightness(92%) contrast(94%);
    opacity: 1;
    object-fit: contain;
}

.gallery-hero-image-wrapper{
    margin-top: 10px;
}

.gallery-hero-image-wrapper img{
    display: block;
    width: 100%;
    height: auto;
}

/* Exterior gallery: top->bottom gradient overlay */
.gallery-exterior-slide {
    position: relative;
}

.gallery-exterior-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(205, 194, 173, 0.95) 0%,
        rgba(205, 194, 173, 0.0) 30%
    );
}

.gallery-carousel{
    display: none;
}

.gallery-carousel.active{
    display: block;
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon{
    filter: invert(0) brightness(0);
}

.neighbourhood-layout {
    background: linear-gradient(0deg, rgba(203, 192, 168, 0.30) 0%, rgba(203, 192, 168, 0.30) 100%), #FFF;
}

/* Container for the entire carousel */
.multi-carousel-container {
    cursor: grab;
    margin: 2.5rem auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    /* height: calc(
      100vh - 5rem
    ); Adjusted height to account for top and bottom margins */
  }
  /* Cursor styles for dragging */
  .multi-carousel-container.dragging,
  #multiCarousel.dragging {
    cursor: grabbing;
  }
  /* Wrapper for all slides */
  .multi-carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
    /* height: 100%; */
  }
  .multi-carousel-inner.initialized {
    visibility: visible;
  }
  /* Individual slide - dynamic sizing based on container width */
  .multi-carousel-item,
  .clone {
    box-sizing: border-box;
    flex: 0 0 var(--slide-width, 75%);
    /* opacity: 0.25; */
    padding: 0 15px;
    position: relative;
    transition: opacity 0.3s ease;
    height: 85%;
  }
  /* Center slide gets full opacity with enhanced fade-in effect */
  .multi-carousel-item.center,
  .clone.center {
    opacity: 1 !important;
  }
  /* Enhanced fade-in effect for newly centered slides */
  .multi-carousel-item.fade-in,
  .clone.fade-in {
    animation: slideCenter 0.6s ease forwards;
  }
  @keyframes slideCenter {
    0% {
      opacity: 0.25;
    }
    100% {
      opacity: 1;
    }
  }
  /* Control buttons */
  .multi-carousel-control-prev,
  .multi-carousel-control-next {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    width: 40px;
    z-index: 10;
  }
  /* Alignment based on space occupied by side margins */
  .multi-carousel-control-prev {
    left: calc((100% - var(--slide-width, 75%)) / 4.25 - 20px);
  }
  .multi-carousel-control-next {
    right: calc((100% - var(--slide-width, 75%)) / 4.25 - 20px);
  }
  .multi-carousel-control-prev:hover,
  .multi-carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  /* Image container with 100% height */
  .img-container {
    /* border-radius: 1.5rem; */
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  /* Image styling */
  .img-container img,
  #carouselInner img {
    height: 100%;
    -moz-user-select: none;
    object-fit: cover;
    /* object-position: top; */
    pointer-events: none;
    transition: transform 0.3s ease, filter 0.15s ease;
    user-select: none;
    -webkit-user-select: none;
    width: 100%;
  }
  /* Hover animation */
  .img-container:hover img {
    transform: translateZ(0) scale(1.02);
  }
  /* Item number styling */
  .item-number {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: inline-flex;
    font-size: 120%;
    font-weight: bold;
    height: 35px;
    isolation: isolate;
    justify-content: center;
    left: 1rem;
    position: absolute;
    top: 1rem;
    width: 35px;
    z-index: 2;
  }
  /* Progress bar container */
  /* .progress-bar-container {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 2.5px;
    bottom: 1rem;
    height: 5px;
    left: 1rem;
    opacity: 0;
    position: absolute;
    right: 1rem;
    transition: opacity 0.3s ease;
    z-index: 2;
  } */
  /* Progress bar fill */
  /* .progress-bar-fill {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 2.5px;
    height: 100%;
    opacity: 0;
    transition: width linear;
    width: 0;
  } */
  .multi-carousel-item.center .progress-bar-fill,
  .clone.center .progress-bar-fill {
    opacity: 1;
    transition: width linear, opacity 0.15s ease-in;
  }
  /* Show progress bar only on center slide */
  .multi-carousel-item.center .progress-bar-container,
  .clone.center .progress-bar-container {
    opacity: 1;
  }
  /* Carousel cursor styling */
  #multiCarousel {
    cursor: grab;
    touch-action: pan-y;
  }
  /* Disable text selection during drag */
  #multiCarousel.dragging {
    -webkit-user-select: none;
    user-select: none;
  }
  /* Container fluid full height */
  /* .container-fluid {
    height: 100vh;
    padding: 0;
  }
  .container-fluid .row {
    height: 100%;
    margin: 0;
  } */
  
  /* Responsive adjustments */
  @media (max-width: 45em) {
    .multi-carousel-item,
    .clone {
      flex: 0 0 100%;
      opacity: 1 !important;
    }
    .multi-carousel-control-prev {
      left: 10px !important;
    }
    .multi-carousel-control-next {
      right: 10px !important;
    }
  }
  


.register-legal{
    font-size: 12px;
    line-height: 1.5;
    color: #5e5e5e;
    letter-spacing: 0.02em;
}

/* Larger desktop screens (e.g. Mac, 1440px and up) */
@media screen and (min-width: 1440px) {
    .neighbourhood-foreground {
        bottom: -9%;
        left: 20%;
        max-width: 14vw;
    }
}


/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
    .register-hero-eyebrow {
        font-size: 2rem;
    }
    .register-hero-title {
        font-size: 4rem;
    }
    .register-hero-subtitle {
        font-size: 1.5rem;
    }

    .btn-submit {
        width: 55%;
    }
 }

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
    .register-hero-eyebrow {
        font-size: 2rem;
    }
    .register-hero-title {
        font-size: 4rem;
    }
    .register-hero-subtitle {
        font-size: 1.5rem;
    }
 }

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) { 
    .register-hero-eyebrow {
        font-size: 1.5rem;
    }
    .register-hero-title {
        font-size: 3rem;
    }
    .register-hero-subtitle {
        font-size: 1.2rem;
    } 
}


@media screen and (max-width: 767px){
    .fs-100{font-size: 32px;}
    .fs-60{font-size: 50px;}
    .fs-42{font-size: 30px;}
    .register-hero-eyebrow{font-size: 1.15rem;}

    #fixedNav .navbar-inner{min-height: 64px; padding-right: 130px;}
    #fixedNav .nav-logo{width: 100%; height: auto;}
    #fixedNav .nav-register-btn{position: absolute; top: 50%; right: 1rem; transform: translateY(-50%); padding: 0.4rem 1.25rem; font-size: 0.75rem;}
    .mobile-nav{top: 100px;}

     .mh-200{min-height: 200px;}

    #carouselSlider  .carousel-control-prev-icon,
    #carouselSlider  .carousel-control-next-icon{
        width: 36px;
        height: 36px;
    }
    .img-vector{width: 100px;}

    .register-section{
        padding: 50px 0;
    }

    .register-form-wrapper{
        padding-left: 0;
        padding-top: 0px;
    }

    .map-link{width: 33.333%; float: left; text-align: center; font-size: 20px;}
    .map-link img{width: 40px; display: block; float: none; margin: 0 auto 5px auto;}
    .register-map-img{
        object-fit: contain;
    }

    .gallery-section{
        margin-top: 10%;
    }

    .neighbourhood-section{
        padding-top: 96px;
        padding-bottom: 56px;
    }

    .neighbourhood-hero{
        padding: 64px 1.5rem 24px;
    }

    .neighbourhood-title span{
        font-size: 28px;
    }

    .neighbourhood-center{
        padding: 16px 1.5rem 24px;
    }
}

@media screen and (max-width: 576px){

    .fs-100{font-size: 24px;}
    .fs-60{font-size: 30px;}
    .fs-42{font-size: 52px;}

    .map-link{width: 50%; font-size: 18px;}

    .neighbourhood-title span{
        font-size: 24px;
    }

    .btn-neighbourhood-register{
        padding: 12px 28px;
        font-size: 13px;
    }

    .register-hero-overlay {
    
        margin-left: 0px;
        margin-top: 21px;
    }
}
