@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
  font-size: 16px;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(3rem);
    opacity: 0;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translateX(3rem);
    opacity: 0;
  }
}
@keyframes fadeInDown {
  0% {
    transform: translateY(-3rem);
    opacity: 0;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  55% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.8);
  }
  85% {
    transform: scale(1.05);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-track {
  background: #E00000;
  border-radius: 5rem;
}

.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.header {
  background-color: #070D0D;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 9%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  color: #fdfdff;
  transform: translateY(-50rem);
}
.header.active {
  transform: translateY(0rem);
}
.header a.brand {
  color: #FF6315;
  font-size: 62px;
  display: inline-block;
  width: 130px;
  line-height: 1;
  margin: 15px 0px;
  font-family: var(--altFont);
  font-weight: 600;
  text-transform: uppercase;
  vertical-align: middle;
  text-align: center;
  transition: all 0.3s;
}
.header a.brand span.and {
  font-size: 32px;
  vertical-align: middle;
  padding-bottom: 10px;
  display: inline-block;
}
.header a.brand span.sub {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fdfdff;
  font-weight: bold;
}
.header a.brand:hover {
  transform: scale(1.12);
}
.header .navbar a {
  margin: 0 1rem;
  font-size: 1.7rem;
  color: #fdfdff;
}
.header .navbar a:hover {
  color: #FF6315;
}
.header .icons a, .header .icons a i, .header .icons div {
  font-size: 2.5rem;
  margin-left: 1.5rem;
  color: #fdfdff;
  cursor: pointer;
}
.header .icons a:hover, .header .icons a i:hover, .header .icons div:hover {
  color: #E00000;
}
.header #menu-btn {
  display: none;
}

.login-form, .create-account-form {
  text-transform: capitalize;
  width: 35rem;
  border-radius: 1rem;
  background: #fdfdff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.login-form h3, .create-account-form h3 {
  color: #070D0D;
  font-size: 2.5rem;
  padding-bottom: 0.5rem;
}
.login-form .alert.alert-danger, .create-account-form .alert.alert-danger {
  font-size: 13px;
  color: red;
  font-style: italic;
}
.login-form .box, .create-account-form .box {
  width: 100%;
  border-bottom: 0.2rem solid #070D0D;
  border-width: 0.1rem;
  padding: 1.5rem 0;
  font-size: 1.6rem;
  color: #070D0D;
  text-transform: none;
  margin: 1rem 0;
}
.login-form .remember, .create-account-form .remember {
  display: flex;
  color: #070D0D;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
}
.login-form .remember label, .create-account-form .remember label {
  font-size: 1.5rem;
  cursor: pointer;
  color: #070D0D;
}
.login-form .btn, .create-account-form .btn {
  width: 100%;
  text-align: center;
  margin: 1.5rem 0;
  background-color: black;
  border-color: black;
  color: white;
  text-transform: uppercase;
}
.login-form .btn:hover, .create-account-form .btn:hover {
  background: #070D0D;
}
.login-form .btn:hover, .create-account-form .btn:hover {
  background-color: #FF6315;
  color: white !important;
}
.login-form .flexed, .create-account-form .flexed {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-form .flexed .box, .create-account-form .flexed .box {
  width: 48% !important;
}
.login-form .links, .create-account-form .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.login-form .links.center, .create-account-form .links.center {
  justify-content: center;
}
.login-form .links.end, .create-account-form .links.end {
  justify-content: flex-end;
}
.login-form .links a, .create-account-form .links a {
  font-size: 1.4rem;
  cursor: pointer;
  color: #E00000;
}
.login-form .links a:hover, .create-account-form .links a:hover {
  color: #070D0D;
  text-decoration: underline;
}

.invalid-login-msg {
  background-color: #E00000;
  color: white;
  text-align: center;
  padding: 5px;
  border-radius: 3px;
  letter-spacing: 1px;
}

.create-account-form {
  width: 45rem;
  margin-top: 80px;
}

section {
  padding: 5rem 9%;
}

.flexed {
  display: flex;
}

.flexed.center {
  justify-content: center;
}

.flexed.v-center {
  align-items: center;
}

.flexed.space-around {
  justify-content: space-around;
}

.flexed.end {
  justify-content: flex-end;
}

.flexed.space-between {
  justify-content: space-between;
}

.flexed.wrap {
  flex-wrap: wrap;
}

img {
  max-width: 100%;
}

.mb-2 {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2.8rem;
  border-radius: 5rem;
  border-top-left-radius: 0;
  cursor: pointer;
  background: none;
  border: 0.2rem solid #070D0D;
  color: #070D0D;
  font-size: 1.7rem;
  overflow: hidden;
  z-index: 0;
  position: relative;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #070D0D;
  z-index: -1;
  transition: 0.2s linear;
  clip-path: circle(0% at 0% 5%);
}
.btn:hover::before {
  clip-path: circle(100%);
}
.btn:hover {
  color: #fdfdff;
}

.hide {
  display: none !important;
}

.home {
  min-height: calc(100vh + 10rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url("../images/movingbg-reversed.jpeg") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.home .wave {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 12rem;
}
.home .content {
  width: 50rem;
}
.home .content h2 {
  font-size: 5rem;
  color: #fdfdff;
  padding-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.home .content h2 span {
  color: #FF6315;
  font-size: 6rem;
}
.home .content .btn {
  color: #fdfdff;
  border-color: #fdfdff;
}
.home .content .btn:hover {
  color: #070D0D;
}
.home .content .btn::before {
  background: #fdfdff;
}

.about {
  display: flex;
  padding-top: 120px;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
}
.about .image {
  flex: 1 1 40rem;
}
.about .image img {
  width: 100%;
  clip-path: polygon(49% 0, 49% 0, 100% 60%, 85% 60%, 85% 100%, 15% 100%, 14% 60%, 0 60%);
}
.about .content {
  flex: 1 1 40rem;
}
.about .content h3 {
  color: #070D0D;
  font-size: 4rem;
  padding-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.1;
}
.about .content h3 span {
  color: #FF6315;
  font-size: 4rem;
}
.about .content p {
  color: #666;
  padding-bottom: 10px;
  font-size: 1.6rem;
}
.about .content p span {
  color: #FF6315;
  font-weight: bolder;
}

.properties {
  position: relative;
  background-color: #F2BC00;
  color: white;
  z-index: 0;
  padding: 0px;
  margin-top: 10rem;
  padding-top: 10rem;
}
.properties .top-section {
  background-color: #F2BC00;
}
.properties h2 {
  color: #fdfdff;
  font-size: 4.7rem;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 50px;
  text-transform: uppercase;
}
.properties .wave {
  background-color: #fdfdff;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 10rem;
}
.properties .wrapper {
  color: #333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 50px;
  padding: 5%;
}
.properties .wrapper .property {
  width: 20%;
  min-height: 300px;
  background-position: center;
  background-size: cover;
  border-radius: 3px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  z-index: 0;
}
.properties .wrapper .property:hover {
  transform: scale(1.15);
  box-shadow: 1px 1px 35px rgba(0, 0, 0, 0.4);
}
.properties .wrapper .property:hover .title {
  background-color: #fdfdff;
}
.properties .wrapper .property:hover p.price {
  display: flex !important;
}
.properties .wrapper .property:hover .overlay {
  display: flex !important;
}
.properties .wrapper .property:hover p.new-notice {
  display: none !important;
}
.properties .wrapper .property p.price {
  font-size: 2.5rem;
  padding: 6px 10px;
  text-align: center;
  background-color: #FF6315;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  display: none;
  color: #fdfdff;
  z-index: 5;
  animation: bounceIn 0.4s linear;
}
.properties .wrapper .property p.price span {
  font-size: 1rem;
  font-weight: bold;
  padding-left: 3px;
  padding-bottom: 8px;
  text-transform: none;
}
.properties .wrapper .property .overlay {
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fdfdff;
  padding: 10px;
  border-radius: 3px;
  z-index: 1;
  animation: fadeIn 0.4s linear;
}
.properties .wrapper .property .overlay p {
  padding: 6px 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.properties .wrapper .property .overlay p i {
  font-size: 3rem;
  padding-right: 20px;
}
.properties .wrapper .property .overlay p:last-of-type {
  font-size: 1rem;
  margin-top: 20px;
  font-style: italic;
}
.properties .wrapper .property .overlay p:first-of-type {
  padding-top: 15px;
}
.properties .wrapper .property .overlay p.now {
  font-weight: bold;
  font-size: 1.3rem;
  padding-left: 10px;
}
.properties .wrapper .property .title {
  padding: 10px 5px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 10;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.properties .wrapper .property .title h4 {
  font-size: 1.8rem;
  text-align: center;
  padding: 0px;
  margin: 0px;
  color: #070D0D;
}
.properties .wrapper .property .title div.newish-links {
  display: flex;
  padding-top: 5px;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 15px;
}
.properties .wrapper .property .title div.newish-links a {
  width: 80px;
  text-align: center;
  display: block;
  background-color: #FF6315;
  color: #fdfdff;
  text-decoration: none !important;
  line-height: 1;
  font-size: 12px;
  padding: 5px;
  border-radius: 5px;
}

.contact {
  padding-top: 8rem;
}
.contact h2 {
  text-align: center;
  font-size: 4.7rem;
  text-transform: uppercase;
  color: #070D0D;
  padding-bottom: 3rem;
}
.contact .map {
  width: 46%;
}
.contact .contact-form {
  width: 46%;
}
.contact .form-cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact .form-cols .col {
  width: 48%;
}
.contact input, .contact textarea {
  border: 1px solid black;
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}
.contact textarea {
  min-height: 200px;
}
.contact .btn {
  padding: 0.8rem 3.8rem;
}

.fadeIn {
  animation: fadeIn 1s linear;
}

.error {
  font-style: italic;
  color: #E00000;
  font-size: 13px;
  padding-top: 3px;
}

.property-hero {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 15px;
}
.property-hero p {
  color: #fdfdff;
  font-size: 22px;
  display: flex;
  padding: 8px 20px;
  background-color: rgba(0, 0, 0, 0.6);
}

section.property-title {
  background-color: #FF6315;
  color: #fdfdff;
  text-align: center;
  padding: 15px;
}
section.property-title h2 {
  font-size: 50px;
}

section.property-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
section.property-details .desc {
  width: 68%;
}
section.property-details .desc h3 {
  font-size: 32px;
}
section.property-details .details {
  width: 28%;
}
section.property-details .details table {
  width: 100%;
  text-align: center;
}
section.property-details .details table tr {
  padding: 0px;
  margin: 0px;
}
section.property-details .details table tr.top-border td {
  border-top: 1px solid #E00000 !important;
}
section.property-details .details table th, section.property-details .details table td {
  text-align: left;
  padding: 10px;
}
section.property-details .details table td.icon {
  color: #E00000;
  width: 60px;
  text-align: center;
}
section.property-details .details table td.icon i {
  font-size: 28px;
}
section.property-details .details table td.money, section.property-details .details table td.deposit {
  text-align: center;
  font-weight: bold;
  font-size: 120%;
  color: #E00000;
}
section.property-details .details table td.text-center {
  width: 50%;
  font-weight: bold;
  color: #E00000;
}

section.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
section.gallery h3 {
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
}
section.gallery a {
  width: 18%;
}
section.gallery a img {
  width: 100%;
  transition: 1s;
  margin: 0px;
  padding: 0px;
}
section.gallery a img:hover {
  filter: grayscale(100%);
  transform: scale(1.1);
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

footer.main-footer {
  background-color: #070D0D;
  color: #346060;
  padding: 50px 15px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 2rem;
  }

  section {
    padding: 5rem 2rem;
  }

  .home {
    min-height: 600px;
    justify-content: center;
    background-position: center;
  }
  .home .content {
    text-align: center;
    margin-top: 150px;
    padding-bottom: 5rem;
  }
  .home .content h2 {
    font-size: 4.5rem;
  }

  .properties .wrapper .property {
    width: 45%;
  }

  section.property-details .desc {
    width: 100%;
    padding-bottom: 25px;
  }
  section.property-details .details {
    width: 100%;
    padding-bottom: 25px;
  }

  section.gallery a {
    width: 31%;
  }
}
@media (max-width: 768px) {
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #fdfdff;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    color: #070D0D;
    margin: 2rem;
    font-size: 2rem;
  }

  .flexed.two-cols div {
    width: 100%;
  }

  .properties .wrapper .property {
    width: 90%;
  }

  .contact .flexed.space-between {
    justify-content: center !important;
  }
  .contact .map {
    width: 90%;
  }
  .contact .contact-form {
    width: 90%;
  }

  section.gallery a {
    width: 48%;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .header .login-form {
    width: 90%;
  }

  section.gallery a {
    width: 98%;
  }
}

/* Income Requirement Styling */
.income-requirement {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
    border-left: 4px solid #155724;
}

.income-requirement h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.income-requirement h4 i {
    font-size: 1.4rem;
}

.income-note {
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
    line-height: 1.5;
}

.income-note strong {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .income-requirement {
        padding: 15px;
        margin-top: 15px;
    }
    
    .income-requirement h4 {
        font-size: 1.1rem;
    }
    
    .income-note {
        font-size: 0.9rem;
    }
}

/*# sourceMappingURL=style.css.map */
