@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  font-family: "Open Sans", sans-serif !important;
}

:root {
  --dark-blue-bg: #282856;
  --light-gray-bg: #d7c9c8;
  --light-gray-font: rgb(199, 199, 199);
  --lighter-gray-bg: rgb(240, 240, 240);
  --dark-gray-font: rgb(70, 70, 70);
  --blue-font: rgb(0, 0, 173);
  --darker-blue-bg: #161e3c;
  --light-brown: #9b5b50;
  --gray-font: gray;
  --white-bg: white;
}

header {
  background-color: var(--dark-blue-bg);
}

.login-btn {
  /*background-color: var(--light-gray-bg);*/
  background: #985247;
    border: 1px solid #D8CAC9;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  /*border: none;*/
  /*color: var(--dark-gray-font);*/
  color:#fff;
}

.login-btn:hover {
 
  background: #D8CAC9;
    border: 1px solid #985247;
    color:#000;}

.top-bar-section {
  padding: 40px 0;
}

.search-box {
  position: relative;
}

.search-box input {
  position: relative;
  padding: 10px 25px;
}

.search-box i {
  position: absolute;
  color: var(--light-gray-font);
  font-size: 20px;
  font-weight: 800;
  left: 3%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.search-box input::placeholder {
  color: var(--light-gray-font);
  font-size: 15px;
}

.alert-search-div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  border: none;
  background-color: transparent;
}

.alert-search-div p {
  margin-bottom: 0;
}

.listing-cards-div .card img {
  width: 100%;
  border-radius: 0 !important;
}

.card-body .card-title {
  color: var(--dark-blue-bg);
  font-size: 20px;
  font-weight: 700;
  transition: color 0.4s ease;
}

.card-body .card-title:hover {
  color: var(--light-brown);
}

.card-body .card-text,
.price-div p {
  font-size: 14px;
  line-height: 20px;
}

.listing-row {
  border: 1px 0px 1px 0px solid var(--light-gray-font);
}

.price-div p {
  margin-bottom: 0;
}

.card-text a {
  color: var(--blue-font);
}

.listing-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lighter-gray-bg);
  border-radius: 20px;
  padding: 5px;
}

.listing-tags p {
  margin-bottom: 0;
  padding-left: 5px;
  font-size: 11px;
  text-transform: uppercase;
}

.address-text {
  font-size: 15px;
}

.filter-div h6 {
  font-size: 18px;
  font-weight: 700;
}

.business-div .dropdown-toggle::after {
  margin-left: 60px;
}

.business-div p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.business-div .dropdown-menu.show {
  transform: translate(175px, 14px) !important;
}

.business-div .dropdown .btn.dropdown-toggle,
.business-div .dropdown-menu .dropdown-item,
.business-div .form-check {
  font-size: 13.6px;
}

.business-div .form-check span {
  font-size: 10px;
}

.business-div .dropdown .btn.dropdown-toggle:active {
  border: none;
}

.save-btn {
  background-color: transparent;
  border: 1px solid var(--light-gray-font);
  padding: 8px 10px;
  font-size: 14.4px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  color: var(--dark-gray-font);
}

.save-btn i {
  padding-right: 5px;
}

.contact-btn {
  padding: 10px;
  font-size: 14px;
  text-decoration: none;
}

.details-section,
.video-section,
.business-op-section,
.property-info-section {
  padding: 40px 0;
}

.details-img {
  position: relative;
  width: 100%;
  justify-content: start;
}

.details-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: pointer;
}

.zoom-icon {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.384);
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.details-img:hover .zoom-icon {
  display: flex;
}

.zoom-icon i {
  font-size: 32px;
  pointer-events: auto;
  color: white;
}

.modal.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal.filter-modal .modal-content {
  background-color: var(--white-bg) !important;
}

.modal.image-modal .modal-content {
  display: block;
  margin: 100px auto;
  max-width: 90%;
  height: 80vh;
  object-fit: contain;
  background-color: transparent !important;
}

.modal.image-modal .modal-content img {
  overflow-y: hidden;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

.details-text h1,
.title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.details-text h5 {
  font-size: 16px;
}

.details-section .col-lg-6 {
  position: relative;
}

.details-section .col-lg-4 {
  position: fixed;
  top: 20%;
  right: 10%;
}

.revenue-table tbody tr:first-child {
  border-top: 1px solid #dee2e6;
}

.table-text {
  font-size: 15.2px;
  color: var(--dark-gray-font) !important;
}

.table-price {
  font-size: 15.2px;
  font-weight: 800;
  line-height: 25px;
}

.table-price span {
  font-size: 11px;
  font-weight: 500;
}

.info-title {
  font-size: 15.2px;
  font-weight: 600;
  color: var(--dark-gray-font) !important;
  width: 35%;
}

.info-text {
  color: var(--gray-font) !important;
  font-size: 15.2px;
}

.property-info-table tbody tr {
  border: none !important;
}

footer {
  background-color: var(--dark-blue-bg);
  padding: 40px 0;
  margin-top: 40px;
}

.telephone-div .telephone-icon {
  background-color: rgba(253, 253, 253, 0.247);
  height: 50px;
  width: 50px;
  display: block;
  border-radius: 50%;
  position: relative;
}

.telephone-div .telephone-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--white-bg);
}

.toll-div h5 {
  color: var(--white-bg);
  font-size: 18px;
}

.toll-div a {
  color: var(--white-bg);
  font-size: 16px;
  text-decoration: none;
}

.price-form-control {
  position: relative;
  width: 100%;
  margin: 15px 0;
}

.price-form-label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  font-size: 13.6px;
  color: var(--gray-font);
  transition: all 0.3s ease;
  pointer-events: none;
}

.price-form-input {
  position: relative;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  background-color: transparent;
  font-size: 1rem;
  color: var(--color-black);
  border: 1px solid var(--lighter-gray-bg);

  &::placeholder {
    opacity: 0;
  }

  &:focus-visible,
  &:focus {
    outline: none !important;
  }

  &:focus + .price-form-label,
  &:not(:placeholder-shown) + .price-form-label {
    top: -10px;
    font-size: 13px;
    color: var(--light-brown);
    background-color: var(--white-bg);
    padding: 0 4px;
    z-index: 5;
  }
}

.mobile-filter-row .alert-search-div {
  color: var(--white-bg);
  margin-top: 10px;
}

.img-footer-div {
  display: flex;
  flex-wrap: wrap;
}

.cards-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards-pagination li {
  display: inline-block;
}

.cards-pagination li a {
  color: var(--dark-gray-font) !important;
  padding: 10px 20px;
}

.cards-pagination .active > .page-link {
  background-color: transparent !important;
  border-color: var(--dark-gray-font);
}

.login-modal .modal-content {
  padding: 50px 60px;
}

.login-modal .modal-content .modal-body h3 {
  font-size: 30px;
  color: var(--dark-gray-font);
  line-height: 35px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.login-modal .modal-body .form-label {
  font-size: 18px;
}

.login-modal .modal-body .form-control {
  font-size: 16px;
  margin-top: 8px;
  border-radius: 0 !important;
  border: 1px solid var(--lighter-gray-bg);
}

.login-modal .modal-body .form-control:focus {
  box-shadow: none !important;
}

.login-modal .modal-body .forgot-password {
  font-size: 14px;
  line-height: 24px;
  color: var(--blue-font);
}

.password-field {
  position: relative;
}

.password-field input {
  position: relative;
}

.login-modal .modal-body i {
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-gray-font);
}

.password-field i {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translate(0%, -50%);
  font-weight: 700;
  font-size: 18px;
}

.toggle-password.active {
  color: var(--blue-font) !important;
}

.modal-backdrop-blur {
  backdrop-filter: blur(8px); /* Adjust blur level */
  background-color: rgba(
    0,
    0,
    0,
    0.3
  ); /* Optional: dark semi-transparent tint */
}

.boarding-form-section {
  padding-top: 10px;
      background: #d8cac9;
}

.boarding-form-div {
  margin: 30px 60px;
  padding: 30px 50px;
  border: 1px solid var(--light-gray-font);
  border-radius: 20px;
      background: #fff;
}

.boarding-form-top {
  border-bottom: 1px solid var(--light-gray-font);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.boarding-form-top h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-gray-font);
}

.boarding-form .form-label {
  font-size: 16px;
  color: var(--dark-gray-font);
  font-weight: 500;
}

.boarding-form .form-control:focus,
.boarding-form .form-check-input:focus,
.amount-input-group .form-select:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--dark-gray-font);
}

.business-modal-div .form-check {
  margin-left: 25px;
}

.business-modal-div .form-check-label {
  margin-left: 2px;
}

.current-fund-div .form-control {
  margin: 0 20px;
}

.amount-input-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.amount-input-group .form-select {
  width: 35%;
}

.amount-input-group .form-control {
  width: 65%;
}

.submit-div .login-btn {
  min-width: 120px;
  position: relative;
}

@keyframes zoom {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

.btn-one{
    /*background: linear-gradient(180deg, #ffb84d 0, #f90 54%, #e68a00 100%);*/
    background: #985247;
    border: 1px solid #D8CAC9;
    color: #ffffff;
    padding:10px 30px;
    border-radius:10px;
}

.btn-one:hover{
        /*background: linear-gradient(180deg, #ffa31a 0, #f90 54%, #d68100 100%);*/
        background: transparent;
        border: 1px solid #985247;
        color: #000;
}

@media screen and (max-width: 820px) {
  .top-bar-section {
    background-color: var(--darker-blue-bg);
    padding: 40px 0 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .details-section .col-lg-4 {
    position: relative;
    top: auto;
    right: auto;
  }

  .details-img img {
    height: 400px;
  }

  .contact-seller-div {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 500px) {
  .boarding-form-div .boarding-form-top img {
    width: 60px;
    height: 60px;
  }

  .boarding-form-top h1 {
    font-size: 28px;
  }

  .boarding-form-section {
    padding-top: 30px;
  }

  .boarding-form-div {
    margin: 20px 10px;
    padding: 30px;
  }
}
