/*----------------------- fonts import -----------------------*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap");
/* font-family: 'Plus Jakarta Sans', sans-serif; */
/* 300, 400, 500, 600 */

/*----------------------- color styles -----------------------*/
:root {
  --background-white: #ffffff;
  --black: #000000;
  --dark-gray: #151515;

  --light-blue: #35c1d8;
  --dark-blue: #0f256e;
  --red: #d83535;

  --background-blue: #f6f8fb;

  --light-text: #7f89ac;
  --dark-text: #4a5065;
}

/*------------------------ Default ------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
  padding: 0 4rem;
  max-width: 1440px;
}

@media screen and (min-width: 1300px) {
  .container {
    padding: 0 6rem;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 426px) {
  .container {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 320px) {
  .container {
    padding: 0 1rem;
  }
}

h1 {
  font-size: 3.7rem;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 550px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 490px) {
  h1 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 400px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.6rem;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 425px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.3rem;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  h3 {
    font-size: 1.1rem;
  }
}

/*------------------------- navbar -------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-blue);
  z-index: 100;
}

.nav {
  height: 50px;
  margin: 0 6rem;
}

.nav-data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 4rem;
}

.nav-toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav-toggle-menu,
.nav-toggle-close {
  font-size: 1.35rem;
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav-toggle-close {
  opacity: 0;
}

.link-content {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--black);
}

.nav-h {
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-link {
  display: flex;
}

.dropdown-arrow {
  height: 20px;
  font-size: 20px;
  margin-left: 0.5rem;
}

.nav-list {
  list-style-type: none;
}

.dropdown-content,
.dropdown-group,
.dropdown-list {
  display: grid;
}

.dropdown-container {
  background-color: var(--background-blue);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown-content {
  row-gap: 2.3rem;
}

.dropdown-group {
  padding-left: 2.5rem;
  row-gap: 1rem;
}

.dropdown-group:first-child {
  margin-top: 1.75rem;
}

.dropdown-group:last-child {
  margin-bottom: 1.75rem;
}

.dropdown-title {
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 1rem;
}

.dropdown-list {
  font-size: 0.9rem;
  color: var(--dark-text);
  list-style-type: none;
  row-gap: 0.3rem;
}

.dropdown-link a {
  transition: color 0.4s;
  color: var(--dark-text);
  text-decoration: none;
}

.dropdown-link a:hover {
  color: var(--light-blue);
}

.dropdown-btn {
  cursor: pointer;
  transition: background-color 0.4s;
}

/* .dropdown-btn:hover{
  background-color: var(--background-lightblue);
} */

.dropdown-arrow {
  transition: transform 0.4s;
}

@media screen and (max-width: 1300px) {
  .nav-menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh);
    overflow: auto;
    padding: 1.5rem 5rem;
    pointer-events: none;
    opacity: 0;
    background-color: var(--background-white);
    transition: top 0.4s, opacity 0.3s;
  }
  #login {
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
  }
}

.nav-link {
  padding: 1.25rem 1rem;
  display: flex;
}

.show-menu {
  opacity: 1;
  top: 3rem;
  pointer-events: initial;
}

.show-icon .nav-toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav-toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

.show-dropdown .dropdown-arrow {
  transform: rotate(180deg);
}

@media screen and (min-width: 1300px) {
  /* navbar */
  .nav {
    height: 65px;
    display: flex;
    justify-content: space-between;
  }
  .nav-toggle {
    display: none;
  }
  .nav-list {
    display: flex;
    align-items: center;
    column-gap: 2rem;
  }
  .logo img {
    width: 80px;
  }
  .nav li {
    display: flex;
  }
  /* .nav-link {
    padding: 0;
  } */
  .nav-link:hover {
    background-color: initial;
  }

  /* dropdown */
  .dropdown-btn {
    column-gap: 0rem;
    pointer-events: none;
  }
  .dropdown-container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 4rem;
    background-color: var(--background-blue);
    /* box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1); */
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown-group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown-group:first-child,
  .dropdown-group:last-child {
    margin: 0;
  }
  .dropdown-list {
    row-gap: 0.65rem;
  }
  .dropdown-link:hover {
    color: var(--blue);
  }
  .dropdown-item {
    cursor: pointer;
  }
  .dropdown-link {
    font-size: 1rem;
  }
  .dropdown-title {
    font-size: 1rem;
  }

  .dropdown-item:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* show dropdown */
  .dropdown-item:hover > .dropdown-container {
    top: 3.8rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}

@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

#login {
  padding: 0.3rem 1.4rem;
  height: 40px;
  font-size: 1rem;
  background-color: var(--black);
  border: none;
  border-radius: 2px;
  align-self: center;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s;
}

#login:hover {
  background-color: var(--dark-blue);
}

#login a {
  color: var(--background-white);
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.wishlist-icon {
  color: var(--red);
  transition: color 0.4s;
}

.wishlist-icon:hover {
  transition: color 0.4s;
  color: #da1212;
}

.wishlist {
  text-decoration: none;
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .nav {
    margin: 0 2rem;
  }
  .nav-menu {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 375px) {
  .nav {
    margin: 0 1rem;
  }
}

/*------------------------- hero sec -------------------------*/

.hero-sec {
  margin: 0 2rem;
}

.hero-sec .container {
  background-image: url("../assets/hero-sec-img.png");
  border-radius: 1.3rem;
}

.hero-sec {
  color: white;
  margin-top: 4rem;
}

.hero-sec .main-content {
  padding: 7rem 3rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.hero-sec .heading {
  width: 55%;
  text-align: center;
}

.hero-sec .heading h1 span {
  color: var(--light-blue);
  font-weight: 600;
}

.hero-sec .search-sec {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 12rem;
}

.hero-sec .search-sec .prop-tags {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.hero-sec .search-sec .prop-tags .tag {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10rem;
  padding: 0.6rem 1.3rem;
  font-size: 1rem;
}

.hero-sec .search-sec .search-box {
  position: absolute;
  top: 2.5rem;
}

.hero-sec .search-box .input-group {
  border-right: 1px solid #d1d6eb;
}

.hero-sec .search-box .input-group:last-child {
  border: none;
}

.hero-sec .search-sec #search {
  padding: 0.8rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 400;
  background-color: var(--light-blue);
  border: none;
  border-radius: 1px;
  color: var(--background-white);
  align-self: center;
  transition: background-color 0.4s;
  margin-top: 2rem;
}

.hero-sec .search-sec #search:hover {
  background-color: #149aae;
}

.search-box .form {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  color: black;
  background-color: var(--background-white);
  box-shadow: 0px 4px 40px 5px rgba(0, 0, 0, 0.08);
  padding: 2rem 1rem;
  border-radius: 0.2rem;
  margin-top: 3rem;
}

.search-box .input-group input,
select {
  border: none;
  border-bottom: 1px solid var(--dark-text);
  padding: 1rem 0rem;
  font-size: 1rem;
  width: 100%;
  margin-top: 0.5rem;
}

.search-box .input-group {
  padding: 0.3rem 2rem;
}

.search-box .input-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #7f89ac;
  letter-spacing: 0.03375rem;
}

.search-box #budget .inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  outline: none;
}

input[type="text"]:focus {
  border-bottom: 3px solid #555;
}

@media screen and (max-width: 1400px) {
  .hero-sec .heading {
    width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .hero-sec .main-content {
    padding: 7rem 0rem 0 0rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-sec {
    margin: 4rem 1rem;
  }
  .hero-sec .main-content {
    padding: 6rem 0rem 4rem 0rem;
    gap: 3rem;
  }
  .search-box .form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 1rem;
    padding: 2rem 1rem;
    border-radius: 0.2rem;
    margin-top: 3rem;
  }
  .area {
    grid-column: 1 / 4;
  }
  .hero-sec .search-box .input-group:first-child {
    border: none;
  }
  .hero-sec .search-sec .prop-tags .tag {
    font-size: 0.9rem;
  }
  .hero-sec .search-sec .prop-tags {
    display: flex;
    gap: 1rem;
  }
}

@media screen and (max-width: 730px) {
  .hero-sec .heading {
    width: 100%;
  }
  .hero-sec .search-sec .prop-tags .tag {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 550px) {
  .hero-sec .search-sec .prop-tags {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
  .hero-sec .search-sec .search-box {
    top: 4rem;
  }
  .search-box .form {
    grid-template-columns: 1fr 1fr;
  }
  .area {
    grid-column: 1 / 2;
  }
  .hero-sec .search-box .input-group:first-child {
    border-right: 1px solid #d1d6eb;
  }
  .hero-sec .search-box .input-group:nth-child(2) {
    border: none;
  }
}

@media screen and (max-width: 490px) {
  .hero-sec {
    margin: 3.5rem 0.5rem;
  }
  .hero-sec .search-sec .prop-tags .tag {
    font-size: 0.7rem;
  }
  .hero-sec .search-sec .prop-tags {
    gap: 0.5rem;
  }
  .search-box .form {
    padding: 1rem 0rem;
  }
  .search-box .input-group input,
  select {
    font-size: 0.9rem;
    margin-top: 0.2rem;
  }
  .search-box .input-group label {
    font-size: 0.7rem;
  }
  .hero-sec .main-content {
    padding: 6rem 0rem 2rem 0rem;
    gap: 2rem;
  }
}

@media screen and (max-width: 400px) {
  .hero-sec .search-sec .prop-tags {
    grid-template-columns: 1fr 1fr;
  }
  .hero-sec {
    margin: 3.5rem 0.1rem;
  }
  .search-box .form {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .hero-sec .main-content {
    padding: 6rem 0rem 9rem 0rem;
    gap: 2rem;
  }
  .hero-sec .search-box .input-group {
    border: none;
  }
  .search-box .input-group input,
  select {
    font-size: 0.9rem;
    margin-top: 0rem;
  }
}

/*-------------------- featured properties --------------------*/

.featured-proj-sec {
  margin-top: 14rem;
}

.projects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0rem;
  margin: 8rem 0rem 6rem 0rem;
  position: absolute;
  top: -4rem;
}

.property {
  position: relative;
}

.property .img img {
  width: 100%;
  border-radius: 0.5rem;
}

.overlay {
  position: absolute;
  top: 0;
  opacity: 0.7;
  border-radius: 0.5rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.92) 80%,
    rgba(0, 0, 0, 1) 20%
  );
  width: 100%;
  height: 100%;
  transition: all 0.55s ease;
}

.property .content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.property .content .visible .loc {
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--background-blue);
  letter-spacing: 0.13rem;
  font-weight: 500;
  margin-top: 0.4rem;
}

.property .content .price {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.property .content .tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property .content .tag {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--light-blue);
}

.property .hidden {
  opacity: 0;
  /* display: none; */
  transition: all 0.55s ease;
  margin-bottom: -5rem;
}

.property:hover .hidden {
  opacity: 1;
  /* display: block; */
  transition: all 0.55s ease;
  margin-bottom: 0rem;
}

.property:hover .overlay {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.82) 45%,
    rgba(0, 0, 0, 0.9) 60%
  );
  transition: all 0.55s ease;
}

.nav-btn {
  height: 40px;
  width: 1px;
  border-radius: 100rem;
  padding: 2rem;
  background-color: var(--dark-gray);
}

.nav-btn::after,
.nav-btn::before {
  transform: scale(0.7);
  color: var(--background-white);
}

.swiper-button-next {
  transform: translateX(10px);
}

@media screen and (max-width: 1024px) {
  .property .content .price {
    font-size: 1.2rem;
  }
  .nav-btn::after,
  .nav-btn::before {
    transform: scale(0.4);
  }
  .nav-btn {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .projects {
    margin: 7rem 0rem 5rem 0rem;
  }
}

/*----------------------- tools section -----------------------*/

.tools-sec {
  background-color: var(--dark-blue);
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.tools-container .head h2 {
  color: white;
  text-align: center;
}

.tool {
  background-color: var(--background-blue);
  padding: 3.5rem 2rem;
  border-radius: 15px;
}

.tools {
  top: -4rem;
  margin-top: 8rem;
}

.tool .content h3 {
  font-weight: 500;
  line-height: 127%;
}

.tool .content p {
  margin-top: 1rem;
  color: #636363;
}

#calculate {
  margin-top: 2rem;
  padding: 0.5rem 1.8rem;
  height: 40px;
  font-size: 1rem;
  background-color: var(--light-blue);
  border: none;
  border-radius: 4px;
  align-self: center;
  transition: background-color 0.4s;
}

#calculate:hover {
  background-color: #1391a4;
}

#calculate a {
  color: var(--background-white);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .tools-sec {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .tools {
    margin-top: 7rem;
  }
}

@media screen and (max-width: 500px) {
  .tool {
    padding: 3.5rem 3rem;
  }
}

@media screen and (max-width: 330px) {
  .tool {
    padding: 3.5rem 1.5rem;
  }
}

/*----------------- best locality to live in lucknow -----------------*/

.locality-sec {
  margin-top: 7rem;
}

@media screen and (max-width: 1024px) {
  .locality-sec {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 425px) {
  .locality-sec {
    margin-top: 3rem;
  }
}

/*----------------- helpful content section -----------------*/

.rel-blogs {
  padding: 5rem 0;
  background-color: var(--background-blue);
}

.rel-blogs .blogs {
  margin-top: 8rem;
  position: relative;
  top: -4rem;
}

@media screen and (max-width: 768px) {
  .rel-blogs {
    margin-bottom: 2rem;
  }
}

.head {
  margin-bottom: 4rem;
}

.blogs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.6rem;
}

.blog .banner img {
  width: 100%;
  border-radius: 4px 4px 0 0;
}

.blog {
  border-radius: 8px;
  background-color: var(--background-white);
  transition: box-shadow 0.4s;
  box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.02);
}

.blog:hover {
  box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.04);
}

.blog .main {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.1rem;
}

.blog .main .read-time {
  color: #9f9f9f;
  margin-top: 1rem;
}

.blog .main .title a {
  font-size: 1.2rem;
  color: #000000;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
  transition: color 0.2s;
}

.blog .main .title a:hover {
  color: var(--dark-blue);
}

.blog .main .tag a {
  font-size: 0.9rem;
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 600;
}

@media screen and (max-width: 1000px) {
  .blog .main .title a {
    font-size: 1.1rem;
  }
  .rel-blogs {
    padding: 4rem 0;
  }
}

@media screen and (max-width: 768px) {
  .blog .main .title a {
    font-size: 1rem;
  }
  .rel-blogs {
    padding: 3rem 0;
  }
}

@media screen and (max-width: 425px) {
  .rel-blogs .blogs {
    margin-top: 6rem;
  }
}

/*--------------------- connect with a professional ---------------------*/

.contact-us-sec {
  background-color: var(--background-blue);
  padding-bottom: 4rem;
}

.contact-us-sec .contact-us {
  background-color: var(--dark-blue);
  color: var(--background-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 6rem;
  border-radius: 10px;
  gap: 8rem;
}

.contact-us .text h2 {
  margin-bottom: 1rem;
  line-height: 120%;
  font-size: 2.3rem;
}

.contact-us button {
  border: 3px solid white;
  background-color: var(--dark-blue);
  border-radius: 200px;
  padding: 2rem 0rem;
  transition: background-color 0.4s, color 0.4s;
}

.contact-us button a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.contact-us button:hover {
  background-color: var(--background-blue);
  color: var(--dark-blue);
  transition: background-color 0.4s, color 0.4s;
}

.contact-us button:hover a {
  color: var(--dark-blue);
  transition: background-color 0.4s, color 0.4s;
}

@media screen and (max-width: 1300px) {
  .contact-us-sec .contact-us {
    gap: 4rem;
  }
}

@media screen and (max-width: 1024px) {
  .contact-us-sec .contact-us {
    gap: 1rem;
    padding: 4.5rem 4rem;
  }
  .contact-us .text h2 {
    font-size: 1.8rem;
  }
  .contact-us button a {
    font-size: 1.2rem;
  }
  .contact-us button {
    padding: 1.8rem 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-us .text h2 {
    font-size: 1.6rem;
  }
  .contact-us-sec .contact-us {
    gap: 1.5rem;
    padding: 4rem 3rem;
  }
  .contact-us button a {
    font-size: 1.1rem;
  }
  .contact-us button {
    padding: 1.5rem 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-us-sec .contact-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-us .text h2 {
    font-size: 1.8rem;
    line-height: 130%;
  }
  .contact-us button {
    margin-top: 1rem;
    padding: 1.2rem 2rem;
  }
}

@media screen and (max-width: 500px) {
  .contact-us .text h2 {
    font-size: 1.5rem;
  }
  .contact-us button {
    padding: 1.2rem 2rem;
  }
  .contact-us button a {
    font-size: 1rem;
  }
  .contact-us-sec .contact-us {
    padding: 4rem 1.4rem;
  }
}

/*--------------------- footer styling ---------------------*/

footer {
  background-color: var(--black);
  color: var(--background-white);
}

footer .main-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 5rem 0 4rem 0;
}

footer .main-content .logo-footer img {
  width: 60%;
  margin-left: 4rem;
}

footer ul {
  list-style-type: none;
  font-size: 0.95rem;
  display: grid;
  gap: 0.9rem;
}

footer a {
  text-decoration: none;
  color: var(--background-white);
  transition: color 0.2s;
  line-height: 145%;
}

footer a:hover {
  color: var(--light-blue);
}

footer .label {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  letter-spacing: 0.09rem;
}

.foot {
  display: flex;
  background-color: var(--dark-gray);
  justify-content: space-between;
  padding: 1.2rem 6rem;
  color: var(--background-white);
}

.foot a {
  text-decoration: none;
  color: var(--background-white);
  transition: color 0.2s;
}

.foot a:hover {
  color: var(--light-blue);
}

@media screen and (max-width: 1300px) {
  .foot {
    padding: 1.2rem 4rem;
  }
  footer .main-content {
    gap: 1rem;
  }
}

@media screen and (max-width: 840px) {
  footer .main-content {
    grid-template-columns: 1.2fr 1fr;
    row-gap: 5rem;
  }
  footer .main-content .logo-footer img {
    width: 60%;
  }
}

@media screen and (max-width: 770px) {
  .foot {
    padding: 1.2rem 2rem;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 520px) {
  footer .main-content {
    grid-template-columns: 1fr 1fr;
    row-gap: 5rem;
    column-gap: 0.1rem;
  }
  footer .main-content .logo-footer img {
    width: 50%;
  }
  footer ul {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  .foot {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

/*--------------------- SINGLE PROPERTY PAGE ---------------------*/

/*------------------------- main section -------------------------*/

.main-sec {
  width: 100%;
  margin-top: 4rem;
  padding: 4rem 0;
}

.main-sec .main-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  position: relative;
}

.main-sec .images img {
  border-radius: 10px;
}

.main-sec .info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.main-sec .cta button {
  background-color: var(--red);
  color: var(--background-white);
  border: none;
  border-radius: 3px;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.8s;
}

.main-sec .cta button i {
  font-size: 1.6rem;
  margin-left: -7px;
}

.main-sec .cta button:hover {
  background-color: #b60f0f;
  transition: background-color 0.8s;
}

.main-sec .info .name-loc {
  border-bottom: 1px solid #bdc5df;
  padding-bottom: 1.8rem;
}

.main-sec .info .name-loc h2 {
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.main-sec .info .name-loc .loc {
  font-weight: 500;
  color: var(--dark-text);
}
.main-sec .info .name-loc i {
  margin-right: 0.3rem;
}

.main-sec .info .price-status h3 {
  font-weight: 600;
}

.main-sec .info .price-status .status {
  color: var(--dark-text);
  font-weight: 500;
  margin-top: 0.7rem;
}

.main-sec .info .price-status i {
  margin-right: 0.3rem;
}

.main-sec .info .specs {
  background-color: var(--background-blue);
  width: 80%;
  padding: 1.7rem 2rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

.main-sec .info .specs h4 {
  color: var(--dark-blue);
  margin-bottom: 0.4rem;
}

.main-sec .info .specs .proj-size {
  margin-bottom: 1.3rem;
}

.main-sec .info .specs p {
  color: var(--light-text);
  font-size: 0.95rem;
}

.main-sec .prop-mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.main-sec .prop-mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.main-sec .prop-mySwiper2 {
  margin-bottom: 1rem;
}

.main-sec .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-sec .images-fill {
  width: 50%;
  position: absolute;
}

@media screen and (max-width: 1024px) {
  .main-sec .main-container {
    grid-template-columns: 1.2fr 1fr;
  }
  .main-sec .images-fill {
    width: 50%;
  }
  .main-sec .info .specs {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main-sec {
    margin-top: 2rem;
  }
  .main-sec .main-container {
    grid-template-columns: 1fr;
  }
  .main-sec .info {
    margin-top: 75vw;
  }
  .main-sec .images-fill {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .main-sec {
    margin-top: 1rem;
  }
}

/*------------------------- body section -------------------------*/

.body-sec .main-content {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-gap: 8rem;
  margin-top: 5rem;
}

.body-sec .text-body .section {
  margin-bottom: 5rem;
}

.text-body ul {
  list-style-position: inside;
}

.text-body h2 {
  font-size: 2.3rem;
}

.text-body p {
  margin-top: 1.5rem;
  line-height: 150%;
  font-weight: 500;
}

.body-sec .call-form {
  background-color: var(--background-blue);
  padding: 3rem 2.5rem;
  height: 29rem;
  position: sticky;
  top: 8rem;
}

.body-sec .call-form h3 {
  font-size: 1.6rem;
  line-height: 140%;
}

.body-sec .call-form form {
  margin-top: 1.5rem;
}

.body-sec .call-form form input {
  border: none;
  font-size: 1rem;
}

.body-sec .cta button {
  margin-top: 1rem;
  background-color: var(--red);
  color: var(--background-white);
  border: none;
  border-radius: 3px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.8s;
}

.body-sec .cta button i {
  font-size: 1.6rem;
  margin-left: -7px;
}

.body-sec .cta button:hover {
  background-color: #b60f0f;
  transition: background-color 0.8s;
}

@media screen and (max-width: 1024px) {
  .body-sec .main-content {
    grid-template-columns: 1.6fr 1fr;
    grid-gap: 4rem;
    margin-top: 3rem;
  }
  .body-sec .call-form {
    position: sticky;
    top: 4rem;
  }
  .text-body h2 {
    font-size: 2rem;
  }
  .body-sec .text-body .section {
    margin-bottom: 4rem;
  }
  .body-sec .call-form h3 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 860px) {
  .body-sec .main-content {
    grid-template-columns: 1fr;
    grid-gap: 0rem;
    margin-top: 3rem;
  }
}

@media screen and (max-width: 500px) {
  .text-body h2 {
    font-size: 1.7rem;
  }
  .body-sec .text-body .section {
    margin-bottom: 2.5rem;
  }
  .text-body p {
    font-size: 0.9rem;
  }
  .body-sec .call-form h3 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 375px) {
  .body-sec .call-form {
    padding: 2.5rem 2rem;
    height: 27rem;
  }
}

.contact-us-sec {
  background-color: white;
  margin-top: 2rem;
}

.related-props {
  padding-top: 2rem;
}

/*------------------------ fab styling ------------------------*/

.fab-container .floating-btn-wa {
  background-color: rgb(12, 128, 70);
  padding: 1.1rem 1.2rem 1.2rem 1.2rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  border-radius: 100rem;
  cursor: pointer;
  transition: all 1s ease;
}

.fab-container .floating-btn-wa:hover {
  background-color: #075e54;
}

.fab-container .floating-btn-wa i {
  font-size: 2.3rem;
  text-align: center;
  color: #ffffff;
}

.fab-container .floating-btn-call {
  background-color: rgb(12, 128, 70);
  padding: 1.1rem 1.2rem 1.2rem 1.2rem;
  position: fixed;
  bottom: 7.5rem;
  right: 2rem;
  z-index: 100;
  border-radius: 100rem;
  cursor: pointer;
  transition: all 1s ease;
}

.fab-container .floating-btn-call:hover {
  background-color: #075e54;
}

.fab-container .floating-btn-call i {
  font-size: 2.3rem;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .fab-container .floating-btn-wa {
    padding: 0.8rem 0.8rem 0.8rem 0.8rem;
    bottom: 1rem;
    right: 1rem;
  }
  .fab-container .floating-btn-call {
    padding: 0.8rem 0.8rem 0.8rem 0.8rem;
    bottom: 5.5rem;
    right: 1rem;
  }
  .fab-container .floating-btn-wa i {
    font-size: 2rem;
  }
  .fab-container .floating-btn-call i {
    font-size: 2rem;
  }
}
