::selection {
  color: white;
  background-color: gold;
}

body {
  overflow-x: hidden;
}

/* Marker Override for the circles */
.custom-circle {
  width: 30px;
  height: 30px;
  background-color: #f00;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.custom-circle.rail {
  background-color: blue;
}

.custom-circle.underground {
  background-color: red;
}

:root {
  --bs-primary: #ee2884;
  --bs-primary-rgb: 0, 35, 73;
  --bs-secondary: #b31f64;
  --bs-secondary-rgb: 20, 59, 100;
}

.active>.page-link {
  background-color: var(--bs-primary) !important;
  color: white !important;
  border-color: white;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-primary a {
  color: var(--bs-primary) !important;
  font-weight: bold;
}

.border-primary {
  border-color: var(--bs-primary) !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #b31f64;
  --bs-btn-hover-border-color: #751a45;
  --bs-btn-focus-shadow-rgb: 0, 35, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-shadow: #500f2d;
  --bs-btn-active-bg: #500f2d;
  --bs-btn-active-border-color: #751a45;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

#browseApp .active {
  background: var(--bs-primary);
  color: white !important;
  border-radius: 5px;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

.border-secondary {
  border-color: var(--bs-secondary) !important;
}

select option:hover {
  background-color: var(--bs-primary) !important;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #9b1d58;
  --bs-btn-hover-border-color: #751a45;
  --bs-btn-focus-shadow-rgb: 20, 59, 100;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #500f2d;
  --bs-btn-active-border-color: #751a45;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-secondary);
  --bs-btn-disabled-border-color: var(--bs-secondary);
}

/* Checked radio uses primary color inside */
.form-check-input[type="radio"]:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  background-image: none;
  /* remove default white dot */
}

/* Add custom dot */
.form-check-input[type="radio"]:checked::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  margin: 25% auto;
  border-radius: 50%;
  background-color: #fff;
  /* white dot */
}

.nav-tabs .nav-link.active {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
  border-color: var(--bs-primary) !important;
}

.nav-link:hover {
  background-color: var(--bs-primary) !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:active,
.nav-tabs .nav-link.show,
.nav-tabs .nav-link.active {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
  border-color: var(--bs-primary) !important;
  box-shadow: none !important;
}

.form-select:focus {
  border-color: #b31f64;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 192, 203, 0.25);
}

.accordion-button:focus {
  border-color: #b31f64 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 192, 203, 0.25);
}

.accordion-button:not(.collapsed) {
  border: 2px solid var(--bs-primary) !important;
  border-radius: 1rem !important;
  box-shadow: none !important;
}

.accordion-button {
  border: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: black !important;
}

.accordion-button:not(.collapsed) {
  color: black !important;
  background-color: white !important;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #b31f64;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 192, 203, 0.25);
}

.form-check-input:focus {
  border-color: #b31f64;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 192, 203, 0.25);
}

.page-link:focus {
  z-index: 3;
  color: #fff !important;
  background-color: var(--bs-primary) !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
}

.page-link {
  color: var(--bs-primary) !important;
}

.breakout-image {
  width: 80%;
  max-width: 900px;
  bottom: -225px;
  /* exactly half the image height */
  transform: translateX(-50%);
  z-index: 2;
}

.image-container {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8C9C8F;
  /* Updated red color */
  transform: translateY(-100%);
  /* Initially hidden */
  transition: transform 0.5s ease-in-out;
}

.image-container:hover::before {
  transform: translateY(0);
  /* Fully visible on hover */
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Black overlay */
  transition: opacity 0.5s ease-in-out;
  /* Smooth transition */
}

.image-container:hover .image-overlay {
  opacity: 0;
  /* Fully transparent on hover */
}

.redTextColor {
  color: #BF2828;
}

.carousel-inner>.item {
  width: 100%;
}

.view-button .text-content {
  display: inline-block;
  /* Ensure scaling only affects the text */
  transition: transform 0.3s ease;
  /* Smooth scaling transition */
}

.view-button:hover .text-content {
  transform: scale(0.9);
  /* Scale down text without affecting button size */
  color: black !important;
}

.title-text {
  font-weight: 800;
  font-family: "Cabin", sans-serif;
}

.losUnderline {
  text-decoration: underline;
  text-decoration-color: #BF2828;
}

.btn-check:checked+.btn,
:not(.btn-check)+.btn:active,
.btn:first-child:active,
.btn.active,
.btn.show {
  border-color: white !important;
}

.mainBannerTitle {
  font-size: clamp(50px, 4vw, 72px) !important;
}

.mainBannerSubTitle {
  font-size: clamp(32px, 2.5vw, 45px) !important;
}

.mainCta {
  font-size: clamp(22px, 2.25vw, 20px) !important;
}

.subText {
  font-size: clamp(2.5px, 1.875vw, 15px) !important;
}

.losBackground {
  background-color: #ee2884 !important;
}

.card-hover {
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card-hover .card-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-hover .card-content {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease 0.15s;
}

#toggleDescription:checked~#descriptionWrapper {
  max-height: 10000px !important;
}

.card-hover:hover .card-overlay {
  opacity: 0.5;
}

.card-hover:hover .card-content {
  opacity: 1;
  transform: translateY(0);
}

.super-bold {
  font-weight: 800;
  /* or 900 */
}

hr.losSecondaryHr {
  border: none;
  height: 4px;
  background: linear-gradient(135deg, #D36F4D, #B45E3C, #8C472E) !important;
  opacity: 1;
}

.losSecondaryBtn {
  background: linear-gradient(135deg, #D36F4D, #B45E3C, #8C472E) !important;
  border: none;
}

.losSecondaryBtn:hover {
  background: linear-gradient(135deg, #E07B54, #C06842, #944F34) !important;
  border: none;
}

.losSecondaryFont {
  color: #D36F4D !important;
}

.losButton {
  background-color: #8c9c8f !important;
}

.losButton:hover {
  background-color: #7c8a7e !important;
}

.losNavLinks.active {
  background-color: white !important;
  color: white !important;
}

.losNavLinks {
  color: black !important;
}

.floating-btn {
  z-index: 100000;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  border-radius: 50px;
  padding: .75rem 1.25rem;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .2);
}

.cta-btn i {
  font-size: 1.8rem;
}

@media (max-width: 576px) {
  .cta-btn {
    padding: .45rem .8rem;
    font-size: .9rem;
  }

  .cta-btn i {
    font-size: 1.3rem;
  }
}

.losBorder {
  border: 3px solid var(--bs-primary) !important;
}

a.losHover:hover {
  color: var(--bs-primary) !important;
}

.losSecondaryBackground {
  background-color: var(--bs-primary) !important;
}

.bookmarkButton {
  cursor: pointer;
}

.alert.alert-dismissible {
  z-index: 999 !important;
}

ul {
  list-style-type: none;
}

[data-sort="-price"]::after {
  content: "➜";
  display: inline-block;
  margin-left: 5px;
  color: white;
  transform: rotate(270deg);
}

[data-sort="price"]::after {
  content: "➜";
  display: inline-block;
  margin-left: 5px;
  color: white;
  transform: rotate(90deg);
}

[data-sort="-bedroomCount"]::after {
  content: "➜";
  display: inline-block;
  margin-left: 5px;
  color: white;
  transform: rotate(270deg);
}

[data-sort="bedroomCount"]::after {
  content: "➜";
  display: inline-block;
  margin-left: 5px;
  color: white;
  transform: rotate(90deg);
}

.offWhiteBackground {
  background-color: #f1f2f2 !important;
}

.extra-navigation-row {
  margin-top: 895px !important;
  overflow-x: hidden !important;
  max-width: 100vw;
}



.dropdown-menu {
  overflow-x: hidden;
}

.dropdown-item {
  transition: margin-left 0.5s ease;
}

.dropdown-item:hover {
  margin-left: 5px;
}

.dropdown-item::before {
  content: "▶";
  position: absolute;
  left: 4px;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: var(--bs-primary);
}

.dropdown-header {
  border-bottom: #a82424 1px solid;
}

.dropdown-item.active,
.dropdown-item:active {
  color: white !important;
  background-color: var(--bs-primary) !important;
}

.dropdown-item:hover::before {
  opacity: 1;
}

.dropdown-item {
  --bs-dropdown-link-hover-bg: rgba(0, 0, 0, 0);
}

.control-label {
  font-size: 2rem !important;
  font-weight: bolder !important;
}

.property-item {
  margin: 0 10px;
}

.navbar-img {
  width: 90px !important;
  /* Initial width */
  transition: width 0.5s ease;
  /* CSS transition for smooth animation */
}

.nav-link {
  cursor: pointer;
  color: black;
  font-size: 1rem !important;
}

.expanded {
  width: 115px !important;
  /* Width when scrolled */
  font-size: 1rem !important;
}



.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;
}


.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #888;
  opacity: 1;
  /* Firefox */
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #888;
}

.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #888;
}

input::placeholder,
textarea::placeholder {
  color: #888;
  opacity: 1;
}


li.prev.disabled,
li.next.disabled {
  display: none !important;
}

.overlay-background {
  opacity: 0.25;
}

.content {
  display: flex;
  flex-wrap: wrap;
}

.content .item {
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgb(255, 247, 247);
  transition: all 400ms ease-out;
}

.content .item img {
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.content:has(.item:focus) .item:not(:focus),
.content:has(.item:hover) .item:not(:hover) {
  opacity: 0.1;
  scale: 0.92;
}

.content .item:focus,
.content .item:hover {
  box-shadow: 0px 0px 24px 4px rgba(112, 112, 112, 0.7);
  transition: all 300ms ease-out;
}

.sellYourHomeImage {
  height: 380px;
}

.contactFormBg {
  background-color: rgba(0, 0, 0, 0.45);
}

.readableParagraph {
  line-height: 1.625 !important;
}

@media (min-width: 1920px) {
  .sellYourHomeContainer {
    margin-left: -95px;
  }

  .sellYourHomeImage {
    height: 450px;
  }
}

@media (max-width: 1800px) {
  .sellYourHomeContainer {
    margin-left: -65px;
  }
}

@media (max-width: 1920px) {
  .sellYourHomeContainer {
    margin-left: -75px;
  }

  .sellYourHomeImage {
    height: 450px;
  }
}

.credibilityContainer {
  width: 50%;
}

@media (max-width: 1200px) {
  .credibilityContainer {
    width: 100%;
  }


}

@media (max-width: 1000px) {
  .sellYourHomeContainer {
    margin-left: 0px;
  }

  .mainCtaContainer {
    margin-top: -250px !important;
  }
}

@media (max-width: 600px) {
  .mainCtaContainer {
    margin-top: -350px !important;
  }

  .navbar-img {
    width: 115px !important;
    /* Width when scrolled */
    font-size: 1rem !important;
  }
}

@media (min-width: 1400px) {
  .property-image-thumbnail {
    height: 400px !important
  }

  .black-box {
    margin-left: -30px;
  }
}



/* Our Team
-------------------------------------------------------*/

.our-team .team-row {
  margin-left: -40px;
  margin-right: -40px;
}

.our-team .team-wrap {
  padding: 0 40px;
}

.our-team .container-fluid {
  padding: 0 50px;
}

.team-img img {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  overflow: hidden;
  width: 100%;
}

.team-member,
.team-img {
  position: relative;
  overflow: hidden;
}

.team-title {
  margin: 30px 0 7px;
}

.overlay {
  background-color: rgba(99, 31, 91, .7);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.team-details {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 5%;
  overflow: hidden;
  width: 100%;
  z-index: 2;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.team-details p {
  color: #fff;
}

.team-img:hover .team-details {
  opacity: 1;
  margin-top: -80px;
}

.team-img:hover .overlay {
  opacity: 1;
}

.socials a {
  display: inline-block;
  width: 37px;
  height: 37px;
  background-color: transparent;
}

.socials i {
  line-height: 37px;
  color: #616161;
  font-size: 14px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.team-details .socials i {
  color: #fff;
}

.socials a:hover i {
  color: #fff;
  background-color: #631f5b;
}



:root {
  --popup-max-width: 24rem;
  --popup-bg-color: #f2f2f2;
  --popup-text-color: #111;
  --popup-button-border-color: #007bff;
  --popup-accept-button-bg-color: #007bff;
  --popup-accept-button-text-color: #fff;
  --popup-reject-button-bg-color: transparent;
  --popup-reject-button-text-color: var(--popup-accept-button-bg-color);
  --popup-font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
}

/* Popup Styles */
.cookieConsentPopup * {
  margin: 0;
  padding: 0;
}

.cookieConsentPopup p:not(:first-child) {
  margin-top: 1rem;
}

.cookieConsentPopup {
  box-sizing: border-box;
  display: none;
  position: fixed;
  bottom: 5rem;
  left: 1rem;
  max-width: var(--popup-max-width);
  padding: 1rem;
  background-color: var(--popup-bg-color);
  color: var(--popup-text-color);
  border: 1px solid #ccc;
  border-radius: .5rem;
  font-family: var(--popup-font-family);
  line-height: 1.35;
}

.cookieConsentPopup-actions button {
  flex-grow: 2;
}

.cookieConsentPopup-actions {
  display: flex;
  gap: 1rem;
  padding-top: 1.25rem;
}

/* Button Styles */
.cookieConsentPopup-btn {
  padding: .75rem 1rem;
  color: var(--popup-accept-button-text-color);
  background-color: var(--popup-accept-button-bg-color);
  border: 1px solid var(--popup-button-border-color);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.cookieConsentPopup-btn--accept {
  padding-inline: 1.75rem;
}

.cookieConsentPopup-btn--reject {
  color: var(--popup-reject-button-text-color);
  background-color: var(--popup-reject-button-bg-color);
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/*
	Use in conjunction with .sr-only to only display content when it's focused.
*/
.sr-only-focusable:focus,
.sr-only-focusable:active {
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important;
}

/* Status Message Styles */
#statusMessage {
  margin-top: 10px;
}

.notice {
  font-size: 1.25rem;
  color: red;
  background-color: #EE2884;
  padding: 2rem;
  max-width: 25vw;
}

/* For Webkit-based browsers (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
  width: 4px;
  /* Thin width */
  height: 4px;
  /* Thin height for horizontal scrollbar */
}

::-webkit-scrollbar-thumb {
  background: rgba(100, 100, 100, 0.5);
  /* Semi-transparent thumb */
  border-radius: 10px;
  /* Rounded corners */
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 100, 100, 0.7);
}

::-webkit-scrollbar-track {
  background: transparent;
  /* Makes track invisible */
}

/* For Firefox */
* {
  scrollbar-width: thin;
  /* Makes scrollbar thin */
  scrollbar-color: rgba(100, 100, 100, 0.5) transparent;
  /* Thumb and track */
}

/* For Microsoft Edge (Old versions, fallback) */
@supports (-ms-overflow-style: none) {
  * {
    -ms-overflow-style: none;
    /* Hides scrollbar in older Edge versions */
  }
}

.propertyCard {
  position: relative;
}

.img-zoom {
  background-size: 110% !important;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease-in-out !important;
}

.img-zoom:hover {
  background-size: 120% !important;
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%3E%3Ccircle%20cx='16'%20cy='16'%20r='4'%20fill='none'%20stroke='white'%20stroke-width='2'/%3E%3C/svg%3E") 16 16, auto;
}

.buttons-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  padding: 10px;
  z-index: 2;
}

.propertyCard:hover .buttons-container {
  display: flex;
}

.propertyCard .card-body {
  transition: opacity 0.3s ease;
}

.propertyCard:hover .card-body {
  opacity: 0;
  pointer-events: none;
}

.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 200px;
  padding: 5px;
}

.toggle-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.toggle-btn i {
  font-size: 20px;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: transparent;
}

@keyframes skeleton-loading {
  0% {
    background-color: #F5F5F5;
  }

  100% {
    background-color: #E2E2E2;
  }
}

.property-links {
  border-radius: 5px;
  animation: skeleton-loading 1s linear infinite alternate;
  background-color: #F5F5F5;
}

.property-links.loaded {
  animation: none;
  background-color: transparent;
}

.property-item {
  flex: 1 1 30%;
  /* Ensure each column takes up roughly 1/3 of the row */
  margin: 10px;
  /* Adjust margin as needed */
}

.bg-image-banner {
  height: 72vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vertical-separator {
  width: 2px;
  height: 90%;
  background-color: #fff;
  position: relative;
  margin-right: 1rem;
}

.vertical-separator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #fff;
}

.offWhiteBackground {
  background-color: #f7f7f7;
}

.fs-2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.propDesc {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  /* Clamp to 4 lines with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.3s ease;
  cursor: default;
}

.propDesc.expandedDesc {
  -webkit-line-clamp: unset;
  overflow: visible;
  cursor: text;
}

.readMoreBtn {
  background: none;
  border: none;
  color: #d81b60;
  /* Pink primary color */
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  padding: 0;
  user-select: none;
}

.readMoreBtn .plus {
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}