@font-face {
    font-family: 'Gotham';
    src: url(../fonts/Gotham-Book.ttf), url(../fonts/Gotham-Book.eot), url(../fonts/Gotham-Book.otf), url(../fonts/Gotham-Book.woff), url(../fonts/Gotham-Book.woff2), url(../fonts/Gotham-Book.svg);
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GothamUltra';
    src: url(../fonts/Gotham-Ultra.ttf), url(../fonts/Gotham-Ultra.eot),  url(../fonts/Gotham-Ultra.otf), url(../fonts/Gotham-Ultra.woff), url(../fonts/Gotham-Ultra.woff2);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:before, ::after {
    box-sizing: border-box;
}
body{
    font-family: 'Gotham';
    font-weight: 100;
    font-size: calc(13px +  .2vw);
    color: #fff;
    margin: 0;
}
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;
}
a{
    color: #fff;
    text-decoration: none;
}
a:active, a:hover {
    outline: 0;
    color: #999;
}
input {
    font-family: 'Gotham';
    font-size: 13px;
    -webkit-appearance: 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%;
}
p{
    font-size: calc(13px + .3vw);
    line-height: 22px;
}
@keyframes para_anim {
    0%{
        opacity: 0;
        transform: translateX(-10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
#button {
  display: inline-block;
  background-color: #1bbebc;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
line-height: 27px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
.section{
    overflow: hidden;
    background-size: cover;
}
.bg{
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 20s ease-in-out;
    
}
.section:not(#home-wrp).active .bg, .slide.active .bg{
    animation: zoomin 20s forwards;
}
@keyframes zoomin{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.4);
    }
}
.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.section .fp-tableCell{
    background-size: cover;
    background-position: center;
    position: relative;
    transition: .4s;
}
.section .fp-tableCell:before, .section .bg:before{
    content: '';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    pointer-events: none;
}
.heading{
    font-size: 10vw;
    text-transform: uppercase;
    position: absolute;
    font-family: 'GothamUltra';
    font-weight: bold;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 7.4vw;
    color: rgba(255,255,255,.2);
}

.section.active .fadeeup{
    opacity: 0;
    animation: fadedup 1.5s forwards .5s;
}
@keyframes fadedup{
    0%{
        transform: translateY(50px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
.section.active .fadedin{
    animation: fadedin 1.5s forwards;
}
@keyframes fadedin{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.section:before,
.section::after{
    content: '';
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(0);
    display: block;
}
.section:before{
   transform: translateY(-100%); 
}
.section::after{
   transform: translateY(100%); 
}
.down.section::after{
    animation: down 1.5s ease forwards .2s;
}
.down.section:before{
    content: '';
    display: none;
}
@keyframes down {
    0%{
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}
.up.section:before{
    z-index: 999;
    animation: up 1.5s ease forwards .2s;
}
.up.section::after{
    content: '';
    display: none;
}
@keyframes up {
    0%{
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
.section.down .fp-tableCell{
    animation: down_sec 1.5s ease forwards;
}
@keyframes down_sec {
    0%{
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0%);
    }
}
.section.up .fp-tableCell{
    animation: up_sec 1.5s ease forwards;
}
@keyframes up_sec {
    0%{
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.section:nth-child(1)::before, .section:nth-child(1)::after, .section:nth-child(4)::before, .section:nth-child(4)::after{
    /*background-color: #0f79c1;*/
    background-color: #a7d141;
}
.section:nth-child(2)::before, .section:nth-child(2)::after, .section:nth-child(5)::before, .section:nth-child(5)::after{
    /*background-color: #87c140*/
    background-color: #1bbebc
}
.section:nth-child(3)::before, .section:nth-child(3)::after, .section:nth-child(6)::before, .section:nth-child(6)::after{
    /*background-color: #bf1363;*/
    background-color: #f4a4c7;
}

/* Header */
header{
    position:fixed;
    display:block;
    width: 100%;
    z-index: 2;
    color: #f2f2f2;
    padding: 15px 0;
    transition: all .5s linear;
    opacity: 0;
    transform: translateY(-20%);
    pointer-events: none;
}
header.show{
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
header .container{
    flex-direction: row;
    justify-content: space-between;
}
header img{
    transition: .5s;
    max-width: 190px;
}
header .logobtn-wrp img{
        max-width: 250px;
    }
header .container > a{
    display: flex;
    align-items: center;
}
.logobtn-wrp{
    display: flex;
    align-items: center;
}
.enq-btn{
    padding: 8px;
    background: #fff;
    color: #333;
    font-family: 'Gotham';
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 40px;
}
.fp-viewing-0 header.show {
    opacity: 0;
}

/* Home */ 
#home-wrp .homeslider:before{
    display: none;
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,.2);
    z-index: 2;
}
#home-wrp .fp-tableCell, .homeslider .owl-item{
    overflow: hidden;
}
#home-wrp .homeslider .owl-item.active .bg{
    animation: zoomin 20s forwards;
}
#home-wrp p{
    color: #fff;
    font-size: 2.5vw;
    margin-bottom: 2vw;
    font-family: 'Gotham';
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    line-height: normal;
    width: 60%;
    margin-bottom: 0;
    transform: translateY(50px);
    opacity: 0;
}
.homeslider, .homeslider .item {
    height: 100vh;
    display: flex;
}
.homeslider .owl-item.active p{
    animation: fadedup 1.5s forwards 1s;    
}
.homeslider .slide1{
    background-image: url(../images/slide1.jpg);
}
.homeslider .slide2{
    background-image: url(../images/slide2.jpg);
}
.homeslider .slide3{
    background-image: url(../images/slide3.jpg)
}
.homeslider .owl-item.active:first-child .bg{
    animation-delay: 2s;
}
#home-wrp .homeslider .owl-nav [class*=owl-] {
    width: auto;
    height: auto;
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    transform: translate3d(0,0,0) translateY(-50%);
    padding: 8px;
    display: flex;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Gotham';
    letter-spacing: 1px;
    opacity: 0;
    animation: fadedin .5s forwards 2.5s;
}
#home-wrp .homeslider .owl-nav .owl-prev {
    left: 5%;
}
#home-wrp .homeslider .owl-nav .owl-next {
    right: 5%;
    flex-direction: row-reverse;
}
#home-wrp .homeslider .owl-nav [class*=owl-]:before{
    content: '';
    width: 30px;
    height: 25px;
    display: flex;
    background-repeat: no-repeat;
    transition: .5s;
}
#home-wrp .homeslider .owl-nav .owl-prev:before{
    background-image: url(../images/prev-arw.png);
    margin-right: 10px;
}
#home-wrp .homeslider .owl-nav .owl-prev:hover:before{
    transform: translateX(-10px);
}
#home-wrp .homeslider .owl-nav .owl-next:before{
    background-image: url(../images/next-arw.png);
}
#home-wrp .homeslider .owl-nav .owl-next:hover:before{
    transform: translateX(10px);
}
#home-wrp .homeslider .owl-nav .owl-prev:after {
    content: 'Previous Slide';
}
#home-wrp .homeslider .owl-nav .owl-next:after {
    content: 'Next Slide';
    margin-right: 10px;
}
.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;
    }
}

/* overview */


#overview .fp-tableCell{
    text-align: center;
}
#overview .fp-tableCell .bg{
    background-image: url(../images/overview_bg.jpg);
}
#overview p{
    color: #fff;
    width: 70%;
    margin: 30px auto;
    animation-delay: .7s;
}
#overview .haeding{
    font-size: calc(13px + 1vw);
    font-weight: normal;
    animation-delay: 1s;
}


/*.fp-viewing-2 .fixed_loc_dropdown {
    position: fixed;
    bottom: 15%;
    left: 0;
    right: 0;
    text-align: center;
}
.fp-viewing-2 .explore-project .fixed_loc_dropdown h3 {
    color: #000;
}
.fp-viewing-2 .explore-project .fixed_loc_dropdown .select-wrp span, .fp-viewing-2 .explore-project .fixed_loc_dropdown .select-wrp span::after {
    color: #000;
    border-color: #000;
}
.fp-viewing-2 .explore-project .fixed_loc_dropdown .select-wrp ul {
    bottom: auto;
}*/


.explore-project {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/explore-proj-bg.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 4;
    transition: 1s;
}
.explore-project.hidden{
    transform: translateY(-100%);
}
.explore-project h3{
    font-family: 'GothamUltra';
    font-size: 4.5vw;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.explore-project h3 span{
    font-family: 'Gotham';
}
.select-wrp{
    max-width: 250px;
    position: absolute;
    display: block;
    z-index: 3;
    bottom: 5%;
    width: 15%;
}

.select-wrp select{
    position: absolute;
    width: 100%;
    opacity: 0;
    outline: none;
    border: none;
    pointer-events: none;
}
.select-wrp span{
    background-color: transparent;
    font-weight: bold;
    font-family: 'Gotham';
    font-size: calc(13px + .2vw);
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    width: 100%;
    display: block;
    padding-bottom: 10px;
    cursor: pointer;
}
.select-wrp span::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    right: 0;
    top: 20%;
    transform: rotate(-45deg);
    display: block;
}
.select-wrp ul{
    display: none;
    margin-top: -30px;
    width: 100%;
    line-height: 35px;
    padding: 0 10px;
    background: rgba(255,255,255,1);
    font-size: 15px;
    position:  absolute;
    bottom: 0;
    cursor: pointer;
    color: #000;
}
.explore-project .select-wrp{
    width: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.explore-project .select-wrp ul{
    bottom: auto;
}
.explore-project .select-wrp span, .explore-project .select-wrp span::after {
    color: #000;
    border-color: #000;
}
body.fp-viewing-2 header .logobtn-wrp{
    display: none;
}
body.fp-viewing-2 header .logobtn-wrp.region-logobtn-wrp{
    display: flex;
}
body.fp-viewing-1 header .logobtn-wrp.region-logobtn-wrp{
    display: none;
}
#f-projects .fp-tableCell {
    background-color: #167bbf;
    justify-content: space-between;
    flex-direction: row;
}
#f-projects.section .fp-tableCell::before{
    display: none;
}
#f-projects .left{
    width: 20%;
    height: 100%;
    padding: 10% 40px 0;
    /*background-color: #0f79c1;*/
    background-color: #a7d141;
}
#f-projects .left h6{
    font-family: 'Gotham';
    font-size: calc(13px + 1vw);
    font-weight: normal;
    text-transform: uppercase;
    margin-top: calc(100vh - 150%);
    display: block;
}
#f-projects .left h6 small{
    font-size: calc(13px + .3vw);
    display: block;
}
#f-projects .right{
    width: 80%;
    height: 100%;
}
.cityslider .owl-item::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background: rgba(0,0,0,1);
    background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0 );
}
.cityslider .owl-item > div{
    height: 100vh;
}
.cityslider.owl-carousel .owl-item img{
    max-width: fit-content;
    height: 100vh;
}
.cityslider.owl-carousel .owl-dots{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 6%;
}
.cityslider.owl-carousel .owl-dots .owl-dot span{
    background-color: transparent;
    border: 1px solid #fff;
}
.cityslider.owl-carousel .owl-dots .owl-dot.active span, .cityslider.owl-carousel .owl-dots .owl-dot:hover span{
    background-color: #fff;
}
.cityslider .owl-nav .owl-next:hover{
    cursor: url(../images/next-arw.png), auto;
}
.cityslider .owl-nav .owl-prev:hover{
    cursor: url(../images/prev-arw.png), auto;
}
.cityslider .owl-nav .owl-next.disabled, .cityslider .owl-nav .owl-prev.disabled {
    display: none;
}
.cityslider .discription{
    position: absolute;
    bottom: 20%;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.cityslider .discription .project-logo {
    display: none;
    height: auto;
    position: fixed;
    top: 15px;
    right: 5%;
    max-width: 200px !important;
}
body.fp-viewing-2 .cityslider .discription .project-logo {
    display: block;
}
.cityslider .discription .project-logo img {
    height: auto;
}
.cityslider .owl-item .btn-wrp{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 40%;
}
.cityslider .owl-item .btn-wrp a{
    padding: 12px 40px;
    border-radius: 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}
.cityslider .discription > span, .cityslider .discription p{
    display: none;
}
.cityslider .owl-item .btn-wrp a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s;
    border-radius: 20px;
}
.cityslider .owl-item .btn-wrp a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #167bbf;
    transition: all 0.3s;
    -webkit-transform: scale(0.5,0.5);
    transform: scale(0.5,0.5);
    border-radius: 20px;
}
.cityslider .owl-item .btn-wrp a:first-child::before{
    background-color: #119148;
    border: 3px solid #119148;
}
.cityslider .owl-item .btn-wrp a:last-child::before{
    border: 3px solid #fff;
}
.cityslider .owl-item .btn-wrp a:hover::before {
    opacity: 0;
    -webkit-transform: scale(1.2,1.2);
    transform: scale(1.2,1.2);
}
.cityslider .owl-item .btn-wrp a:hover::after {
    opacity: 1;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}
.cityslider .owl-item .btn-wrp a span {
    position: relative;
    z-index: 3;
    display: block;
}
#f-projects .left .discription{
    position: absolute;
    top: 20%;
    z-index: 2;
    width: 16%;
    /*word-break: break-all;*/
}
#f-projects .left .discription span{
    font-size: 1.4vw;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 0;
    margin-bottom: 0;
    display: block;
    position: relative;
    transition: all 1s ease;
    /*opacity: 0;*/
    /*transform: translateY(-10px);*/
}
#f-projects .left .discription span.logo_sub_txt{
    font-size: 0.9vw;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
#f-projects .left .discription span.logo_sub_txt::after{
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #fff;
    bottom: 0;
    left: 0;
}

#f-projects .left .discription p{
    font-size: calc(12px + .1vw);
    transition: all 1.5s ease;
    /*opacity: 0;*/
    /*transform: translateY(-10px);*/
}
#f-projects .left .discription span.anim, #f-projects .left .discription p.anim{
    opacity: 1;
    transform: translateY(0);
}
#f-projects .left .discription p.rera_txt, #f-projects .left .discription p.rera_url_txt {
    word-break: break-all;
}
#gallery .fp-tableCell{
    position: relative;
    background-image: url(../images/gallerybg.jpg);
}

.video-item a.playicn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: none;
    pointer-events: none;
}
.owl-item.active.center .video-item a{
    display: block;
}
.video-item a.playicn::after,.video-item a.playicn::before {
    width: 100px;
    height: 100px;
    zoom:1;filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    transform: translateZ(0);
    transition: box-shadow .4s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    content: '';
    pointer-events: none;
    box-shadow: 0 0 0 2px rgba(255,255,255,.5)
}
.video-item a.playicn::before {
    animation: anim-effect-ivana-one 2s infinite
}
.video-item a.playicn::after {
    animation: anim-effect-ivana-two 2s infinite
}
@keyframes anim-effect-ivana-one {
    0% {
        opacity: 0;
        transform: scale3d(.5,.5,1)
    }
    80% {
        opacity: 1;
        transform: scale3d(1.2,1.2,1)
    }
    100% {
        opacity: 0;
        transform: scale3d(1.2,1.2,1)
    }
}
@keyframes anim-effect-ivana-two {
    0% {
        opacity: 0;
        transform: scale3d(.8,.8,1)
    }
    70% {
        opacity: 1;
        transform: scale3d(1.4,1.4,1)
    }
    100% {
        opacity: 0;
        transform: scale3d(1.4,1.4,1)
    }
}
.video-content{
    overflow: hidden;
    transition: 1s;
    cursor: pointer;
}
.owl-carousel .owl-item .video-content  img{
    height: calc(100% - 30px);
    border: 8px solid #fff;
}

.videoslider .owl-item .video-item{
    transform: scale(.8);
    transform-origin: left center;
    pointer-events: none;
}
.videoslider .owl-item.center .video-item{
    transform: scale(1);
    pointer-events: all;
}
.videoslider .owl-item.center ~ .owl-item .video-item{
    transform-origin: right center;
}

.video360tour .owl-item .video-item{
    transform: scale(.8);
    transform-origin: left center;
    pointer-events: none;
}
.video360tour .owl-item.center .video-item{
    transform: scale(1);
    pointer-events: all;
}
.video360tour .owl-item.center ~ .owl-item .video-item{
    transform-origin: right center;
}

#about .fp-tableCell{
    background-image: url(../images/aboutbg.jpg);
    text-align: center;
}
#about p{
    color: #fff;
    width: 70%;
    margin: 30px auto;
    animation-delay: .7s;
}
#about h4{
    animation-delay: 1s;
}


#contact .fp-tableCell{
    background-image: url(../images/contactbg.jpg);
}
#contact .container{
    flex-direction: row;
    justify-content: space-between;
    align-items: initial;
}
#contact .column{
    max-width: 25%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.4);
    display: flex;
    opacity: 0;
    min-height: 140px;
}
#contact .column > div:last-child {
    display: flex;
    flex-direction: column;
    width: 90%;
}
#contact .column > div:first-child{
    width: 30px;
    margin-right: 10px;
}
#contact .column:nth-child(2){
    animation-delay: .4s;
}
#contact .column:nth-child(3){
    animation-delay: .8s;
}
#contact .column:nth-child(4){
    animation-delay: 1.2s;
}
#contact .heading{
    animation-delay: 1.6s;
}
#contact .column > div span{
    font-family: 'Gotham';
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
#contact .column > div p a{
    display: block;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
#contact .column > div p {
    font-size: calc(13px + .2vw);
}

#footer, #footer p{
    font-size: 12px;
    overflow-y: visible;
}
#footer .fp-tableCell{
    flex-direction: column;
    background-color: #e2e2e2;
    color: #000;
}
#footer .fp-tableCell > .container{
    padding: 60px 0;
}
.f-bottom{
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 10px 0;
}
.f-bottom .container{
    flex-direction: row;
    justify-content: space-between;
}
#footer img{
    max-width: 180px;
}
#footer small:last-child{
    display: block;
    margin-top: 10px;
}
#footer.section .fp-tableCell:before, #footer.down.section::after, #footer.up.section::after{
    display: none;
}
#footer .fp-tableCell > .container {
    overflow: auto;
    height: 90vh;
    padding: 130px 0 10px;
    margin-top: 10px;
    justify-content: flex-start;
    display: block;
}

/* Side form */
.enquire-form-slide {
    /*background-color: #1b85c1;*/
    background-color: #1bbebc;
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 30px;
    position: fixed;
    right: -255px;
    top: 25%;
    z-index: 3;
    border-radius: 0 0 0 30px;
    box-shadow: -5px 0px 0 #fff;
    transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95) .8s;
}

.enquire-form-slide.active {
    right: 0;
}
/*.enquire-form-slide.active.fixed_center {
    left: 0;
    border-radius: 10px;
    max-width: 300px;
}*/
.enquire-form-slide .enq-toggle {
    display: inline-block;
    position: fixed;
    top: 50%;
    right: 0;
    cursor: pointer;
    z-index: 1;
    opacity: 1;
    transform: translateY(-50%);
    transition: all .4s ease .4s;
}
.enquire-form-slide.active .enq-toggle{
    right: -90px;
    opacity: 0;
    z-index: -1;
}
.enquire-form-slide .close-form {
    width: 20px;
    height: 22px;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 5px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    font-size: 20px;
}
.form-head {
    font-size: 14px;
    color: #fff;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    padding-bottom: 15px;
    display: block;
}
.enquire-form-slide .fieldwrapper {
    width: 100%;
    margin: 5px 10px 15px 0;
    position: relative;
}
.enquire-form-slide .fieldwrapper input, .enquire-form-slide .fieldwrapper select {
    width: 100%;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid rgba(247, 247, 247, 0.4);
    color: #fff;
    font-family: 'Gotham';
    font-size: 14px;
    line-height: 18px;
    height: 25px;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.enquire-form-slide .fieldwrapper select {
    background: url(../images/down-arrow.png) 96% center no-repeat transparent;
    /*padding-right: 40px;*/
}
.enquire-form-slide .fieldwrapper select option {
    color: #000;
    font-size: 12px;
    background: rgba(27, 133, 193, 0.09);
}

.form_offer_text{
    display: none;
    padding: 5px;
    text-align: center;
}
input::-webkit-input-placeholder {
    color: #fff;
}
input::-moz-input-placeholder {
    color: #fff;
}
.form-cta-btn {
    float: none;
    margin: 0 auto;
    text-align: center;
}
.form-cta-btn a {
    display: block;
    padding: 10px 20px;
    margin: 0 auto;
    border: none;
    background-color: #fff;
    color: #0076b9;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    border-radius: 0 10px;
}
.form-cta-btn a {
  background-position: center;
  transition: background 0.8s;
}
.form-cta-btn a:hover {
  background: #afd8f9 radial-gradient(circle, transparent 1%, #afd8f9 1%) center/15000%;
}
.form-cta-btn a:active {
  background-color: #6eb9f7;
  background-size: 100%;
  transition: background 0s;
}
.enquire-form-slide .fieldwrapper.form-cta-btn input:hover {
    background-color: #1783ce;
}
.enquire-form-slide .fieldwrapper.homeally_dwnld_checklist {
    display: flex;
    justify-content: space-between;
    
}
.enquire-form-slide .fieldwrapper.homeally_dwnld_checklist input {
    background-image: url(../images/homeally_checkbox.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    border: none;
    width: 34px;
    height: 11px;
    border: none;
    margin-right: 10px;
    margin-top: 3px;
    display: block;
}
.enquire-form-slide .fieldwrapper.homeally_dwnld_checklist input:checked {
    background-image: url(../images/homeally_checkbox_checked.png);
    background-repeat: no-repeat;
    background-position: 0 0;
}
.enquire-form-slide .fieldwrapper.homeally_dwnld_checklist span {
    font-size: 12px;
    line-height: 18px;
}
::-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;
}

.enquire-form-slide.active2 #toggle-btn {
        display: none;
    }
    .enquire-form-slide.active2 {
        max-width: 300px;
        bottom: 25%;        
        top: auto;
        right: 0;
        left: 0;
    }

    .enquire-form-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
    }
    .enquire-form-overlay.active2 {
        display: block;
    }

.form_offer_txt {
    display: none;
    text-align: center;
    color: #fff;
    padding: 5px;
}  
.enquire-form-slide.active2 .form_offer_txt {
    display: block;
}    



/* Inside page */
#proj-home-wrp.section .fp-tableCell{
    align-items: flex-end;
}
#proj-home-wrp span{
    position: relative;
    padding-bottom: 100px;
    animation-delay: 1s;
    text-align: center;
}
.download_brochure {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 25px;
    display: block;
    padding: 10px 0;
    margin: 0 auto;
    border: none;
    background-color: #fff;
    color: #0076b9;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    border-radius: 0 10px;
    width: 100%;
    max-width: 240px;
    text-align: center;
}
.download_brochure a {
    color: #0076b9;  
}
#mobi-toggle-btn, #homemobi-toggle-btn {
    display: none !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 25px;
    display: block;
    padding: 10px 0;
    margin: 0 auto;
    border: none;
    background-color: #fff;
    color: #0076b9;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    border-radius: 0 10px;
    width: 100%;
    max-width: 240px;
    text-align: center;
}
#project-overview .container{
    padding: 0 10%;
    text-align: center;
}
#project-overview p.first{
    animation-delay: 1s;
}
#project-overview .heading2{
    animation-delay: 1.3s;
}
#project-overview p:last-child{
    animation-delay: 1.6s;
}
h2{
    font-size: 4vw;
    font-family: 'GothamUltra';
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4%;
}
.heading2{
    font-weight: 700;
    margin: 30px 0; 
}
.five-colmns h2 small{
    font-size: unset;
    font-family: 'Gotham';
    font-weight: normal;
    margin-right: 10px;
}
.five-colmns .column-wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.five-colmns .column{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 33%;
    margin-bottom: 4%;
    opacity: 0;   
}
.section.active .column{
    animation: fadedin 1.5s forwards;
}
.five-colmns .column:first-child{
    animation-delay: 1s;
}
.five-colmns .column:nth-child(2){
    animation-delay: 1.3s;
}
.five-colmns .column:nth-child(3){
    animation-delay: 1.6s;
}
.five-colmns .column:nth-child(4){
    animation-delay: 1.9s;
}
.five-colmns .column:last-child{
    animation-delay: 2.1s;
}
.five-colmns .column span{
    margin-top: 10px;
}

#amenities-gallery .owl-item .item{
    transform: scale(.8);
    transform-origin: left center;
    font-family: 'Gotham';
    font-weight: bold;
}
#amenities-gallery .owl-item.center .item{
    transform: scale(1);
}
#amenities-gallery .owl-item.center ~ .owl-item .item{
    transform-origin: right center;
}
#amenities-gallery .owl-item .item{
    position: relative;
    background-color: #fff;
    color: #000;
    padding: 10px;
    display: block;
    pointer-events: none; 
}
#amenities-gallery .owl-item.active.center .item > a{
    pointer-events: all;
}
#amenities-gallery .owl-item .item span {
    margin: 10px 0 0 30px;
    display: block;
}
[class*=slider] .owl-nav{
    display: block;
}
[class*=slider] .owl-nav [class*=owl-] {
    width: 25%;
    height: 80%;
    position: absolute;
    top: 10%;
    font-size: 0;
    cursor: pointer;
    transition: all .5s ease;
}
[class*=slider] .owl-nav .owl-next{
    right: 0;
}


/* Offer popup start */
.offer-popup-wrp{
  display: none;
  position: relative;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.offer-popup-wrp.offer-popup-active{
  display: flex;
}
.offer-popup-overlay{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
}
.offer-popup-wrp .content-wrp {
  width: 40%;
  background-color: #000000b3;
  flex-direction: column;
  border-radius: 5px;
  padding: 40px 10px 30px;
  position: relative;
}
.offer-popup-wrp .offer-popup-text {
  font-size: 2vw;
  line-height: normal;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 0;
}
.offer-popup-wrp .close-btn{
  position: absolute;
  right: 8px;
  top: 4px;
  color: #fff;
  font-size: 1.6vw;
  font-weight: 800;
  cursor: pointer;
}
@media only screen and (max-width : 767px){
    .offer-popup-wrp .content-wrp {
        width: 90%;
        padding: 30px 10px 20px;
    }
    .offer-popup-wrp .offer-popup-text {
        font-size: 4.8vw;
    }
    .offer-popup-wrp .close-btn{
        font-size: 20px;
    }
}
/* Offer popup end */

@media only screen and (min-width: 1400px){
    .cityslider.owl-carousel .owl-item img{
        max-width: 100%;
    }
}
@media only screen and (max-width: 1024px){
    #contact .container{
        flex-wrap: wrap;
    }
    #contact .column{
        max-width: 46%;
        width: 46%;
        margin-bottom: 20px;
    }
    .cityslider .owl-item .btn-wrp {
        width: 50%;
    }

}

@media only screen and (max-width: 768px), (max-width: 1024px) and (orientation: portrait){
    .fp-controlArrow{
        font-size: 0;
    }
    .explore-project .select-wrp {
        width: 40%;
    }
    #f-projects .fp-tableCell{
        flex-direction: column;
    }
    #f-projects .left{
        width: 100%;
        height: auto;
        padding-bottom: 30px;
        padding-top: 120px;
        text-align: center;
    }
    #f-projects .left h6{
        margin-bottom: 30px;
        position: absolute;
        bottom: 10%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    #f-projects .left h6 small{
        display: inline-block;
        margin-right: 5px;
    }
    #f-projects .left .discription {
        width: 100%;
        padding: 40px;
        left: 0;
        top: 7vh;
    }
    #f-projects .left .discription span.logo_sub_txt::after{
        right: 0;
        margin: 0 auto;
        max-width: 350px;
    }
    #f-projects .right{
        width: 100%;
        margin-top: 35%;
    } 
    .select-wrp {
        margin: 0 auto;
        text-align: left;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 10%;
    }
    .cityslider.owl-carousel .owl-stage-outer{
        overflow: visible;
    }
    .cityslider.owl-carousel .owl-item img, .cityslider .owl-item > div{
        height: auto;
    }
   .cityslider.owl-carousel .owl-item img {
        height: 25vh;
    }
    .cityslider.owl-carousel .owl-item .project-logo img {
        height: auto;
    }
    .cityslider .owl-item .btn-wrp {
        width: 60%;
        position: absolute;
        bottom: -36vh;
    }
    .cityslider .discription {
            top: 30%;
            bottom: auto;
    }
    .video-content{
        height: auto;
    }
    p{
        line-height: 18px;
    }
    h2{
        font-size: 7vw;
        margin-bottom: 15%;
    }
    #amenities-gallery .container{
        padding: 0 10%;
    }
    .five-colmns .column{
        width: 50%;
    }
    .five-colmns .column img {
        max-height: 35px;
        max-width: 40px;
    }
    .download_brochure {
        border-top: 1px solid #0076b9;
        bottom: 0;
        right: 0;
        left: auto;
        width: 50%;
        border-radius: 0;
        padding: 15px 0;
    }
    #mobi-toggle-btn {
        display: block !important;
        border: 1px solid #0076b9;
        bottom: 0;
        left: 0;
        right: auto;
        width: 100%;
        max-width: none;
        border-radius: 0;
        padding: 15px 0;
    }
    #homemobi-toggle-btn {
        border: 1px solid #0076b9;
        display: block !important;
        bottom: 0;
        left: 0;
        right: auto;
        width: 100%;
        max-width: none;
        border-radius: 0;
        padding: 15px 0;
    }
    #toggle-btn {
        display: none;
    }
    .enquire-form-slide {
        max-width: 300px;
        bottom: -100%;
        top: auto;
        right: 0;
        left: 0;
    }
    .enquire-form-slide.active {
        bottom: 25%;        
    }
    
    .enquire-form-overlay.active {
        display: block;
    }
    .homeslider .slide1{
        background-image: url(../images/mobi-slide1.jpg);
    }
    .homeslider .slide2{
        background-image: url(../images/mobi-slide2.jpg);
    }
    .homeslider .slide3{
        background-image: url(../images/mobi-slide3.jpg)
    }
    #footer {
        padding-bottom: 48px;
    }
    #footer .fp-tableCell > .container {
        padding: 100px 0 20px;
    }

}

@media only screen and (max-width: 480px){
    header{
        padding: 5px 0;
    }
    header img{
        max-width: 150px;
    }
    header .logobtn-wrp img{
        max-width: 150px;
    }
    #home-wrp p {
        font-size: 3.5vw;
        line-height: 6vw;
        width: 75%;
    }
    #home-wrp .homeslider .owl-nav .owl-prev{
        left: 0;
    }
    #home-wrp .homeslider .owl-nav .owl-next {
        right: 0;
     }
    #home-wrp .homeslider .owl-nav [class*=owl-]:before {
        content: '';
        width: 20px;
        height: 15px;
        background-size: contain;
    }
    #home-wrp .homeslider .owl-nav [class*=owl-]:after{
        display: none;
    }
    #project-overview .container{
        padding: 0 0%;
    }
    #overview p, #about p{
        width: 90%;
        margin: 15px 0;
        line-height: 17px;
        font-size: calc(12px + .1vw);
    }
    .explore-project .select-wrp {
        width: 65%;
    }
    .explore-project .container{
        margin-bottom: 35%;
    }
    #f-projects .left{
        padding-top: 70px;
        padding-bottom: 10px;
    }
    #f-projects .left h6 {
        margin-bottom: 40px;
    }
    #f-projects .left .discription{
        padding: 30px 10px;
    }
    #f-projects .left .discription p {
        line-height: 16px;
    }
    #f-projects .left .discription span{
        font-size: 18px;
        
    }
    #f-projects .left .discription span.logo_sub_txt {
         font-size: 12px;
         padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .cityslider .owl-item .btn-wrp{
        width: 90%;
        bottom: -23vh;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .cityslider .owl-item .btn-wrp a{
        padding: 10px 30px;
        font-size: 11px;
    }
    #f-projects .right{
        margin-top: 40%;
    }
    .amenityslider .owl-dots{
        text-align: center;
    }
    #about img{
        max-width: 70%;
    }
    #about h4{
        font-size: 16px;
    }
    #contact .column {
        max-width: 100%;
        width: 100%;
        padding: 8px;
        margin-bottom: 8px;
    }
    #contact .column > div span{
        margin-bottom: 10px;
        font-size: 16px;
    }
    .f-bottom .container{
        flex-direction: column;
    }
    #footer p{
        margin-bottom: 10px;
    }
    #footer .fp-tableCell > .container{
        padding-bottom: 40px;
    }
    .five-colmns .column {
        margin-bottom: 5%;
    }
    .enquire-form-slide .enq-toggle{
        top: 30%;
        width: 35px;
    }
    .form_offer_txt {
            display: block;
        }    
    
}
@media screen and (max-height: 300px) {

    .enquire-form-slide {
        overflow-y: scroll;
        height: 300px;
        position: absolute;
        bottom: auto;
        top: 0;
    }
}