@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /* Brand palette sourced from lorvencascadegarden.com */
  --brand-green: #206B51;        /* primary brand green */
  --brand-green-dark: #17513D;   /* darker surfaces / hover */
  --brand-green-deep: #125742;   /* deepest green accent */
  --brand-green-light: #2F8267;  /* lighter green surface */
  --brand-green-tint: #DBE7E2;   /* pale green tint */

  --primary-color: #CD872E;      /* gold accent */
  --primary-dark: #B88C43;       /* gold hover */
  --primary-deep: #B0731F;       /* gold pressed */

  --white: #fff;
  --gray: #666;
  --black: #282B32;
  --grey: #484a4c;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 1rem;
  background-color: var(--brand-green-tint);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 50px;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

section {
  padding: 4% 0 3%;
}

.sec_heading {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

/* .sec_heading::after {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  display: block;
  height: 2px;
  background-color: var(--primary-color);
  margin: 0 auto;
} */

.sub_heading {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  padding: 1rem 0 2rem;
}

.para {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  width: 80%;
  margin: 0 auto 5rem;
}

/* keep the justified block on phones too - hyphenation stops the short lines
   from going gappy */
@media screen and (max-width: 575px) {
  .para {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    width: 92%;
  }
}

.sub_header {
  font-size: 1.4rem;
  color: #fff;
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
}

/* header */
header {
    width: 100%;
    /* keep the 8% padding inside the 100% width - without this the bar is
       116% wide and the right logo is pushed past the viewport edge */
    box-sizing: border-box;
    padding: 0.8rem 8%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: var(--white);
    /* box-shadow: 0 0.5rem 1rem rgba(0 0 0 / 20%); */
    min-height: 6rem;
    display: flex;
    align-items: center;
}

.nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav_items {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
   
}

.nav_items li a {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: #333;
  position: relative;
  transition: 0.3s;
}

.nav_items li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #333;
  display: block;
  bottom: -0.2rem;
  left: 0;
  margin: 0 auto;
  transition: ease all 0.3s;
}

.nav_items li a:hover::after {
  width: 100%;
}

.left_logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.right_logo {
  width: auto;
  height: 34px;
  object-fit: contain;
}

/* banner */
.bann_icon i {
  font-size: 2.1rem;
  color: #666;
  margin-right: 1rem;
}

.bann_content {
  font-size: 1.5rem;
  color: #666;
}

.banner {
  padding: 2% 0;
}

/* overview */

.bg_clr {
  background-color: var(--brand-green-dark);
}


.overview_img {
  width: 100%;
  object-fit: cover;
}

.form_content input {
  width: 90%;
  outline: none;
  border: none;
  border-bottom: 1px solid #ccc;
  margin: 1rem auto;
  font-size: 1.5rem;
}

.form_content input.valid {
  margin-bottom: 3rem !important;
}

.form_content input:active,
.form_content input:focus {
  box-shadow: unset;
}

.form_btn {
  /* width: 100%; */
  width: auto;
  background-color: var(--brand-green);
  color: var(--white);
  font-size: 1.5rem;
  outline: none;
  border: none;
  /* padding: 0.8rem 3rem; */
  padding: 0.9rem 2rem;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  /* margin: 1rem 0; */
  margin: 1rem auto;
  display: inline-block;
}

.condition {
  font-size: 1.1rem;
  padding: 0 2.5rem 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  color: var(--primary-color);
}

/* highlights */
.highlights {
  background-color: #ddd;
}

.para_list {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray);
  padding: 2rem 0;
}

/* configuration */
.configuration {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/lorven/interior/2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.configuration .sec_heading {
  color: var(--white);
}

.configuration .sec_heading:after {
  background-color: var(--white);
}

.table_cust {
  margin: 3rem 0 !important;
}

.table_cust thead tr {
  background-color: var(--primary-color) !important;
  text-align: center;
  color: var(--white);
  font-size: 1.8rem;
}

.table_cust thead tr th {
  padding: 2rem;
}

.table_cust tbody tr {
  background-color: var(--white);
  text-align: center;
  font-size: 1.5rem;
}

.table_cust tbody tr td {
  padding: 1.5rem;
}

/* amenities */
.ame_contain {
  display: flex;
  gap: 5rem 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6rem;
}

.ame_grp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.ame_icon {
  text-align: center;
  transition: ease all 0.5s;
}

.ame_icon:hover {
  transform: translateY(-10px);
  transition: ease all 0.5s;
}

.ame_icon .icons-wrap {
  height: 90px;
  width: 90px;
  margin: 0px auto;
  padding: 0.5rem;
  border: 2px solid transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease all 0.5s;
}

.ame_grp:hover .icons-wrap {
  border-radius: 0;
  border-color: #222;
  transition: ease all 0.5s;
}

.ame_grp:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.ame_icon img {
  display: block;
  width: 80px;
  height: 100%;
  filter: invert(1);
}

.ame_head {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 2rem 0;
  color:#fff;
}

.nav_link {
  color: var(--grey) !important;
  background-color: var(--white) !important;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: unset !important;
  padding: 0.5rem 3rem !important;
  text-transform: uppercase;
  border-right: 1px solid var(--primary-color) !important;
  transition: 0.4s;
}

.nav_link.active {
  background-color: var(--brand-green-dark) !important;
  color: var(--white) !important;
}

.tab_content {
  margin: 4rem 0;
}

/* amenities */
.amenities {
  background-color: #f1f1f1;
}

/* location */

.location_adv {
  background-color: #ddd;
}

.form_group {
  display: flex !important;
  flex-direction: column !important;
}

/* view */
.view {
  background-color: #ddd;
}

.timeline {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0px;
}

.li {
  transition: all 200ms ease-in;
}

.timestamp {
  margin-bottom: 0px;
  padding: 0px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 100;
}

.li.complete .status {
  border-top: 2px solid #222;
}

.icon-img {
  display: block;
  width: 35px;
  margin: 0px auto;
  padding-top: 10px;
}

.status {
  padding: 0px 10px;
  justify-content: center;
  border-top: 2px solid var(--brand-green-tint);
  position: relative;
  transition: all 200ms ease-in;
}

.li.complete .status h4 {
  color: #222;
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 1px;
}

.status h4 {
  font-weight: 600;
}

.li.complete .status:before {
  background-color: #222;
  border: none;
  transition: all 200ms ease-in;
}

.status:before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 25px;
  border: 1px solid #ddd;
  position: absolute;
  top: -15px;
  left: 46%;
  transition: all 200ms ease-in;
}

.locationBox1 .location-icon {
  color: #fff;
  font-size: 50px;
  width: 60px;
  height: 60px;
  line-height: 120px;
  margin: 0 auto 40px;
  display: block;
  position: relative;
}

.locationBox1 .location-icon:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 55px 50px 0px 50px;
  border-right: none;
  border-top: none;
  transform: rotate(45deg);
  background: #fff;
  position: absolute;
  box-shadow: 3px 3px 10px #222222;
  top: 0;
  left: 0;
  z-index: -3;
  transition: all 0.5s ease 0s;
}

.location-icon span {
  color: var(--brand-green);
  font-size: 36px;
  width: 36px;
  height: 36px;
  line-height: 52px;
  position: relative;
  z-index: 1;
  top: -33px;
}

.location_ad_img {
  width: 100%;
}

/* location advantages: light grey surface instead of the dark green bg_clr */
#location_adv.bg_clr {
  background-color: #f2f3f4;
}

#location_adv .sub_header {
  color: var(--grey);
  max-width: 900px;
  margin-inline: auto;
}

#location_adv .acc_item {
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.acc_item {
  margin: 1rem;
}

.acc_btn {
  display: block;
  position: relative;
  padding: 1rem;
  color: var(--white) !important;
  font-size: 1.5rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  text-align: center !important;
  background-color: var(--primary-color) !important;
}

.acc_btn::after {
  content: "-";
  position: absolute;
  top: 55%;
  background: unset !important;
  left: 20px;
  font-size: 2.2rem;
}

.acc_btn.collapsed::after {
  content: "+";
  background: unset;
  top: 10%;
}

.panel_body {
  padding: 2rem;
  font-size: 1.35rem;
  color: #333;
  font-weight: 500;
  padding-bottom: 1rem;
}

#about .about_para {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 1.9;
  padding: 1rem 0 2rem;
}

.about .about_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px dashed var(--primary-color);
  margin-top: 2rem;
}

.about .about_box.border_none {
  border: none;
}

.icon_box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon_box i {
  font-size: 2rem;
  color: var(--white);
}

.abt_desc {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-top: 1rem;
  text-align: center;
}

#contact {
  background-size: cover;
  background-position: center;
  /* background: #fff; */
}

.contact-back {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 80px;
  width: 100%;
  height: 100%;
  background-color: var(--brand-green-light);
  /* /* background: var(--brand-green)9e;  */
}

.form_title {
  color: var(--white);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.form_cond {
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.7em;
  letter-spacing: 1px;
}

.grp_addon {
  width: 40px;
  height: 40px;
  background-color: var(--brand-green-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.grp_addon i {
  font-size: 1.5rem;
  color: #fff !important;
}

.input_grp input,
.input_grp select {
  height: 40px;
  font-size: 1.4rem;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.site_add_loc {
  font-size: 2rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
}

.rera_div .rera_no {
  font-weight: 600;
  color: #444;
  font-size: 1.4rem;
}

.rera_details {
  margin-bottom: 2rem;
}

.disc {
  color: var(--primary-color);
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.8px;
  width: 80%;
  line-height: 1.8;
  margin: 0 auto 2rem;
}

.disc .disc_title {
  margin-bottom: 0.5rem;
}

.disc .disc_text {
  margin-bottom: 0;
}

.disc1 p {
  color: var(--grey);
  font-size: 18px;
  text-align: center;
  cursor: pointer;
}

.footer_logo {
  width: 10%;
  margin-bottom: 2rem;
}

.copy_text {
  color: var(--black);
  font-size: 1.5rem;
}

.gallery .nav_item .nav_link.border_none {
  border: none !important;
}

.fa {
  font-size: 4.5rem;
  color: var(--primary-color);
}

.high_right {
  position: absolute;
  top: 40%;
  right: -6rem;
}

.high_left {
  position: absolute;
  top: 40%;
  left: -6rem;
}

.owl-theme .owl-nav {
  margin-top: 0;

}

.owl-carousel .owl-nav.disabled {
  display: block !important;
}

.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
  background: unset !important;
}

.menu_icon {
  display: none;
}

.btn_interest {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  outline: none;
  border: 2px solid var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  color: var(--white);
  z-index: 999;
  font-size: 1.6rem;
  text-transform: capitalize;
  padding: 0.5rem 2rem;
  animation: glowing 1500ms infinite;
}

.btn_brochure {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  outline: none;
  border: 2px solid var(--white);
  background-color: var(--brand-green) !important;
  border-radius: 5px;
  color: var(--white);
  z-index: 999;
  font-size: 1.6rem;
  text-transform: capitalize;
  padding: 0.5rem 2rem;
  animation: glowing 1500ms infinite;
}

.btn_interest i,
.btn_brochure i {
  margin-right: 0.8rem;
  font-size: 1.5rem;
  vertical-align: -1px;
}

.policy_div p,
.policy_div ul li {
  color: var(--black);
  font-size: 1.4rem;
  line-height: 1.5;
}
.policy_div ul li {
  list-style: disc;
}

@keyframes glowing {
  0% {
    background-color: var(--brand-green);
    box-shadow: 0 0 3px var(--brand-green);
  }

  50% {
    background-color: var(--brand-green);
    box-shadow: 0 0 40px var(--brand-green);
  }

  100% {
    background-color: var(--brand-green);
    box-shadow: 0 0 3px var(--brand-green);
  }
}

.sub_btn {
  font-size: 15px;
  color: #fff;
  background-color: var(--brand-green) !important;
  border: 1px solid var(--brand-green);
  width: fit-content;
  padding: 10px 40px;
}

/* modal */
.modal_head {
  background-color: var(--brand-green-dark);
  color: var(--white);
}

.modal_title {
  font-size: 1.4rem;
  padding: 0.8rem 0.2rem;
}

.btn_close {
  background-color: #fff;
  margin-right: 1rem !important;
}

.model_body {
  background-color: #ddd;
  padding: 2rem 2rem;
}

.modal_cond {
  font-size: 1.25rem;
  color: #333;
  margin: 0 0 2rem;
  font-weight: 600;
}

.for_mobile_device {
  display: none;
}

.owl-stage-outer {
  padding-bottom: 2rem !important;
}

section.connectivity {
  padding: 0% 0 3%;
  overflow: hidden;
}

#more {
  display: none;
}

#readmore {
  display: none;
}

#myBtndisc,
#myBtn {
  font-size: 1.7rem;
  font-weight: 600;
  text-decoration: underline;
  color: var(--primary-color);
}

.error {
  color: red;
  font-size: 1.1rem;
  margin-left: 3rem;
  font-weight: 500;
}

.mobile_view {
  width: 80%;
  margin: auto;
  padding: 5rem;
  margin-bottom: 2rem;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--white);
}

/* .ame_left{
  margin-top: 0;
} */

.message {
  color: #666;
  font-size: 1.5em;
}

@media only screen and (max-width: 1300px) {
  .left_logo {
    height: 44px;
  }

  .right_logo {
    height: 28px;
  }

  .nav_items {
    gap: 1rem;
  }

  .nav_items li a {
    font-size: 16px;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 1024px) {
  header {
    padding: 8px 4%;
    height: auto;
    min-height: 6rem;
    display: flex;
    align-items: center;
  }

  header .nav_container {
    margin-top: 0;
    width: 100%;
  }

  .left_logo {
    width: auto;
    height: 42px;
  }

  .right_logo {
    width: auto;
    height: 27px;
  }

  .nav_items li a {
    font-size: 15px;
  }

  .nav_items {
    gap: 0.9rem;
  }
}

@media only screen and (max-device-width: 812px) and (orientation: landscape) {

  .phone,
  .message {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  html {
    font-size: 55%;
  }

  .menu_icon {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    margin-left: 1rem;
  }

  .menu_icon .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
  }

  .nav_items {
    position: fixed;
    top: 8%;
    border-top: 1px solid #ddd;
    left: 0;
    background-color: #fff;
    padding: 4rem 1rem;
    flex-direction: column;
    width: 100%;
    align-items: center;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: 0.5s;
    box-shadow: 0 -1px 0 inset #333;
  }

  .nav_items.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .nav_items li a {
    font-size: 2.2rem;
    margin: 1rem 0;
  }

  .timeline {
    list-style-type: none;
    display: block;
    padding: 0 3rem;
  }

  .li {
    transition: all 200ms ease-in;
    display: flex;
    width: inherit;
  }

  .timestamp {
    width: 100px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 100;
    margin: 0 auto;
  }

  .li.complete .status {
    border-top: 2px solid var(--primary-color);
    width: 55%;
  }

  .locationBox1 {
    margin: -5px 15px -16px 0px;
    margin-top: 19px;
  }

  .li.complete .status:before {
    background-color: #222;
    border: none;
    transition: all 200ms ease-in;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  section {
    padding: 5rem 0rem;
  }

  .footer_logo {
    width: 35%;
  }

  .banner {
    padding: 4% 3%;
  }

  .nav_items {
    position: fixed;
    top: 5%;
  }

  .left_logo {
    width: auto;
    height: 34px;
  }

  .right_logo {
    width: auto;
    height: 22px;
  }

  .nav_link {
    padding: 0.5rem 1rem !important;
    margin-bottom: 2rem;
  }

  .form_content {
    /* height: 300px; */
  }

  .high_img {
    object-fit: cover;
    height: auto !important;
  }

  .btn_brochure {
    right: -8.5rem;
    bottom: 25rem;
    transform: rotate(270deg);
  }

  .btn_interest {
    display: none;
  }

  .for_mobile_device {
    display: block;
    background-color: var(--primary-color);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
  }

  .for_mobile_device a {
    color: #fff;
    font-size: 1.8rem;
  }

  .for_mobile_device .line {
    color: #fff;
    font-size: 3rem;
  }

  .icon {
    color: var(--white);
    font-size: 1.9rem;
  }

  .high_right {
    position: absolute;
    top: 31%;
    right: 0;
  }

  .high_left {
    position: absolute;
    top: 31%;
    left: 0;
  }

  .contact-back {
    padding: 40px 20px;
  }

  .about .about_box {
    border: unset;
  }
}

@media screen and (max-width: 500px) {
  html {
    font-size: 50%;
  }

  .para_list {
    font-size: 1.5rem;
  }


}


li.nav-item{
  margin: 7px 0 !important;
}

.GreyBtn {
  background-color: var(--brand-green) ;
  color: #fff;
  background: -moz-linear-gradient(left, var(--brand-green) 0%, var(--brand-green) 46%, #ffffff 51%, var(--brand-green) 56%, var(--brand-green) 100%);
  background: -webkit-linear-gradient(left, var(--brand-green) 0%, var(--brand-green) 46%, #ffffff 51%, var(--brand-green) 56%, var(--brand-green) 100%);
  background: linear-gradient(to right, var(--brand-green) 0%, var(--brand-green) 46%, #ffffff 51%, var(--brand-green) 56%, var(--brand-green) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#206B51', endColorstr='#206B51', GradientType=1);
  background-size: 600% 600%;
  -webkit-animation: AnimationNameGrey 3s ease infinite;
  animation: AnimationNameGrey 3s ease infinite;
}

@-webkit-keyframes AnimationNameGrey {
  0% {
    background-position: 100%
  }

  100% {
    background-position: 0%
  }
}

@keyframes AnimationNameGrey {
  0% {
    background-position: 100%
  }

  100% {
    background-position: 0%
  }
}


.inter_impr {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: .5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.inter_desc {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rera_img {
  width: 83px;
  height: auto;
}

.banner-title-container {
  text-align: center;
  background: #ececec;
  padding: 5px;
  margin-top: 0px;
}

.ban-title {
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 12px;
}

.img_box {
  overflow: hidden;
  transition: all 0.5s;
  position: relative;
}

.img_box img {
  transition: all 0.5s;
  position: relative;
}


.img_box:hover img {
  transform: scale(1.19);
}

.ami-overlay {
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.7);
  position: absolute;
  top: 0;
  transform: translate(-101%, 0);
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img_box:hover .ami-overlay {
  transform: translate(0%, 0);
  transition: all 0.5s;
  cursor: pointer;
}

#location {
  background: url(../images/lorven/exterior/7.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: unset;
  background-attachment: fixed;

}

#location .overlay-location {
  background-color: #00000069;
  padding: 4rem 0rem;
}

#location .phone-location {
  text-align: center;
  font-size: 20px;
  color: #fff !important;
}

#location .phone-location a {
  color: #fff;
}

#location .phone-location i {
  color: #fff;
  font-size: 20px;
  transform: rotate(90deg);
}

#location .sec_heading:after {
  background-color: var(--white);
}

.video-container {
  position: relative;
}

.video-container .video-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  cursor: pointer;
}

/* the banner sits directly under the sticky header - no negative pull, or the
   top of the slide is hidden behind the nav bar */
.carousel-inner{
  margin-top: 0 !important;
}

.price-btn {
  /* padding: 10px 20px; */
  background-color: var(--brand-green);
  color: #fff;
}

.price-btn:hover {
  color: #fff;
}

.title-wrapper .title {
  text-align: center;
  color: var(--brand-green);
}

#why-purva .icons img {
  width: 100px;
}

#why-purva .icon-info {
  font-size: 16px;
  padding: 20px 30px;
  background-color: var(--brand-green-dark);
  color: #fff;
}

/* shake button */



.shake-button {
  animation: horizontal-shaking 0.5s ease-in-out infinite;
}

@keyframes horizontal-shaking {
  0% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(5px)
  }

  50% {
    transform: translateX(-5px)
  }

  75% {
    transform: translateX(5px)
  }

  100% {
    transform: translateX(0)
  }
}



/* media query for button configuration */


.price-btn {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  /* margin: 10px 0;  */
  border-radius: 5px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  */

  color: white;
  /* border: none;  */
  /* text-decoration: none;  */
}

.price-btn:hover {
  text-decoration: none;

}

/* For smaller screens */
@media (max-width: 768px) {
  .price-btn {
    display: block;
    width: 100%;
    font-size: 11px;
  }
.carousel-inner{
  margin-top: 0px !important;
}

.carousel-item{
  margin-top: 0 !important;
}

.video-container{
  margin-bottom: 30px;
}

.configContentBox h4 {
  font-size: 27px !important;
  text-align: center !important;
}

.configContentBox p{
  font-size: 19px !important;
  text-align: center !important;
}

.configContentBox .price-btn {
  font-size: 15px;
  padding: 13px 18px;
}

  .mob-btn {
    background: var(--brand-green-dark);
    position: fixed;
    bottom: 0px;
    display: flex;
    width: 100%;
    padding: 4px 0;
    justify-content: space-around;
    z-index: 111;
    align-items: center;
  }

  .btn-brochure,
  .btn-enquire {
    font-size: 1.7rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .btn-brochure i,
  .btn-enquire i {
    font-size: 1.6rem;
  }

  .mob-cta {
    display: block !important;
  }

  .para_list {
    font-size: 1.5rem;
  }

  .divider-line {
    height: 31px;
    background-color: #fff;
    width: 2px;
    margin-left: -35px;
  }

}

.mob-cta{
  display: none;
}

/* mobile nav bottom veritcal changes*/


.table_cust tbody td {

  vertical-align: middle;
  /* Center-align text vertically */
}


/* ***************Banner Form css starts********** */
input.form-control, select.form-control {
  font-size: 1.5rem;
  font-weight: 600;
  border: 1px solid var(--grey) !important;
  margin: unset !important;
}

input.form-control::placeholder {
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.num-text {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.form-padd {
  padding: 3rem 0rem;
}

.form_header {
  color: var(--grey);
  /* background-color: var(--primary-color); */
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2rem;
}

.form_content {
  padding: 20px;
  /* height: 347px; */
  box-shadow: rgb(17 17 26 / 0%) 0px 1px 0px, rgb(17 17 26 / 44%) 0px 8px 24px, rgb(17 17 26 / 38%) 0px 16px 48px;
  background: #fff;
  border-radius: 16px;
}

.thank_wrap {
  background-color: #3e3e3e17;
  backdrop-filter: blur(10px);
  padding: 20px;
  margin: 10% 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border: 1px solid #dadada;
}

.check_sign {
  background: #fff;
  padding: 20px;
  height: 100px;
  width: 100px;
  border: 3px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
}

.check_sign i {
  font-size: 55px;
  color: var(--brand-green);
}

.section-title h2 {
  font-family: "NeutraText-Book";
  font-weight: 500;
  font-size: 25px;
  color: var(--brand-green);
}

.section-title h2 span {
  font-family: "NeutraText-Book";
  color: var(--brand-green);
}

.oops-greet,
.oops-subtitle {
  font-family: "NeutraText-Book";
  font-size: 22px;
  color: var(--brand-green);
}

.go_txt {
  font-family: "NeutraText-Book";
  font-size: 15px;
  color: var(--brand-green);
  background-color: transparent !important;
  border-radius: 15px;
  border: 1px solid var(--brand-green);
  width: fit-content;
  padding: 10px 20px;
  margin: 15px auto 0;
}

.go_txt i {
  font-size: 18px;
}


@media screen and (max-width: 767px) {
  .form_content {
    width: 95%;
    margin: auto;
  }
}

/* ***************Banner Form css ends********** */

.selectfields{
  display: none;
}




.configurationTabWrap {
  padding: 10px;
  background-color: #f5f5f5;
  width: 70%;
  margin: 0 auto;
  border-radius: 5px;
}

.configBtn.active {
  background: #484a4c !important;
  color: #fff !important;
}

.configBtn {
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 8px 15px !important;
  color: #484a4c !important;
  border-radius: 5px;
  margin: 0 10px;
}

.configContentBox {
  padding: 32px 28px;
  border: 1px solid rgba(32, 107, 81, 0.35);
  border-radius: 14px;
  margin: 15px auto;
  width: 100%;
  max-width: 330px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 10px 26px -16px rgba(23, 81, 61, 0.4);
}

.configContentBox h4 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-green-dark);
  margin: 0;
}

.configImgWrap {
  padding: 25px;
}

.configImgWrap img {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 10px 0px rgb(0 0 0 / 72%);
  filter: blur(3px);
}

.configContentBox p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--grey);
  margin: 0;
  padding: 12px 0 20px 0 !important;
  border-bottom: 2px solid rgba(32, 107, 81, 0.25);
}

.configContentBox .price-btn {
  display: block;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .form_content {
    width: 95%;
    margin: auto;
  }

  .configurationTabWrap {
    width: 90%;
  }
}

/* keep the config box roomy where the columns sit side by side but space is tight */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .configurationTabWrap {
    width: 90%;
  }
}
/* --- Brand hover states (palette from lorvencascadegarden.com) --- */
.form_btn:hover,
.price-btn:hover {
  background-color: var(--brand-green-dark);
  color: var(--white);
}

.btn_interest:hover {
  background-color: var(--primary-deep) !important;
  color: var(--white);
}

.acc_btn:hover,
.table_cust thead tr a:hover {
  background-color: var(--primary-dark) !important;
  color: var(--white) !important;
}

/* ***************Form submit page loader********** */

#pageloader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(244, 248, 246, 0.93);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

#pageloader .pl_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 330px;
  text-align: center;
}

#pageloader .pl_logo {
  display: block;
  width: 155px;
  max-width: 62%;
  height: auto;
  margin: 0 auto 30px;
}

#pageloader .pl_ring {
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 3px solid rgba(32, 107, 81, 0.14);
  border-top-color: var(--brand-green);
  border-right-color: var(--primary-color);
  animation: pl_spin 0.9s cubic-bezier(0.6, 0.2, 0.4, 0.8) infinite;
}

#pageloader .pl_title {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--brand-green-dark);
  margin: 0 0 6px;
}

#pageloader .pl_title i {
  font-style: normal;
  animation: pl_dots 1.4s steps(4, end) infinite;
  display: inline-block;
  width: 14px;
  text-align: left;
  overflow: hidden;
  vertical-align: bottom;
}

#pageloader .pl_sub {
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #7b8c86;
  margin: 0 0 22px;
}

#pageloader .pl_bar {
  position: relative;
  width: 160px;
  height: 3px;
  margin: 0 auto;
  border-radius: 3px;
  background: rgba(32, 107, 81, 0.12);
  overflow: hidden;
}

#pageloader .pl_bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--primary-color));
  animation: pl_slide 1.3s ease-in-out infinite;
}

@keyframes pl_spin {
  to { transform: rotate(360deg); }
}

@keyframes pl_slide {
  0%   { left: -40%; }
  100% { left: 100%; }
}

@keyframes pl_dots {
  0%   { width: 0; }
  100% { width: 14px; }
}

@media screen and (max-width: 575px) {
  #pageloader .pl_logo { margin-bottom: 24px; }
  #pageloader .pl_ring { width: 54px; height: 54px; }
  #pageloader .pl_title { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  #pageloader .pl_ring { animation-duration: 2s; }
  #pageloader .pl_bar::after,
  #pageloader .pl_title i { animation: none; }
  #pageloader .pl_bar::after { left: 0; width: 100%; }
  #pageloader .pl_title i { width: 14px; }
}

/* --- CTA pair: Enquire Now & Download Brochure (both gold) --- */
.btn_interest.GreyBtn,
.btn_brochure.GreyBtn {
  background-color: var(--primary-color) !important;
  background: -moz-linear-gradient(left, var(--primary-color) 0%, var(--primary-color) 46%, #ffffff 51%, var(--primary-color) 56%, var(--primary-color) 100%);
  background: -webkit-linear-gradient(left, var(--primary-color) 0%, var(--primary-color) 46%, #ffffff 51%, var(--primary-color) 56%, var(--primary-color) 100%);
  background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 46%, #ffffff 51%, var(--primary-color) 56%, var(--primary-color) 100%);
  background-size: 600% 600%;
  color: var(--white);
}

.btn_brochure:hover {
  background-color: var(--primary-deep) !important;
  color: var(--white);
}

@media (max-width: 768px) {
  .mob-btn {
    padding: 0;
    justify-content: stretch;
    background: var(--primary-color);
  }

  .mob-btn .col-md-6 {
    flex: 1 1 0;
    padding: 0;
  }

  .mob-btn .divider-line {
    display: block;
    flex: 0 0 1px;
    width: 1px;
    height: auto;
    margin: 9px 0;
    background-color: rgba(255, 255, 255, 0.55);
    align-self: stretch;
  }

  .btn-brochure,
  .btn-enquire {
    width: 100%;
    padding: 12px 6px;
  }

  .btn-brochure {
    background-color: var(--primary-color);
    color: var(--white);
  }

  .btn-enquire {
    background-color: var(--primary-color);
    color: var(--white);
  }

  .btn-brochure i,
  .btn-enquire i {
    color: var(--white);
  }
}
