html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: 0;
}

img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.valign {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.img-center {
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
}

.noscroll {
    overflow: hidden;
}

.static {
    position: static;
}

.nopadding {
    padding-left: 0px;
    padding-right: 0px;
}

.clear {
    clear: both;
}

* {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    ;
}

button:focus {
    outline: none;
}


/*** full-page js ***/

.fp-tableCell {
    display: block;
}


/****** Header CSS ******/

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5px 0px;
    /*    background-color: rgba(0,0,0,0.5);*/
    z-index: 999;
}

.add-bg {
    background-color: rgba(0, 0, 0, 1);
}

.add-bg .main-logo h1 a {
    color: #00aeef;
}

.main-logo img {
    max-width: 65%;
    display: none;
}

.main-logo h1 {
    margin-top: 6px;
}

.main-logo h1 a {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.hr-nav {
    text-align: center;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.d-block {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.hr-nav ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.hr-nav ul li {
    display: inline-block;
    margin: 20px 10px;
}

.hr-nav ul li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 16px;
}

.hr-nav ul li a:hover {
    color: #00aeef;
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}


/* Icon 4 */

#nav-icon4 {
    width: 35px;
    height: 32px;
    position: relative;
    margin: 8px auto;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    float: right;
}

#nav-icon4 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #d3531a;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon4 {}

#nav-icon4 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
    top: 19px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

#nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 22px;
    left: 8px;
}


/*** hamburger-icon ***/

.hamburger-icon {
    display: inline-block;
    float: right;
    margin: 5px;
}

.hamburger-icon img {
    margin-bottom: 8px;
}

.hamburger-icon:hover {
    cursor: pointer;
}

.hamburger-icon span {
    margin-right: 5px;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin-top: 12px;
    display: inline-block;
}

/***** footer-wrapper ****/

.footer-wrapper {
    background-color: #000;
    padding: 10px 0px;
}

.footer-wrapper p,
.footer-wrapper p a {
    color: #fff;
    margin: 0px;
}

.footer-wrapper p.right {
    text-align: right;
}

/**** menu-wrapper ***/

.menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    z-index: 999999;
    /*
    -webkit-transition: opacity 2s linear;
    transition: opacity 2s linear;
*/
    display: none;
    opacity: 0;
    height: 100vh;
}

.open {
    display: block;
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.menu-content .logo {
    text-align: center;
}

.menu-content .logo img {
    max-width: 70%;
    display: none;
    /*
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 0.4s 0.2s ease-in-out;
    transition: all 0.4s 0.2s ease-in-out;
*/
}

.menu-content .logo h1, .menu-content .logo h1 a {
    color: #fff;
    font-size: 36px;
    margin-top: 0px;
}

.menu-wrapper .menu-content ul {
    text-align: center;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    margin-top: 100px;
}

.menu-wrapper .menu-content ul li {
    margin: 10px 0px;
    opacity: 1;
}

.menu-wrapper .menu-content ul li a {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.menu-content ul li a:hover {
    color: #F1531B;
    text-shadow: -1px -1px 0 #F1531B, 1px -1px 0 #F1531B, -1px 1px 0 #fff, 1px 1px 0 #F1531B;
    -webkit-transition: color .2s ease, text-shadow .2s ease;
    transition: color .2s ease, text-shadow .2s ease;
}


.menu-wrapper.open .menu-content .logo img {
    -webkit-animation: 1s .1s fadeInUp both;
    animation: 1s .1s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.one {
    -webkit-animation: 1s .2s fadeInUp both;
    animation: 1s .2s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.two {
    -webkit-animation: 1s 4s fadeInUp both;
    animation: 1s .4s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.three {
    -webkit-animation: 1s 6s fadeInUp both;
    animation: 1s .6s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.four {
    -webkit-animation: 1s .8s fadeInUp both;
    animation: 1s .8s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.five {
    -webkit-animation: 1s 1s fadeInUp both;
    animation: 1s 1s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.six {
    -webkit-animation: 1s 1.2s fadeInUp both;
    animation: 1s 1.2s fadeInUp both;
}

.close-line-wrapper {
    position: absolute;
    right: 30px;
    top: 30px;
    display: block;
    z-index: 99999;
    width: 40px;
    height: 70px;
}

.close-line {
    position: relative;
    width: 28px;
    height: 1px;
    -webkit-transition: all 1.2s linear;
    transition: all 1.2s linear;
}

.close-line:hover {
    cursor: pointer;
}

.close-line:before,
.close-line:after {
    content: "";
    background-color: #fff;
    width: 100%;
    height: 2px;
    top: 4px;
    display: block;
    left: 0;
    position: absolute;
    -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, .4);
    -webkit-transition: all 1.2s linear;
    transition: all 1.2s linear;
}

.menu-wrapper.open .close-line:before {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
    -webkit-transition: all 1.2s linear;
    transition: all 1.2s linear;
}

.menu-wrapper.open .close-line:after {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    -webkit-transition: all 1.2s linear;
    transition: all 1.2s linear;
}

ul.social {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    position: absolute;
    bottom: 10%;
    text-align: center;
    width: 100%;
}

ul.social li {
    display: inline-block;
    margin: 0px 10px;
}

ul.social li a {
    color: #fff;
    font-size: 20px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

ul.social li a:hover {
    color: #F1531B;
}

/****** Back To Top Button ******/

#button {
    display: inline-block;
    background-color: #00aeef;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    -webkit-transition: background-color .3s,
        opacity .5s, visibility .5s;
    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: 16px;
    line-height: 16px;
    color: #fff;
    margin-top: 5px;
    display: block;
}

#button:hover {
    cursor: pointer;
}
#button:hover:after {
    color: #000;
}

#button:active {
    background-color: #000;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/*** project-overview ***/

.project-name h1 {
    margin-top: 0px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.project-name h1:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -60px;
    width: 50px;
    height: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #F1531B;
}

.project-name h1:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    width: 50px;
    height: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #F1531B;
}

.project-overview {
    padding: 40px 0px;
}

.overview-content {
    margin-top: 40px;
}

.overview-content p {
    color: #000;
    font-size: 16px;
/*    text-align: center;*/
}

/**** amenities-wrapper ****/

.amenities-wrapper {
    padding: 40px 0px; 
    background-color: #ecebeb;
}

/**** amenities-section ****/

.amenities-section {
    margin-top: 50px;
}

.amenities-box .img-box {
    width: 80px;
    height: 80px;
/*
    padding: 15px;
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
*/
    display: inline-block;
    float: left;
    margin-right: 20px;
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.amenities-content {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.amenities-content p {
    color: #000;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0px;
}

.amenities-box:hover .img-box {
/*    border-radius: 50%;*/
/*
    padding: 10px;
    background-color: #26ABE6;
*/
}

/**** gallery-wrapper ****/

.gallery-wrapper {
    padding: 50px 0px;
}

#aniimated-thumbnials a {
    margin-bottom: 20px;
}

/**** location ****/

.location {
    padding: 0px 0px;
}

.map {
    border: 4px solid #00aeef;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 11px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    color: #fff;
    background-color: #000;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 15px 0;
    font-size: 16px;
    border-radius: 0px;
    border: 0px;
}

.kw-more {
    padding: 8px 14px;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00aeef;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: white;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.btn-default:hover {
/*    border-color: #00aeef;*/
}


.project-form {
    margin-top: 50px;
}


/*** galler css ***/

.gallery-img img {
    position: relative;
}

.galler-overlay {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.artist-impression {
    position: absolute;
    left: 20px;
    bottom: 5px;
    opacity: 1;
}

.artist-impression p {
    color: #000;
    font-size: 10px;
    margin-bottom: 0px;
    font-weight: 700;
    background-color: #fff;
    padding: 3px 4px;
}

.gallery-img:hover .galler-overlay {
    opacity: 1;
}

textarea {
    resize: none;
}

.top-banner { 
    /* ff3.6+ */ /* safari4+,chrome */ /* safari5.1+,chrome10+ */ /* opera 11.10+ */ /* ie10+ */
    background: -webkit-gradient(linear, left top, right top, from(rgba(188,145,188,1)), color-stop(57%, rgba(50,86,167,1)), to(rgba(34,54,117,1)));
    background: linear-gradient(90deg, rgba(188,145,188,1) 0%, rgba(50,86,167,1) 57%, rgba(34,54,117,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#BC91BC', endColorstr='#223675',GradientType=1 ); /* ie6-9 */
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}


.top-banner h1 {
    margin: 0px;
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.top-banner h1 small.one, .top-banner h1 small.two {
    margin-top: 15px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0px;
    display: block;
}

.top-banner h1 small.two {
    margin-top: 10px;
}

.top-banner h1 small:nth-child(2) {
/*    margin-top: 5px;*/
}

.t-right {
    text-align: right;
}

.know-more-patch p {
    color: #fff;
    text-align: center;
    font-size: 17px;
}

.know-more-patch p a {
    color: #fff;
}

.cta-btn {
    padding: 5px 12px;
    border: 2px solid #bf6767;
    margin-bottom: 9px;
    /* background-color: #bf6767; */
    text-align: center;
    width: 44%;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.cta-btn p {
    margin-bottom: 0px;
    color: #000;
    text-align: center;
}

.cta-btn p a {
    color: #337ab7;
}

.modal-header button {
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 26px;
}

.modal-body {
    height: 400px;
    overflow-y: scroll;
}

.modal-body p {
    text-align: justify;
}

.overview-box {
    position: relative;
}

.overview-box .artist-impression {
    right: 0px;
    left: auto;
}

.mg-top {
    margin: 25px 0px;
}

.mg-btm {
    margin-bottom: 30px;
}

/** sitemap-wrapper ***/

.sitemap-wrapper {
    margin: 50px 0px;
}

.sitemap-box h3 {
    margin: 0px;
    margin-bottom: 20px;
}

.sitemap-box ul {
    margin: 0px;
    padding-left: 15px;
}

.sitemap-box ul li {
    margin-bottom: 5px;
}

.sitemap-box ul li a {
    color: #000;
    font-size: 18px;
}

.lock-scroll {
    overflow: hidden;
    position: fixed;
}