
@font-face {
    font-family: 'HelveticaNeueW01-87HvCnObl';
    src: url('../fonts/HelveticaNeueW01-87HvCnObl.eot');
    src: url('../fonts/HelveticaNeueW01-87HvCnObl.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeueW01-87HvCnObl.woff2') format('woff2'),
        url('../fonts/HelveticaNeueW01-87HvCnObl.woff') format('woff'),
        url('../fonts/HelveticaNeueW01-87HvCnObl.ttf') format('truetype'),
        url('../fonts/HelveticaNeueW01-87HvCnObl.svg#HelveticaNeueW01-87HvCnObl') format('svg');
    font-weight: normal;
    font-style: normal;
}



@font-face {
  font-family: 'Indian Rupee';
  src: url('../fonts/IndianRupee-Regular.woff2') format('woff2'),
    url('../fonts/IndianRupee-Regular.woff') format('woff'),
    url('../fonts/IndianRupee-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


:root {
  --black: #000000;
  --white: #ffffff;
  --blue: rgba(18, 27, 64, 1);
  --green: #04B983;
  --gold: #B37F2B; 
  --copy-color: #071E31;
  --Helvetica-font: 'Helvetica Neue', sans-serif;;
  --indian-rupee: 'Indian Rupee';
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--Helvetica-font);                                                
  font-size: 15px;
  line-height: 24px;
  color: var(--copy-color);

}
a {
  text-decoration: none;
  color: var(--blue);
}
/*a:hover {
  text-decoration: underline;
  color: var(--copy-color);
}*/
h1 {
  font-family: var(--Helvetica-font);
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  padding-bottom: 20px;
}
h2 {
  font-family: var(--Helvetica-font);
  font-size: 28px;
  line-height: 36px;
  text-transform: uppercase;
  padding-bottom: 10px;
  color: var(--gold);
}
h2 span {
  display: block;
  font-family: var(--Helvetica-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: none;
  padding-bottom: 10px;
  color: var(--gold);
}
h3 {
  font-family: var(--Helvetica-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  padding-bottom: 10px;
}
img {
  max-width: 100%;
  width: 100%;
}
.txt_center {
  text-align: center;
}
.cta_btn {
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
    outline: none;
    background-color: var(--gold);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cta_btn:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--blue);
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
}
.projectlist_content .cta_btn:after {
  background-color: var(--blue);  
}
.cta_btn:hover {
  color: #fff;
}
.cta_btn:hover:after {
  left: 0;
  width: 100%;
}
.cta_btn:active {
  top: 2px;
}
.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}
.overwrite-button.swiper-button-prev {
  background-image: url(../images/left_arrow.png);
  background-position: left center;
  background-repeat: no-repeat ;
  background-size: cover;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
}
.overwrite-button.swiper-button-next {
  background-image: url(../images/right_arrow.png);
  background-position: left center;
  background-repeat: no-repeat ;
  background-size: cover;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
}


/*Header style start*/
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: rgba(18, 27, 64, 0.8);
  padding: 5px 0 0 0;
}
.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    width: 100%;
}
.project_logo {
  margin: 10px 0;
  max-width: 80px;
}
.navbar {
  margin-left: auto;
  padding: 0;
}
.navbar .nav-item {
  padding: 0 20px;
}
.navbar-nav .nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding: 16px 0px;
  position: relative;
  color: var(--white);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active_link {
  color: var(--gold);
  text-decoration: none;
}

.navbar-nav .nav-link:after{
  content: '';
  position: absolute;
  width: 0px;
  height: 4px;
  left: 50%;
  bottom:0;
  background-color: var(--gold);
  transition: all ease-in-out .2s;
}
.navbar-nav .nav-link:hover:after, .navbar-nav .nav-link.active_link:after{
  width: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 5px;
}

.explorenow_btn .cta_btn {
  font-size: 16px;
  line-height: 19px;
}

/*introduction section style start*/
.intro_wrap {
  position: relative;
  padding: 0;
}
.intro_content_wrap {
  position: absolute;
  top: 44%;
  /* transform: translateY(-50%); */
  right: 0;
  z-index: 1;
  left: 0;
  margin: 0 auto;
  width: 80%;
}
.intro_content_wrap h1 {
  color: var(--white);
  font-size: 38px;
  line-height: 48px;
  letter-spacing: -1px;
}
.intro_content_wrap p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}
.intro_content_wrap .cta_btn {
  margin-top: 20%;
  padding: 15px 30px;
}

.banner_amt_wrap {
  width: 55%;
  margin: 0 auto;
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  z-index: 1;
  
}
.banner_amt_wrap img {
  border-radius: 15px;
}
.desk_img {
  display: block;
}
.mobi_img {
  display: none;
}
.intro_slider .swiper-pagination-bullet {
  background-color: #D9D9D9;
  opacity: 1;
  width: 40px;
  height: 7px;
  border-radius: 20px;  
}
.intro_slider .swiper-pagination-bullet:hover,
.intro_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--gold);
}


/*Overview Section style start*/
#about_wrap {
  padding: 50px 0 10px;
}
.overview_content {
  text-align: center;
}
.overview_content h3 {
  color: var(--blue);
}
.sec_end_line {
  background: linear-gradient(180deg, #FDCB17 14.1%, rgba(102, 83, 14, 0.45) 79.49%);
  display: inline-block;
  padding: 3px 60px;
  border-radius: 20px;  
}
#read-more {
  display: none;
}

/*project Amenities section style start*/
#amenities_wrap {
    padding: 20px 20px;
}
#amenities_wrap .container-fluid {
  background-color: #e7f0ff;
  border-radius: 20px;
  padding: 30px;
}
.amenities_copy_slide .swiper-pagination {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #C8D9F2;
  border-radius: 15px;
  margin-bottom: 10px;
}
.amenities_copy_slide .swiper-pagination-bullet {
  position: static;
  display: block;
  background: none;
  width: 100%;
  padding: 10px 0 30px 0;
  margin: 0 !important;
  opacity: 1;
  color: var(--black);
  font-weight: bold;
}
.amenities_copy_slide .swiper-pagination-bullet-active {
  box-shadow: 2px 2px 4px 0px #0000001A;
  background: #B47F2B;
  border: 1px solid #FFFFFF;
  color: #fff;
  border-radius: 15px;
}
.amenities_copy_slide .swiper-slide {
  background-color: #C8D9F2;
  border-radius: 15px;
  padding: 30px;
  max-height: 520px;
  overflow-y: auto;
}
.amenities_copy_slide .swiper-slide::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.amenities_copy_slide .swiper-slide::-webkit-scrollbar
{
  width: 10px;
  background-color: #F5F5F5;
}

.amenities_copy_slide .swiper-slide::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
/*  background-color: #D62929;*/
  background: #A4B4C9;

}

.amenities_copy_slide .swiper-slide h3 {
  background: url(../images/arrow_back.png) no-repeat left center;
  padding: 5px 5px 5px 30px;
  font-size: 16px;
}
.amenities_copy_slide .swiper-slide ul {
  padding-left: 50px;
}
.amenities_copy_slide .swiper-slide li {
  font-size: 14px;
}


.img-grid-wrap {
  display: grid;
  grid-gap: 0.13rem; 
}
.img-grid-wrap img {
  border-radius: 20px;
}
.img-grid1 {
grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
}
.img-grid2 {
  grid-column-start: 6;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
}
.img-grid3 {
  grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 9;
}
.img-grid4 {
  grid-column-start: 6;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 9;
}

/*Location Section style stat*/
#location_wrap {
  padding: 50px 0;
  position: relative;
}
.map_img_wrap {

}
.map_img_wrap img {
  border-radius: 15px;
}
.leaf_wrap {
  position: absolute;
  right: 1%;
  top: -40%;
  z-index: 1;
  width: 60%;
}
.location_copy {}
.location_copy p {
  margin-bottom: 0;
}
.nearby_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.nearby_wrap div {
}
.nearby_wrap img {
  max-width: 60px;
  display: block;
  margin: 5px auto;
}
.nearby_wrap span {
  color: #514836;
  display: block;
  font-size: 14px;
  line-height: 16.7px;
  text-align: center;
  padding: 10px 5px;
}

/*configuration section style start*/
#configuration_wrap {
  padding: 0px 20px 50px;
}
#configuration_wrap .container-fluid {
  background: rgba(81, 72, 54, 0.2);
  border-radius: 15px;
  padding: 30px 0;
}
#configuration_wrap h2 {
/*  color: #514836;*/
  text-align: center;
}
.plans-slider a {
  display: block;
  text-decoration: none;
  outline: none;
}
.plans-slider img {
  border-radius: 15px;
}
.plans-slider .swiper-slide a:after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 5%;
  background: url(../images/zoom-icon.png) no-repeat center center;
  width: 10%;
  height: 15%;
  background-size: 100%;
}
#configuration_wrap .cta_btn_wrap {
  margin: 20px 0 0;
}

/*Gallery section style start*/
#gallery_wrap {
  padding: 0 0 50px 0;
  text-align: center;
}
.gallery_slider .swiper-slide {

}
.gallery_slider a {
  display: block;
  text-decoration: none;
  outline: none;
  position: relative;
}
.gallery_slider img {
  border-radius: 15px;
}
.gallery_slider .swiper-slide a:after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 5%;
  background: url(../images/zoom-icon.png) no-repeat center center;
  width: 10%;
  height: 15%;
  background-size: 100%;
}


/*Footer style start*/
.site_footer {
  background: linear-gradient(180deg, rgba(20, 33, 86, 0.8) 0%, rgba(24, 71, 141, 0.8) 100%);
  padding: 50px 0 0;
  border-radius: 30px 30px 0 0;
}

.footer_content {
  padding: 0 100px;
}

.footer_content h3 {
  font-size: 26px;
  line-height: 34px;
  color: var(--white);
  text-transform: none;
}
.footer_content p {
  font-size: 14px;
  line-height: 17px;
  color: var(--white);
}
.footer_content a {
  color: var(--white);
}
.office_map_wrap {
  margin: 20px 0;
}
.office_map_wrap img {
  border-radius: 15px;
}
.contact_info {
  padding: 20px 0 0 20px;
}
.contact_info li, .contact_info li a{
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
}
.social_links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.social_links a {
  display: inline-block;
  margin-right: 15px;
}
.social_links img {
  max-width: 24px;
}

.footer_form {
  padding: 0 50px;
}

.footer_form h2 {
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
}
.footer_form h3 {
  font-size: 15px;
  line-height: 20px;
  color: var(--white);
}
.footer_form_wrap {

}
.fieldwrapper {
margin: 10px 0;
}
.fieldwrapper label {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;  
  color: var(--white);
}
.fieldwrapper input, .fieldwrapper select {
  font-family: var(--Helvetica-font);
  width: 100%;
  border: 1px solid #D9D9D9;
  background-color: #fff;
  border-radius: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  padding: 6px 5px 6px 15px;
  outline: 0;  
  margin-top: 5px;
}
.fieldwrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/arrow-down.png) 96% center no-repeat #fff;
  outline: 0;
  padding-right: 40px;
}

.from_submit {
  border: 0;
  margin: 10px 0;
  padding: 10px 30px;
}

.fieldwrapper > input[type=number]::-webkit-inner-spin-button, 
.fieldwrapper > input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
::-webkit-input-placeholder { /* Chrome */
  color: #000;
  opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000;
  opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #000;
  opacity: 1;
}

.copyrights_text {
  text-align: center;
  padding: 20px 0 0;
  font-size: 12px;
  color: var(--white);
}
.popup_form_wrap, .thankyou_msg_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  transform: translate3d(100%, 100%, 50px);
  transition: all 0.8s ease-in-out;
}
.popup_form_wrap.active, .thankyou_msg_wrap.active {
  transform: translate3d(0, 0, 0);
}

.form_container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: var(--white);
  max-width: 400px;
  width: 90%;
  padding: 30px 30px;
  border-radius: 20px;
}
.close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: var(--black);
  cursor: pointer;
}
.form_container h2 {
  text-align: center;
  font-size: 22px;
  line-height: 26px;
  margin: 20px 0 0 0;
}
.form_container p {
  text-align: center;
  margin-bottom: 0;
}
.form_container .fieldwrapper {
    margin: 10px 0 0px 0;
}
.form_container .fieldwrapper label {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;  
  color: var(--black);
}
.submit_cta {
  text-align: center;
  margin-top: 20px;
}
.error_input {
  background: linear-gradient(0deg, #FFEFEF, #FFEFEF);
  border: 1px solid #DE9999;
}
.popup_form_wrap.thankyou_msg_wrap {
  text-align: center;
}
.popup_form_wrap.thankyou_msg_wrap .form_container {
  max-width: none;
}
.thankyou_img {
  width: 80px;
  height: 80px;
  margin: 10px auto;
  position: relative;
  font-size: 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: zoom_img 3s linear infinite;
}
.thankyou_img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/thankyou_img.png") no-repeat center center;
  background-size: 100%;
  z-index: -1;
  animation: rotate_img 3s linear infinite;
}  

@keyframes rotate_img {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.3);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes zoom_img {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}


.thankyou_msg_wrap .form_container p {
  margin-bottom: 20px;
  font-size: 13px;
}




@media (max-width:1023px) {


body {
  font-size: 14px;
  line-height: 19px;
}

h1 {
  font-size: 34px;
  line-height: 40px;
  padding-bottom: 20px;
}
h2 {
  font-size: 24px;
  line-height: 28px;
}
h2 span {
  font-size: 16px;
  line-height: 20px;
}
h3 {
  font-size: 16px;
  line-height: 20px;
}
.cta_btn {
  font-size: 12px;
  line-height: 18px;
  padding: 8px 14px;
}



/*Header style start*/
.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
}
.project_logo {
  order: 2;
  width: 20%;
}
.navbar {
  margin-left: auto;
  padding: 0;
  margin: 0;
}
.navbar .nav-item {
  padding: 0 10px;
}
/*.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--blue);
  border-bottom: 4px solid var(--blue);
  text-decoration: none;
}*/
.navbar-collapse {
  position: fixed;
  top: 65px;
  background-color: #ffffff;
  width: 94vw;
  left: 0px;
}
.navbar-nav .nav-link {
  position: relative;
  color: var(--gold);
}
.navbar-nav .nav-link:after{
  content: '';
  position: absolute;
  width: 0px;
  height: 5px;
  left: 50%;
  bottom:0;
  background-color: var(--blue);
  transition: all ease-in-out .2s;
}
.navbar-nav .nav-link:hover:after, .navbar-nav .nav-link.active_link:after{
  width: 100%;
  left: 0;
}
.navbar .container-fluid {
  padding: 0;
}
.navbar-toggler {
  border: none;
  background: none;
  padding: 0;
}
.navbar-toggler-icon {
  width: 30px;
  height: 30px;
  filter: invert(1);
}



.explorenow_btn {
  order: 3;
}
.explorenow_btn .cta_btn {
  font-size: 14px;
  line-height: 19px;
}


/*introduction section style start*/
.intro_wrap {
  position: relative;
  padding: 85px 0 0;
}
.intro_content_wrap {
  position: absolute;
  top: 44%;
  /* transform: translateY(-50%); */
  right: 0;
  z-index: 1;
  left: 0;
  margin: 0 auto;
  width: 80%;
}
.intro_content_wrap h1 {
  color: var(--white);
  font-size: 38px;
  line-height: 48px;
  letter-spacing: -1px;
}
.intro_content_wrap p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}
.intro_content_wrap .cta_btn {
  margin-top: 20%;
  padding: 15px 30px;
}

.banner_amt_wrap {
  width: 55%;
  margin: 0 auto;
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  z-index: 1;
  
}
.banner_amt_wrap img {
  border-radius: 15px;
}
.desk_img {
  display: none;
}
.mobi_img {
  display: block;
}
.intro_slider .swiper-pagination-bullet {
  background-color: #D9D9D9;
  opacity: 1;
  width: 40px;
  height: 7px;
  border-radius: 20px;  
}
.intro_slider .swiper-pagination-bullet:hover,
.intro_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--gold);
}


/*Overview Section style start*/
#about_wrap {
  padding: 50px 0 10px;
}
.overview_content {
  text-align: center;
}
.overview_content h3 {
  color: var(--blue);
}
.sec_end_line {
  background: linear-gradient(180deg, #FDCB17 14.1%, rgba(102, 83, 14, 0.45) 79.49%);
  display: inline-block;
  padding: 3px 60px;
  border-radius: 20px;  
}
#read-more {
  display: inline-block;
}
#content {
  overflow: hidden;
  transition: height 0.3s ease;
}

.additional-content {
display: inline-block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.content-expanded .additional-content {
  max-height: 500px; /* Adjust to the maximum height of your content */
}

/*project Amenities section style start*/
#amenities_wrap {
    padding: 20px 10px;
}
#amenities_wrap .container-fluid {
  background-color: #e7f0ff;
  border-radius: 20px;
  padding: 20px;
}
.amenities_copy_slide .swiper-pagination {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #C8D9F2;
  border-radius: 15px;
  margin-bottom: 10px;
  font-size: 11px;
}
.amenities_copy_slide .swiper-pagination-bullet {
  position: static;
  display: block;
  background: none;
  width: 100%;
  padding: 10px 0 30px 0;
  margin: 0 !important;
  opacity: 1;
  color: var(--black);
  font-weight: bold;
}
.amenities_copy_slide .swiper-pagination-bullet-active {
  box-shadow: 2px 2px 4px 0px #0000001A;
  background: #B47F2B;
  border: 1px solid #FFFFFF;
  color: #fff;
  border-radius: 15px;
}
.amenities_copy_slide .swiper-slide {
  background-color: #C8D9F2;
  border-radius: 15px;
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
}
.amenities_copy_slide .swiper-slide::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.amenities_copy_slide .swiper-slide::-webkit-scrollbar
{
  width: 10px;
  background-color: #F5F5F5;
}

.amenities_copy_slide .swiper-slide::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
/*  background-color: #D62929;*/
  background: #A4B4C9;

}

.amenities_copy_slide .swiper-slide h3 {
  background: url(../images/arrow_back.png) no-repeat left center;
  padding: 5px 5px 5px 30px;
  font-size: 16px;
}
.amenities_copy_slide .swiper-slide ul {
  padding-left: 50px;
}
.amenities_copy_slide .swiper-slide li {
  font-size: 14px;
}
.right_wrap {
  margin-top: 10px;
}

.img-grid-wrap {
  display: grid;
  grid-gap: 0.13rem; 
}
.img-grid-wrap img {
  border-radius: 20px;
}
.img-grid1 {
grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
}
.img-grid2 {
  grid-column-start: 6;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
}
.img-grid3 {
  grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 9;
}
.img-grid4 {
  grid-column-start: 6;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 9;
}

/*Location Section style stat*/
#location_wrap {
  padding: 30px 0;
  position: relative;
}
.map_img_wrap {
  width: 90%;
  margin: 0 auto 20px;
}
.map_img_wrap img {
  border-radius: 15px;
}
.leaf_wrap {
  display: none;
  position: absolute;
  right: 1%;
  top: -40%;
  z-index: 1;
  width: 60%;
}
.location_copy {}
.location_copy p {
  margin-bottom: 0;
}
.nearby_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.nearby_wrap div {
}
.nearby_wrap img {
  max-width: 50px;
  display: block;
  margin: 5px auto;
}
.nearby_wrap span {
  color: #514836;
  display: block;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  padding: 10px 5px;
}

/*configuration section style start*/
#configuration_wrap {
  padding: 0px 20px 50px;
}
#configuration_wrap .container-fluid {
  background: rgba(81, 72, 54, 0.2);
  border-radius: 15px;
  padding: 30px 0;
}
#configuration_wrap h2 {
/*  color: #514836;*/
  text-align: center;
}
.plans-slider a {
  display: block;
  text-decoration: none;
  outline: none;
}
.plans-slider img {
  border-radius: 15px;
}
.plans-slider .swiper-slide a:after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 5%;
  background: url(../images/zoom-icon.png) no-repeat center center;
  width: 10%;
  height: 15%;
  background-size: 100%;
}
#configuration_wrap .cta_btn_wrap {
  margin: 20px 0 0;
}

/*Gallery section style start*/
#gallery_wrap {
  padding: 0 0 50px 0;
  text-align: center;
}
.gallery_slider .swiper-slide {

}
.gallery_slider a {
  display: block;
  text-decoration: none;
  outline: none;
  position: relative;
}
.gallery_slider img {
  border-radius: 15px;
}
.gallery_slider .swiper-slide a:after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 5%;
  background: url(../images/zoom-icon.png) no-repeat center center;
  width: 10%;
  height: 15%;
  background-size: 100%;
}






/*Footer style start*/
.site_footer {
  background: linear-gradient(180deg, #103469 0%, #494229 100%);
  padding: 30px 30px 0;
  border-radius: 30px 30px 0 0;
}

.footer_content {
  padding: 0;
  order: 2;
  text-align: center;
}

.footer_content h2 {
  font-size: 26px;
  line-height: 34px;
  color: var(--white);
  text-transform: none;
}
.footer_content p {
  font-size: 14px;
  line-height: 17px;
  color: var(--white);
}

.contact_info {
  padding: 20px 0 0 20px;
}
.contact_info li, .contact_info li a{
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
}
.social_links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social_links a {
  display: inline-block;
  margin-right: 15px;
}
.social_links img {
  max-width: 24px;
}

.footer_form {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #fff;
}

.footer_form h2 {
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
}
.footer_form h3 {
  font-size: 15px;
  line-height: 20px;
  color: var(--white);
}
.footer_form_wrap {

}
.fieldwrapper {
margin: 10px 0;
}
.fieldwrapper label {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;  
  color: var(--white);
}
.fieldwrapper input, .fieldwrapper select {
  font-family: var(--Helvetica-font);
  width: 100%;
  border: 1px solid #D9D9D9;
  background-color: #fff;
  border-radius: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  padding: 6px 5px 6px 15px;
  outline: 0;  
  margin-top: 5px;
}

.fieldwrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/arrow-down.png) 96% center no-repeat #fff;
  outline: 0;
  padding-right: 40px;
}

.from_submit {
  border: 0;
  margin: 10px 0;
  padding: 10px 30px;
}

.fieldwrapper > input[type=number]::-webkit-inner-spin-button, 
.fieldwrapper > input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
::-webkit-input-placeholder { /* Chrome */
  color: #000;
  opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000;
  opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #000;
  opacity: 1;
}

.copyrights_text {
  text-align: center;
  padding: 20px 0 0;
  font-size: 12px;
  color: var(--white);
}
.popup_form_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  transform: translate3d(100%, 100%, 50px);
  transition: all 0.8s ease-in-out;
}
.popup_form_wrap.active {
  transform: translate3d(0, 0, 0);
}

.form_container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: var(--white);
  max-width: 400px;
  width: 90%;
  padding: 30px 30px;
  border-radius: 20px;
}
.close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: var(--black);
  cursor: pointer;
}
.form_container h2 {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  margin: 20px 0 0 0;
}
.form_container p {
  text-align: center;
  margin-bottom: 0;
}
.form_container .fieldwrapper {
    margin: 10px 0 0px 0;
}
.form_container .fieldwrapper label {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;  
  color: var(--black);
}
.submit_cta {
  text-align: center;
  margin-top: 20px;
}
.error_input {
  background: linear-gradient(0deg, #FFEFEF, #FFEFEF);
  border: 1px solid #DE9999;
}
.thankyou_msg_wrap {
  text-align: center;
}
.thankyou_img {
  width: 80px;
  height: 80px;
  margin: 10px auto;
  position: relative;
  font-size: 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: zoom_img 3s linear infinite;
}
.thankyou_img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/thankyou_img.png") no-repeat center center;
  background-size: 100%;
  z-index: -1;
  animation: rotate_img 3s linear infinite;
}  

@keyframes rotate_img {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.3);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes zoom_img {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}


.thankyou_msg_wrap .form_container p {
  margin-bottom: 20px;
  font-size: 13px;
}

}