@font-face {
  font-family: 'FuturaLTPro-Bold';
  src: url('../fonts/FuturaLTPro-Bold.eot') format('eot'),
       url('../fonts/FuturaLTPro-Bold.otf') format('otf'),
       url('../fonts/FuturaLTPro-Bold.svg') format('svg'),
       url('../fonts/FuturaLTPro-Bold.ttf') format('ttf'),
       url('../fonts/FuturaLTPro-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'FuturaLTPro-Book';
  src: url('../fonts/FuturaLTPro-Book.eot') format('eot'),
       url('../fonts/FuturaLTPro-Book.otf') format('otf'),
       url('../fonts/FuturaLTPro-Book.svg') format('svg'),
       url('../fonts/FuturaLTPro-Book.ttf') format('ttf'),
       url('../fonts/FuturaLTPro-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'FuturaLTPro-Light';
  src: url('../fonts/FuturaLTPro-Light.eot') format('eot'),
       url('../fonts/FuturaLTPro-Light.otf') format('otf'),
       url('../fonts/FuturaLTPro-Light.svg') format('svg'),
       url('../fonts/FuturaLTPro-Light.ttf') format('ttf'),
       url('../fonts/FuturaLTPro-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'FuturaLTPro-MediumCond';
  src: url('../fonts/FuturaLTPro-MediumCond.eot') format('eot'),
       url('../fonts/FuturaLTPro-MediumCond.otf') format('otf'),
       url('../fonts/FuturaLTPro-MediumCond.svg') format('svg'),
       url('../fonts/FuturaLTPro-MediumCond.ttf') format('ttf'),
       url('../fonts/FuturaLTPro-MediumCond.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-size: 20px;
  line-height: 26px;
  font-family: 'FuturaLTPro-Book';
  position: relative;
}

ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  width: 100%;
}
.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
h1,h2,h3,h4,h5 {
  font-family: "FuturaLTPro-Book";
}
h2 {
  color: #2a2a2a;
  font-size: 40px;
  line-height: 44px;
  padding-bottom: 30px;
}
h2 span {
  font-family: "FuturaLTPro-Book";
}
h3 {
  color: #444444;
  font-size: 26px;
  line-height: 30px;
  padding-bottom: 30px;
}
p {
  color: #444444;
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 20px;
}


/* Custom animation */
.fancybox-fx-zoom-in-out2.fancybox-slide--previous {
  transform: scale(0.7);
}

.fancybox-fx-zoom-in-out2.fancybox-slide--next {
  transform: scale(0.7);
}


.fancybox-fx-zoom-in-out2.fancybox-slide--current {
  transform: scale(1);
}

.cta_btn {
  display: inline-block;
  font-family: "FuturaLTPro-Book";
  border: none;
  background-color: #009eb5;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  padding: 6px 10px;
}


/*header style start*/
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 99;
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}
.site_header.sticky_header {
  background-color: rgba(0, 0, 0, 0.5);
}

.site_header .container {
  display: flex;
  justify-content: space-between;
  align-content: center;
  padding: 10px;
}

.project_logo {
  max-width: 438px;
  width: 20%;
  margin: 0 auto 0 20px;
}
.brand_logo {
  max-width: 229px;
  width: 12%;
  margin: 0;
}
.menu_trigger {
  text-decoration: none;
  color: #fff;
  -webkit-text-shadow: 0 0 3px #000;
  text-shadow: 0 0 3px #000;
}

.hide_header {
  transform: translateY(-100%);
}

/*Top navigation style start*/
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  max-width: 320px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 158, 181, 0.9);
  transform: translateX(-100%);  
  transition: all 0.5s ease-in-out;
}
.show_nav {
  transform: translateX(0);
}
.close_menu_trigger {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  padding: 10px 25px;
}
.topnav .project_logo {
  width: 80%;
  margin: 30px auto;
}
.menu_link_wrap {
  text-align: center;
}
.menu_link_wrap li {

}
.menu_link_wrap li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 20px;
  font-size: 18px;
  line-height: 24px; 
  position: relative; 
}

.menu_link_wrap li a:after, .menu_link_wrap li a:before {
  z-index: 1000;
  overflow: visible;
  box-sizing: content-box;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  content: ' ';
  position: absolute;
  bottom: 0;
  height: 1px;
  display: block;
  width: 50%;
  left: 50%;
  box-shadow: inset 0 0 0 0 white;
}
.menu_link_wrap li a:before {
    left: 0;
}
.menu_link_wrap li a:hover:before {
  box-shadow: inset -200px 0 0 0 white;
}
.menu_link_wrap li a:hover:after {
  box-shadow: inset 200px 0 0 0 white;
}


/*Main banner style start*/
.main_banner_sec {

}
.main_slider {
}
.main_slider .item {
  background-image: url(../images/webp/parkretreat_lp_banner.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner_txt {
  text-align: right;
  padding-right: 25%;
  padding-top: 18%;
}
.banner_txt h1 {
  max-width: 528px;
  width: 30%;
  display: block;
  margin: 20px 40px -50px auto;
  animation: zoomimg 1s linear forwards;
}
@keyframes zoomimg{
  from{transform: scale(0);}
  to{transform: scale(1);}
}

.banner_txt h1 .cls-1 {
    fill: none;
    stroke: #fff;
    stroke-dasharray: 0 4000;
    animation: svg_animate 5s linear forwards;
    fill-opacity: 0;
}


@keyframes svg_animate {
    0% {
        fill: none;
        fill-opacity: 0;
        stroke-dasharray: 0 4000;
    }
    100% {
        fill:#fff;
        fill-opacity: 1;
        stroke-dasharray: 4000 4000;
    }
}


.banner_txt h1 {
  color: #fff;
  font-size: 40px;
  line-height: 46px;
  padding-bottom: 20px;
}

.banner_txt h1 span span {
  font-family: "FuturaLTPro-Book";  
}
.banner_txt h1 > span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 30em;
  margin: 0 auto;
}
.headingline1 {
}
.headingline2.anim-typewriter {
  animation-delay: 4s;
}
.anim-typewriter {
  animation: typewriter 4s steps(44) 1s 1 normal both;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 30em;}
}




.comingsoon_txt {
  animation: slidedow 1s linear forwards;
  animation-delay: 3.2s;
  transform: translateY(-100%);
  position: relative;
  z-index: -1;
}
@keyframes slidedow {
  0% {
    transform: translateY(-100%);
    z-index: -1;
  }
  100% {
    transform: translateY(0);
    z-index: 1;
  }
}
.comingsoon_txt span {
  display: inline-block;
  background-color: rgba(0, 158, 181, 0.7);
  color: #fff;
  font-family: "FuturaLTPro-Book";  
  font-size: 17px;
  line-height: 26px;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 30px;
}

/*Overview section style start*/
.overview_sec {
  padding-top: 50px;
}
.overview_sec .container {
  text-align: center;
}

.overview_img {
  margin-top: 50px;
  position: relative;
  background-image: url(../images/webp/overview_img.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;  
  height: 100vh;
}
.overview_img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  
}
.animated {
  opacity: 0;
}
.show_content {
  opacity: 0;
  transform: translateY(210px);
  animation: show_content 1s linear forwards;
}
@keyframes show_content {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*Project Highlights section style start*/
.highlights_sec {
  padding: 50px 0;
}
.highlights_sec .container {
  text-align: center;
}
.highlights_slider.swiper{
  padding-bottom: 60px;
}
/*.highlights_content:nth-child(odd) {
  margin-top: 80px;
}*/
.highlights_content {
  text-align: left;
}
.highlights_content img {
  display: block;  
  margin: 20px auto;
}
.highlights_content h3 {
    color: #fff;
    padding-bottom: 10px;
}
.highlights_content p {
  color: #fff;
}
/*.highlights_slider .swiper-pagination-bullet {
  background: #000;
  opacity: 0.5;
}
.highlights_slider .swiper-pagination-bullet-active, .highlights_slider .swiper-pagination-bullet:hover {
  background: #000;
  opacity: 1;
}*/

.highlights_slider .swiper-button-next, .highlights_slider .swiper-button-prev {
  position: absolute;
  top: auto;
  width: 50px;
  height: 50px;
  font-size: 0;
  bottom: 0;
}
.highlights_slider .swiper-button-prev {
  background: transparent url(../images/webp/slider_left_arrow.webp) no-repeat center center;
  background-size: cover;
  left: 40%;
}
.highlights_slider .swiper-button-next:after, .highlights_slider .swiper-button-prev:after {
  display: none ;
}
.highlights_slider .swiper-button-next {
  background: transparent url(../images/webp/slider_right_arrow.webp) no-repeat center center;
  background-size: cover;
  right: 40%;
}

.snip1543 {
  background-color: #fff;
  color: #ffffff;
  margin: 10px;
  max-width: 534px;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.snip1543 *,
.snip1543 *:before,
.snip1543 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.snip1543 img {
  backface-visibility: hidden;
  max-width: 100%;
  vertical-align: top;
}

.snip1543:before,
.snip1543:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background-color: #009eb5;
  opacity: 0.5;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.snip1543:before {
  -webkit-transform: skew(30deg) translateX(-80%);
  transform: skew(30deg) translateX(-80%);
}

.snip1543:after {
  -webkit-transform: skew(-30deg) translateX(-70%);
  transform: skew(-30deg) translateX(-70%);
}

.snip1543 figcaption {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  bottom: 0;
  padding: 25px 30% 25px 20px;
}

.snip1543 figcaption:before,
.snip1543 figcaption:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #009eb5;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  content: '';
  opacity: 0.5;
  z-index: -1;
}

.snip1543 figcaption:before {
  -webkit-transform: skew(30deg) translateX(-100%);
  transform: skew(30deg) translateX(-100%);
}

.snip1543 figcaption:after {
  -webkit-transform: skew(-30deg) translateX(-90%);
  transform: skew(-30deg) translateX(-90%);
}

.snip1543 h3,
.snip1543 p {
  margin: 0;
  opacity: 0;
  letter-spacing: 1px;
}


.snip1543 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.snip1543:hover h3,
.snip1543.hover h3,
.snip1543:hover p,
.snip1543.hover p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 0.9;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.snip1543:hover:before,
.snip1543.hover:before {
  -webkit-transform: skew(30deg) translateX(-20%);
  transform: skew(30deg) translateX(-20%);
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.snip1543:hover:after,
.snip1543.hover:after {
  -webkit-transform: skew(-30deg) translateX(-10%);
  transform: skew(-30deg) translateX(-10%);
}

.snip1543:hover figcaption:before,
.snip1543.hover figcaption:before {
  -webkit-transform: skew(30deg) translateX(-40%);
  transform: skew(30deg) translateX(-40%);
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.snip1543:hover figcaption:after,
.snip1543.hover figcaption:after {
  -webkit-transform: skew(-30deg) translateX(-30%);
  transform: skew(-30deg) translateX(-30%);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}



/*Location section style start*/
.location_sec {
  padding: 50px 0 0;
}
.location_sec .container {
  text-align: center;
  position: relative;
}
.loc_adv_slider.swiper {
  margin: 40px auto;
  width: 90%;
  display: flex;
  justify-content: flex-start;
} 
.loc_adv_slider .swiper-wrapper {
  /*padding: 40px;*/
  display: flex;
  flex-flow: wrap;
}
.loc_adv_slider .swiper-slide {
    border: 1px solid #000;
    position: relative;
    width: 30%;
    margin: 10px;
}
/*.loc_adv_slider .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 25px solid #000;
}
.loc_adv_slider .swiper-slide:first-child {
    border:none;
 }
 .loc_adv_slider .swiper-slide:first-child:after {
  display: none;
}*/
 .loc_adv_slider .item {
  text-align: left;
  padding: 20px;
  min-height: 300px;
}

.loc_adv_slider .item img {
  display: block;
  max-width: 100px;
  width: 100%;
  margin: 0px auto 10px auto ;
}
.loc_adv_slider .item p {
  font-size: 14px;
}
.loc_adv_slider .item p strong {
  font-family: "FuturaLTPro-Book";
}
/*.location_sec .swiper-button-next, .location_sec .swiper-button-prev {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 0;
}
.location_sec .swiper-button-prev {
  background: transparent url(../images/webp/slider_left_arrow.webp) no-repeat center center;
  background-size: cover;
  left: 1.5%;
}
.location_sec .swiper-button-next:after, .location_sec .swiper-button-prev:after {
  display: none ;
}
.location_sec .swiper-button-next {
  background: transparent url(../images/webp/slider_right_arrow.webp) no-repeat center center;
  background-size: cover;
  right: 1.5%;
}*/



.loc_adv_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  width: 60%;
  margin: 20px auto;
}
.hex-item {
  display:inline-block;
  float:left;
  vertical-align:top;
  width:33%;
  transform: scale(1.12);
  position:relative;
  transition:all ease .4s
}
.hex-item:nth-child(4), .hex-item:nth-child(5) {
  margin-top: -44px;
}
.hex-item .hexagon_cont {
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  left:0;
  right: 0;
  margin: 0 auto;
  width:100%;
  transition:all ease .3s
}
.hex .hex-fill, .hex .hex-blank {
  stroke: #009eb5;
  stroke-width: 1px;
}
.hex .hex-fill {
  opacity: 0;
}
.hex .hex-blank {
  opacity: 0.5;
}
.hexagon_cont img {
  display: block;
  margin: 10px auto;
  max-width: 60px;
  filter: brightness(0) invert(1);
}
.hexagon_cont h3 {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 0 15px;
}

.locaton_map_img {
  margin-top: 20px;
  background-image: url(../images/webp/location_map_img.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  background-attachment: fixed;  
  height: 100vh;
}
.locaton_map_img img {
  display: block;
}

/*Project Amenities section style start*/
.amenities_sec {
  /*background-color: #f0eee6;*/
  /*background: url(../images/webp/amenities_bg.webp) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;*/
  /*padding: 50px 0;*/
}
.amenities_sec .container {
  text-align: center;
  position: relative;
}
.amenities_sec .container h2, .amenities_sec .container p {
  color: #fff;
}
.amenities_sec .container h2 {
  color: #fff;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}
.amenities_slider.swiper {
  padding-bottom: 60px;
}
.amenities_slider .item {
  text-align: left;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.amenities_slider .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.amenities_slider .item.amt_slide1 {
  background-image: url(../images/webp/amenities_img1.webp);
}
.amenities_slider .item.amt_slide2 {
  background-image: url(../images/webp/amenities_img2.webp);
}
.amenities_slider .item.amt_slide3 {
  background-image: url(../images/webp/amenities_img3.webp);
}
.amenities_slider .item a {
  display: block;
  text-decoration: none;
  position: relative;
}
/*.amenities_slider .item img {
  display: block;  
  margin: 20px auto;
}*/
.amt_content {
  width: 60%;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.amenities_slider .item h3 {
  /*position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);*/
  color: #ffffff;
  /*font-size: 20px;*/
  text-align: center;
}
.amenities_slider .item p {
  color: #fff;
}
.amt_content ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  padding-top: 20px;
  margin-top: 20px;
}
.amt_content ul li {
  color: #fff;
  padding: 2px 0 2px 30px;
  position: relative;
  font-size: 17px;
  line-height: 20px;
  margin: 0 10px;
  text-shadow: 0 0 3px #000;
}
.amt_content ul li:before {
  content: "";
  background: url(../images/webp/amt_bullet_icon.webp) no-repeat left center;
  background-size: cover;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 4px;
}
.amenities_slider .swiper-button-next, .amenities_slider .swiper-button-prev {
  position: absolute;
  top: auto;
  width: 50px;
  height: 50px;
  font-size: 0;
  bottom: 80px;
  filter: invert(1);
}
.amenities_slider .swiper-button-prev {
  background: transparent url(../images/webp/slider_left_arrow.webp) no-repeat center center;
  background-size: cover;
  left: 40%;
}
.amenities_slider .swiper-button-next:after, .amenities_slider .swiper-button-prev:after {
  display: none ;
}
.amenities_slider .swiper-button-next {
  background: transparent url(../images/webp/slider_right_arrow.webp) no-repeat center center;
  background-size: cover;
  right: 40%;
}

.amenities_slider .swiper-pagination-bullet {
 display: block; 
}
.amenities_slider .swiper-horizontal>.swiper-pagination-bullets, 
.amenities_slider .swiper-pagination-bullets.swiper-pagination-horizontal, 
.amenities_slider .swiper-pagination-custom, 
.amenities_slider .swiper-pagination-fraction {
  /*display: flex;
  flex-direction: column;
  justify-content: center;*/
  right: 5%;
  left: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: auto;
  background-color: rgba(0,0,0,0.7);
  padding: 20px 5px;
  border-radius: 40px;
}

.amenities_slider .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    border: none;
    background-size: 90%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    /*background-size: cover;*/
    /*border-radius: 40px 0 40px 0;*/
    outline: none;
    cursor: pointer;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    opacity: 1;
}
.amenities_slider .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
    background-color: #fff;
}

.amenities_carousel.owl-theme .owl-dots .owl-dot:hover button {
    /*animation: arrowmove3 1.4s linear infinite;*/
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.amenities_slider .swiper-pagination-bullet:nth-child(1) {
  background-image: url(../images/webp/amenities_icon1.webp);
}
.amenities_slider .swiper-pagination-bullet:nth-child(2) { 
  background-image: url(../images/webp/amenities_icon2.webp); 
}
.amenities_slider .swiper-pagination-bullet:nth-child(3) {
  background-image: url(../images/webp/amenities_icon3.webp);
}

/*Image Gallery style start*/
.imggallery_sec {
  padding: 50px 0;
}
.imggallery_sec .container {
  text-align: center;
}
.image_slider.swiper {
  padding-bottom: 50px;
  width: 70%;
  height: 80vh;
  margin: 0 auto;
}
.image_slider.swiper .swiper-wrapper {}
.image_slider .swiper-button-prev, .image_slider .swiper-button-next {
  position: absolute;
  top: 50%;
  bottom: auto;
  width: 50px;
  height: 50px;
  font-size: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}

.image_slider .swiper-button-prev {
  background: #fff url(../images/webp/slider_left_arrow.webp) no-repeat center center;
  background-size: cover;
  left: 0%;
}
.image_slider .swiper-button-next {
  background: #fff url(../images/webp/slider_right_arrow.webp) no-repeat center center;
  background-size: cover;
  right: 0%;
}

.image_slider .swiper-button-next:after, .image_slider .swiper-button-prev:after {
  display: none;
}





/*Old css of image slider animation  start*/
/*.split-slideshow {
  position: relative;
  width: 94vw;
  height: 90vh;
  overflow: hidden;
}
.slideshow {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.slideshow .slider {
  width: 100vw;
  height: auto;
  z-index: 2;
}
.slideshow .slider * {
  outline: none;
}
.slideshow .slider .item {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  border: none;
}
.slideshow .slider .item .text {
  display: none;
}
.slideshow .slider .item img {
  min-width: 101%;
  min-height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slideshow .slick-dots {
  position: absolute;
  z-index: 100;
  width: 40px;
  height: auto;
  bottom: auto;
  top: 100px;
  right: 70px;
  transform: translateY(-50%);
  left: auto;
  color: #fff;
  display: block;
}
.slideshow .slick-dots li {
  display: block;
  width: 100%;
  height: auto;
}
.slideshow .slick-dots li button {
  position: relative;
  width: 20px;
  height: 15px;
  text-align: center;
}
.slideshow .slick-dots li button:before {
  content: "";
  background: #fff;
  color: #fff;
  height: 2px;
  width: 20px;
  border-radius: 0;
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  opacity: 0.6;
}
.slideshow .slick-dots li.slick-active button:before {
  width: 40px;
  opacity: 1;
}
.slideshow.slideshow-right {
  left: 0;
  z-index: 1;
  width: 50vw;
  pointer-events: none;
}
.slideshow.slideshow-right .slider {
  left: 0;
  position: absolute;
}

.slideshow-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  font-size: 80px;
  width: 100vw;
  text-align: center;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 100;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 20px;
  line-height: 0.8;
}*/
/*Old css of image slider animation  end*/


/*Video Gallery section style start*/
.videogallery_sec {
  background-color: #f0eee6;
  padding: 50px 0;
}
.videogallery_sec .container {
  text-align: center;
}

.videogallery_slider.swiper {
  padding-bottom: 50px;
}
.videogallery_slider .item a {
  text-decoration: none;
  position: relative;
  display: block;
}
.videogallery_slider .item a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: url(../images/webp/owl.video.play.webp) no-repeat center center;
  background-size: cover;
}
.videogallery_slider .item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
}
.videogallery_slider .item img {
  display: block;
  margin: 20px auto;
}
.videogallery_slider .item span {
  font-family: "FuturaLTPro-Book";  
  color: #1b1b1b;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  background-color: #fff;
  
  width: 100%;
}

.videogallery_slider .swiper-button-prev, .videogallery_slider .swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 0;
  width: 50px;
  height: 50px;
  font-size: 0;
}
.videogallery_slider .swiper-button-prev {
  background: transparent url(../images/webp/slider_left_arrow.webp) no-repeat center center;
  background-size: cover;
  left: 30%;
}
.videogallery_slider .swiper-button-next {
  background: transparent url(../images/webp/slider_right_arrow.webp) no-repeat center center;
  background-size: cover;
  right: 30%;
}

.videogallery_slider .swiper-button-next:after, .videogallery_slider .swiper-button-prev:after {
  display: none;
}



/*Address & Disclaimer section style start*/
.contact_sec {
  padding: 50px 0 20px;
  background-color: #353535;
}

.contact_sec .container {  
}
.address_txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #5a5a5a;
  padding-bottom: 30px;
  margin-bottom: 40px;  
}
.address_txt h2 {
  padding: 10px 0;
  margin-bottom: 20px;
  color: #fff;
  font-size: 26px;
  line-height: 30px;
}
.address_txt h2:after {
  display: none;
}
.address_txt p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}
.address_txt p a {
  color: #fff;
  text-decoration: none;
}
.disc_txt {

}
.disc_txt p {
  color: #949494;
  font-size: 14px;
  line-height: 18px;
}
.disc_txt p a {
  color: #949494;
  text-decoration: none;
}

/*Enquire now style*/
#fixed_form_wrap {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: -300px;
  max-width: 300px;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#fixed_form_wrap.active {
  right: 0;
}
.form_container {
  background-color: #009eb5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
  padding: 40px 0 20px 0;
}
.form_close {
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.site_heading5 {
  cursor: pointer;
  font-family: "FuturaLTPro-Book";
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  left: -104px;
  background-color: #009eb5;
  padding: 10px 20px;
  text-transform: uppercase;
}
#frmContactus {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
}
.fieldwrapper {
  display: flex;
  width: 100%;
  margin: 5px 0;
}

.fieldwrapper input, .fieldwrapper select {
  font-family: "FuturaLTPro-Book";
  width: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  padding: 10px 0 10px 20px;
  outline: 0;
}

.fieldwrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/webp/arrow-down.webp) 96% center no-repeat transparent;
  outline: 0;
  padding-right: 0;
}
.fieldwrapper select option {
  background: #009eb5;
}

.fieldwrapper.homeally_dwnld_checklist {
  align-items: center;
}
.fieldwrapper.homeally_dwnld_checklist input {
  width: 60px;
  height: 60px;
  margin: 10px;
}
.fieldwrapper.homeally_dwnld_checklist span {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}
.fieldwrapper.form-cta-btn {
  justify-content: center;
}
.fieldwrapper.form-cta-btn a {
  display: inline-block;
  font-family: "FuturaLTPro-Book";
  border: none;
  background-color: #fff;
  color: #009eb5;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 20px;
  line-height: 23px;
  padding: 10px 20px;
}

.fieldwrapper.form-cta-btn a:hover {
  color: #6b6a68;
}

.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: #fff;
  opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
  opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #fff;
  opacity: 1;
}
.mobi_form_btn {
    display: none;
}


@media only screen and (max-width: 1023px) {
body {
  font-size: 16px;
  line-height: 20px;
}  
h2 {
  font-size: 26px;
  line-height: 30px;
  padding-bottom: 15px;
}
h3 {
  font-size: 20px;
  line-height: 24px;
  padding-bottom: 15px;
}
p {
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 10px;
}

/*Header style start*/
.project_logo {
  width: 80%;
  margin: 0;
}
.brand_logo {
  display: none;
}


/*Main banner style start*/
.main_slider .item {
  justify-content: flex-start;
  background-image: url(../images/webp/parkretreat_lp_banner_mobi.webp);
  background-size: 100%;
  height: 75vh;
}
.main_slider .item {
}
.banner_txt {
  text-align: center;
  padding-right: 10px;
}
.banner_txt h1 {
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 20px;
}
.banner_txt h1 img {
  width: 70%;
  margin: 10px auto;
}
.comingsoon_txt span {
  font-size: 13px;
  line-height: 18px;
  padding: 6px 10px;
}
.anim-typewriter {
  animation: none;
}
.banner_txt h1 > span {
  white-space: pre-wrap;
  overflow: visible;
  width: auto;
  margin: 0 auto;
}
/*Overview section style start*/
.overview_sec {
  padding-top: 20px;
}
.overview_img {
  margin-top: 20px;
}
.overview_sec .animated, .overview_sec .show_content {
  opacity: 1;
}

/*Project Highlights section style start*/
.highlights_sec {
  padding: 20px 0;
}
.snip1543 figcaption:before, .snip1543 figcaption:after {
  width: 80%;
}
.snip1543:before, .snip1543:after {
  width: 50%;
}
.highlights_slider .swiper-button-prev {
  left: 20%;
}
.highlights_slider .swiper-button-next {
  right: 20%;
}

/*Amenities section style start*/
.amenities_sec {
  /*padding: 20px 0;*/
}
.amenities_slider .item.amt_slide1 {
  background-image: url(../images/webp/amenities_img1_mobi.webp);
}
.amenities_slider .item.amt_slide2 {
  background-image: url(../images/webp/amenities_img2_mobi.webp);
}
.amenities_slider .item.amt_slide3 {
  background-image: url(../images/webp/amenities_img3_mobi.webp);
}
.amenities_slider .swiper-button-prev {
  left: 20%;
}
.amenities_slider .swiper-button-next {
  right: 20%;
}
.amt_content {
  width: 90%;
}
.amenities_slider .swiper-horizontal>.swiper-pagination-bullets, 
.amenities_slider .swiper-pagination-bullets.swiper-pagination-horizontal, 
.amenities_slider .swiper-pagination-custom, 
.amenities_slider .swiper-pagination-fraction {
  display: none;
}

/*Location section style start*/
.locaton_map_img {
  background-image: url(../images/webp/location_map_img_mobi.webp);
}
.location_sec {
  padding: 20px 0 0;
}
.loc_adv_slider {
  margin: 10px auto;
}
.loc_adv_slider .swiper-wrapper {
  flex-direction: column;
}
.loc_adv_slider .item {
  padding: 10px;
  min-height: auto;
}
.loc_adv_slider .swiper-slide {
  width: 100%;
  margin: 10px auto;
}
.loc_adv_slider .swiper-slide:after {
  display: none;
}
.location_sec .swiper-button-next, .location_sec .swiper-button-prev {
  transform: translateY(0);
  top: auto;
  bottom: -30px;
}
.location_sec .swiper-button-prev {
  left: 30%;
}
.location_sec .swiper-button-next {
  right: 30%;
}
.locaton_map_img {
  margin-top: 0px;
}

.loc_adv_wrap {
  flex-direction: column;
  width: 100%;
}
.hex-item {
  width:80%;
}
.hex-item:nth-child(4), .hex-item:nth-child(5) {
  margin-top: 0;
}

/*Image Gallery style start*/
.image_slider.swiper {
  width: 100%;
  height: auto;
}
/*Old css of image slider animation  start*/
/*.split-slideshow {
  height: 70vh;
}
.slideshow .slick-dots {
  right: 8px;
}*/
/*Old css of image slider animation  old*/

/*Video Gallery section style start*/
.videogallery_sec {
  padding: 20px 0;
}

/*Address & Disclaimer section style start*/
.contact_sec {
  padding: 20px 0 50px 0;
}
.address_txt {
  padding-bottom: 10px;
  margin-bottom: 20px;
  flex-direction: column;
}
.address_txt h2 {  
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}
.address_txt p {
  font-size: 14px;
  line-height: 18px;
}
.disc_txt p {
  font-size: 12px;
  line-height: 15px;
}

/*Enquery form style start*/
.mobi_form_btn {
  display: block;
  cursor: pointer;
  font-family: "FuturaLTPro-Book";
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #009eb5;
  padding: 10px 20px;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}
#fixed_form_wrap {
  top: auto;
  bottom: -100%;
  left: 0;
  transform: translateY(0);
  height: 100%;
  max-width: none;
  background-color: rgba(0, 0, 0, 0.5);
}
#fixed_form_wrap.active {
  bottom: 0;
}
.form_container {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
.site_heading5 {
  display: none;
}
.fieldwrapper.form-cta-btn a {
  font-size: 16px;
  line-height: 20px;
  padding: 6px 10px;
}
}
.error_msg
{
    border:2px solid red !important;
}