@font-face {
    font-family: 'Centaur';
    src: url('../font/Centaur.woff2') format('woff2'),
    url('../font/Centaur.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Calibri_Light';
    src: url('../font/Calibri-Light.woff2') format('woff2'),
    url('../font/Calibri-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Calibri_Bold';
    src: url('../font/Calibri-Bold.woff2') format('woff2'),
    url('../font/Calibri-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham_Light';
    src: url('../font/Gotham-Light.woff2') format('woff2'),
    url('../font/Gotham-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root{
    --pimary-color:#04172e;
    --secondary-color:#513f35;
    --font-body: 'Calibri_Light', 'sans-serif';
    --font-storng: 'Calibri_Bold', 'sans-serif';
    --font-title: 'Centaur', 'sans-serif';
    --font-tagline: 'Gotham_Light', 'sans-serif';

}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: #383838;
    line-height: 1.5;
    overflow-x: hidden;
    background: #f8f4ee;
    letter-spacing: 0.5px;
}

input, select, button, a, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    transition: all 0.25s;
}
input{
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}
h1{
    font-family: var(--font-title);
    margin: 0;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: normal;
    line-height: normal;
}
h2{
    font-family: var(--font-body);
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: normal;
    line-height: normal;
}
h3{
    font-family: var(--font-body);
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: normal;
    line-height: normal;
}
b,strong{
    font-family: var(--font-storng);
}
p{
    margin-bottom: 0;
}
::selection {
    color: #ffffff;
    background: var(--secondary-color);
}
.container {
    padding: 0;
    position: relative;
}
.section_slideshow{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    position: relative;
}
.section_slideshow img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
.overlay_slideshow {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background: #00000075;
}
.overlay_slideshow:before{
    content: '';
    background: #000000;
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #00000000 0%, #00000066 100%);
}
.slide_show{
    position: relative;
}
.slide_show:before{
    content: '';
    background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    height: 300px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hamberger_menu {
    display: block;
    height: 70px;
    position: absolute;
    left: 50px;
}

.button_container {
    position: absolute;
    /*top: 0;*/
    /*bottom: 0;*/
    height: 18px;
    width: 30px;
    margin: auto;
    cursor: pointer;
    transition: all 1s;
    z-index: 15;
    right: auto;
    left: 0;
    top: 0;
    bottom: auto;
}
.button_container:before{
    content: 'Menu';
    position: absolute;
    left: 40px;
    color: #ffffff;
    top: 0;
    bottom: 0;
    font-size: 18px;
    line-height: 18px;
    font-family: var(--font-body);
}
.button_container.active:before{
    content: 'Close';
}

.button_container:hover {
    opacity: 1;
}

.button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #fff;
    width: 100%;
}

.button_container.active .middle {
    opacity: 0;
    background: #fff;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #fff;
}

.button_container span {
    background: #ffffff;
    border: none;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(1) {
    width: 100%;
}

.button_container span:nth-of-type(2) {
    top: 8px;
    width: 60%;
}

.button_container span:nth-of-type(3) {
    top: 16px;
}
.button_container:hover span:nth-of-type(2), .button_container.active span:nth-of-type(2){
    width: 100%;
}

.overlay {
    position: fixed;
    /*background-image: url('../images/icon/bg.jpg');*/
    background: #04172ecc;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: 9;
    transition: all 0.5s;
    overflow: hidden;
    display: grid;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    grid-template-columns: 1.3fr 2fr;
}

.overlay.open li {
    -webkit-animation: fadeInUp .9s ease forwards;
    animation: fadeInUp .9s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}

.overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

.overlay.open li:nth-of-type(10) {
    -webkit-animation-delay: .80s;
    animation-delay: .80s;
}

.overlay.open li:nth-of-type(11) {
    -webkit-animation-delay: .85s;
    animation-delay: .85s;
}

.overlay nav {
    position: relative;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    text-align: left;
    padding: 0 50px;
    margin-top: 75px;
}

.overlay ul {
    list-style: none;
    margin: 100px auto 0;
    position: relative;
    height: 100%;
    color: #ffffff;
    text-align: left;
    padding: 0 50px;
    z-index: 60;
    font-size: 20px;
    width: 100%;
}

.overlay ul li {
    display: block!important;
    position: relative;
    padding: 10px 0;
    opacity: 0;
    width: 100%;
    line-height: initial;
    height: auto;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    /*overflow: hidden;*/
    opacity: 0.5;
    text-transform: uppercase;
    transition: all 0.25s;
}

.overlay ul li a.active,
.overlay ul li a:hover,
.nav_mobile .overlay-menu .active {
    color: #ffffff;
    opacity: 1;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
    width: 100%;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}
.overlay .left{
    flex: 1;
    background: #000000c0;
    -webkit-backdrop-filter: saturate(0);
    backdrop-filter: saturate(0);
    transition: all .3s ease;
}
.overlay .right{
    flex: 1;
    background: var(--pimary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
}

.fix_body {
    overflow: hidden !important;
}
.images_icon {
    object-fit: cover;
    /* display: inline-block; */
    width: 23px;
    height: 23px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: #ffffff;
    margin: auto;
    transition: all 0.25s;
    vertical-align: middle;
}
.brand_logo{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    height: 100px;
    margin: auto;
    transition: all 0.5s;
}
.brand_logo img{
    width: auto;
    height: 100%;
    display: block;
    filter: brightness(0) invert(1);
    margin: auto;
}
.section_header{
    position: fixed;
    top: 30px;
    left: 0;
    z-index: 4;
    width: 100%;
    padding: 0 50px;
    transition: all 0.5s;
}
.social_header{
    position: absolute;
    top: 0;
    right: 50px;
    z-index: 2;
}
.social_header ul{
    padding: 0;
    margin: 0;
    float: right;
}
.social_header li{
    list-style: none;
    padding: 0 15px;
    margin: 0;
    float: left;
    transition: all 0.5s;
}
.social_header li:nth-last-child(1){
    padding-right: 0;
}
.social_header li:nth-child(1){
    padding-left: 0;
}
.social_header a:hover .images_icon{
    background: #d2bc8d;
}
.brand_logo a{
    display: contents;
}
.btn_slideshow{
    position: absolute;
    height: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 0 30px;
    left: 0;
    width: 100%;
    z-index: 2;
}
.btn_slideshow img{
    width: auto;
    height: 40px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.3;
    transition: all 0.25s;
}
.btn_slideshow button:hover img{
    opacity: 1;
}
.btn_slideshow button{
    background: none;
    border: none;
    padding: 0;
}
.btn_slideshow .next_btn{
    float: right;
}
.detail_slideshow{
    position: absolute;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-family: var(--font-title);
}

.detail_slideshow h1>label{
    display: inline-block;
    width: 100%;
}
.detail_slideshow span{
    font-family: var(--font-tagline);
    text-transform: uppercase;
    margin-top: 10px;
    display: inline-block;
}
.btn_more{
    background: none;
    border: 1px solid #ffffff;
    padding: 10px 30px;
    border-radius: 50px;
    color: #ffffff;
    font-family: var(--font-body);
    text-transform: uppercase;
    transition: all 0.25s;
    line-height: inherit;
}
.btn_more:hover{
    background: #ffffff;
    color: var(--secondary-color);
}
.button_slideshow{
    position: absolute;
    bottom: 100px;
    text-align: center;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3;
}
.btn_masterplan{
    background: #ffffff;
    color: var(--secondary-color);
    font-family: var(--font-storng);
    border: 1px solid #ffffff;
}
.btn_masterplan:hover{
    background: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
}
.detail_slideshow ul {
    margin: 0;
    padding: 0;
    transition: all 1s;
}

.detail_slideshow ul li {
    animation-name: fadeInUp;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    margin: 0;
    list-style: none;
}

.detail_slideshow li:nth-child(1) {
    animation-delay: 1s;
}

.detail_slideshow li:nth-child(2) {
    animation-delay: 1.5s;
}

.button_slideshow ul {
    margin: 0 auto;
    display: inline-block;
    padding: 0;
    transition: all 2s;
}

.button_slideshow ul li {
    animation-name: fadeInUp;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    margin: 0;
    list-style: none;
    animation-delay: 2s;
    float: left;
    padding: 0 10px;
}
.images_intro{
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_intro img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_intro{
    background-image: url('../images/icon/bg.jpg');
    background-size: cover;
    padding: 50px;
}
.details_intro .btn_more{
    color: #474747;
    border-color: #474747;
    background: none;
    margin-top: 50px;
}
.details_intro .btn_more:hover{
    background: var(--pimary-color);
    color: #ffffff;
    border-color: var(--pimary-color);
}
.section_intro{
    display: flow-root;
    width: 100%;
}
.section_intro .col-xs-6:nth-child(1){
    float: right;
}
.details_intro h2{
    margin-bottom: 50px;
}
.details_intro h2>label{
    display: inline-block;
    width: 100%;
}
.section_highlights{
    padding: 50px;
    background-image: url('../images/icon/bg-blue.jpg');
    background-size: cover;
    background-position: center left;
    text-align: center;
    color: #ffffff;
}
.row_highlights{
    border: 1px solid #ffffff;
    padding: 100px 0;
}
.row_highlights ul{
    margin: 30px auto 0;
    display: inline-block;
    padding: 0;
}
.row_highlights li{
    list-style: none;
    padding: 25px 15px;
    width: calc(25% - 2%);
    display: inline-block;
    vertical-align: text-top;
}
.row_highlights p{
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}
.row_highlights label{
    font-family: var(--font-storng);
    font-size: 20px;
}
.row_highlights label>span{
    display: inline-block;
    width: 100%;
}
.row_highlights img{
    width: auto;
    height: 50px;
    margin: auto auto 15px;
    filter: brightness(0) invert(1);
    display: block;
}
.section_masterplan{
    display: flow-root;
    width: 100%;
    position: relative;
}
.section_masterplan img{
    width: 100%;
    height: auto;
    display: block;
}
.scroll_menu{
    background: var(--pimary-color);
    height: 70px;
    z-index: 4;
    top: 0;
}
.scroll_menu .button_container{
    bottom: 0;
}
.scroll_menu .brand_logo{
    height: 60px;
    bottom: 0;
}
.scroll_menu li{
    height: 70px;
    align-items: center;
    display: flex;
}
.details_materplan{
    background: var(--pimary-color);
    color: #ffffff;
    padding: 30px;
    position: absolute;
    left: 50px;
    bottom: 50px;
}
.details_materplan ul{
    margin: 0;
    padding: 0;
}
.details_materplan li{
    list-style: none;
}
.details_materplan p>label{
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #d30e0e;
    vertical-align: middle;
    margin-right: 10px;
    border: 3px solid #a30c0c;
}
.details_materplan p{
    margin-bottom: 0;
    font-family: var(--font-storng);
}
.details_materplan h2{
    margin-bottom: 15px;
}
.btn_moremasterplan{
    background: var(--pimary-color);
    color: #ffffff;
    border: none;
    position: absolute;
    right: 50px;
    bottom: 50px;
}
.images_embrace{
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.images_embrace img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_embrace{
    padding: 100px 50px;
    background-image: url('../images/photo/photo-3.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}
.details_embrace h2{
    margin-bottom: 15px;
}
.section_location{
    padding: 100px 0;
    text-align: center;
    display: flow-root;
    width: 100%;
    overflow: hidden;
}
.section_location p>label{
    display: inline-block;
    width: 100%;
}
.images_location{
    width: 100%;
    height: 350px;
}
.images_location img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_location{
    padding: 30px;
    text-align: center;
    color: #ffffff;
    background: var(--pimary-color);
}
.details_location p{
    margin: 0;
}

.slide_location{
    margin-top: 50px;
}
.slide_location .slide{
    padding: 0 15px;
}
.slide_location .slick-list{
    margin: 0 -15px;
    overflow: inherit;
}
.btn_location button{
    background: #1d3557;
    border: none;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    padding: 5px;
}
.btn_location button img{
    width: auto;
    height: 100%;
    display: block;
    margin: auto;
    filter: brightness(0) invert(1);
}
.btn_location{
    margin-top: 30px;
}
.row_nearby{
    display: flex;
}
.row_nearby img{
    width: 100%;
    height: auto;
    display: block;
}
.details_nearby{
    background: var(--pimary-color);
    color: #ffffff;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.details_nearby h2{
    margin-bottom: 50px;
}
.details_nearby h2>label{
    display: inline-block;
    width: 100%;
}
.details_nearby .btn_more{
    margin-top: 50px;
}
.details_nearby ul{
    margin: 0;
    padding: 0;
    width: 65%;
    text-align: left;
}
.details_nearby li{
    list-style: none;
    padding: 5px 0;
}
.details_nearby li>label{
    float: right;
}
.section_widget{
    padding: 100px 150px;
    display: flow-root;
    width: 100%;
    text-align: center;
}
.images_widget{
    margin-top: 50px;
}
.images_widget img{
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
.section_footer{
    padding: 100px 0;
    text-align: center;
    background-color: var(--pimary-color);
    background-image: url('../images/icon/water.jpg');
    background-size: cover;
    color: #ffffff;
}
.brand_logo_footer{
    margin-bottom: 30px;
}
.brand_logo_footer img{
    height: 100px;
    width: auto;
    display: block;
    margin: auto;
    filter: brightness(0) invert(1);
}
.row_footer{
    text-align: left;
    margin: 0 -25px;
}
.row_footer h4{
    margin: 0;
    line-height: normal;
    font-family: var(--font-storng);
    color: #ffffff;
    padding: 0 25px 15px;
    border-bottom: 1px solid #ffffff2e;
    text-transform: uppercase;
}

.row_footer .col-xs-2, .row_footer .col-xs-6, .row_footer .col-xs-3{
    padding: 0 25px;
}
.row_footer .col-xs-6{
    width: 45%;
}
.row_footer .col-xs-3:nth-last-child(1){
    width: 30%;
}
.list_sitemap, .list_contact, .list_address{
    padding: 15px 25px;
}
.list_sitemap ul{
    margin: 0;
    padding: 0;
}
.list_sitemap li{
    list-style: none;
    padding: 5px 0;
    line-height: normal;
}
.list_contact ul{
    margin: 0;
    padding: 0;
}
.list_contact li{
    list-style: none;
    padding: 5px 0;
    line-height: normal;
}
.list_contact li>label{
    width: 115px;
}
.social_footer li{
    float: left;
    padding-right: 25px;
}
.social_footer li:nth-last-child(1){
    padding-right: 0;
}
.social_footer{
    margin-top: 30px;
}
.social_footer .images_icon{
    width: 30px;
    height: 30px;
}
.list_address p{
    margin: 0;
}
.list_address p>label{
    display: inline-block;
    width: 100%;
}
.copyright{
    border-top: 1px solid #ffffff2e;
    padding-top: 30px;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}
.copyright p{
    margin: 0;
}
.social_footer a:hover .images_icon{
    background: #d2bc8d;
}
.section_footer a:hover{
    color: #d2bc8d;
}
.section_embrace{
    display: flow-root;
    width: 100%;
}
.section_masterplan .tooltip {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border: 4px solid #e6e6e6;
    border-radius: 50%;
    position: absolute;
    transition: transform 0.15s ease-in-out;
    opacity: 1;
    font-family: var(--font-body);
}

.section_masterplan .tooltip:hover {
    transform: scale(1.1);
    transform-origin: 100% 100%;
}

.section_masterplan .tooltip > label {
    display: none;
    background: var(--pimary-color);
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    border-radius: 50px;
    position: absolute;
    width: max-content;
    max-width: 300px;
    transform: translate(-45%, -50px);
    text-align: center;
    line-height: normal;
    font-size: 16px;
}
.section_masterplan .tooltip > label:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 13px solid var(--pimary-color);
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    margin: auto;
}

.section_masterplan .tooltip:hover label,
.section_masterplan .tooltip:focus  label{
    display: block;
}
.tooltip1{
    top: 34%;
    left: 16%;
}
.tooltip2 {
    top: 30%;
    left: 21%;
}
.tooltip3{
    top: 39%;
    left: 21%;
}
.tooltip4{
    top: 35%;
    left: 28%;
}
.tooltip5{
    top: 30%;
    left: 43%;
}
.tooltip6{
    top: 26%;
    left: 48%;
}
.tooltip7{
    top: 22%;
    left: 53%;
}
.tooltip8{
    top: 21%;
    left: 54%;
}
.tooltip9{
    top: 22%;
    left: 68%;
}
.tooltip10{
    top: 25%;
    left: 64%;
}
.tooltip11{
    top: 29%;
    left: 60%;
}
.tooltip12{
    top: 32%;
    left: 55%;
}
.tooltip13{
    top: 38%;
    left: 47%;
}
.tooltip14{
    top: 40%;
    left: 56%;
}
.tooltip15{
    top: 45%;
    left: 60%;
}
.tooltip16{
    top: 54%;
    left: 65%;
}
.tooltip17{
    top: 63%;
    left: 70%;
}
.tooltip18{
    top: 47%;
    left: 74%;
}
.tooltip19{
    top: 55%;
    left: 79%;
}
.tooltip20{
    top: 64%;
    left: 85%;
}
.tooltip.soldout{
    background: #d30e0e!important;
    border-color: #a30c0c!important;
}
.row_embrace .col-xs-6:nth-child(1){
    float: right;
}
.images_masterplan{
    position: relative;
}
.parallax_slideshow{
    height: 50vh;
    display: flow-root;
    width: 100%;
}
.parallax_slideshow .detail_slideshow{
    padding-top: 100px;
}
.parallax_slideshow .detail_slideshow, .parallax_slideshow img{
    height: 100%;
}
.parallax_slideshow .overlay_slideshow:before{
    background: linear-gradient(0deg, #00000000 0%, #000000b3 100%);
}
.section_abutus{
    padding: 100px 0;
    text-align: center;
    background-image: url('../images/icon/bg-aboutus.jpg');
    background-size: cover;
}
.section_abutus p>label{
    display: inline-block;
    width: 100%;
}
.project_highlights{
    margin-top: 50px;
}
.project_highlights h2{
    font-size: 20px;
    font-family: var(--font-storng);
}
.project_highlights ul{
    margin: 30px 0 0;
    padding: 0;
    display: inline-grid;
    text-align: left;
}
.project_highlights li{
    float: left;
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #a5a39f;
    padding: 10px 20px;
}
.project_highlights li:nth-last-child(1){
    border-bottom: none;
    padding-bottom: 0;
}
.project_highlights li>label{
    width: 100px;
}
.project_highlights li>span{
    font-family: var(--font-storng);
}
.section_thevilla{
    display: flow-root;
    width: 100%;
    position: relative;
}
.images_thevilla{
    width: 100%;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_thevilla img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_thevilla{
    padding: 50px;
    color: #ffffff;
    text-align: left;
    background-image: url('../images/icon/bg-blue.jpg');
    background-size: cover;
}
.imagea_icon_thevilla{
    margin-right: 15px;
}
.imagea_icon_thevilla img{
    width: auto;
    height: 35px!important;
    display: block;
    filter: brightness(0) invert(1);
}
.details_thevilla h2{
    margin-bottom: 30px;
}
.details_thevilla ul{
    margin: 30px 0 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}
.details_thevilla li{
    width: 100%;
    padding: 15px 25px;
    list-style: none;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ffffff26;
}
.details_thevilla li:nth-last-child(1){
    border-bottom: none;
}
.section_thevilla .row_thevilla:nth-child(1) .details_thevilla p{
    margin: 0;
}
.details_thevilla label{
    font-family: var(--font-storng);
}
.content_thevilla{
    width: 100%;
}
.section_thevilla .row_thevilla:nth-last-child(1) .col-xs-6:nth-child(1){
    float: right;
}
.details_thevilla h2>label{
    display: inline-block;
    width: 100%;
    font-family: var(--font-body);
}
.section_location_info{
    padding: 100px 0;
    text-align: center;
}
.section_location_info p>label{
    display: inline-block;
    width: 100%;
}
.images_nearby{
    width: 100%;
    height: 600px;
}
.images_nearby img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slide_nearby{
    margin-top: 50px;
}
.details_nearby_info p{
    margin: 0;
}
.details_nearby_info{
    padding: 15px 0 0;
}
.slide_nearby button{
    background: none;
    border: none;
    padding: 0;
    position: absolute;
    height: 600px;
    top: 0;
    bottom: auto;
    left: -50px;
    margin: auto;
    z-index: 1;
}
.slide_nearby button.slick-next{
    left: auto;
    right: -50px;
}
.slide_nearby button > img{
    height: 30px;
    width: auto;
    display: block;
}
.row_destination .col-xs-6{
    padding: 0 25px;
}
.row_destination img{
    width: 40px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
}
.row_destination h2{
    color: var(--pimary-color);
}
.section_destination{
    padding: 0 0 100px;
}
.section_destination .container{
    width: 991px;
    margin: auto;
}
.row_destination ul{
    margin: 5px 0 0;
    padding: 0 0 0 50px;
}
.row_destination li{
    list-style: none;
    padding: 5px 0;
    width: calc(100% - 80px);
    float: left;
}
.row_destination li:nth-child(2){
    text-align: right;
    width: 80px;
    float: right;
}
.row_destination li>label{
    display: inline-block;
    width: 100%;
}
.section_destination .row_destination:nth-last-child(1){
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}
.section_map{
    width: 100%;
    height: 700px;
    display: flow-root;
}
.section_map iframe{
    width: 100%;
    height: 100%;
}
.section_contactus{
    padding: 100px 0;
    background-image: url('../images/icon/bg-aboutus.jpg');
    background-size: cover;
    text-align: center;
    background-position: bottom;
}
.images_contact{
    background: var(--pimary-color);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    padding: 15px;
    margin: 0 auto 25px;
}
.images_contact img{
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    filter: brightness(0) invert(1);
}
.section_contactus p{
    margin: 0;
}
.section_contactus h2{
    color: var(--pimary-color);
    margin-bottom: 5px;
}
.section_contactus p>label{
    display: inline-block;
    width: 100%;
}
.section_contactus a:hover{
    color: var(--secondary-color);
}
.contact_form{
    background-image: url('../images/icon/bg-blue.jpg');
    background-size: cover;
    padding: 50px;
    width: 600px;
    margin: 100px auto 0;
    display: flow-root;
    color: #ffffff;
    background-position: top;
    overflow: hidden;
}
.contact_form h2{
    color: #ffffff;
}
.row_contactus{
    display: flow-root;
    width: 100%;
}
.row_input{
    margin-top: 30px;
    text-align: left;
}
.row_input ul{
    margin: 5px 0 0;
    padding: 0 0 0 30px;
}
.row_input li{
    list-style: none;
    padding: 5px 0;
}
.input_data{
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #ffffff;
    padding: 5px 10px;
}
.row_input .col-xs-12{
    margin-bottom: 25px;
    position: relative;
}
input[type="radio"], input[type="checkbox"]{
    margin: 0 10px 0 0;
}
.row_input img.arrow_select{
    filter: brightness(0) invert(1);
    width: 10px;
    height: 14px;
    position: absolute;
    bottom: 5px;
    right: 10px;
}
.btn_submit{
    padding: 10px 50px;
    margin: 15px 0 0;
}
.contact_form .col-xs-12 span{
    color: red;
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
    padding: 0;
    letter-spacing: normal;
}
.contact_form .col-xs-12 span.star{
    color: #ffffff;
}
.section_gallery{
    padding: 100px 0;
    text-align: center;
}
.section_gallery ul.nav{
    display: inline-block;
    margin: auto;
}
.nav-pills > li > a{
    background: none;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    padding: 10px 0;
    margin: 0 15px;
    font-size: 20px;
}
.nav-pills > li > a:before{
    content: '';
    background: #000;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus{
    color: #000;
    background: none;
}
.nav-pills > li.active a:before{
    width: 100%;
}
.images_gallery{
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}
.images_gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.overlay_photo{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #03172ede;
    opacity: 0;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
    top: 0;
    left: 0;
}
.row_photogallery{
    margin: 50px -15px 0;
}
.row_photogallery .col-xs-4{
    padding: 15px;
}
.row_photogallery .col-xs-4:hover .overlay_photo{
    opacity: 1;
}
.box_select{
    padding: 0;
    border: none;
    border-bottom: 1px solid var(--pimary-color);
    background: none;
    display: inline-flex;
    margin: 0 10px;
    text-align: left;

}
.tab-navigation{
    margin: 30px 0;
    letter-spacing: normal;
    text-transform: uppercase;
    color: var(--pimary-color);
    font-size: 20px;
}
#select-box{
    background: none;
    padding: 10px 20px;
    border: none;
    color: var(--pimary-color);
    text-transform: uppercase;
}
.box_select i {
    margin: 0 15px 0 0;
    line-height: 38px;
    color: var(--pimary-color);
}
.images_villaplan{
    position: relative;
}
.images_villaplan img{
    width: 100%;
    display: block;
}
.section_villaplan .tooltip {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border: 4px solid #e6e6e6;
    border-radius: 50%;
    position: absolute;
    transition: transform 0.15s ease-in-out;
    opacity: 1;
    font-family: var(--font-body);
}

.section_villaplan .tooltip:hover {
    transform: scale(1.1);
    transform-origin: 100% 100%;
}

.section_villaplan .tooltip > label {
    display: none;
    background: var(--pimary-color);
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    border-radius: 50px;
    position: absolute;
    width: max-content;
    max-width: 300px;
    transform: translate(-45%, -50px);
    text-align: center;
    line-height: normal;
    font-size: 16px;
}
.section_villaplan .tooltip > label:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 13px solid var(--pimary-color);
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    margin: auto;
}

.section_villaplan .tooltip:hover label,
.section_villaplan .tooltip:focus  label{
    display: block;
}
.images_villaplan .tooltip1{
    top: 56%;
    left: 25%;
}
.images_villaplan .tooltip2{
    top: 59%;
    left: 33%;
}
.images_villaplan .tooltip3{
    top: 61%;
    left: 41%;
}
.images_villaplan .tooltip4{
    top: 45%;
    left: 34%;
}
.images_villaplan .tooltip5{
    top: 48%;
    left: 41%;
}
.images_villaplan .tooltip6{
    top: 50%;
    left: 50%;
}
.images_villaplan .tooltip7{
    top: 44%;
    left: 65%;
}
.images_villaplan .tooltip8{
    top: 59%;
    left: 66%;
}
.images_villaplan .tooltip9{
    top: 68%;
    left: 67%;
}
.images_villaplan .tooltip10{
    top: 77%;
    left: 68%;
}
.images_villaplan .tooltip11{
    top: 86%;
    left: 69%;
}
.images_villaplan .tooltip12{
    top: 69%;
    left: 79%;
}
.images_villaplan .tooltip13{
    top: 57%;
    left: 78%;
}
.images_villaplan .tooltip14{
    top: 48%;
    left: 77%;
}
.images_villaplan .tooltip15{
    top: 28%;
    left: 81%;
}
.images_villaplan .tooltip16{
    top: 19%;
    left: 81%;
}
.images_villaplan .tooltip17{
    top: 5%;
    left: 79%;
}
.images_villaplan .tooltip18{
    top: 16%;
    left: 91%;
}
.images_villaplan .tooltip19{
    top: 24%;
    left: 92%;
}
.images_villaplan .tooltip20{
    top: 65%;
    left: 79%;
}
.section_villaplan .details_materplan{
    text-align: left;
    bottom: 0;
}
.section_detailvillaplan{
    padding: 0 0 100px;
}
.section_detailvillaplan table{
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 18px;

}
.section_detailvillaplan thead{
    background: var(--pimary-color);
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
}
.section_detailvillaplan thead label{
    display: inline-block;
    width: 100%;
    text-transform: none;
    font-size: 14px;
}
.section_detailvillaplan td{
    padding: 10px;
    border: 1px solid var(--pimary-color);
    line-height: normal;
    width: 20%;
}
.section_detailvillaplan .btn_enlarge{
    margin: 0;
    background: var(--pimary-color);
    border-color: var(--pimary-color);
}
.section_detailvillaplan .btn_enlarge:hover{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff;
}
.fancybox__slide{
    background: #ffffff!important;
}
.section_error .btn_more{
    background: var(--pimary-color);
    border-color: var(--pimary-color);
    margin-top: 25px;
}
.section_error .btn_more:hover{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff;
}
/* ซ่อน checkbox แบบ default */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;   /* ขอบสีขาว */
    border-radius: 4px;       /* มุมโค้งมน */
    background-color: transparent; /* พื้นหลังโปร่งใส */
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.2s ease;
    outline: none!important;
}

/* เวลากดเลือก */
input[type="checkbox"]:checked {
    background-color: #fff;   /* เวลากดเลือก พื้นหลังเป็นขาว */
    border-color: #fff;
    position: relative;
}

/* ทำเครื่องหมายติ๊ก (✔) */
input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
select option{
    color: black!important;
}