/* start variables */
:root {
  --main-color: #65b110;
  --main-time: 0.6s;
  --lightgray-color: rgb(243, 236, 236);
  --darkgray-color: rgb(107, 105, 105);
  --white-color: #ffff;
  --orange-color: #ff6935;
  --purple-color: #6854ff;
  --light-green: #7eda15;
}
/* end variables */

/* srart global rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 10px;
}

img {
  max-width: 100%;
  display: block;
}
ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.container {
  margin: 0 auto;
  padding: 0 0.5%;
  width: 97%;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  font-family: "Outfit", sans-serif;
}
html {
  scroll-behavior: smooth;
}

.mb-80 {
  margin-bottom: 80px;
}

@keyframes top-down {
  0% {
    transform: translateY(0) scaleY(1);
    animation-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }
  30% {
    transform: translateY(-5px) scaleY(0.98); /* stretch */
  }
  50% {
    transform: translateY(-10px) scaleY(1.03); /* squash */
  }
  70% {
    transform: translateY(-6px) scaleY(0.98);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}
/* end global rules */

/* start global component  */

p::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection {
  color: var(--white-color);
  background-color: var(--main-color);
}

/* end global component  */

/* start header */
header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: var(--white-color);
  z-index: 900;
}
.fav {
  animation-name: top-down;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}
.menu {
  display: none;
}
.header__container__elements {
  display: flex;
  padding: 20px 0;
  /* gap: 5%; */
  align-items: center;
}
.header__logo {
  width: 12%;
  display: flex;
}
.header__list__container {
  width: 60%;
  display: flex;
  justify-content: center;
}
.header__list {
  width: 75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__item {
  position: relative;
  padding-bottom: 10px;
}
.header__item a {
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: 500;
  color: #000;
}
.header__item--icon {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__item::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  transition: var(--main-time);
}
.header__item:hover::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
}
.header__btn__container {
  width: 28%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}
.header-btn {
  padding: 10px 30px;
  font-size: 1.6rem;
  border-radius: 25px;
  border: 2px solid var(--lightgray-color);
  background-color: transparent;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  transition: var(--main-time);
}
.header-btn:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  border-color: transparent;
}
.header-btn:hover .header-icon-house {
  color: var(--white-color);
}
.header-icon-heart {
  font-size: 3rem;
}
.header-icon-house {
  color: var(--main-color);
  transition: var(--main-time);
}

/* end header */

/* start main section */
.main-section {
  background-color: var(--lightgray-color);
  position: relative;
  width: 100;
  /* height: calc(100vh - 88px); */
  height: auto;
  /* overflow: hidden; */
}
.main__section__container {
  display: flex;
}
.main__div {
  width: 50%;
}
.main__img {
  background-image: url(../img/home-bg-01.jpg);
  height: calc(100vh - 88px);

  background-position: center;
  background-size: cover;
}
.main__txt__container {
  width: 75%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
}
.main__txt {
  padding: 0 20px;
  display: flex;
  position: relative;
}
.main__h1 {
  font-size: 7rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  text-align: center;
}
.main__p {
  color: var(--darkgray-color);
  font-size: 2rem;
  line-height: 2.9rem;
  text-align: center;
  margin: 30px 0;
}
.main_btns_container {
  padding: 32px 0;
}
.main__btn {
  border-color: transparent;
  position: absolute;
  padding: 11px 22px;
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  cursor: pointer;
}

.main__btn--green {
  background-color: var(--main-color);
  color: var(--white-color);
  width: 20%;
  right: 45%;
  z-index: 2;
}
.main__btn--gray {
  color: var(--darkgray-color);
  background-color: rgb(223, 217, 217);
  width: 30%;
  padding: 11px 24px;
  right: 30%;
  text-align: end;
}
.main__input__container {
  margin-top: 35px;
  /* padding-bottom: 72px; */
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}
.main__input__container input {
  width: 100%;
  height: 75px;
  border: 1px solid var(--lightgray-color);
  border-radius: 50px;
  box-shadow: 0 2px 15px rgb(190, 190, 190);
  color: var(--darkgray-color);
  color: rgb(179, 172, 172);
  font-size: 1.8rem;
  margin-top: 25px;
  padding: 25px;
}
.main__input__btn {
  padding: 30px;
  border: 1px solid var(--lightgray-color);
  border-radius: 50px;
  background-color: var(--main-color);
  color: var(--white-color);
  font-size: 2.5rem;
  position: absolute;
  right: 0;
  bottom: -7px;
  cursor: pointer;
}
/* end main section */

/* start property section */
.property {
  position: absolute;
  width: 100%;
}
.property__container {
  display: flex;
  align-items: center;
}
.properties {
  display: block;
  position: absolute;

  display: flex;
  width: 40%;
  right: 6%;
  overflow: hidden;
}
.properties img {
  cursor: pointer;
}
.property__one {
  margin-right: -20px;
  transition: 1s;
}
.property__one:hover {
  margin: 0 -10px 0 10px;
}
.property__two {
  margin-right: -20px;
  transition: 1s;
}

.property__two:hover {
  margin: 0 -10px 0 10px;
}

.property__three {
  transition: var(--main-time);
}
.property__txt {
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: absolute;
  right: 10%;
  bottom: -50px;
  padding-bottom: 20px;
  padding-top: 10px;
}
.property__txt::after {
  content: "";
  position: absolute;
  height: 1.5px;
  background-color: #000;
  width: 0;
  margin-bottom: 15px;
  bottom: 0;

  transition: var(--main-time);
}
.property__txt:hover::after {
  width: 185px;
}

/* end property section */

/* start homeId */
.HomeId {
  padding: 60px 0;
  margin-top: 60px;
  text-align: center;
}
.homeId__title h3 {
  font-size: 3rem;
  font-weight: 500;
  padding: 20px;
  margin-bottom: 40px;
  /* cursor: pointer; */
}
.home__cards__container {
  display: flex;
  gap: 20px;
}
.homeId__card {
  width: calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: var(--main-time);
}
.homeId__card:hover {
  box-shadow: 1px 1px 5px 0 rgb(180, 176, 176);
}
.home__card__icon span {
  font-size: 9rem;
  color: var(--main-color);
  padding: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}
.home__card__title h4 {
  font-size: 2.4rem;
  font-weight: 500;
  cursor: pointer;
}
.home__card__p p {
  font-size: 1.8rem;
  text-align: center;
  color: var(--darkgray-color);
  padding: 15px 0;
}
.home__card__btn {
  padding: 20px 0;
}
.home__card__btn button {
  text-transform: capitalize;
  font-size: 1.8rem;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 25px;
  background-color: var(--lightgray-color);
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  transition: var(--main-time);
  cursor: pointer;
}
.home__card__btn button:hover {
  background-color: rgb(192, 189, 189);
}

/* end homeId */

/* start Recommended  */
.recommendation {
  padding-top: 60px;
  background-color: var(--lightgray-color);
  padding-bottom: 140px;
}
.recommendation__titles {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 30px;
  align-items: center;
}
.recommendation__titles h5 {
  font-size: 3.5rem;
  font-weight: 500;
  text-transform: capitalize;
}
.Recommended__btn {
  background-color: var(--white-color);
  padding: 14px 25px;
  font-family: "Outfit", sans-serif;
  border: 1px solid transparent;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 30px;
  text-transform: capitalize;
  transition: var(--main-time);
  cursor: pointer;
}
.Recommended__btn:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.recommendation__cards__container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.recommendation__card {
  width: calc((100% - 120px) / 3);
  width: 30%;
  background-color: #65b110;
  border-radius: 15px;
  position: relative;
  transition: var(--main-time);
  cursor: pointer;
}

.recommendation__card img {
  width: 100%;
}
.recommendation__card:hover .recommendation__overlay {
  opacity: 0.3;
}
.recommendation__card:hover .mini__recommendation__icon {
  opacity: 1;
  z-index: 3;
}

.recommendation__card img {
  border-radius: 10px;
}
.mini__recommendation__card {
  position: absolute;
  padding: 16px;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini__recommendation__icons__container {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.mini__recommendation__btn {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 4px 11px;
  border: 1px solid transparent;
  color: var(--white-color);
  border-radius: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
.recommendation__btn--orange {
  position: absolute;
  background-color: var(--orange-color);
}
.recommendation__btn--green {
  background-color: var(--main-color);
  position: absolute;
  left: 29%;
}
.recommendation__btn--purple {
  background-color: var(--purple-color);
  position: absolute;
  left: 29%;
}
.recommendation__btn--gray {
  background-color: var(--darkgray-color);
  position: absolute;
  left: 52.5%;
}

.mini__recommendation__white {
  position: relative;
  z-index: 3;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 5px 8px;
  background-color: var(--white-color);
  display: flex;
  justify-content: space-between;
}
.mini__recommendation__white .title,
.checkOut__card__title h5 {
  font-size: 1.9rem;
  padding-bottom: 8px;
  font-weight: 500;
  transition: var(--main-time);
}
.mini__recommendation__white .title {
  cursor: pointer;
}
.mini__recommendation__white .title:hover {
  color: var(--main-color);
}
.mini__recommendation__white .price {
  font-size: 1.5rem;
  padding-bottom: 8px;
  font-weight: 700;
}
.mini__recommendation__white .price span {
  color: var(--darkgray-color);
}
.arrow__icon {
  display: flex;
  align-items: center;
}
.recommendation__overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background-color: #000;
  opacity: 0;
  transition: var(--main-time);
}

.mini__recommendation__star_plus {
  display: flex;
  justify-content: end;
  gap: 5px;
}
.mini__recommendation__icon {
  width: 6%;
  height: 6%;
  border-radius: 50%;
  background-color: var(--darkgray-color);
  padding: 17px;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--main-time);
}

/* end Recommended  */

/* start YourProperty */
.YourProperty {
  position: relative;
}
.YourProperty__img__txt {
  width: 70%;
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  box-shadow: 1px 1px 10px var(--darkgray-color);
  position: absolute;
  top: -130px;
  z-index: 9;
  background-color: var(--white-color);
  right: 50%;
  transform: translateX(50%);
}
.YourProperty__img {
  width: 50%;
  background-image: url(../img/home-bg-02.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 10px 0 0 10px;
}
.YourProperty__txt {
  width: 50%;
  padding: 20px 35px;
}
.YourProperty__title h5 {
  font-size: 3.7rem;
  font-weight: 500;
}
.YourProperty__title > p {
  color: var(--darkgray-color);
  font-size: 1.6rem;
  margin: 10px 0;
}
.Your__property__icon {
  display: flex;
  margin: 20px 0;
  position: relative;
  cursor: pointer;
  align-items: center;
}
.Your__property__icon::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #000;
  width: 0;
  margin-top: 25px;

  transition: var(--main-time);
}
.Your__property__icon:hover::after {
  width: 30%;
}
.Your__property__icon p {
  font-size: 1.8rem;
  font-weight: 600;
}
.Your__property__icon span {
  color: var(--main-color);
  padding-left: 15px;
}

/* end YourProperty */

/* start findHome */
.findHome {
  margin-top: 80px;
  padding-top: 80px;
}
.findHome__container__all {
  display: flex;
  margin-top: 40px;
  gap: 25px;
}

.findHome__mostListing {
  width: calc(((100% - 25px) / 3) * 2);
  /* margin-bottom: 10px; */
}
.mostlisting__cards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.mostlisting__cards:hover .mostlisting__card--home {
  box-shadow: 1px 1px 10px rgb(161, 159, 159);
}
.mostlisting__cards:hover .mostlisting__card--sofa {
  box-shadow: 0px 0px 0px transparent;
}
.mostlisting__card {
  width: calc((100% - 20px) / 2);
  padding: 25px;

  transition: var(--main-time);
}
.mostlisting__card--sofa {
  box-shadow: 1px 1px 10px rgb(161, 159, 159);
}
.mostListing__title > h5 {
  font-size: 3rem;
  line-height: 3.9rem;
  font-weight: 500;
}
.mostListing__title p {
  color: var(--darkgray-color);
  font-size: 1.8rem;
  padding: 16px 0;
  line-height: 2.5rem;
}
.findHome__img {
  width: calc((100% - 25px) / 3);
  background-image: url(../img/home-img-01.jpg);
  background-position: bottom;
  background-size: cover;
  position: relative;
}
.findHome__btn {
  width: 80%;
  margin: 0 auto;
  padding: 15px 22px;
  background-color: var(--white-color);
  border: 1px solid transparent;
  border-radius: 30px;
  font-size: 2rem;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "Outfit", sans-serif;
  position: absolute;
  bottom: 2%;
  right: 10%;
  transition: var(--main-time);
  cursor: pointer;
}
.findHome__btn:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}
.mostlisting__card__icon span {
  color: var(--main-color);
  font-size: 5.5rem;
}
.mostlisting__card__title > h5 {
  font-size: 1.8rem;
  font-weight: 500;
  padding-top: 8px;
}

.mostlisting__card--home:hover {
  box-shadow: 1px 1px 10px rgb(161, 159, 159);
}
.mostlisting__card__icon--home > span {
  color: #000;
}
.mostlisting__card--home:hover .material-symbols-outlined {
  color: var(--main-color);
}
.mostlisting__footer {
  display: flex;
  align-items: center;
  position: relative;
  width: 50%;
  cursor: pointer;
}
.mostlisting__footer span {
  color: var(--main-color);
}
.mostlisting__footer::after {
  content: "";
  background-color: #000;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  transition: var(--main-time);
}
.mostlisting__footer:hover::after {
  width: 65%;
}
.mostlisting__footer p {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

/* end findHome */

/* start check out  */
.checkOut {
  margin-top: 50px;
  background-color: var(--lightgray-color);
  padding-bottom: 80px;
}

.checkOut__container {
  /* display: flex; */
  gap: 30px;
}
.checkOut__container {
  display: flex;
}

.checkOut__featured {
  width: calc((100% - 30px) / 3);
  position: sticky;
  margin: 40px 0;
  padding: 40px 0;

  padding-right: 30px;
  display: flex;
  flex-direction: column;
  top: 0;
  z-index: 8;

  align-self: start;
}
.checkOut__featured h5 {
  font-size: 4.5rem;
  font-weight: 500;
  margin-top: 40px;
  padding-top: 40px;
}
.checkOut__featured p {
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--darkgray-color);
  padding: 15px 0;
}
.checkOut__card__title h5:hover,
.checkOut__card__title p:hover {
  color: var(--main-color);
}

.checkOut__btn {
  background-color: var(--white-color);
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 30px;
  width: 80%;
  /* margin: 0 auto; */
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 60px;
  transition: var(--main-time);
  cursor: pointer;
}

.checkOut__btn:hover {
  background-color: transparent;
  box-shadow: 0 1px 10px rgb(175, 172, 172);
}
.checkOut__btn span {
  color: var(--main-color);
}
.checkOut__cards {
  width: calc(((100% - 30px) / 3) * 2);
}
.checkOut__cards__container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin: 70px 0;
  padding: 80px 0;
}
.checkOut__card {
  width: calc((100% - 30px) / 2);
  cursor: pointer;
  /* margin-top: 40px; */
}
.checkOut__card__img {
  position: relative;
  transition: var(--main-time);
}
.checkOut__card__img:hover .chekOut__overlay {
  background-color: #000;
  opacity: 0.3;
}

.chekOut__overlay {
  position: absolute;
  transition: var(--main-time);
  inset: 0;
  width: 100%;
  height: 100%;
}

.checkOut__card img {
  width: 100%;
}
.checkOut__card__txt {
  padding: 20px;
  background-color: var(--white-color);
}
.checkOut__card__title p {
  color: var(--darkgray-color);
  font-size: 1.8rem;
  transition: var(--main-time);
  cursor: pointer;
}
.checkout__card__icons__container {
  gap: 30px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--lightgray-color);
  margin: 0 -20px;
}
.checkout__card__icons__container,
.checkOut__card__icon {
  display: flex;
  align-items: center;
}
.checkOut__card__icon {
  gap: 5px;
}
.checkOut__card__icon > span:nth-child(odd) {
  color: var(--main-color);
}
.checkOut__card__icon > span:nth-child(even) {
  color: var(--darkgray-color);
  font-size: 1.4rem;
}
.checkOut__card__footer {
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
}
.checkOut__footer__txt {
  font-size: 1.4rem;
  font-weight: 600;
}
.checkOut__footer__icons {
  display: flex;
  gap: 5px;
}
.icon__container span {
  width: 5%;
  height: 5%;
  border-radius: 50%;
  padding: 16px;
  color: var(--darkgray-color);
  border: 1px solid var(--lightgray-color);
  transition: var(--main-time);
}
.icon__container span:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  border-color: transparent;
}
.checkOut__btns_cover {
  position: absolute;
  top: 0;
  padding: 10px;
  width: 100%;
  height: 100%;
}
.checkOut__btns_cover span {
  position: absolute;
  right: 2%;
  bottom: 2%;
  opacity: 0;
  transition: var(--main-time);
}
.checkOut__card__img:hover .checkOut__btns_cover span {
  color: var(--white-color);
  opacity: 1;
}
.checkOut__btns_cover span {
  transition: var(--main-time);
}
.checkOut__btn--orange {
  background-color: var(--orange-color);
}
.checkOut__btn--green {
  background-color: var(--main-color);
  margin-left: 8px;
}
.checkOut__btn--purple {
  background-color: var(--purple-color);
  margin-left: 8px;
}
.checkOut__btn--gray {
  background-color: var(--darkgray-color);
  margin-left: 8px;
}

/* end check out  */

/* start discover */
.discover {
  position: relative;
}
.discover__div {
  background-image: url(../img/home-bg_04.jpg);
  width: 70%;
  margin: 0 auto;
  border-radius: 10px;
  position: absolute;
  top: -130px;
  padding: 40px;
  right: 50%;
  transform: translateX(50%);
  background-position: center;
  background-size: cover;
}
.discover__div h5 {
  font-size: 3.3rem;
  color: var(--white-color);
  line-height: 5rem;
  font-weight: 500;
}
.discover__btns {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}
.discover__btn__play {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  padding: 15px;
  color: var(--white-color);
  font-size: 1.8rem;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--main-time);
  cursor: pointer;
}
.discover__btn__play:hover {
  background-color: var(--light-green);
}
.dscover__btn__explore button {
  padding: 15px 25px;
  text-transform: capitalize;
  color: var(--white-color);
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.171);
  font-size: 1.8rem;
  border: none;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  transition: var(--main-time);
  cursor: pointer;
}
.dscover__btn__explore button:hover {
  background-color: var(--main-color);
}

/* end discover */

/* start advanced */
.advanced {
  margin: 50px 0;
  padding: 50px 0;
}
.advanced__container {
  padding-top: 30px;
  display: flex;
  gap: 30px;
  align-items: start;
}
.advanced__txt {
  width: calc((100% - 30px) / 3);
  padding-top: 40px;
  margin-top: 40px;
}
.advanced__txt h5 {
  font-size: 4rem;
  font-weight: 500;
}
.advanced__txt p {
  color: var(--darkgray-color);
  font-size: 2rem;
  padding-top: 20px;
}
.advanced__cards {
  width: calc(((100% - 30px) / 3) * 2);
  display: flex;
  align-items: center;
  position: relative;
  height: auto;
  margin-top: 60px;
}

.advanced__card {
  padding: 15px 10px;
  box-shadow: 0 1px 7px 7px var(--lightgray-color);
  width: 50%;
}
.card__container {
  width: 80%;
  margin: 0 auto;
}

.advanced__card__title button {
  color: var(--white-color);
  background-color: #6854ff;
  padding: 6px;
  font-size: 1.2rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  margin-top: 20px;
  font-family: "Outfit", sans-serif;
  transition: var(--main-time);
}
.advanced__card__title p {
  font-size: 3.5rem;
  font-weight: 500;
  padding: 18px 0;
}
.advanced__card__title span {
  color: var(--darkgray-color);
  font-size: 2rem;
  padding: 18px 0;
}
.advanced__list ul {
  padding-left: 0;
  transition: var(--main-time);
}
.advanced__list li {
  padding: 15px 0;
}
.advanced__icon {
  color: var(--main-color);
  font-size: 1.4rem;
}
.advanced__txt {
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 5px;
}
.advanced__btn {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.advanced__btn button {
  padding: 15px 25px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--main-color);
  border: none;
  border-radius: 30px;
  cursor: pointer;
}
.advanced__btn--fir button:hover {
  background-color: var(--light-green);
}
.advanced__card__title--color button {
  background-color: var(--lightgray-color);
  color: var(--darkgray-color);
  padding: 6px;
  transition: var(--main-time);
  margin-top: 10px;
}
.advanced__card__title--color span {
  padding: 15px 0;
}
.advanced__card__title--color p {
  padding: 15px 0;
}

.advanced__list--sec li {
  padding: 12px 10px;
}

.advanced__card--fir {
  transition: var(--main-time);
}
.advanced__card--fir {
  /* margin-top: 10px 0; */
  left: 0;
  top: 0;
}

.advanced__card:hover {
  transform: translateY(-8px);
}

.advanced__card--sec {
  display: flex;
  align-items: center;
  z-index: 300;
  transition: var(--main-time);
  right: 0;
  top: 0;
}
.advanced__btn--sec button {
  background-color: var(--lightgray-color);
  color: #000;
  transition: var(--main-time);
}
.advanced__btn--sec button:hover {
  background-color: rgb(212, 208, 208);
}

/* end advanced */

/* start info */
.info {
  margin-top: 30px;
  background-image: url(../img/home-bg-03.jpg);
  background-position: center;
  background-size: cover;

  padding: 30px 0;
}
.info__continer {
  display: flex;
  padding-top: 20px;
}
.info__txt {
  width: 50%;
  border-left: 5px solid var(--main-color);
  padding-left: 20px;
}
.info__txt > p {
  font-size: 3.5rem;
  font-weight: 500;
}
.info__txt span {
  color: var(--main-color);
}
.info__mini__txt {
  color: var(--darkgray-color);
  font-size: 1.8rem;
  font-weight: 500;
  padding-top: 20px;
}
.inf0__contact {
  width: 50%;

  text-align: center;
}
.inf0__contact {
  width: 50%;

  text-align: center;
}
.info__icon {
  color: var(--main-color);
  font-size: 5rem;
}
.info__icon__txt {
  color: var(--darkgray-color);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 0;
}
.info__icon__number {
  font-size: 3.6rem;
  font-weight: 600;
}
.info__icon__btn button {
  padding: 18px 28px;
  text-transform: capitalize;
  font-size: 2rem;
  transition: var(--main-time);
  border: none;
  border-radius: 30px;
  background-color: var(--main-color);
  font-weight: 500;
  color: var(--white-color);
  /* width: 35%; */
  margin-top: 10px;
  cursor: pointer;
}
.info__icon__btn button:hover {
  background-color: var(--light-green);
}

/* end info */

/* start logo */
.logo__container {
  display: flex;
}
.logo__img {
  position: relative;
  cursor: pointer;
}
.logo__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: #ffff;
  opacity: 0.8;
  transition: var(--main-time);
}
.logo__img:hover:after {
  opacity: 0;
}

/* end logo */

/* start arrow */
.arrow__container {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: var(--darkgray-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  bottom: 2%;
  right: 2%;
  z-index: 1000;
  cursor: pointer;
  transition: var(--main-time);
}
.arrow__container a {
  text-decoration: none;
  color: var(--white-color);
}
.arrow__container:hover {
  background-color: var(--main-color);
}

/* end arrow */

/* start footer */
footer {
  background-color: #0f280f;
  padding: 80px 0;
}
.footer__container {
  display: flex;
  gap: 20px;
}
.footer__div__logo {
  width: calc(((100% - 60px) / 10) * 3);
}
.footer__div {
  width: calc(((100% - 60px) / 10) * 2);
}
.footer_item {
  font-size: 1.4rem;
  color: var(--darkgray-color);
  transition: var(--main-time);
  padding-top: 20px;
  cursor: pointer;
}
.footer__two .footer_item:hover,
.footer__three .footer_item:hover,
.footer__four .footer_item:hover,
.footer__copyRights p:hover,
.footer__icons i:hover {
  color: var(--main-color);
}
.footer__two .footer__item--color:hover,
.footer__three .footer__item--color:hover,
.footer__four .footer__item--color:hover {
  color: var(--white-color);
}
.footer__item--color:hover {
  color: var(--white-color);
}

.footer__item--color {
  color: var(--lightgray-color);
  font-size: 1.8rem;
}
.footer__input {
  text-align: start;
  position: relative;
  margin-bottom: 25px;
  padding: 0;
}

.footer__input input {
  width: 90%;
  height: 45px;
  border: 1px solid var(--lightgray-color);
  border-radius: 50px;
  box-shadow: 0 0 0;
  color: rgb(179, 172, 172);
  margin-left: 0;
  padding: 25px;
}
.footer__input button {
  padding: 16px 22px;
  border: 1px solid transparent;
  border-radius: 0 25px 25px 0;
  background-color: var(--main-color);
  color: var(--white-color);
  font-size: 1.6rem;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: var(--main-time);
}
.footer__input button:hover {
  background-color: var(--light-green);
}
.footer__icons {
  display: flex;
  gap: 30px;
  margin-top: 0;
}
.footer__icons i {
  color: var(--darkgray-color);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--main-time);
}
.footer__copyRights {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.footer__copyRights p {
  transition: var(--main-time);
}
.privacy {
  display: flex;
  gap: 30px;
}

/* end footer */

@media screen and (max-width: 1400px) {
  /* .container {
    width: 1320px;
  } */
  .main__btn {
    font-size: 1.3rem;
    letter-spacing: normal;
  }
  /* .main__input__btn {
    bottom: 16%;
  } */
}
@media screen and (max-width: 1200px) {
  /* header {
    display: none;
  } */
  .main-section {
    height: auto;
  }
  .main__h1 {
    font-size: 5rem;
  }
  .main__btn {
    font-size: 1.3rem;
    letter-spacing: normal;
  }
  .main__btn--green {
    width: 25%;
    right: 50%;
  }

  .property__txt {
    font-size: 1.8rem;
    right: 6%;
  }

  .recommendation__cards__container,
  .recommendation__titles {
    padding: 5 40px;
  }
  .recommendation__titles h5 {
    font-size: 2.8rem;
  }
  .Recommended__btn {
    padding: 11px 20px;
    font-size: 1.6rem;
  }
  .mini__recommendation__btn {
    font-size: 1.1rem;
  }

  .mini__recommendation__white .title {
    font-size: 1.6rem;
  }
  .mini__recommendation__white .price {
    font-size: 1.3rem;
  }

  .YourProperty__txt {
    width: 50%;
    padding: 20px 25px;
  }
  .YourProperty__title h5 {
    font-size: 2.8rem;
  }
  .YourProperty__title > p {
    font-size: 1.4rem;
  }
  .Your__property__icon {
    margin: 15px 0;
  }
  .Your__property__icon p {
    font-size: 1.6rem;
    font-weight: 600;
  }
  .checkOut__featured {
    display: none;
  }

  .checkOut__cards {
    width: 100%;
  }
  .checkOut__card {
    width: calc((100% - 30px) / 2);
  }

  .checkOut__featured h5 {
    font-size: 3.8rem;
  }
  .checkOut__featured p {
    font-size: 1.8rem;
    padding: 10px 0;
  }
  .checkOut__btn {
    font-size: 1.5rem;
  }
  .checkOut__card__title p {
    color: var(--darkgray-color);
    font-size: 1.3rem;
  }
  .checkOut__card__title h5 {
    font-size: 1.6rem;
  }
  .checkOut__card__icon > span:nth-child(even) {
    font-size: 1.2rem;
  }

  .checkOut__footer__txt {
    font-size: 1.2rem;
  }
  .advanced__txt {
    width: calc(((100% - 30px) / 20) * 5);
  }
  .advanced__cards {
    width: calc(((100% - 30px) / 20) * 15);
  }
  .discover__div h5 {
    line-height: 4rem;
  }

  .discover__btn__play {
    font-size: 1.5rem;
  }
  .dscover__btn__explore button {
    font-size: 1.7rem;
  }
  .advanced__txt h5 {
    font-size: 3rem;
    font-weight: 500;
  }
  .advanced__txt p {
    color: var(--darkgray-color);
    font-size: 1.8rem;
    padding-top: 20px;
  }
  /* .advanced__card {
    width: 45%;
  } */

  .card__container {
    width: 90%;
  }
  .advanced__card__title button {
    padding: 4px;
    font-size: 1rem;
  }
  .advanced__card__title p {
    font-size: 3.2rem;
  }
  .advanced__card__title span {
    font-size: 1.8rem;
    padding: 16px 0;
  }
  .logo__container {
    display: flex;
    flex-wrap: wrap;
  }
  .logo__img {
    position: relative;
    width: 20%;
  }
  .footer__copyRights {
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .header__list {
    margin-top: 60px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.084);
  }
  .menu {
    display: block;
    font-size: 3rem;
  }

  header .container {
    width: 100%;
    position: relative;
    padding: 0;
    height: 80px;
  }
  .header__logo {
    width: 140px;
  }
  .header__container__elements {
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    width: 100%;
  }
  .menu {
    position: absolute;
    z-index: 100;
    right: 10px;
    cursor: pointer;
  }
  .header__logo {
    position: absolute;
    z-index: 100;
    left: 10px;
  }
  .header__list__container {
    width: 100%;
  }
  .header__list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    width: 100%;
    background-color: var(--white-color);
  }
  .transform {
    transform: translateY(-400px);
  }
  .header__btn__container {
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    padding-top: 10px;
    width: 100%;
  }
  .main__img {
    height: auto;
  }
  .main-section {
    height: auto;
  }
  .main__h1 {
    font-size: 3.5rem;
  }

  .main__btn {
    font-size: 1.1rem;
    letter-spacing: normal;
  }
  .main__btn--green {
    width: 26%;
  }
  .main__btn--gray {
    width: 27%;
  }
  .main__input__container input {
    height: 60px;
  }

  .main__input__btn {
    padding: 26px;
    font-size: 2rem;
  }

  .properties {
    right: 8%;
  }
  .property__txt {
    right: 1.5%;
  }

  .recommendation__titles h5 {
    font-size: 2.4rem;
  }
  .Recommended__btn {
    padding: 9px 18px;
    font-size: 1.4rem;
  }

  .mini__recommendation__btn {
    font-size: 1.1rem;
  }
  .recommendation__btn--orange {
    left: 1px;
  }

  .recommendation__btn--green {
    left: 84px;
  }
  .recommendation__btn--purple {
    left: 84px;
  }
  .recommendation__btn--gray {
    left: 163px;
  }
  .mini__recommendation__icon {
    padding: 14px;
  }
  .mini__recommendation__icon span {
    font-size: 1.6rem;
  }

  .YourProperty__title h5 {
    font-size: 2.6rem;
  }
  .YourProperty__title > p {
    font-size: 1.4rem;
  }
  .Your__property__icon {
    margin: 15px 0;
  }
  .Your__property__icon p {
    font-size: 1.6rem;
    font-weight: 600;
  }
  .findHome__container__all {
    flex-wrap: wrap;
  }
  .findHome__mostListing {
    width: 100%;
  }

  .mostlisting__card {
    width: calc((100% - 20px) / 2);
  }

  .findHome__img {
    width: 50%;
    height: 50vh;
    margin: auto;
  }
  .findHome__btn {
    margin: 0 auto;
    padding: 12px 18px;
    margin-top: 20px;
    font-size: 1.8rem;
    bottom: 2%;
    right: 50%;
    transform: translateX(50%);
  }
  .discover__div {
    width: 80%;
  }
  .discover__div h5 {
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 400;
  }

  .discover__btn__play {
    padding: 16px;
    font-size: 1.4rem;
  }
  .dscover__btn__explore button {
    font-size: 1.7rem;
  }
  .advanced__container {
    display: flex;
    flex-wrap: wrap;
  }
  .advanced__txt {
    width: 100%;
  }
  .advanced__cards {
    width: 100%;
  }
  /* .advanced__card {
    width: 50%;
  } */
  .advanced__txt h5 {
    font-size: 4rem;
  }
  .advanced__txt p {
    font-size: 2rem;
  }

  .advanced__card__title button {
    font-size: 1.2rem;
  }
  .advanced__card__title p {
    font-size: 3.5rem;
  }
  .advanced__card__title span {
    font-size: 2rem;
    padding: 18px 0;
  }

  .advanced__icon {
    font-size: 1.4rem;
  }
  .advanced__txt {
    font-size: 1.6rem;
  }

  .info__txt > p {
    font-size: 2.5rem;
    font-weight: 500;
  }
  .info__txt span {
    color: var(--main-color);
  }
  .info__mini__txt {
    color: var(--darkgray-color);
    font-size: 1.6rem;
    font-weight: 500;
    padding-top: 20px;
  }
  .info__icon {
    color: var(--main-color);
    font-size: 4rem;
  }
  .info__icon__txt {
    font-size: 1.2rem;
  }
  .info__icon__number {
    font-size: 2.6rem;
  }
  .info__icon__btn button {
    padding: 12px 20px;
  }
  .logo__container {
    display: flex;
    flex-wrap: wrap;
  }
  .logo__img {
    position: relative;
    width: 25%;
  }
  .footer__container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer_item {
    font-size: 1.6rem;
    color: var(--darkgray-color);

    padding-top: 20px;
  }

  .footer__item--color {
    color: var(--lightgray-color);
    font-size: 2.2rem;
  }
  .footer__one {
    width: calc(((100% - 60px) / 10) * 3);
  }
  .footer__two {
    width: calc(((100% - 60px) / 10) * 3);
  }
  .footer__three {
    width: calc(((100% - 60px) / 10) * 3);
  }
  .footer__four {
    width: calc(((100% - 60px) / 10) * 4);
    margin-top: 30px;
  }
  .footer__input input {
    width: 100%;
  }
  .footer__input button {
    padding: 20px 22px;
    border: 1px solid transparent;
    border-radius: 0 28px 28px 0;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 1.6rem;
    position: absolute;
    bottom: 0%;
    right: 0;
  }
  .footer__copyRights {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .main-section {
    height: auto;
  }

  .main__div {
    width: 100%;
  }
  .main__h1 {
    font-size: 2.4rem;
  }
  .main__btn {
    font-size: 1.2rem;
    letter-spacing: normal;
  }

  .main__txt__container {
    width: 90%;
    text-align: center;
  }
  .main__btn--green {
    width: 112px;
    right: 46%;
  }
  .main__btn--gray {
    width: 155px;
    right: 19%;
  }
  .main__input__container input {
    height: 57px;
  }
  .main__input__btn {
    padding: 26px;
    font-size: 2rem;
  }
  .properties {
    right: 8%;
  }
  .property__txt {
    right: 70px;
    bottom: -90px;
  }
  .homeId__card {
    width: calc((100% - 20px) / 2);
  }
  .home__cards__container {
    flex-wrap: wrap;
  }
  .home__card__icon span {
    font-size: 6rem;
  }
  .home__card__title h4 {
    font-size: 2rem;
  }
  .home__card__p p {
    font-size: 1.6rem;
  }

  .home__card__btn button {
    text-transform: capitalize;
    font-size: 1.6rem;
    padding: 8px 16px;
  }
  .recommendation__titles h5 {
    font-size: 1.8rem;
  }
  .mini__recommendation__btn {
    font-size: 1.2rem;
  }
  .recommendation__btn--orange {
    left: 10px;
  }

  .recommendation__btn--green {
    left: 103px;
  }
  .recommendation__btn--purple {
    left: 103px;
  }
  .recommendation__btn--gray {
    left: 191px;
  }
  .Recommended__btn {
    padding: 9px 18px;
    font-size: 1.4rem;
  }
  .recommendation__card {
    width: calc((100% - 35px) / 2);
  }
  .YourProperty__title h5 {
    font-size: 2.4rem;
  }
  .YourProperty__title > p {
    font-size: 1.3rem;
  }
  .Your__property__icon {
    margin: 12px 0;
  }
  .Your__property__icon p {
    font-size: 1.4rem;
    font-weight: 600;
  }
  .YourProperty__img__txt {
    width: 87%;
    top: -120px;
  }
  .YourProperty__txt {
    width: 50%;
    padding: 20px 25px;
  }
  .YourProperty__title h5 {
    font-size: 2.8rem;
  }
  .YourProperty__title > p {
    font-size: 1.4rem;
  }
  .Your__property__icon {
    margin: 15px 0;
  }
  .Your__property__icon p {
    font-size: 1.6rem;
    font-weight: 600;
  }
  .checkOut__featured {
    display: none;
  }

  .checkOut__cards {
    width: 100%;
  }
  .checkOut__card {
    width: calc((100% - 30px) / 2);
  }
  .discover__div {
    width: 87%;
  }
  .discover__div h5 {
    font-size: 2rem;
    line-height: 3.5rem;
    font-weight: 400;
  }
  .discover__btns {
    gap: 15px;
  }

  .discover__btn__play {
    width: 55px;
    height: 55px;
  }
  .dscover__btn__explore button {
    font-size: 1.4rem;
    padding: 12px 20px;
  }

  .discover__btns .advanced__txt {
    text-align: center;
  }

  .advanced__txt h5 {
    font-size: 3rem;
  }
  .advanced__txt p {
    color: var(--darkgray-color);
    font-size: 1.8rem;
    padding-top: 20px;
  }

  .advanced__card__title p {
    font-size: 2.5rem;
  }

  .advanced__txt {
    font-size: 1.5rem;
  }
  .advanced__btn {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .advanced__btn button {
    padding: 15px 20px;
    width: 95%;
    font-size: 1.6rem;
  }
  .advanced__cards {
    flex-wrap: wrap;
  }

  .advanced__card {
    width: 80%;
    margin: 10px auto;
  }
  .info__txt > p {
    font-size: 2rem;
  }

  .info__mini__txt {
    font-size: 1.4rem;
  }
  .info__icon {
    font-size: 3rem;
  }
  .info__icon__txt {
    font-size: 1rem;
  }
  .info__icon__number {
    font-size: 2rem;
  }
  .info__icon__btn button {
    padding: 8px 15px;
    font-size: 1.4rem;
  }
  .logo__container {
    display: flex;
    flex-wrap: wrap;
  }
  .logo__img {
    position: relative;
    width: 30%;
  }

  .footer__container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer_item {
    font-size: 1.8rem;
    color: var(--darkgray-color);

    padding-top: 20px;
  }

  .footer__item--color {
    color: var(--lightgray-color);
    font-size: 2.2rem;
  }
  .footer__one {
    width: calc(((100% - 60px) / 10) * 5);
  }
  .footer__two {
    width: calc(((100% - 60px) / 10) * 5);
  }
  .footer__three {
    width: calc(((100% - 60px) / 10) * 5);
  }
  .footer__four {
    width: calc(((100% - 60px) / 10) * 7);
    margin-top: 40px;
  }
  .privacy p {
    font-size: 1.4rem;
  }
  .footer__input button {
    padding: 18.5px 22px;
  }
}

@media screen and (max-width: 576px) {
  .main-section {
    height: auto;
  }
  .main__section__container {
    flex-direction: column;
  }
  .main__txt {
    padding-top: 30px;
    text-align: center;
  }
  .main__img {
    height: 100vh;
  }
  .main__div {
    width: 100%;
  }
  .main__h1 {
    font-size: 3rem;
  }
  .main__btn {
    font-size: 0.8rem;
    letter-spacing: normal;
  }
  .main__txt__container {
    padding: 20px;
  }

  .main__btn {
    font-size: 1.3rem;
  }

  .main__btn--green {
    width: 29%;
    right: 45%;
  }
  .main__btn--gray {
    width: 34%;
    right: 23.5%;
  }

  .properties {
    /* display: none; */
    width: 50%;
    left: 6%;
  }
  .property__txt {
    right: 20px;
    bottom: -50px;
  }
  .homeId__title h3 {
    font-size: 2.4rem;
  }
  .homeId__card {
    width: 100%;
  }
  .home__card__icon span {
    font-size: 8rem;
  }
  .home__card__title h4 {
    font-size: 2.4rem;
  }
  .home__card__p p {
    font-size: 1.8rem;
  }
  .recommendation__titles {
    flex-direction: column;
  }
  .recommendation__titles h5 {
    font-size: 2.2rem;
  }
  .Recommended__btn {
    margin-top: 10px;
    padding: 6px 14px;
    font-size: 1.2rem;
    /* width: 20%; */

    padding: 9px 18px;
    font-size: 1.4rem;
  }
  .recommendation__card {
    width: 80%;
  }
  .mini__recommendation__btn {
    font-size: 1.5rem;
    padding: 4px 8px;
  }

  .recommendation__btn--green {
    left: 113px;
  }
  .recommendation__btn--purple {
    left: 113px;
  }
  .recommendation__btn--gray {
    left: 209px;
  }
  .YourProperty__title h5 {
    font-size: 2.4rem;
  }
  .YourProperty__title > p {
    font-size: 1.3rem;
  }
  .Your__property__icon {
    margin: 12px 0;
  }
  .Your__property__icon p {
    font-size: 1.4rem;
    font-weight: 600;
  }
  .YourProperty__img__txt {
    width: 92%;
  }
  .YourProperty__txt {
    padding: 20px 20px;
  }
  .YourProperty__title h5 {
    font-size: 2rem;
  }
  .YourProperty__title > p {
    font-size: 1.2rem;
  }
  .Your__property__icon {
    margin: 12px 0;
  }
  .Your__property__icon p {
    font-size: 1.4rem;
  }
  .findHome__container__all {
    flex-wrap: wrap;
  }
  .mostlisting__cards {
    flex-wrap: wrap;
  }
  .findHome__mostListing {
    width: 100%;
    margin: 0 auto;
  }
  .mostListing__title > h5,
  .mostListing__title > p {
    width: 80%;
    margin: 0 auto;
  }

  .mostlisting__card {
    width: 80%;
    margin: 0 auto;
  }
  .discover__div {
    width: 92%;
  }

  .findHome__img {
    width: 80%;
    height: 60vh;
    /* margin: 0 auto; */
  }
  .checkOut__cards {
    width: 100%;
  }
  .checkOut__card {
    width: 80%;
    margin: 0 auto;
    /* flex-grow: 1; */
  }
  .info__continer {
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .info__txt {
    width: 100%;
  }
  .info__txt > p {
    font-size: 2.8rem;
  }

  .info__mini__txt {
    font-size: 1.8rem;
  }
  .inf0__contact {
    width: 100%;

    text-align: center;
  }
  .inf0__contact {
    width: 100%;
    margin-top: 40px;

    text-align: center;
  }
  .info__icon {
    font-size: 5rem;
  }
  .info__icon__txt {
    font-size: 1.4rem;
  }
  .info__icon__number {
    font-size: 3rem;
  }
  .info__icon__btn button {
    padding: 15px 25px;

    font-size: 2rem;
  }
  .info__icon__btn button:hover {
    background-color: #7eda15;
  }
  .logo__img {
    position: relative;
    width: 50%;
  }
  .footer__item--color {
    font-size: 1.8rem;
  }

  .footer__input input {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .footer__input input::placeholder {
    font-size: 1.4rem;
  }
  .footer__input button {
    padding: 11.5px 22px;
    height: auto;
  }
}

@media screen and (max-width: 410px) {
  .main__div {
    width: 100%;
  }
  .main__h1 {
    font-size: 2rem;
  }
  .main__p {
    font-size: 1.4rem;
  }

  .main__btn {
    font-size: 1.1rem;
  }

  .main__btn--green {
    width: 29%;
    right: 45%;
  }
  .main__btn--gray {
    width: 33%;
    right: 23.5%;
  }
  .main__input__container input {
    height: 25px;
  }
  .main__input__btn {
    padding: 21px;
    bottom: -8px;
  }
  .properties {
    left: 0.5%;
    width: 70%;
  }
  .property__txt {
    right: 4px;
    bottom: -50px;
  }
  .homeId__title h3 {
    font-size: 1.8rem;
  }
  .home__card__icon span {
    font-size: 4rem;
  }
  .home__card__title h4 {
    font-size: 1.8rem;
  }
  .home__card__p p {
    font-size: 1.4rem;
  }
  .home__card__btn button {
    font-size: 1.4rem;
  }
  .recommendation__card {
    width: 80%;
    margin: 0 auto;
  }
  .mini__recommendation-txt .title {
    font-size: 1.4rem;
  }
  .mini__recommendation__btn {
    font-size: 1.2rem;
  }

  .recommendation__btn--green {
    left: 99px;
  }
  .recommendation__btn--purple {
    left: 99px;
  }
  .recommendation__btn--gray {
    left: 183px;
  }

  .YourProperty__img__txt,
  .discover__div {
    top: -95px;
  }
  .YourProperty__txt {
    padding: 15px 15px;
  }
  .YourProperty__title h5 {
    font-size: 1.6rem;
  }
  .YourProperty__title > p {
    font-size: 1rem;
  }
  .Your__property__icon {
    margin: 10px 0;
  }
  .Your__property__icon span {
    font-size: 1.8rem;
    padding-left: 5px;
  }
  .Your__property__icon p {
    font-size: 1.1rem;
  }
  .mostListing__title h5 {
    font-size: 1.8rem;
  }
  .mostListing__title p {
    font-size: 1.6rem;
  }
  .checkOut__cards {
    width: 100%;
  }
  .mostlisting__card__icon span {
    font-size: 3rem;
  }
  .mostlisting__card__title h5 {
    font-size: 1.6rem;
  }
  .mostlisting__card__title p {
    font-size: 1.4rem;
  }
  .mostlisting__footer p {
    font-size: 1.4rem;
  }
  .findHome__btn {
    font-size: 1.4rem;
  }
  .checkOut__card {
    width: 90%;
  }
  .discover__div h5 {
    font-size: 1.6rem;
  }

  .dscover__btn__explore button {
    font-size: 1.2rem;
    padding: 10px 12px;
  }
  .advanced__txt h5 {
    font-size: 2rem;
  }
  .advanced__txt p {
    font-size: 1.6rem;
  }
  .advanced__card__title p {
    font-size: 2.2rem;
    color: #65b110;
  }
  .advanced__card__title span {
    font-size: 1.2rem;
  }
  .advanced__txt {
    font-size: 1.4rem;
  }
  .advanced__btn button {
    font-size: 1.4rem;
  }
  .info__txt > p {
    font-size: 1.8rem;
  }
  .info__mini__txt p {
    font-size: 1.4rem;
  }
  .info__icon {
    font-size: 4rem;
  }
  .info__icon__txt {
    font-size: 1.2rem;
  }
  .info__icon__number {
    font-size: 2.4rem;
  }
  .info__icon__btn button {
    font-size: 1.4rem;
    padding: 10px 15px;
  }
  .logo__img img {
    width: 80%;
  }
  .footer_item {
    font-size: 1.4rem;
  }
  footer .main__input__btn {
    padding: 16px 20px;
  }
  .footer__input input {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .footer__input input::placeholder {
    font-size: 1.4rem;
  }
  .footer__input button {
    padding: 12px 18px;
    height: auto;
    font-size: 1.4rem;
  }
}
