@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:wght@1000&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #1c6643;
  --secondary-color: #edbb24;
}

html{
    scroll-behavior: smooth;
}

body {
  font: 500 1rem/1.4 "Montserrat", sans-serif;
  overflow-x: hidden;
  letter-spacing: 1px;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a {
  color: #fff;
}

li {
  list-style-type: none;
}

a,
a:hover {
  text-decoration: none;
}

.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}

.font-weight-bolder {
  font-weight: 800 !important;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

img {
  width: 100%;
  display: block;
}

.object-cover {
  object-fit: cover;
}

.wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
}

.header {
  justify-content: space-between;
  z-index: 9;
  width: 100%;
  display: flex;
  background-color: #fff;
  padding: 0 2rem;
  align-items: center;
}

.logo,
.call-now {
  align-items: center;
  justify-content: center;
}

.logo img {
  max-height: 100%;
  width: 190px;
}

.logo,
.call-now a {
  color: #000;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu li a {
  padding: 8px 7px;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}

.menu li a:hover {
  color: var(--primary-color);
}

/* banner */
.banner {
  position: relative;
  z-index: 1;
}

.bannerText {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5rem 2rem 1rem;
  z-index: 2;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.85));
  color: #000;
}

.bannerText .possession-ready {
  display: table;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5rem 2rem 0.5rem 0;
  position: relative;
  isolation: isolate;
}

.bannerText .possession-ready::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -2rem;
  background-color: #fff;
  clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
  z-index: -1;
  animation: blink 1s alternate infinite;
  box-shadow: 0 8px 20px rgb(0 0 0 / 25%);
}

@keyframes blink {
  to {
    background-color: var(--secondary-color);
  }
}

.bannerText h4 {
  font-weight: 800;
  color: var(--primary-color);
}

.sitevisit {
  position: absolute;
  right: -60px;
  top: 0.5rem;
  z-index: 9;
}

.sitevisit a {
  width: 120px;
  height: 120px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  background: radial-gradient(circle at 50% 10%, #ffd555, #ad8200);
  box-shadow: 0 0.5rem 2rem rgb(0 0 0 / 25%);
  position: relative;
  isolation: isolate;
  transition: color 300ms ease-in-out;
  color: #000;
}

.sitevisit a:hover {
  color: #000;
}

.sitevisit a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  transform: scale(0, 0);
  transition: transform 300ms ease-in-out 100ms;
  border-radius: 50%;
  z-index: -1;
}

.sitevisit a:hover::before {
  transform: scale(1, 1);
}

.sitevisit a i {
  font-size: 150%;
}

.sitevisit a:hover i {
  color: var(--primary-color);
}

.bannerAside .inner {
  background: radial-gradient(
    circle at 80% -100%,
    var(--secondary-color),
    var(--primary-color)
  );
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
.bannerAside .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/leaves-shadow.png) top right / 70% no-repeat;
  opacity: 0.3;
  z-index: -1;
}

.bannerAside .projectLogo {
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
}

.bannerAside .projectLogo h2 {
  font-weight: 800;
}

.bannerAside .banner-heading {
  padding: 1.5rem;
  background-color: rgb(0 0 0 / 65%);
  color: #fff;
  width: 100%;
}

.bannerAside .h1 {
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
}

.bannerAside h3 {
  font-weight: 700;
}

.bannerAside form {
  padding: 1rem;
  background-color: #fff;
}
/* banner */

.readmore {
  margin-top: 2rem;
}

.readmore .button {
  display: block;
  background: linear-gradient(
      45deg,
      var(--primary-color),
      var(--primary-color),
      var(--secondary-color),
      var(--primary-color)
    )
    left / 180%;
  color: #fff;
  min-width: 120px;
  max-width: fit-content;
  padding: 8px 1rem 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 300ms ease-in-out;
}

.readmore button {
  border: 0;
}

.readmore .button:hover {
  background-position: right;
  background-size: 360%;
}

.readmore .button.secondary {
  background: var(--secondary-color);
  box-shadow: 0 10px 30px rgb(0 0 0 / 25%);
  color: #000;
}

.readmore .button.secondary:hover {
  background: #fff;
  color: var(--primary-color);
}

.readmore .button.lg {
  padding: 12px 2rem 9px;
}

.readmore.d-flex {
  gap: 10px;
}

.modal-backdrop{
    background-color: rgb(0 0 0 / 85%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-backdrop.show{
    opacity: 1;
}

.modal-title{
    font-weight: 800;
    color: var(--primary-color);
}

.btn-close{
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-close:hover{
    background-color: var(--primary-color);
    color: #000;
}

.form-group {
  display: flex;
  gap: 7px;
}

.form-check-input {
  width: 46px;
}

.heading {
  margin-bottom: 1.5rem;
}

.heading .h1 {
  display: table;
  font-weight: 800;
  font-size: 6.5rem;
  font-family: 'Sofia Sans Condensed', sans-serif;
  line-height: 0.9;
  transform-origin: left;
  text-transform: uppercase;
  background: url(../images/leaves.webp) center / cover no-repeat;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  color: transparent;
}

.overviewicon .inner {
  padding: 3rem;
}

.overview-img img {
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 25%);
}

.heading-img-about {
  width: 250px;
  margin-bottom: 15px;
}

/* -----Accordion----- */
.accordion-header {
  margin-bottom: 1px;
}

.accordion-wrapper .accordion-header {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

.accordion-button {
  width: 100%;
  padding: 14px 20px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 0;
  border: 1px solid rgb(0 0 0 / 10%);
}

.accordion-button:hover {
  color: #fff;
}
.accordion-button.collapsed {
  color: var(--primary-color);
  background-color: #fff;
}

.accordion-button i {
  transition: all 300ms ease-in-out;
  transform: rotate(225deg);
  color: var(--secondary-color);
}

.accordion-button.collapsed i {
  transform: rotate(0deg);
  color: var(--primary-color);
}

.accordion-wrapper .card-body {
  border: 1px solid rgb(0 0 0 / 10%);
  background-color: #fff;
  margin-bottom: 1rem;
  padding: .5rem 1.5rem;
}
/* -----Accordion----- */

.card-body {
  padding: 1rem 1rem 1rem 2rem;
}

.highlights li {
  font-weight: 700;
}

.amenitiesBox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 70px -15px 0;
}

.amenitiesBox .amenitiesIcons {
  width: 20%;
  text-align: center;
  padding: 0 15px;
}

.amenitiesBox .amenitiesIcons img {
  max-width: 100px;
  max-height: 100px;
  min-height: 100px;
  object-fit: contain;
  margin: auto;
  margin-bottom: 10px;
}

.amenitiesBox .amenitiesIcons .icon {
  text-align: center;
}

.amenitiesBox .amenitiesIcons .caption {
  font-size: 14px;
}

.fpHead {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}

.fpHead li {
  flex-grow: 1;
}

.fpHead li span {
  display: block;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
}

.fpHead li span:hover {
  background: #f9fff9;
}

.fpHead li span.fpBtn.active {
  color: #fff;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  )
  left / 180%;
}

.fpContainer:not(#fpContainer1) {
  display: none;
}

.fpContainer .fbBox {
  margin: 15px 0;
}

.fpContainer .fbBox a {
  width: 100%;
  display: block;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
  background-color: #fff;
  text-align: center;
  transition: all 300ms ease;
  color: inherit;
  border-bottom: 4px solid var(--primary-color);
}

.fpContainer .fbBox a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.20);
  border-bottom-color: var(--secondary-color);
}

.fpContainer .fbBox a .img-fluid img {
  height: 200px;
  object-fit: none;
}

.fpContainer .fbBox a span {
  display: block;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e4e4e4;
}

.planBase{
    padding: 1rem;
}

.planBase h4{
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
}

.planBase p{
    margin-bottom: 0;
}

/* Floor plans */

.gallery {
  position: relative;
  z-index: 1;
}

.gallery:before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  width: 100%;
  bottom: 0;
  top: 66%;
  background: var(--primary-color);
  margin: auto;
  z-index: -1;
}

.map-form input:not(input[type="checkbox"]) {
  width: 100%;
  border: 1px solid var(--primary-color);
  padding: 20px;
  height: 40px;
}

.map-form input[type="submit"] {
  background: var(--primary-color);
  color: #fff;
  line-height: 0px;
}

.map-form input[type="submit"]

.map-form .form-group {
  margin-bottom: 12px;
}

.footer {
  background: #032314;
  text-align: left;
  color: #fff;
  padding: 2rem 0;
  line-height: 1.1;
  letter-spacing: normal;
  font-size: 14px;
}

.footer p{
    color: #fff;
}

.footer a {
  color: var(--secondary-color);
}

.toggle {
  position: absolute;
  height: 40px;
  width: 160px;
  text-align: center;
  cursor: pointer;
  background: #c08831;
  top: 19%;
  transform: rotate(270deg);
  left: -100px;
  font-size: 18px;
  color: #fff;
  line-height: 40px;
}

.fixed-form {
  position: absolute;
  right: 0px;
  top: 50%;
  width: 300px;
  padding: 10px 20px 20px;
  background: #ffffff;
  border: 1px solid rgb(133 125 125);
  z-index: 1000;
  transition: all 300ms ease-in-out;
  -webkit-transform: translate(-0%, -50%);
  transform: translate(-0%, -50%);
  color: #000;
}

.fixed-form1 {
  right: 0;
  transition: all ease-in-out 400ms;
}

.fixed-form .formFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: auto;
}

.fixed-form .formFooter button {
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  transition: all 300ms ease-in-out;
  outline: none;
  background: #5ab349;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.fixed-form .formFooter button:hover {
  background: #368926;
}

.fixed-form .form-control {
  border: 1px solid #000;
  color: #000;
  border-radius: 4px;
  margin-bottom: 10px;
}

.fixed-form h5 {
  font-size: 17px;
  margin-bottom: 5px;
  text-align: center;
  font-weight: 600;
  color: #368926;
}

.fixed-form p {
  color: #368926;
  font-size: 12px;
}

.modal-body {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  margin-bottom: 0;
}

.form-control {
  font-size: 14px;
  padding: 8px;
  height: auto;
  background: none;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 40%);
  color: #000;
  border-radius: 0;
  transition: all 300ms ease;
}

.form-control:focus {
  background-color: transparent;
  border-bottom-color: var(--secondary-color);
  box-shadow: none;
  color: #000;
}

.form-control::placeholder {
  color: #000;
}

.btn {
  width: 100%;
  border: 1px solid var(--primary-color);
  padding: 4px;
  color: #fff;
  text-transform: uppercase;
  background: var(--primary-color);
}

.bg-img {
  position: relative;
  background: #eeffee;
  z-index: 1;
}

.bg-img:before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0;
  top: 0px;
  margin: auto;
  background: url(../images/26914.webp) fixed;
  background-size: 100%;
  z-index: -1;
  opacity: 0.12;
}
.location-main {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
.location-box {
  width: 30%;
}
.location-img {
  width: 70px;
  margin: auto;
  background: radial-gradient(circle at 50% 10%, #ffd555, #ad8200);
  padding: 14px;
  border-radius: 50%;
}

.location-text p {
  text-align: center;
  margin: 10px 0 0 0;
}
.gap-row{
    row-gap: 30px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{background-color: var(--secondary-color);}
@media screen and (max-width: 1024px) {
  .menu {
    display: none;
  }

  .carousel-indicators {
    display: none;
  }

  .h3,h3 {
    font-size: 1.5rem;
  }

  .heading-img-about {
    width: 175px;
    margin-bottom: 10px;
  }

  .form-group {
    margin-bottom: 11px;
  }

  .planBase {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 991.9px) {
    .container-lg{padding-left: 2rem; padding-right: 2rem;}
    .sitevisit{right: 10px;}
    .heading .h1{font-size: 5rem;}
    .overviewicon .inner{padding: 2rem 2rem 0;}
    .overviewiimg img{height: 500px; object-fit: cover; box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);}
    .amenitiesBox .amenitiesIcons {
        width: 33%;
    }
}

@media screen and (max-width: 767.9px) {
    html{font-size: 75%;}
  .banner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .fpHead li span{padding: 10px; font-size: 1.5rem;}

  .amenitiesBox .amenitiesIcons img{
    max-width: 80px;
    max-height: 80px;
    min-height: 80px;
  }
  .amenitiesBox .amenitiesIcons .caption {
    font-size: 13px;
  }

  .gallery:before {
    bottom: 0;
  }
}

@media screen and (max-width: 575.9px) {
  .logo img {
    width: 142px;
  }

  .amenitiesBox .amenitiesIcons {
    width: 50%;
  }
}

@media screen and (max-width: 414px) {
    .header{padding: 0 1rem;}
    .logo img {
        width: 122px;
    }
    .container-lg {
        padding-left: 1rem;
        padding-right: 1rem;
    }
  .bannerAside .h1{font-size: 2rem;}
  .bannerAside .inner{padding: 1rem;}
  .overviewicon .inner{padding: 2rem 1rem;}
  .overview-img img{height: 88vw; object-fit: cover;}
}

@media screen and (max-width: 390px) {
    .heading .h1 {
        font-size: 3.5rem;
    }
    .h3, h3{font-size: 1.25rem;}
    
    .bannerAside .banner-heading{padding: 1rem;}
    .bannerAside .projectLogo h2,.bannerAside .h1{font-size: 1.75rem;}
    .sitevisit a{
        width: 90px;
        height: 90px;
        font-size: 10px;
    }
}
