/* global css  */
@import url("https://fonts.googleapis.com/css2?family=Ancizar+Sans:ital,wght@0,100..1000;1,100..1000&display=swap");

* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  font-family: "Ancizar Sans", sans-serif;
}
section {
  padding: 60px 0px;
}

.flex {
  display: flex;
}
.align-items {
  align-items: center;
}
.spce-between {
  justify-content: space-between;
}
.wrap {
  flex-wrap: wrap;
}
:root {
  --theme-clr-one: #012611;
  --them-clr-two: #025024;
}
.container {
  max-width: 1110px;
  margin: auto;
  width: 100%;
}
ul {
  list-style: none;
}
.heading {
  margin-bottom: 20px;
}
.heading h2 {
  text-transform: uppercase;
  font-size: 48px;
  color: #012611;
  font-weight: 700;
}

p {
  font-size: 17px;
  color: #565656;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 8px;
}

p span {
  color: #0d4425;

  font-size: 20px;
  font-weight: 700;
}

/* form  */
form {
  width: 100%;

  border-radius: 8px;
}
form .form-group label {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 4px;
}

form .form-group {
  width: 100%;
  margin: 15px 0;
}

form .form-group input,
form .form-group select {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  outline: unset;
  border: 1px solid #cfcfcf;
  padding: 0px 20px;
}

form input[type="submit"] {
  width: 100%;
  padding: 11px;
  text-transform: uppercase;

  border: unset;
  border-radius: 5px;
  color: #fff;
  margin-top: 15px;
  font-size: 20px;
  background: var(--them-clr-two);
  font-weight: 600;
  letter-spacing: 1px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1000;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.popup-content {
  background: var(--theme-clr-one);
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  transform: scale(0.8);
  transition: transform 0.4s ease;
  position: relative;
}
.popup-overlay .form-body {
  padding: 20px;
  padding-top: 10px;
}
.popup-overlay.active .popup-content {
  transform: scale(1);
}
.close-btn {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  font-size: 35px;
}
.glbl-btn {
  background: var(--them-clr-two);
  color: #fff;
  font-size: 17px;
  padding: 13px 25px;
  text-transform: uppercase;
  box-shadow: unset;
  border: unset;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}
.popup-overlay form submit {
  background-color: var(--them-clr-two);
}

.popup-overlay form input[type="number"] {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
.popup-overlay .is-code {
  padding: 0px 15px;
  background: #025024;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.popup-content .heading {
  background: var(--them-clr-two);
  text-align: center;
  padding: 10px 15px;
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
/* header*/
.header {
  background-color: var(--theme-clr-one);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.header .openPopup {
  margin-top: 0px;
}
.header h4 {
  font-size: 22px;
  color: #fff;
}
.header .logo {
  width: 17%;
  text-decoration:none;
}
.header .logo img {
  width: 100%;
}

.header ul li {
  padding-left: 30px;
}
.header ul li a {
  color: #fff;
  font-size: 20px;
  text-decoration: unset;
  font-weight: 400;
}

/* banner  */
.banner {
  background-image: linear-gradient(
      to right,
      rgb(0 0 0 / 83%),
      rgba(0, 0, 0, 0.5)
    ),
    url(../../img/banner.webp);
  height: 90vh;
  background-attachment: fixed;
}
.banner .container {
  height: 100%;
}
.banner .left {
  width: 60%;
}
.banner .left h1 {
  color: #fff;
  font-size: 32px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
}
.banner .left h1 span {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}

.banner .right {
  width: 30%;
  background-color: #00000096;
  backdrop-filter: blur(2px);
  border-radius: 5px;
}

.banner .right form {
  width: 90%;
  border-radius: 8px;
  margin: auto;
  margin-bottom: 25px;
}

.banner .right .isd span {
  background-color: var(--them-clr-two);
  height: 45px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 14px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 18px;
}
.banner .right .isd input {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
.banner .right .heading {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: center;
}
.banner .right .heading h2 {
  margin-bottom: unset;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding: 12px 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-transform: capitalize;
  border: unset;
  background: var(--them-clr-two);
}

.banner p {
  background-color: var(--them-clr-two);
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
  font-size: 21px;
  display: inline-block;
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.banner .price .left {
  color: #fff;
  font-size: 28px;
  border: 1px solid #a77f34;
  margin-top: 15px;

  padding: 5px 0px 5px 30px;
  font-size: 25px;
  text-transform: uppercase;
  width: auto;
  display: inline-block;
}

.banner .price .left span {
  background: #a77f34;
  padding: 5px 10px;
  font-size: 32px;
  font-weight: 700;
}

/* address  */
.address {
  background-color: #012611;
  padding: 15px;
  text-align: center;
  color: #fff;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
}

.address h4 span {
  font-size: 23px;
  font-weight: 300;
  text-transform: capitalize;
}

/* about  */
.about {
  background-color: #eeeeee73;
}
/* .about .container {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
} */
.about .left {
  width: 38%;
  height: 600px;
  padding: 0px 15px;
}

.about .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.about .right {
  width: 60%;
  padding: 10px 30px;

  padding-left: 0;
  text-align: justify;
}

/* .include  */
.include {
  background-color: var(--theme-clr-one);
}
.include .heading {
  text-align: center;
  margin-bottom: 20px;
}

.include p {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}

.include .heading h2 {
  color: #fff;
}

.include h5 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 12px;
}

.include ul li {
  color: #fff;
  padding: 8px 0px;
  font-size: 21px;
  display: flex;
  align-items: center;
  font-weight: 600;
  width: 100%;
}

.include ul li img {
  width: 20px;
  margin-right: 10px;
}

/* benifits */
.benifits .heading {
  text-align: center;
}
.benifits .container {
  max-height: 440px; /* enough height for 12 boxes */
  overflow: hidden;
  transition: all 0.6s ease; /* smooth transition */
}

.benifits.expanded .container {
  max-height: 2000px; /* big enough to show all boxes */
}

.see-more-btn {
  background-color: #a77f34;
  padding: 14px 25px;
  display: block;
  color: #fff;
  width: 200px;
  font-size: 22px;
  font-weight: 500;
  margin: 25px auto;
  text-align: center;
  transition: all ease-in-out 0.5s;
  cursor: pointer;
}

.see-more-btn:hover {
  background-color: var(--theme-clr-one);
}

.benifits .box {
  width: 49%;
  padding: 13px 25px;
  text-align: left;
  margin: 10px 0;
  background-color: var(--theme-clr-one);
  border-radius: 2px;
}
.benifits .box h4 {
  font-size: 23px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
}

.benifits .box h4 img {
  width: 20px;
  margin-right: 5px;
}

/* amenities*/
.amenities {
  background: var(--theme-clr-one);
  padding: 60px 20px;
  text-align: center;
}

.amenities .heading h2 {
  color: #fff;
}

.amenities .box h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  margin-top: 17px;
}

.amenities .box {
  width: 32%;
  border: 1px solid #ffffff94;
  padding: 20px 10px;
  text-transform: capitalize;
  margin: 12px 0;
}

.amenities .box img {
  width: 64px;
}

.amenities .box:last-child {
  border: unset;
}

/* objective */
.objective .container {
  text-align: center;
}

/* about-project */

.about-project {
  padding: 60px 0px;
}
.about-project .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-project .container .left {
  width: 42%;
}
.about-project .container .left .box {
  width: 100%;
}
.about-project .container .right {
  width: 52%;
}
.about-project .container .right img {
  width: 100%;
  /* border: 1px solid #012611; */
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.about-project .heading h2 {
  color: #fff;
}

.about-project .box:last-child {
  border: unset;
}

.about-project .box h2 {
  font-size: 40px;
  color: var(--theme-clr-one);
  margin-bottom: 10px;
}

.about-project .box p {
  font-size: 18px;
  color: #565656;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 8px;
}

/* thank you */
.thankou_box{
    background-color: #fff;
    width: 100%;
    padding: 70px;
    box-shadow: 0 0 30px -20px rgba(0,0,0,.8);
    text-align: center;
    outline: 1px solid #b5b5b552;
    outline-offset: -8px;
}
.thankou_box h1 {
    text-transform: capitalize;
    color: #025024;
    margin: 0;
    text-align: center;
    font-size:60px;
}
.thankou_box img{
    margin: 15px 0px;
}
.thank_btn{
    background-color: #a77f34;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
.thank-you {
  padding: 60px 0px;
  
  
}
.thank-you .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.thank-you .heading h2 {
  color: #fff;
}


/* thank you */

/* media  */
.media .left {
  width: 48%;
}
.media .right {
  width: 48%;
}
.media .right img {
  width: 100%;
}
/* footer  */
footer {
  background-color: var(--theme-clr-one);
  padding: 20px 0px;
}

footer img {
  position: fixed;
  bottom: 15px;
  right: 15px;
}
footer p {
  color: #fff;
  border-bottom: 1px solid #ffffffa3;
  padding-bottom: 20px;
}

footer ul li {
  display: inline-block;
  margin-right: 20px;

  margin-top: 20px;
}
footer ul li a {
  color: #fff;
  text-decoration: underline;
  text-transform: capitalize;
}

footer .note {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
}

/* responsive  */
@media (max-width: 575px) {
  .heading {
    margin-bottom: 10px;
  }
  .heading h2 {
    font-size: 30px;
  }
  .include .heading h2 {
    font-size: 21px;
    text-align: left;
  }
  .container {
    padding: 0px 15px;
  }
  .glbl-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  .banner .left {
    width: 100%;
  }
  .banner .left h1 span {
    font-size: 32px;
  }
  .banner .left h1 {
    font-size: 25px;
    line-height: 34px;
  }
  .banner {
    padding: 35px 0px;
    height: auto;
  }
  .address {
    font-size: 22px;
  }
  .address h4 span {
    font-size: 20px;
    margin-top: 5px;
    display: block;
  }
  .banner p {
    padding: 3px 15px;
    color: #fff;
    font-size: 18px;
  }
  .banner .price .left {
    font-size: 19px;
  }
  .banner .price .left span {
    padding: 5px 10px;
    font-size: 20px;
  }
  .banner .right {
    width: 100%;
  }
  .banner .right {
    margin-top: 20px;
  }
  .about {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .about .left {
    width: 100%;
    height: 250px;
    padding: 0px;
  }
  .about .right {
    width: 100%;
  }
  .include {
    padding: 35px 0px;
  }
  .include p {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
  }
  .media .left {
    width: 100%;
  }
  .include ul li {
    font-size: 19px;
  }
  .media .right {
    margin-top: 15px;
    width: 100%;
  }
  .benifits {
    padding: 35px 0px;
  }
  .benifits .box {
    width: 100%;
    padding: 13px 25px;
    text-align: left;
    margin: 5px 0;
  }
  .benifits .box h4 {
    font-size: 17px;
  }
  .benifits .box h4 img {
    width: 13px;
    margin-right: 5px;
  }
  .see-more-btn {
    background-color: #a77f34;
    padding: 12px 0;
    display: block;
    color: #fff;
    width: 159px;
    font-size: 20px;
    margin-bottom: 0;
  }
  .amenities {
    padding: 60px 0px;
  }
  .amenities .box {
    width: 48%;
    height: 210px;
  }
  .amenities .box h4 {
    font-size: 20px;

    margin-top: 17px;
  }
  .about-project {
    padding: 30px 0px;
  }
  .about-project .box h2 {
    font-size: 28px;
  }
  .about-project .container .left {
    width: 100%;
  }
  .about-project .container .right {
    width: 100%;
    margin-top: 25px;
  }
  
   .thank-you {
    padding: 30px 0px;
  }
 
}


.filter_loading {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  height: 100%;
  z-index: 999999999;
}
.filter_loading img {
  margin: 20% auto 0 auto;
  padding: 5px;
  width: 54px;
}
.overlay {
  background: #000000b3;
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  display: none;
}
.over_inner {
  width: 100%;
  height: 100%;
}
em.error {
  color: rgb(223, 72, 65);
  right: 0;
  font-size: 10px;
  margin: 0;
  font-weight: 700;
}

.alert-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: #ffda78;
  padding: 10px;
  color: #333;
  font-family: cursive;
}
.mgserror {
  color: red;
  margin: 10px auto;
  padding: 5px;
  font-size: 12px;
  text-align: center;
}
.error_message {
  margin-bottom: 10px;
  font-size: 12px;
  color: #d21919;
  border-radius: 5px;
  font-weight: 400;
  padding: 2px 10px 0 200px;
  text-align: left;
}
.is-invalid {
  border-color: #df4841;
}
