@font-face {
    font-family: 'HelveticaNeueLTStd-Roman';
    src: url(../fonts/HelveticaNeueLTStd-Roman.ttf), url(../fonts/HelveticaNeueLTStd-Roman.eot),  url(../fonts/HelveticaNeueLTStd-Roman.otf), url(../fonts/HelveticaNeueLTStd-Roman.woff), url(../fonts/HelveticaNeueLTStd-Roman.svg);
}
@font-face {
    font-family: 'HelveticaNeueLTStd-Bd';
    src: url(../fonts/HelveticaNeueLTStd-Bd.ttf), url(../fonts/HelveticaNeueLTStd-Bd.eot),  url(../fonts/HelveticaNeueLTStd-Bd.otf), url(../fonts/HelveticaNeueLTStd-Bd.woff), url(../fonts/HelveticaNeueLTStd-Bd.svg);
}
* {
    /*-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:before, ::after {
    box-sizing: border-box;
}
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;
  /*cursor: url(../images/curser.ico), auto;*/
}
body{
    font-family: 'HelveticaNeueLTStd-Roman';
}
article, aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
    display: block;
}
audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}
ul, li {
    list-style: none;
}

input:focus {
    outline: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
img {
    max-width: 100%;
}
.fp-tableCell {
    flex-direction: column;
}

.section{
    overflow: hidden;
    background-size: cover;
}
h1 {
    font-family: "HelveticaNeueLTStd-Bd";
    font-weight: normal;
    font-size: 40px;
    line-height: 60px;
    text-transform: uppercase;
    /* padding-bottom: 30px; */
    color: #fff;
}
h2 {
    font-family: "HelveticaNeueLTStd-Bd";
    font-weight: normal;
    font-size: 40px;
    line-height: 60px;
    text-transform: uppercase;
    padding-bottom: 30px;
}
p{
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 30px;
}
/*.section.active {
    margin-top: 75px;
}*/

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}

.down-arw{
    position: absolute;
    width: 22px;
    height: 32px;
    left: 0;
    right: 0;
    bottom: 8vh;
    margin: 0 auto;
    border: 2px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    z-index: 3; 
    cursor: pointer;
}
.down-arw:before{
    content: '';
    position: absolute;
    width: 3px;
    height: 6px;
    background: #fff;
    border-radius: 5px;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    animation: bounse 1s infinite;
}
@keyframes bounse{
    0%{
        top: -30%;
        opacity:0;
    }
    90%{
        top: 65%;
        opacity:1;
    }
   100%{
        top: 110%;
        opacity: 0;
    }
}


/* Header */
header{
    position:fixed;
    display:block;
    width: 100%;
    z-index: 2;
    color: #f2f2f2;
    padding: 7px 0;
    transition: all .5s linear;
    background-color: rgba(0,0,0,0.2);
    z-index: 999;
}
header.hide{
    background-color: transparent;
}
header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header.hide .container{
    display: none;
}

.logo-wrp{
    max-width: 200px;
    width: 38%;
}

/*Top navigation style*/
#site_nav {
    position: fixed;
    z-index: 3;
    top: 55%;
    transform-origin: 0 0%;
    transform: rotate(-90deg) translateX(-50%);
    left: 0;
    background-color: rgba(0,0,0,0.2);
}
#site_nav ul {
    display: flex;
    align-items: center;    
    flex-direction: row-reverse;
}
#site_nav ul li {

}
#site_nav ul li a {
    display: block;
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 10px 10px 20px;
    position: relative;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
#site_nav ul li a:hover, #site_nav ul li a.active {
    /*transform: scale(1.3);*/
    font-size: 20px;
}
#site_nav ul li a:before {
    content: "\00B7";
    font-family: 'FontAwesome';
    font-size: 50px;
    position: absolute;
    left: 0;
    top: 10px;
}
#site_nav ul li:last-child a:before {
    display: none;
}
.burger {
    display: none;
}

.desk_pdf_link {
    background: url(../images/downBrochure.png) no-repeat left 0;
    display: block;
    margin-left: auto;
    margin-right: 20px;
    padding-left: 30px;
    color: #fff;
    font-size: 16px;
    font-style: italic;
}
.desk_pdf_link a {
    color: #fff;
}

#site_nav ul li a.mobi_pdf_link {
    display: none;
}
/****** Main banner style *******/
.main_banner {
    width: 100%;
    height: 100%;
}

.main_banner .swiper-slide {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bannerbg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1);
    background-image: url(../images/slide1.jpg);
    background-position: center bottom; 
    background-size: cover;
    background-repeat: no-repeat;
}


@keyframes zoomin{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.4);
    }
}
@-webkit-keyframes zoomin{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.4);
    }
}
.banner_content {
    width: 40%;
    position: relative;
    z-index: 1;
    padding-top: 30px;
}
.main_banner .container {
    transform: translateY(-100%);    
    animation: content_slide 3s linear forwards;
}
#home_wrp.active .main_banner .container{
    
}
@keyframes content_slide{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0);
    }
}
@-webkit-keyframes content_slide{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0);
    }
}
.banner_content h1 {
    /*text-transform: uppercase;*/
    color: #6d8400;
    font-family: 'HelveticaNeueLTStd-Roman';
    font-weight: normal;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 30px;
    background-image: url(../images/banner_heading_bg.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px 20px 30px;
    margin-top: 10px;
}
.banner_content h1 span, .banner_content h1 small {
    display: block;
    color: #1b6f30;
}
.banner_content p.p1 {
    color: #231c02;
    font-size: 18px;
    line-height: 24px; 
    padding-bottom: 20px;
}
.banner_content p.p2 {
    color: #231c02;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    padding-bottom: 20px;
}
.banner_content h2 {
    color: #1b6f30;
    font-size: 25px;
    line-height: 30px;
    text-transform: none;
    font-family: "HelveticaNeueLTStd-Bd";
}
.banner_content h2.price_point {
    background-color: rgba(0,0,0,0.5);
    text-align: center;
    padding: 10px;
    color: #fff;
}
.main_banner .move-imgs {
    position: relative;
    width: 50%;
    margin: 0 auto 0 auto;
}

.section#home_wrp.active .move-imgs {
    animation: zoomin 10s forwards;
} 
@keyframes zoomin{
    0%{
        /*transform: translate3d(10px, -50px, 0);*/
        transform: scale(0.8);
    }
    100%{
        /*transform: translate3d(0, 0, 0);*/
        transform: (1);
    }
}


/*Overview style*/
#overview_wrap {
    position: relative;
    /*perspective: 25px;*/
}
.leaf_wrap {
    position: absolute;
    top: 20%;
    z-index: 99;
    width: 100%;
}
.october-leaf {
position: absolute;
top: 0;
background-color: transparent;
background-image: url('../images/leaf-img.png');
background-size: 100%;
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
transform: translateZ(0);
}
#overview_wrap .container {
    display: flex;
    justify-content: flex-end;
    transform: translateX(-20%);
    opacity: 0;  
    z-index: 1;  
}
#overview_wrap.active .container { 
    animation: content_slide2 3s linear forwards;
}
@keyframes content_slide2{
    0%{
        transform: translateX(-20%);
        opacity: 0;
    }
    100%{
        transform: translateX(-5%);
        opacity: 1;
    }
}
@-webkit-keyframes content_slide2{
    0%{
        transform: translateX(-20%);
        opacity: 0;
    }
    100%{
        transform: translateX(-5%);
        opacity: 1;
    }
}
.overviewbg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1);
    background-image: url(../images/overview_slide.jpg);
    background-position: 15% bottom; 
    background-size: cover;
    background-repeat: no-repeat;
     z-index: -1;
}
.overview_content {
    width: 50%;
    position: relative;
    z-index: 99;
    /*transform: translateZ(20px);*/
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
}

#overview_wrap h2 {
    color: #fff;
}
#overview_wrap p {
    color: #fff;
}

#overview_wrap .move-imgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    /*transform-style: preserve-3d;*/
}



/*Project Amenities style*/

#amenities_wrap {

}
#amenities_wrap h2,
#image_gallery h2 {
    text-align: center;
    position: absolute;
    z-index: 99;
    top: 50px;
    left: 0;
    right: 0;
    color: #fff;
    text-shadow: 0 0 5px #000;
}
.amenities_slider {
    width: 100%;
    height: 100%;
}

.amtbg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1);
    z-index: -1;
    /*background-position: left top;*/
    /*background-repeat: no-repeat;*/
    background-size: cover;
}
.amtbg.slide1{
    background-image: url(../images/amtbg1.jpg);    
}
.amtbg.slide2{
    background-image: url(../images/amtbg2.jpg);
}
.amtbg.slide3{
    background-image: url(../images/amtbg3.jpg);
}
.amtbg.slide4{
    background-image: url(../images/amtbg4.jpg);
}
.amtbg.slide5{
    background-image: url(../images/amtbg5.jpg);
}
.amtbg.slide6{
    background-image: url(../images/amtbg6.jpg);
}
.amtbg.slide7{
    background-image: url(../images/amtbg7.jpg);
}
.amtbg.slide8{
    background-image: url(../images/amtbg8.jpg);
}
.amtbg.slide9{
    background-image: url(../images/amtbg9.jpg);
}
.amt-move-imgs {
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    display: flex;
    height: 100%;
    align-items: flex-end;
    transform: translateZ(20px); 
    position: relative;
}
.amt-move-imgs2 {
    position: absolute;
    bottom: 0;
    left: -1%;
    width: 100%;
    height: 100%;
    transform: translateZ(50px); 
    /*z-index: 2;*/
}
.amt-move-imgs2 img {
    /*display: block;*/
    height: 100%;
}

.amt_desk {
    display: block;
}
.amt_mobi {
    display: none;
}


.amtbg.imgbg.slide1{
    background-image: url(../images/imgbg1.jpg);    
}

.amtbg.imgbg.slide2{
    background-image: url(../images/imgbg2.jpg);    
}

.amtbg.imgbg.slide3{
    background-image: url(../images/imgbg3.jpg);    
}

.amtbg.imgbg.slide4{
    background-image: url(../images/imgbg4.jpg);    
}

/*.amenities_slider.owl-carousel .owl-item .amt-move-imgs img {
    max-width: none;
    width: auto;
}*/

.common-button-next, .common-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    z-index: 1000;
    font-size: 0;
}
.common-button-next {
    right: 5%;
}
.common-button-prev {
    left: 5%;
}
.common-button-prev:after {
    content: "\f053";
    font-family: "FontAwesome";
    position: absolute;
    left: 10px;
    top: 14px;
    font-size: 25px;
    text-shadow: 0px 0px 10px #fff;
    color: #000;
}
.common-button-next:after {
    content: "\f054";
    font-family: "FontAwesome";
    position: absolute;
    left: 15px;
    top: 14px;
    font-size: 25px;
    text-shadow: 0px 0px 10px #fff;
    color: #000;
}
.common-pagination {
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-pagination .swiper-pagination-bullet {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
}
.common-pagination .swiper-pagination-bullet-active{
    width: 15px;
    height: 15px;    
}

/*Project Highlights style*/
#project_highlights {
    position: relative;
}
#project_highlights h2 {
    text-align: center;
    position: absolute;
    z-index: 99;
    top: 50px;
    left: 0;
    right: 0;
    color: #fff;
    text-shadow: 0 0 5px #000;
}

.highlights_container {
    width: 100%;
    height: 100vh;
}

.highlights_slider_large {
  height: 100%;
  width: 100%;
  margin: 0 auto 1%;
}
.highlights_slider_large .swiper-slide {
    background-size: cover;
}

.highlights_slide_01 {
    background-image:url(../images/project_highlights_large_01.jpg)
}
.highlights_slide_02 {
    background-image:url(../images/project_highlights_large_02.jpg)
}
.highlights_slide_03 {
    background-image:url(../images/project_highlights_large_03.jpg)
}
.highlights_slide_04 {
    background-image:url(../images/project_highlights_large_04.jpg)
}
.highlights_slide_05 {
    background-image:url(../images/project_highlights_large_05.jpg)
}
.highlights_slider_large .swiper-slide span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 30px;
    background-color: rgba(0,0,0,0.5);
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
}
.highlights_slider_thumbs {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: none;
    /*position: absolute;
    bottom: 0;
    left: 0;
    right: 0;*/

}
.highlights_slider_thumbs .swiper-slide {
    padding: 5px;
    background-color: #000;
    width: 20%; 
    height: auto;
    opacity: 0.4;
}

.highlights_slider_thumbs .swiper-slide-thumb-active {
  opacity: 1;
}



/*Video Gallery style*/

#video_gallery {

}
#video_gallery h2 {
    text-align: center;
    z-index: 99;
    color: #fff;
    text-shadow: 0 0 5px #000;
    padding-top: 50px;
}
.video_slider {
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    pointer-events: none;
}
.video_slider .swiper-wrapper {
    max-width: 700px;
    width: 70%;
    height: 450px;
    /*position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%,-50%);*/
}

.videobg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1);
    z-index: -1;
    background-image: url(../images/videobg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.vdslide1 {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    width: 100%;
    height: 90%;
}

.video_slider .swiper-slide {
    pointer-events: none;
}
.video_slider .swiper-slide.swiper-slide-active {
    pointer-events: all;
}
.video_slider .swiper-slide.swiper-slide-active:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/play-icon.png) no-repeat center center;
    background-size: cover;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 2;
}
.vdo-box{
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    height: 100%;

}
.video_txt {
    display: block;
    background-color: #000;
    color: #fff;
    padding: 20px;
    width: 100%;
    text-align: center;
    /*border-bottom: 1px solid #ffff;*/
}
/*.swiper-button-prev2.common-button-prev {
    left: 5px;
}
.swiper-button-next2.common-button-next {
    right: 5px;
}*/

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none
}
.vdo-lightbox {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: 80%
}
.vdo-lightbox .vdo-inner {
    width: 100%;
    height: 100%
}
.vdo-lightbox .vdo-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}
.close-vdo {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url(../images/close.png) no-repeat 0 0;
    background-size: cover;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer
}

/*Project Amenities style*/

#project_location {

}

#project_location .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100%
}
#project_location h2 {
    text-align: center;
    color: #fff;
    text-shadow: 0 0 5px #000;
    padding-top: 50px;
}
.locationbg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1);
    z-index: -1;
    background-image: url(../images/locationbg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.location-move-imgs {
    z-index: 2;
    width: 70%;
    margin: 0 auto;
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    text-align: center;
}
.location-move-imgs2 {
    z-index: 1;
    width: 70%;
    margin: 0 auto;
}
}
.direction_link {
    text-align: center;
}
.direction_link a {
    color: #fff;
    text-decoration: none;
}
/*Footer style*/

#site_footer {
    background-color: #000;
    padding: 20px 0;
}
 #site_footer .container {
        height: 90vh;
        overflow: auto;
        padding-bottom: 70px;
    }

 #site_footer .container::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

 #site_footer .container::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

 #site_footer .container::-webkit-scrollbar-thumb
{
    background-color: #fdb525;
}   

.brand_tieup_logos h2 {
    color: #fff;
    text-align: center;
}
.brand_tieup_logos div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.brand_tieup_logos div img {
    display: block;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    margin: 10px auto;
}
.our_partners {
    width: 32%;
    margin: 0 auto;
    padding-bottom: 30px;
}
.our_partners h2 {
    color: #fff;
    text-align: center;
    padding-bottom: 0;
}
.our_partners div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.our_partners div img {
    display: block;
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin: 10px auto;
    width: 30%
}

.site_address {
    font-style: normal;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    padding-bottom: 30px;
}
.disclaimer_txt {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

/********* Enquire now Form style *******/
#fixed_form_wrap {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: -300px;
  width: 100%;
  z-index: 99;
  /*visibility: hidden;*/
  max-width: 300px;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#fixed_form_wrap.active {
  right: 0;
}
.form_btn_wrap {
    position: absolute;
    top: 30%;
    right: 399px;
    z-index: 1;    
}
.form_btn {
    cursor: pointer;
    font-family: "HelveticaNeueLTStd-Bd";
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 152px;
    color: #fff;
    background-color: #1b6f30;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(90deg);

}
.mobi_form_btn_wrap .call_btn{
    display: none;
}
.call_btn {
    font-family: "HelveticaNeueLTStd-Bd";
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 46px;
    background-color: #1b6f30;
    padding: 0;
    position: absolute;
    top: 135px;
    /*left: 53px;*/
    right: 0px;
    text-align: center;
    height: 46px;
}
.call_btn a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px;
}

.call_btn span {
    position: absolute;
    top: 0;
    right: 46px;
    background-color: #1b6f30;
    padding: 10px;
    transform: translateX(170px);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.call_btn:hover span {
    transform: translateX(0);
    opacity: 1;
}
.call_btn.book_online {
    top: 70%;
    transform: rotate(90deg);
    width: auto;
    right: -51px;
    /*animation: blinkingText 1s linear infinite;*/
}
/*@keyframes blinkingText {
    0%{opacity: 0;}
    50%{opacity: .5;}
    100%{opacity: 1;}
}*/
.form_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    background-color: #1b6f30;
    padding: 20px 20px 15px 20px;
}
.form_close {
    display: block;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 5px;
}
.site_heading5 {
    font-family: 'HelveticaNeueLTStd-Bd';
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    padding-bottom: 10px;
    text-transform: uppercase;
}
#frmContactus {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 90%;
}
.fieldwrapper {
    width: 100%;
    margin: 5px auto;
}
.phone_row {
  display: flex;
}

.fieldwrapper input, .fieldwrapper select {
    font-family: 'HelveticaNeueLTStd-Roman';
    width: 100%;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 5px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #000;
    height: 40px;
    padding: 0 0 0 20px;
    outline: 0;
}
.fieldwrapper input#txt_countrycode {
  width: 20%;
  padding-left: 10px;
  border-radius: 5px 0 0 5px;
}
.fieldwrapper input#txt_mobile {
  width: 80%;
  padding-left: 10px;
  border-radius: 0 5px 5px 0;
}
.fieldwrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../images/arrow-down.png) 96% center no-repeat #fff;
    outline: 0;
    padding-right: 0;
    width: 100%;
}
.fieldwrapper.form-cta-btn {
    text-align: center;
    font-family: 'HelveticaNeueLTStd-Bd';
    padding: 0;
    margin: 5px 0 0 10px;
    border: none;
    background-color: #6d8400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    max-width: 120px;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fieldwrapper.form-cta-btn a {
    color: #fff;
    text-decoration: none;
    position: relative;
}
.fieldwrapper.form-cta-btn a:after {
  content: "\f178";
  font-family: 'FontAwesome';
  color: #fff;
    margin-left: 10px;
}

.fieldwrapper.form-cta-btn a:hover {
    color: #2e2e2e;
}
.fieldwrapper.form-cta-btn a:hover:after {
  color: #2e2e2e;
}

/*.fieldwrapper.form-cta-btn a:hover {
    background-color: #4a4a4a;
}*/

.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;
}

#fixed_form_wrap.submitpopup {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: none;
    background-color: rgba(0,0,0,0.7);
    height: 100%;
    width: 100%;
    transform: translateY(-50%);
}
#fixed_form_wrap.active.submitpopup {
    right: auto;
    top: 50%;
    transform: translateY(-50%);
}
.submitpopup .form_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    background-color: #1b6f30;
    padding: 20px 20px 15px 20px;
    max-width: 300px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    text-align: center;
}
.fieldwrapper.form-cta-btn {
    display: inline-block;
    margin: 10px auto;
    max-width: none;
    font-size: 15px;
    line-height: 19px;
    padding: 5px 10px;
    height: auto;
    width: auto;
}
.fieldwrapper.form-cta-btn a {
    display: block;
}
.fieldwrapper.form-cta-btn a:after {
    display: none;
}
.submitpopup .fieldwrapper.form-cta-btn a.whatsapp_btn i {
    font-size: 35px;
    margin-left: 10px;
    vertical-align: middle;
}

@media only screen and (max-width: 1400px){
   .main_banner .move-imgs {
        margin: -12% auto 0 auto;
    }

}

@media only screen and (max-width: 768px), (max-width: 1024px) and (orientation: portrait){

}
@media only screen and (max-width: 767px){
    h1 {
        font-size: 20px;
        line-height: 30px;
        /* padding-bottom: 10px; */
    }
    h2 {
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 10px;
    }
    p{
        font-size: 16px;
        line-height: 20px;
        padding-bottom: 20px;
    }

    .amtbg.imgbg.slide1{
        background-image: url(../images/imgbg1-mobi.jpg);    
    }
    /*#amenities_wrap.fp-section.fp-table, #amenities_wrap.fp-slide.fp-table, #amenities_wrap .fp-tableCell {
        height: auto !important;
    }*/

    /*header style*/
    /*.logo-wrp {
        width: 40%;
    }*/
    .burger {
        display: block;
        font-size: 25px;
        color: #fff;
        margin-left: 20px;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        position: relative;
        order: 3;
        z-index: 3;
    }
    .close_menu {
        display: none;
    }

    #site_nav {
        position: fixed;
        left: auto;
        right: -100%;
        top: 0;
        width: 80%;
        height: 100%;
        background-color: #000;
        padding: 40px 20px 20px;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        transform: rotate(0deg) translateX(0);
    }
    #site_nav.opened {
        right: 0;
    }

    #site_nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 70%;
    }
    #site_nav.opened ul {

    }
    #site_nav ul li a {
        margin: 0 auto;
        font-size: 20px;
        line-height: 30px;
    }
    #site_nav ul li:last-child a:before {
        display: block;
    }

    .desk_pdf_link {
        display: none;
    }

    #site_nav ul li a.mobi_pdf_link {
        display: block;
    }

    /*main banner style*/
    .main_banner .swiper-slide {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .banner_content {
        width: 100%;
        padding-top: 10px;
    }
    .banner_content h1 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .banner_content p.p2 {
        font-size: 18px;
        line-height: 22px;
    }
    .banner_content h2 {
        font-size: 20px;
        line-height: 25px;
    }
    .banner_content h2.price_point {
        padding: 5px;
    }
    .main_banner .move-imgs {
        margin: 0% auto 0 auto;
        width: 100%;
    }

    /*overview section style*/
    #overview_wrap {
        padding: 20px 0;
    }
    .overview_content {
        width: 100%;
    }
    .overviewbg{
        background-image: url(../images/mobi_overview_slide.jpg);
        background-position: center bottom; 
    }
    /*Amenities section style*/
    .amenities_slider {

    } 
    .amenities_slider .swiper-slide {
        /*height: 45vh;*/
        /*margin-bottom: -20px;*/
    }
    /*.amt-move-imgs img {
        transform: scale(1.3);
    }*/
    #amenities_wrap h2 {
        top: 60px;
    }
    .swiper-pagination {
        display: none;
    }
    .amtbg{
        /*background-size: 100%;*/
        background-repeat: no-repeat;
    }
    .amtbg.slide1{
        background-image: url(../images/amtbg1.jpg);    
    }
    .amtbg.slide2{
        background-image: url(../images/mobi_amtbg2.jpg);
    }
    .amtbg.slide3{
        background-image: url(../images/mobi_amtbg3.jpg);
    }
    .amtbg.slide4{
        background-image: url(../images/amtbg4.jpg);
    }
    .amtbg.slide5{
        background-image: url(../images/mobi_amtbg5.jpg);
    }
    .amtbg.slide6{
        background-image: url(../images/mobi_amtbg6.jpg);
    }
    .amtbg.slide7{
        background-image: url(../images/mobi_amtbg7.jpg);
    }
    .amtbg.slide8{
        background-image: url(../images/mobi_amtbg8.jpg);
    }
    .amtbg.slide9{
        background-image: url(../images/mobi_amtbg9.jpg);
    }
    .amt_desk {
        display: none;
    }
    .amt_mobi {
        display: block;
    }
    /*Project Hightlights style*/
    .highlights_slider_large .swiper-slide {
        background-size: cover;
        background-repeat: no-repeat;
        height: 92%;
    }
    #project_highlights h2 {
        top: 60px;
    }
    .highlights_slider_large .swiper-slide span {
        font-size: 18px;
    }
    .highlights_slide_01 {
        background-image:url(../images/project_highlights_mobi_01.jpg)
    }
    .highlights_slide_02 {
        background-image:url(../images/project_highlights_mobi_02.jpg)
    }
    .highlights_slide_03 {
        background-image:url(../images/project_highlights_mobi_03.jpg)
    }
    .highlights_slide_04 {
        background-image:url(../images/project_highlights_mobi_04.jpg)
    }
    .highlights_slide_05 {
        background-image:url(../images/project_highlights_mobi_05.jpg)
    }


    /*.highlights_container {
        height: 40vh;
        margin-bottom: 20px;
    }*/

    /*Video Gallery style*/

    /*.video-move-imgs {
        width: 100%;
    }*/
    #video_gallery h2 {
        padding-top: 60px;
        padding-bottom: 0;
    }
    .video_slider {
        padding-bottom: 0;
    }
    .video_slider .swiper-wrapper {
        width: 90%;
    }
    .vdo-lightbox {
        position: absolute;
        top: 10%;
        left: 0;
        width: 90%;
        height: 80%;
        right: 0;
        margin: 0 auto;
    }

    /*Project Location style*/
    #project_location.fp-section.fp-table, #project_location.fp-slide.fp-table, #project_location .fp-tableCell {
        height: auto !important;
    }
    #project_location .container {
        height: 50vh;
        padding-bottom: 50px;
    }
    /*Footer section style*/
    /*#amenities_wrap.fp-section.fp-table, #amenities_wrap.fp-slide.fp-table, #amenities_wrap .fp-tableCell {
        height: auto !important;
    }*/

    .site_address {
        font-size: 16px;
        line-height: 20px;
        padding-bottom: 20px;
    }
    .disclaimer_txt {
        font-size: 14px;
        line-height: 20px;        
    }

    .brand_tieup_logos div {
        margin-bottom: 10px; 
    }

    .brand_tieup_logos div img {
        width: 15%;
    }

    .our_partners div {
        margin-bottom: 10px; 
    }

    .our_partners div img {
        width: 40%;
    }
    /********* Enquire now Form style *******/
.form_btn_wrap {
  display: none;
}

.call_btn{
    display: none;
}

.mobi_form_btn_wrap {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
    background-color: #6d8400;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobi_form_btn_wrap .call_btn{
    display: block;
    position: fixed;
}
.mobi_call_btn {
  color: #fff;
  font-size: 18px;
  li
  ne-height: 26px;
  width: 50%;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid #fff;
}
.mobi_call_btn a {
    display: flex;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}
.mobi_call_btn span {
    display: inline-block;
    padding: 0 5px;
    order: 2;
}

.mobi_book_online {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  width: 50%;
  text-align: center;
  text-transform: uppercase;
  border-left: 1px solid #fff;
  order: 2;
}
.mobi_book_online a {
    display: flex;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}



.mobi_form_btn { 
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  width: 50%;
  text-align: center;
  text-transform: uppercase;
      padding: 10px;
}
#fixed_form_wrap {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: none;
    background-color: rgba(0,0,0,0.7);
    height: 100%;
    width: 100%;
    transform: translateY(-50%);
}
#fixed_form_wrap.active {
    right: auto;
    top: 50%;
    transform: translateY(-50%);
}
.form_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    background-color: #1b6f30;
    padding: 20px 20px 15px 20px;
    max-width: 300px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}
}

