@font-face {
  font-family: "CynthoNextRegular";
  src: url(/assets/cyntho-next-cufonfonts/CynthoNextRegular.otf);
}
@font-face {
  font-family: "CynthoNextRegular";
  src: url(/assets/cyntho-next-cufonfonts/CynthoNextBold.otf);
  font-weight: bold;
}

a {
  text-decoration: none;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "CynthoNextRegular";
}
html {
  scroll-behavior: smooth;
}

:root {
  --main-color: #1a4e18;
  --second-color: #335632;
  --third-color: #84ac81;
}

/* container styles */
body {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}
@media screen and (max-width: 800px) {
  body {
    padding: 0;
  }
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #fff;
}

/* header styles */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
  background-color: #c4c4c420;
  position: fixed;
  top: 0;
  z-index: 9999;
}
.logo-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-logo img {
  width: 100px;
  /* border-radius: 100%; */
  cursor: pointer;
  /* background-color: #f9f9f9; */
  padding: 4px;
}
@media screen and (max-width: 450px) {
  .logo-logo img {
    width: 50px;
  }
}
.hamburger {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  display: none;
}

.hamburger-bar {
  width: 100%;
  height: 5px;
  background-color: white;
}
@media screen and (max-width: 950px) {
  .header {
    padding: 20px 50px;
  }
}
@media screen and (max-width: 670px) {
  .header {
    flex-direction: column;
    padding: 5px 20px;
  }
  .logo-div {
    width: 100%;
  }
  .hamburger {
    display: flex;
    width: 25px;
    height: 25px;
  }
}
.nav-bar {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.nav-ul {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  overflow: hidden;
  transition: 2s linear ease-in-out;
}

.nav-ul .link a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}
.nav-ul .link a:hover {
  color: var(--second-color);
}
.button-link {
  background-color: var(--second-color);
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}
.button-link a {
  color: white;
  text-decoration: none;
}
.button-link:hover {
  background: white;
  border: 1px solid var(--second-color);
}

.button-link:hover a {
  color: var(--second-color);
}
@media screen and (max-width: 670px) {
  .nav-ul {
    flex-direction: column;
    width: 100%;
    height: 0;
    justify-content: space-around;
    transition: 0.5s ease-in-out;
    color: white;
    z-index: 99999;
  }
  .toggle-nav {
    /* transform: translate(0%); */
    height: 40vh;
  }
  .nav-ul .link a {
    color: #fff;
    font-size: 14px;
  }
}
/* hero sectiom */
.hero-section {
  width: 100%;
  display: flex;
}
.hero-div {
  width: 50%;
  background-image: url(/assets/images/heroImage.webp);
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  background-blend-mode: hard-light;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-div-1 {
  width: 100%;
  background-image: url(/assets/images/heroImage.webp);
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  background-blend-mode: hard-light;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-div-texts {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-div-texts .iconify-1 {
  /* position: absolute; */
  width: 100px;
  top: -20px;
  left: -35px;
  background: var(--main-color);
  padding: 4px;
  border: 1px solid white;
}
.mufasa-p1,
.mufasa-p2,
.mufasa-p3 {
  color: white;
  background: var(--main-color);
  padding: 16px;
  box-shadow: 2px 2px 2px #cdcdcd;
  border: 1px solid white;
}
.mufasa-p1 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  letter-spacing: 5px;
  margin-bottom: 5px;
}
.mufasa-p1 span {
  color: var(--third-color);
}
.mufasa-p2 {
  font-size: 30px;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}
.mufasa-p2 span {
  color: var(--third-color);
}
.mufasa-p3 {
  font-size: 12px;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.hero-button {
  padding: 10px 30px;
  background: linear-gradient(to bottom, var(--third-color), var(--second-color), var(--main-color));
  cursor: pointer;
  outline: none;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: 1px solid #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-button .iconify-2 {
  color: white;
  font-size: 25px;
  margin-left: 10px;
}
.hero-button:hover {
  border: 1px solid var(--main-color);
  box-shadow: 1px 1px var(--main-color);
}
@media screen and (max-width: 1000px) {
  .hero-div-texts {
    width: 80%;
  }
}
@media screen and (max-width: 670px) {
  .hero-section {
    flex-direction: column;
  }
  .hero-div-1 {
    width: 100%;
    min-height: 100vh;
    background-image: url(/assets/images/heroImage.webp);
    background-position: center center;
    background-blend-mode: hard-light;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
  }
  .hero-div {
    display: none;
  }
  .hero-div-texts {
    justify-content: center;
    align-items: center;
    width: 90%;
    text-align: center;
  }
  .hero-div-texts .iconify-1 {
    position: relative;
    top: 0;
    left: 0;
  }
  .mufasa-p1,
  .mufasa-p2,
  .mufasa-p3 {
    color: white;
    background: var(--main-color);
    padding: 6px;
    border-radius: 15px;
  }
}

/* big news section */
.big-news {
  width: 100%;
  background-color: #c4c4c460;
  padding: 40px 100px;
}
.big-news-div {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  padding: 20px 0px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.big-news-div1 {
  width: 50%;
  padding: 40px;
}
.big-news-div1 img {
  width: 100%;
  height: auto;
  transition: 0.7s ease-in-out;
}
.big-news-div1 img:hover {
  transform: scale(1.1);
  transition: 0.7s ease-in-out;
}
.big-news-div2 {
  width: 50%;
}

.big-news-h1 {
  font-size: 45px;
  margin-bottom: 40px;
}
.big-news-p {
  font-size: 14px;
  letter-spacing: 1px;
}
@media screen and (max-width: 850px) {
  .big-news-h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .big-news-div1 {
    width: 50%;
    padding: 10px;
  }
}
@media screen and (max-width: 670px) {
  .big-news-div {
    flex-direction: column-reverse;
  }
  .big-news {
    padding: 50px 20px;
  }
  .big-news-div1,
  .big-news-div2 {
    width: 100%;
    text-align: center;
  }
  .big-news-h1 {
    font-size: 20px;
  }
}
/* about us section */
.about-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 100px;
  background-color: #c4c4c460;
}

.about-section-div1 {
  display: flex;
  padding: 20px 0px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .about-section {
    padding: 50px;
  }
  .about-section-div1 {
    padding: 10px;
  }
}
.about-second-div {
  width: 50%;
  height: 100%;
  position: relative;
}
.about-second-div-div {
  width: 300px;
  height: 500px;
  transition: 1s ease-in-out;
}
.slider-img {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid white;
  cursor: pointer;
  z-index: 99;
  transition: 1s ease-in-out;
}
.img1 {
  z-index: 200;
  left: 20%;
  height: 60%;
  width: 60%;
  top: 20%;
  transition: 1s ease-in-out;
}
.img2 {
  z-index: 100;
  height: 80%;
  width: 80%;
  left: 10%;
  top: 10%;
  transition: 1s ease-in-out;
}
.img3 {
  width: 100%;
  z-index: 50;
  top: 0;
  right: 0;
  transition: 1s ease-in-out;
}

.slider-button-div {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.slider-button-div button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
.slider-button-div button iconify-icon {
  font-size: 40px;
  color: var(--second-color);
  background-color: white;
  border-radius: 100%;
}
.about-first-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.about-first-div-texts {
  width: 80%;
}

.collection-p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.rich-p {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}
.rich-p span {
  color: var(--second-color);
}
.about-first-p {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.about-first-button {
  background-color: var(--second-color);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-first-button span {
  display: flex;
  justify-content: center;
}
.about-first-button span iconify-icon {
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
}

@media screen and (max-width: 700px) {
  .rich-p {
    font-size: 22px;
  }
  .about-section-div1 {
    flex-direction: column;
  }
  .about-first-div {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
  .about-first-div-texts {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-second-div {
    width: 100%;
  }
  .about-second-div-div {
    height: 400px;
  }
}
@media screen and (max-width: 350px) {
  .about-second-div-div {
    width: 250px;
    height: 300px;
  }
}

/* about us second section */
.about-section-div2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-section-div2-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 700px;
}
.about-two-image-div {
  width: 25%;
  height: 400px;
}
.about-two-image {
  width: 100%;
  height: 50%;
}
.about-us-text-div {
  width: 35%;
  height: auto;
  background-color: var(--main-color);
  padding: 50px 30px;
  color: #ffffff;
}
.about-us-video {
  width: 39%;
  height: 100%;
}
.about-us-video iframe {
  height: 80%;
}
.about-p {
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 25px;
}
.about-p span {
  color: var(--third-color);
}
.about-p-details {
  font-size: 14px;
  letter-spacing: 1px;
}
.about-us-video iframe {
  height: 220px;
}

.about-button {
  margin-top: 25px;
  padding: 10px 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  background: var(--third-color);
  border: none;
  color: #fff;
}
.about-us-video-div {
  padding: 15px 25px;
}
.about-us-video-p1 {
  font-size: 25px;
  font-weight: bold;
}
.about-us-video-p2 {
  font-size: 25px;
  font-weight: bold;
  color: var(--third-color);
  margin-bottom: 10px;
}
.about-us-video-p3 {
  word-spacing: 2px;
  letter-spacing: 2px;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .about-p {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .about-p-details {
    font-size: 12px;
  }
  .about-us-text-div {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 850px) {
  .about-section-div2-main {
    flex-direction: column-reverse;
    padding: 20px;
  }
  .about-two-image-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
  }
  .about-two-image {
    width: 49%;
    height: 100%;
  }
  .about-us-video {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .about-us-video iframe {
    height: 400px;
  }
  .about-us-text-div {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 670px) {
  .about-section-div2-main {
    flex-direction: column-reverse;
    padding: 10px 0;
  }
  .about-section {
    padding: 20px;
  }
  .about-section-div1 {
    padding: 20px 0;
  }
  .about-two-image-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: auto;
  }
  .about-two-image {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
  }
  .about-us-video {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .about-us-video iframe {
    height: 400px;
    margin-top: 10px;
  }
  .about-us-text-div {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* best section styles */
.best-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px;
  background: url("/assets/images/houseImage1.webp");
  color: white;
  background-color: #191919;
  background-blend-mode: soft-light;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.best-section-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.best-section-div1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.best-section-p1-div {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 40px;
}
.best-section-p1-div div {
  width: 20%;
  height: 2px;
  background-color: var(--third-color);
  margin-right: 10px;
}
.best-section-p1 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--third-color);
}
.best-section-p2 {
  font-size: 40px;
  margin-bottom: 40px;
}
.best-section-p2 span {
  color: var(--third-color);
}
.best-section-p3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  word-spacing: 2px;
}
.best-section-p3 span {
  font-weight: bold;
  font-size: 16px;
}
.best-section-distance {
  width: 49%;
}
.best-distance-p {
  font-size: 15px;
  font-weight: bold;
  margin: 20px 0px;
}
.best-distance-p span {
  color: var(--third-color);
}
.range-div {
  width: 100%;
  height: 18px;
  background-color: rgba(213, 231, 247, 0.3);
  padding: 5px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.inner-range-div {
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  z-index: 99;
}
.inner-div1 {
  width: 35%;
}
.inner-div2 {
  width: 75%;
}

@media screen and (max-width: 670px) {
  .best-section {
    padding: 60px 20px;
  }
  .best-section-div {
    flex-direction: column;
  }
  .best-section-div1,
  .best-section-distance {
    width: 100%;
  }
  .best-section-div1 {
    text-align: center;
  }
  .best-section-distance {
    margin-top: 50px;
  }
  .best-section-p1-div {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .best-section-p1-div div {
    margin-bottom: 25px;
  }
  .best-section-p2 {
    margin-bottom: 25px;
    font-size: 25px;
  }
}

/* why us section */
.why-us-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px;
  background: #c4c4c460;
}
.why-us-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.why-us-div1 {
  width: 49%;
}
.why-us-h1 {
  font-size: 40px;
  margin-bottom: 40px;
}
.why-us-h1 span {
  color: var(--third-color);
}
.why-p {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 20px;
}
.why-p-div {
  margin-bottom: 40px;
}
.why-us-div2 {
  width: 49%;
  border: 1px solid #c4c4c4;
  padding: 20px;
  min-height: 400px;
}
.why-p2 {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 25px;
}
.dividend-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 360px;
}
.dividend {
  height: 49%;
  border: 1px solid #c4c4c4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  margin-bottom: 10px;
}
.dividend-p {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 25px;
}
.dividend-line-div {
  width: 30%;
  height: 4px;
  background-color: var(--third-color);
  margin-bottom: 25px;
  border-radius: 9px;
}
.dividend-p2 {
  font-weight: bold;
  letter-spacing: 1px;
}
.dividend-p del {
  text-decoration-style: double;
  margin-right: 4px;
  color: var(--third-color);
}
@media screen and (max-width: 670px) {
  .why-us-section {
    padding: 100px 20px;
  }
  .why-us-div {
    flex-direction: column;
  }
  .why-us-div1 {
    width: 100%;
    text-align: center;
  }
  .why-us-h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .why-us-div2 {
    width: 100%;
  }
  .dividend-p {
    font-size: 25px;
  }
}

/* why us metric */
.why-metrics {
  background: #c4c4c460;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px;
}
.why-metrics-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
.metrics-percentage {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  background-color: #c4c4c420;
  padding: 50px 30px;
}
.metrics-percentage-div {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.metrics-percentage h1 {
  font-size: 35px;
  color: var(--third-color);
  margin-bottom: 25px;
}
.metrics-percentage h4 {
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.growth-h1 {
  font-weight: lighter;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .why-metrics {
    padding: 50px 30px;
  }
  .metrics-percentage-div {
    width: 23%;
  }
  .metrics-percentage-div h1 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .metrics-percentage-div h4 {
    font-size: 14px;
  }
}
@media screen and (max-width: 670px) {
  .why-metrics {
    padding: 50px 20px;
  }
  .metrics-percentage {
    flex-direction: column;
  }
  .metrics-percentage-div {
    width: 100%;
    margin-top: 45px;
  }
}

/* building amenities section */
.amenities-section {
  width: 100%;
  background: url("/assets/images/houseImage2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  background-color: #191919;
  background-blend-mode: soft-light;
  padding: 100px;
  background-attachment: fixed;
}
.amenities-section-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
.amenities-p1 {
  width: 100%;
  font-size: 45px;
  margin-bottom: 30px;
  color: var(--third-color);
}
.amenities-div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.amenity-div {
  width: 24%;
  background-color: #fff;
  color: var(--third-color);
  padding: 30px;
}
.amenity-div-2 {
  width: 24%;
  padding: 30px;
  background-color: var(--third-color);
}
.amenity-icon,
.amenity-icon-2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
  font-size: 50px;
}
.amenities-p,
.amenities-p-2 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.amenity-p,
.amenity-p-2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.amenity-details-p,
.amenity-details-p-2 {
  font-size: 12px;
  letter-spacing: 1px;
}

@media screen and (max-width: 900px) {
  .amenities-section {
    padding: 50px 30px;
  }
  .amenity-div,
  .amenity-div-2 {
    width: 48%;
    margin-bottom: 20px;
  }
  .div-1-amenity {
    background-color: var(--third-color);
    color: #fff;
  }
  .div-2-amenity {
    background-color: #fff;
    color: var(--third-color);
  }
}
@media screen and (max-width: 670px) {
  .amenities-section {
    padding: 40px 20px;
  }
  .amenities-p1 {
    width: 100%;
    font-size: 30px;
    margin-bottom: 15px;
  }
  .amenity-div,
  .amenity-div-2 {
    width: 100%;
  }
  .amenity-div {
    background-color: #fff;
    color: var(--third-color);
  }
  .amenity-div-2 {
    background-color: var(--third-color);
    color: #fff;
  }
  .amenities-p1 {
    font-size: 25px;
  }
}

/* apartment specs */
.apartment-specs {
  width: 100%;
  padding: 100px;
  background-color: #c4c4c420;
}
.apartment-specs-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.apartment-type-div {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}
.apartment-type-p {
  padding: 30px;
  border-bottom: 1px solid #c4c4c4;
  width: 50%;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
}
.apartment-type-specs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.apartment-type-img {
  width: 49%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.inner-img-apartment-div {
  width: 700px;
  height: 450px;
  overflow: hidden;
  position: relative;
}
.inner-img-apartment-div img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.apartment-type-details {
  width: 49%;
  padding: 30px;
}
.unlock-p {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--third-color);
}
.dynamic-p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.measurement-p {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #c4c4c4;
}
.measure-name {
  display: flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}
.measure-name iconify-icon {
  color: var(--third-color);
  font-size: 25px;
  margin-right: 10px;
}
@media screen and (max-width: 900px) {
  .apartment-specs {
    padding: 50px 30px;
  }
  .inner-img-apartment-div {
    width: 450px;
    height: 450px;
    overflow: hidden;
    position: relative;
  }
}
@media screen and (max-width: 670px) {
  .apartment-specs {
    padding: 50px 20px;
  }
  .apartment-type-details {
    width: 100%;
  }
  .apartment-type-specs {
    flex-direction: column;
  }
  .apartment-type-img {
    width: 100%;
  }
  .apartment-type-p {
    font-size: 10px;
    text-align: center;
  }
  .inner-img-apartment-div {
    width: calc(100vw - 10px);
    height: 450px;
  }
  .inner-img-apartment-div img {
    width: 100%;
    height: 100%;
  }
}

/* mufasa in pictures */
.mufasa-pictures {
  width: 100%;
  background-color: #c4c4c420;
  padding: 50px 100px 100px;
}
.mufasa-pictures-p {
  text-align: center;
  margin-bottom: 45px;
  font-size: 25px;
  font-weight: 700;
  color: var(--third-color);
}
.mufasa-pictures-div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.image-div {
  width: 24%;
  position: relative;
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 2px 2px 2px #18181880;
  height: 250px;
  margin-bottom: 25px;
  /* transition: 1s ease-in-out all; */
}
.image-div img {
  width: 100%;
  object-fit: contain;
  height: 100%;
  /* height: 250px; */
}
.image-div:hover .image-p {
  visibility: visible;
}
.image-p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #18181880;
  font-size: 25px;
  color: var(--third-color);
  transition: all 0.2s ease-in-out;
  visibility: hidden;
}

@media screen and (max-width: 900px) {
  .mufasa-pictures {
    padding: 50px 20px;
  }
  .image-div {
    width: 32%;
  }
}
@media screen and (max-width: 670px) {
  .mufasa-pictures {
    padding: 50px 20px;
  }
  .image-div {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
  }
}

/* download section */
.download-form-section {
  width: 100%;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c4c4c420;
}
.download-form-section-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.download-form-div {
  background: #181818;
  width: 49%;
  padding: 30px;
  color: var(--second-color);
}
.started-p {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.fill-p,
.download-p {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 25px;
}
.fill-a,
.download-a {
  background: var(--second-color);
  color: #fff;
  font-weight: lighter;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  .download-form-section {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 670px) {
  .download-form-section {
    padding: 50px 20px;
  }
  .download-form-section-div {
    flex-direction: column;
  }
  .download-form-div {
    margin-bottom: 35px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .fill-p,
  .download-p {
    font-size: 25px;
  }
}

/* footer */
.footer {
  padding: 100px 100px 20px;
  background-color: #191919;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: whitesmoke;
}

.footer-div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-div1 {
  width: 32%;
}
.footer-div1 img {
  width: 40%;
  margin-bottom: 30px;
}
.socials {
  display: flex;
  width: 50%;
  justify-content: space-between;
}
.socials iconify-icon {
  font-size: 30px;
  text-decoration: none;
  color: var(--main-color);
}
.footer-p1 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact-details p {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  font-size: 15px;
  color: #f9f9f990;
}
.contact-details p iconify-icon {
  font-size: 25px;
  margin-right: 15px;
  color: var(--second-color);
}
.subscribe-div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.subscribe-div input {
  padding: 10px;
  border: none;
  background: #f9f9f9;
  color: #191919;
  outline: none;
}
.subscribe-div button {
  padding: 10px;
  border: none;
  cursor: pointer;
  background-color: #1a4e18;
  color: #f9f9f9;
}
.subscribe-p {
  font-size: 12px;
  letter-spacing: 1px;
  color: #f9f9f990;
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 50px 20px;
  }
  .subscribe-div input {
    width: 40%;
  }
  .contact-details p {
    font-size: 12px;
  }
  .subscribe-p {
    font-size: 10px;
  }
  .subscribe-div button {
    width: 30%;
    font-size: 8px;
    padding: 14px;
  }
}
.copyright {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #f9f9f990;
}
.copyright-p {
  font-size: 12px;
  color: #f9f9f990;
  letter-spacing: 1px;
}
@media screen and (max-width: 670px) {
  .footer {
    padding: 30px 20px;
  }
  .footer-div {
    flex-direction: column;
  }
  .footer-div1 {
    width: 100%;
    margin-bottom: 50px;
  }
  .footer-div1 img {
    margin-bottom: 25px;
  }
  .socials {
    width: 70%;
  }
}
