body {
    font-family: 'Poppins', sans-serif;
    color: #444444;
    font-weight: 400;
}
a {
    color: #4c3b32;
}
a:hover {
    color: #4c3b32;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.main-body button:focus {
    outline: none;
}
.panel-heading [data-toggle="collapse"]:after {
    font-family: 'fontawesome';
    content: "\f054";
    /* "play" icon */
    float: right;
    font-size: 13px;
    line-height: 22px;
    /* rotate "play" icon from > (right arrow) to ^ (up arrow) */
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #fff;
}
.panel-heading [data-toggle="collapse"].collapsed:after {
    /* rotate "play" icon from > (right arrow) to down arrow */
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.btn-get-started {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .5px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 0px;
    transition: 0.5s;
    color: #fff;
    background: #002c5b;
}
.btn-get-started:hover {
    background:#43c3ce;
    color: #fff;
}
.carousel-indicators li {
    background-color: #002c5b;
}
.carousel-indicators .active {
    background-color: #43c3ce;
}
/*--------------------------------------------------------------# Back to top button--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 55px;
    z-index: 99999;
}
.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-color: #43c3ce;
    color: #fff;
    transition: all 0.4s;
}
.back-to-top i:hover {
    background: #43c3ce;
    color: #fff;
}

/*----------------------------------------
* #Header
----------------------------------------*/
#header {
    height: 85px;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
}
#header.header-transparent {
    background: transparent;
}
#header.header-scrolled,
.fixed-top {
    background: #fff;
    height: 70px;
    -webkit-box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
    box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
}
#header .logo a {
    display: block;
}
#header .logo img {
    padding: 0;
    margin: 0px;
    width: 150px;
    margin-top: 0px;
}
#header.fixed-top .logo img {
    width: 100px;
}

/*----------------------------------------
* #Navigation Menu
----------------------------------------*/

/* Desktop Navigation */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}
.nav-menu a {
    display: block;
    position: relative;
    color: #002c5b;
    padding: 10px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}
.nav-menu ul li:last-child a {
    padding-right: 0;
}
.nav-menu a:hover, 
.nav-menu .active > a, 
.nav-menu li:hover > a {
    color: #43c3ce;
    text-decoration: none;
}
.nav-menu > ul > li >a:before,
.nav-menu > ul > li >a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    visibility: hidden;
    width: 0px;
    transition: all 0.2s ease-in-out 0s;
}
.nav-menu>ul>li>a:before {
    background-color: #43c3ce;
    left: 16px;
}
.nav-menu>ul>li>a:after {
    background-color: #002c5b;
    left: 26px;
}
.nav-menu a:hover:before, 
.nav-menu li:hover > a:before, 
.nav-menu .active > a:before,
.nav-menu a:hover:after, 
.nav-menu li:hover > a:after, 
.nav-menu .active > a:after {
    visibility: visible;
    width: 10px;
}
.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 25px;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}
.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    border-radius: 5px;
}
.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}
.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #01036f;
}
.nav-menu .drop-down ul a:hover, 
.nav-menu .drop-down ul .active>a, 
.nav-menu .drop-down ul li:hover>a {
    color: #4c3b32;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}
.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 30px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}
.mobile-nav-toggle i {
    color: #cccccc;
}
.mobile-nav {
    position: fixed;
    top: 83px;
    right: 15px;
    height: 520px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.9);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
    text-align: center;
    font-weight: bold ! important;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 50px;
}
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav a {
    display: block;
    position: relative;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}
.mobile-nav a:hover, .mobile-nav .active>a, .mobile-nav li:hover>a {
    color: #41c2ce;
    text-decoration: none;
    font-weight: bold;
}
.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}
.mobile-nav .drop-down>a {
    padding-right: 35px;
}
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}
.mobile-nav .drop-down li {
    padding-left: 20px;
}
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgb(0 0 0 / 70%);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*------------------------------------
* #Sections General
--------------------------------------*/
.section-bg {
    background-color: #f6f6f6;
}
.section-title {
    padding-bottom: 30px;
}
.section-title h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0.5px;
    color: #7d8791;
    text-transform: uppercase;
}
.section-title h2 {
    font-family: "Poppins",Arial,Helvetica,sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 36px;
    line-height: 46px;
    color: #002c5b;
    position: relative;
    padding-bottom: 20px;
}
.section-title h2::before,
.section-title h2::after {
    content: "";
    width: 32px;
    height: 5px;
    position: absolute;
    bottom: 0;
}
.section-title h2::before {
    background-color: #002c5b;
    left: 0;
}
.section-title h2::after {
    background-color: #43c3ce;
    left: 32px;
}
.section-title p {
    margin: 0;
    margin: 0;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    color: #535e6c;
    line-height: 42px;
}

/*---------------------------------
* #Project Overview
-----------------------------------*/
.project-overview {
    padding-top: 70px;
    padding-bottom: 70px;
}
.project-overview .row img {
    padding: 6px;
    border: 1px solid #ebebeb;
}
.download-brochure {
    margin-top: 20px;
}
.download-brochure span {
    margin-bottom: 5px;
    margin-right: 5px;
    display: block;
    font-size: 15px;
}

/*--------------------------------
* VTP Highlights Section
---------------------------------*/
.vtp-higlights-section {
    padding-top: 60px;
    padding-bottom: 50px;
    background-image: url(../img/row-bg-sixth.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.vtp-higlights-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.vtp-higlights-list li {
    padding: 0 0 15px 25px;
    position: relative;
    color: #002c5b;
    font-weight: 600;
    font-size: 16px;
}
.vtp-higlights-list li:before {
    content: "\eab9";
    width: 18px;
    height: 18px;
    background-color: #43c3ce;
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 50%;
    font-family: IcoFont!important;
    color: #fff;
    text-align: center;
    line-height: 18px;
    transform: rotate(180deg);
    font-weight: 100;
}
.vtp-higlights-list ul li {
    padding: 5px 0 0px;
}
.vtp-higlights-list ul li:before {
    display: none;
}

/*--------------------------------
* Amenities Section
---------------------------------*/
.amenities-section {
    padding-top: 70px;
    padding-bottom: 50px;
    background-image: url(../img/row-bg-fifth.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.amenities-section .row .icon-box {
    z-index: 5;
}
.amenities-section .row .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    border-top: 44px solid #fff;
    border-left: 44px solid #468BAC;
    width: 0;
    transform: rotate(90deg);
    z-index: -1;
}
.amenities-section .row .icon-box h3 {
    font-size: 18px;
    line-height: 28px;
    color: #002c5b;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    text-transform: capitalize;
    padding: 15px 20px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 12px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 10px 0 rgb(43 52 59 / 10%);
}
.amenities-section .row .icon-box h5 {
    position: absolute;
    margin-bottom: 0;
    top: 0px;
    font-size: 16px;
    padding: 3px 4px 0;
    color: #fff;
}

/*--------------------------------
* Specifications Section
---------------------------------*/
.specifications-section {
    padding-bottom: 60px;
    padding-top: 50px;
}

/*--------------------------------
* Floors Paln Section
---------------------------------*/
.floors-plan-section {
    padding-bottom: 15px;
    padding-top: 50px;
    background: url(../img/row-bg-first.jpg) no-repeat center center;
    background-size: cover;
}
.floors-plan-section .gallery-item {
    box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.10);
}
.floors-plan-section .row .row .col-lg-6 .gallery-item img {
    filter: blur(9px);
    -webkit-filter: blur(9px);
}
.floors-plan-section .co-lg-6 .section-title h2:before, 
.floors-plan-section .co-lg-6 .section-title h2:after {
    display: none;
}
.floors-plan-section .co-lg-6 .section-title h2 {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 34px;
}

/*--------------------------------
* Gallery Section
---------------------------------*/
.gallery-section {
    padding-top: 60px;
    padding-bottom: 15px;
}

/*--------------------------------
* Location Section
---------------------------------*/
.section-location {
    padding-bottom: 60px;
    padding-top: 40px;
    background-image: url(../img/row-bg-second.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.location-advantages h4 {
    font-size: 21px;
    font-weight: 600;
    color: #002c5b;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px;
}
.section-location .img-fluid {
    padding: 5px;
    box-shadow: 0px 0px 5px 0px #ebebeb;
}
.section-location .btn-get-started {
    margin-top: 30px;
}

/*--------------------------------
* Contact Section
---------------------------------*/
.contact-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.contact-section .info {
    font-size: 15px;
}
.contact-section .info .email, 
.contact-section .info .phone {
    margin-top: 40px;
}
.contact-section .info i {
    font-size: 20px;
    color: #fff;
    display: block;
    width: 40px;
    height: 40px;
    background: #002c5b;
    text-align: center;
    line-height: 40px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.contact-section .info .social-links .icofont-instagram {
    font-size: 16px;
}
.contact-section .info .social-links .icofont-facebook {
    font-size: 18px;
}
.contact-section .info .contact-icon {
    margin-right: 15px;
}
.contact-section .info a {
    color: #002c5b;
    font-weight: 500;
}
.contact-section .info a:hover {
    color: #43c3ce;
}
.contact-section .info .social-links a:hover i {
    background: #43c3ce;
}
.contact-section .info .follow-us-wrap {
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,.1);
    margin-top: 30px;
}
.contact-section .info .follow-us-wrap h4 {
    font-size: 16px;
}
.contact-section strong {
    color: #002c5b;
}

/*Enquiry Form*/
.quick-enquiry-form .form-group {
    margin-bottom: 15px;
}
.super-checkbox .super-field-wrapper > .super-item {
    padding: 5px 25px 5px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
    font-size: 14px;
}
.super-item input[type=checkbox] {
    visibility: hidden;
}
.checkbox-after {
    position: absolute;
    top: 6px;
    left: 0;
    height: 18px;
    width: 18px;
    border: 2px solid #4EB1B6;
    border-radius: 4px;
}
.checkbox-after:after {
    content: "";
    position: absolute;
    display: none;
}
.super-item input:checked ~ .checkbox-after:after {
    display: block;
}
.super-item .checkbox-after:after {
    left: 2px;
    top: 2px;
    width: 10px;
    height: 10px;
    background-color: #4EB1B6;
    border-width: 4px 4px 4px 4px;
}

/*--------------------------------
* Popup Modal
---------------------------------*/
.modal-content {
    padding-top: 20px;
    padding-bottom: 10px;
    border: none;
}
.modal-content h5 {
    font-weight: 600;
    color: #002c5b;
    margin-bottom: 25px;
}
.modal-content .icofont-close {
    position: absolute;
    top: 0px;
    right: 0;
    font-size: 20px;
    background-color: #468bac;
    color: #fff;
    padding: 2px 5px;
    border-top-right-radius: 4.8px;
    cursor: pointer;
}

/*---------------------------
* Call To Action
----------------------------*/
.call-to-action {
    background-color: #002c5b;
    padding-top: 40px;
    padding-bottom: 40px;
}
.call-to-action h2 {
    text-transform: uppercase;
    line-height: 34px;
    font-size: 24px;
}
.call-to-action small {
    color: #fff;
    font-size: 16px;
}
.call-to-action .btn-get-started {
    background-color: #43c3ce;
    font-size: 15px;
    text-transform: uppercase;
}
.call-to-action .btn-get-started:hover {
    background: #fff;
    color: #002c5b;
}

/*---------------------------
* Location
----------------------------*/
.location-advantages .fa {
    padding-right: 5px;
}

/*---------------------------
* Modal & Forms
----------------------------*/
.modal-body .form-control,
.quick-enquiry-form .form-control {
    font-size: 14px;
}
.modal-body input.form-control,
.quick-enquiry-form input.form-control {
    height: calc(1.9em + .75rem + 5px);
}
.modal-body .form-control:focus,
.quick-enquiry-form .form-control:focus {
    border-color: #002c5b;
    box-shadow: unset;
}
.enquiry-submit-btn-wrap {
    display: flex;
    justify-content: center;
}
.enquiry-submit-btn-wrap button {
    margin-right: 20px;
    width: 100%;
    max-width: 120px;
}
.enquiry-submit-btn-wrap button:last-child {
    margin-right: 0;
}

/*--------------------------------
* Footer
---------------------------------*/
#footer {
    background-image: url(../img/footer-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #fff;
    font-size: 14px;
}

/*First Footer*/
.first-footer {
    background-color: #003063;
}
.first-footer-inner {
    padding: 27px 0 27px;
}
.first-footer .footer-logo img {
    max-width: 98px;
}
.first-footer .call-us-now-box {
    padding-left: 45px;
}
.first-footer .call-us-now-box .col-lg-8 {
    padding-left: 70px;
}
.first-footer .call-us-now-box .col-lg-8:before {
    content: "";
    background-image: url(../img/email-white.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 52px;
    height: 52px;
    position: absolute;
    left: 0;
}
.first-footer-inner .call-us-heading {
    font-size: 26px;
    font-weight: 600;
}
.first-footer .call h4 {
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
}

.footer-section .bottom-footer-text {
    background-color: #003063;
}

.second-footer-inner {
    margin: 70px 0 50px;
}
.second-footer-inner .widget-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 25px;
}
.second-footer-inner .contact-number {
    font-size: 15px;
    margin-bottom: 50px;
    color: #fff;
}
.second-footer-inner .contact-number .icofont-phone {
    color: #43c3ce;
    font-size: 20px;
    margin-right: 4px;
    display: inline-block;
    position: relative;
    top: 2px;
}
#footer .bottom-footer-text .copyright {
    text-align: center;
    padding-top: 23px;
    padding-bottom: 23px;
}

/*--------------------------------
* @Media
---------------------------------*/
@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

@media (min-width:800px) and (max-width: 2500px) {
    .dontdisplaylg {
        display: none !important;
    }
    #top-bar {
        display: block !important;
    }
}

@media (max-width:  799px) {
    #footer {
        margin-bottom: 40px;
    }
    .second-footer-inner {
        margin: 40px 0 30px;
    }
    .second-footer-inner .contact-number {
        margin-bottom: 40px;
    }
}

@media (max-width:  991px) {
    [data-aos^=fade][data-aos^=fade].aos-animate,
    .main-body .aos-init.aos-animate {
        transform: unset !important;
        transition-timing-function: unset !important;
        transition-duration: unset !important;
        transition-property: unset !important;
    }
    .section-title h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .location-advantages h4 {
        font-size: 18px;
    }
    .vtp-higlights-list li {
        font-size: 15px;
    }
    .floors-plan-section {
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .section-location {
        padding-bottom: 10px;
    }
    .call-to-action small {
        display: block;
        margin-bottom: 20px;
    }
    .amenities-section .row .icon-box:before {
        border-top: 36px solid #fff;
        border-left: 36px solid #468BAC;
    }
    .amenities-section .row .icon-box h5 {
        font-size: 13px;
    }
    .specifications-section {
        padding-bottom: 0px;
        padding-top: 40px;
    }
    .section-location .location-desc {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    #header,
    #header.header-scrolled, #header.fixed-top {
        background: #fff;
        -webkit-box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
        -moz-box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
        box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
        height: 55px;
        z-index: 997;
    }
    .mobile-nav-toggle {
        top: 18px;
    }
    #header .logo img {
        padding: 0;
        margin: 0px;
        width: 84px;
        margin-top: 0px;
    }
    .floors-plan-section .co-lg-6 .section-title h2 {
        padding-top: 15px;
    }
    .section-title h2, 
    .floors-plan-section .co-lg-6 .section-title h2 {
        font-size: 28px;
        line-height: 34px;
    }
    .section-title h2::before, .section-title h2::after {
        width:  25px;
    }
    .section-title h2::after {
        left: 25px;
    }
    .project-overview .row img {
        margin-bottom: 25px;
    }
    .first-footer .call-us-now-box .col-lg-8:before {
        width: 40px;
        height: 40px;
    }
    .first-footer-inner .call-us-heading {
        font-size: 22px;
    }
    .first-footer .call h4 {
        font-size: 20px;
    }
    .second-footer-inner {
        margin: 30px 0 25px;
    }
    .enquiry-form-wrap,
    .amenities-section {
        padding-top: 50px;
    }
    .section-location {
        padding-bottom: 25px;
    }
    .amenities-section .row .icon-box:before {
        border-top: 40px solid #fff;
        border-left: 40px solid #468BAC;
    }
    .amenities-section .row .icon-box h5 {
        font-size: 14px;
    }
    .second-footer-inner .contact-number {
        margin-bottom: 30px;
        color: #fff;
        font-weight: 600;
    }
    #footer {
        margin-bottom: 40px;
    }
    .call-to-action h2 {
        font-size: 18px;
        line-height: 24px;
    }
    .call-to-action small {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .first-footer .call-us-now-box {
        padding-left: 15px;
        margin-top: 30px;
    }
    .second-footer-inner .widget-title {
        font-size: 18px;
    }
    .first-footer .call-us-now-box .col-lg-8 {
        padding-left: 60px;
    }
}