::selection {
  color: white;
  background-color: gold;
}

body {
  overflow-x: hidden;
}

.redBackgroundColor {
  background-color: #BF2828 !important;
}

:root {
  --bs-primary: #002349;
  --bs-primary-rgb: 0, 35, 73;
  --bs-alternative: #5da5eb;
  --bs-alternative-rgb: 93, 165, 235;
  --bs-secondary: #143b64;
  --bs-secondary-rgb: 20, 59, 100;
  --bs-dark: #031d39;
  --bs-dark-rgb: 3, 29, 57;
  --bs-light: #fff;
  --bs-light-rgb: 255, 255, 255;
}

.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;
}

.border-primary {
  border-color: var(--bs-primary) !important;
}

.btn-primary {
  --bs-btn-color: #fff !important;
  --bs-btn-bg: var(--bs-primary) !important;
  --bs-btn-border-color: var(--bs-primary) !important;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-bg: #001a35 !important;
  --bs-btn-hover-border-color: #00142a !important;
  --bs-btn-focus-shadow-rgb: 0, 35, 73 !important;
  --bs-btn-active-color: #fff !important;
  --bs-btn-active-bg: #00142a !important;
  --bs-btn-active-border-color: #001122 !important;
  --bs-btn-disabled-color: #fff !important;
  --bs-btn-disabled-bg: var(--bs-primary) !important;
  --bs-btn-disabled-border-color: var(--bs-primary) !important;
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-alternative) !important;
  --bs-btn-border-color: var(--bs-primary) !important;
  --bs-btn-hover-color: var(--bs-alternative) !important;
  --bs-btn-hover-bg: var(--bs-primary) !important;
  --bs-btn-hover-border-color: var(--bs-primary) !important;
  --bs-btn-focus-shadow-rgb: 13, 110, 253 !important;
  --bs-btn-active-color: #fff !important;
  --bs-btn-active-bg: var(--bs-primary) !important;
  --bs-btn-active-border-color: var(--bs-primary) !important;
  --bs-btn-disabled-color: var(--bs-primary) !important;
  --bs-btn-disabled-bg: transparent !important;
  --bs-btn-disabled-border-color: var(--bs-primary) !important;
  --bs-gradient: none !important;
}

.bg-alternative {
  background-color: var(--bs-alternative) !important;
}

.text-alternative {
  color: var(--bs-alternative) !important;
}

.border-alternative {
  border-color: var(--bs-alternative) !important;
}

.btn-alternative {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-alternative);
  --bs-btn-border-color: var(--bs-alternative);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #4b93d6;
  --bs-btn-hover-border-color: #4487c6;
  --bs-btn-focus-shadow-rgb: var(--bs-alternative-rgb);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3d79b0;
  --bs-btn-active-border-color: #356d9f;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-alternative);
  --bs-btn-disabled-border-color: var(--bs-alternative);
}

.bg-dark {
  background-color: var(--bs-dark) !important;
}

.text-dark {
  color: var(--bs-dark) !important;
}

.border-dark {
  border-color: var(--bs-dark) !important;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-dark);
  --bs-btn-border-color: var(--bs-dark);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #021628;
  --bs-btn-hover-border-color: #010f1c;
  --bs-btn-focus-shadow-rgb: 3, 29, 57;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #010f1c;
  --bs-btn-active-border-color: #000c16;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-dark);
  --bs-btn-disabled-border-color: var(--bs-dark);
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

.border-secondary {
  border-color: var(--bs-secondary) !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: #102e4d;
  --bs-btn-hover-border-color: #0e2943;
  --bs-btn-focus-shadow-rgb: 20, 59, 100;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0e2943;
  --bs-btn-active-border-color: #0c2339;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-secondary);
  --bs-btn-disabled-border-color: var(--bs-secondary);
}

.form-group input[type="checkbox"] {
  background-color: var(--bs-alternative) !important;
  accent-color: var(--bs-alternative) !important;
}

/* Remove default accordion styles */
.accordion-button {
  background-color: transparent;
  color: #2e2e38;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 1rem 1.25rem;
  box-shadow: none;
  border: none;
  transition: background 0.3s ease;
}

/* Change icon color and shape */
.accordion-button::after {
  content: '\002B'; /* plus symbol */
  font-size: 1.5rem;
  color: --bs-primary; /* red */
  font-weight: bold;
  background-image: none !important;
  transform: none !important;
}

/* When accordion is open */
.accordion-button:not(.collapsed)::after {
  content: '\2212'; /* minus symbol */
}

/* Hide background color when expanded */
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #2e2e38;
  box-shadow: none;
}

/* Accordion body styling */
.accordion-body {
  font-size: 1rem;
  color: #4a4a4a;
  padding: 0 1.25rem 1rem 1.25rem;
}

/* Add separator line between items */
.accordion-item {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: #001f3f; /* optional: your text color */
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none !important;
}

.breakout-image {
  width: 80%;
  max-width: 900px;
  bottom: -225px; /* exactly half the image height */
  transform: translateX(-50%);
  z-index: 2;
}

.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);
}


.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: --bs-secondary; /* 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: --bs-secondary !important;
}

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: --bs-secondary !important;
}

.losButton:hover {
  background-color: #7c8a7e !important;
}

.losNavLinks.active {
  background-color: white !important;
  color: white !important;
}

.losNavLinks {
  color: black !important;
}

.losBorder {
  border: 3px solid #BF2828 !important;
}

a.losHover:hover {
  color: #a82424 !important;
}

.losSecondaryBackground {
  background-color: #a82424 !important;
}

.bookmarkButton {
  cursor: pointer;
}

div.text-white.fw-bold .form-check-input:checked {
  background-color: transparent !important;
  border-color: #fff !important;
}

.alert.alert-dismissible {
  z-index: 9999 !important;
}

ul {
  list-style-type: none;
}

[data-sort="-price"]::after {
  content: "➜";
  display: inline-block;
  margin-left: 5px;
  color: --bs-primary;
  transform: rotate(270deg);
}

[data-sort="price"]::after {
  content: "➜";
  display: inline-block;
  margin-left: 5px;
  color: --bs-primary;
  transform: rotate(90deg);
}

[data-sort="-bedroomCount"]::after {
  content: "➜";
  display: inline-block;
  margin-left: 5px;
  color: --bs-primary;
  transform: rotate(270deg);
}

[data-sort="bedroomCount"]::after {
  content: "➜";
  display: inline-block;
  margin-left: 5px;
  color: --bs-primary;
  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-alternative);
}

.dropdown-header {
  border-bottom: #a82424 1px solid;
}

.dropdown-item.active, .dropdown-item:active {
  color: white !important;
  background-color: var(--bs-alternative) !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-tabs .nav-link.active {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
  border-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;
}

.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: black;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: black;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: black;
}

.page-item.disabled .page-link {
  color: grey !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: 1rem;
  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(--bs-primary);
  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: #ffe6e6;
  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.active {
  background-color: var(--bs-primary);
  color: white;
  border-radius: 8px;
}

.toggle-btn i {
  font-size: 20px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.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 */
}