@font-face {
    font-family: 'Californian_Regular';
    src: url('../font/CalifornianFB-Reg.woff2') format('woff2'),
    url('../font/CalifornianFB-Reg.woff') format('woff');
    font-weight: normal;
    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;
}

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

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

@font-face {
    font-family: 'Inter_Light';
    src: url('../font/Inter-Light.woff2') format('woff2'),
    url('../font/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
:root {
    --pimary-color: #0d1b31;
    --secondary-color: #a68053;
    --font-body: 'Inter_Light', 'sans-serif';
    --font-storng: 'Inter_SemiBold', 'sans-serif';
    --font-title: 'Californian_Regular', 'sans-serif';
    --font-tagline: 'Gotham_Light', 'sans-serif';
    --font-tagline-storng: 'Gotham_Bold', '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: #3c3c3c;
    line-height: 1.7;
    overflow-x: hidden;
    background: #f6f6f6;
}

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

strong, b {
    font-family: var(--font-storng);
}

select option {
    color: black !important;
}
h4{
    text-transform: uppercase;
    font-family: var(--font-tagline);
    font-size: 16px;
    letter-spacing: 3px;
    margin: 0;
}
h1{
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: 46px;
    background: linear-gradient(90deg,rgba(159, 127, 100, 1) 0%, rgba(227, 206, 173, 1) 35%, rgba(159, 127, 100, 1) 70%, rgba(227, 206, 173, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: normal;
    line-height: normal;
    margin: 0;
    display: inline-block;
    letter-spacing: 3px;
}
h2{
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: 30px;
    color: #142139;
    font-weight: normal;
    line-height: normal;
    margin: 0;
    display: inline-block;
    letter-spacing: 3px;
}
h3{
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: 24px;
    color: #142139;
    font-weight: normal;
    line-height: normal;
    margin: 0;
    display: inline-block;
    letter-spacing: 3px;
}
.container{
    padding: 0;
}
.section_slideshow {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.section_slideshow:before {
    content: '';
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(#0c2043, #0c2043a6, #9198e500);
}
.section_slideshow:after{
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    border-radius: 50%;
    left: -15%;
    bottom: -45px;
    background: radial-gradient(circle, rgba(247, 189, 113, 0.9) 0%, rgba(247, 189, 113, 0.6) 30%, rgb(247 189 113 / 0%) 50%, rgba(247, 189, 113, 0) 70%);
    pointer-events: none;
    top: 0;
    opacity: 0.6;
}
.leaf{
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    height: 550px;
}
.leaf:before{
    content: '';
    background-image: url('../images/icon/leaf-1.png');
    width: 420px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    position: absolute;
    top: 0;
    left: -50px;
    transform-origin: bottom center;
    animation: swaySmooth 6s linear infinite;
    will-change: transform;
}
.leaf:after{
    content: '';
    background-image: url('../images/icon/leaf-2.png');
    width: 500px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    position: absolute;
    top: 80px;
    right: -100px;
    transform-origin: bottom center;
    animation: swaySmooth 7s linear infinite;
    will-change: transform;
}
@keyframes swaySmooth {
    0%   { transform: rotate(0deg) translateY(0); }
    10%  { transform: rotate(2deg) translateY(-1px); }
    25%  { transform: rotate(4deg) translateY(-2px); }
    40%  { transform: rotate(2deg) translateY(-1px); }
    50%  { transform: rotate(0deg) translateY(0); }
    60%  { transform: rotate(-2deg) translateY(-1px); }
    75%  { transform: rotate(-4deg) translateY(-2px); }
    90%  { transform: rotate(-2deg) translateY(-1px); }
    100% { transform: rotate(0deg) translateY(0); }
}
.images_slide{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.section_header {
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 50px;
    transition: all 0.25s;
    background: transparent;
}

.button_container {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 50px;
    height: 17px;
    width: 25px;
    margin: auto;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
}

.button_container:hover {
    opacity: 1;
}

.button_container.active {
    left: 625px;
}

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

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

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

.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(2) {
    top: 8px;
}

.button_container span:nth-of-type(3) {
    top: 16px;
}

/*#maximage{*/
/*    height: 100svh!important;*/
/*}*/
.overlay {
    position: fixed;
    background: var(--pimary-color);
    top: 0;
    left: 0;
    width: 0%;
    /*height: calc(100% - 200px);*/
    height: 100%;
    max-width: 700px;
    overflow: hidden;
    z-index: 9;
    transition: all 0.25s;
    bottom: 0;
    margin: auto;
}

.overlay.open {
    opacity: 1;
    width: 100%;
}

.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: .45s;
    animation-delay: .45s;
}

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

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

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

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

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

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

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

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


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

.overlay ul {
    list-style: none;
    padding: 0 15px 0 0;
    margin: 0 auto;
    position: relative;
    /*height: 100%;*/
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    color: #333333;
    font-family: var(--font-tagline);
    max-height: 310px;
    overflow: hidden;
}

.overlay ul li {
    /*display: block;*/
    position: relative;
    padding: 7px 0;
    opacity: 0;
    line-height: initial;
    text-align: right;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: var(--secondary-color);
    text-decoration: none;
    /*overflow: hidden;*/
    font-size: 18px;
    transition: all 1s;
}
.overlay-menu{
    padding: 0 50px;
    margin-top: 70px;
}
.overlay ul li a.active {
    color: #e2cdac;
    font-family: var(--font-tagline-storng);
}

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

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

.brand_logo {
    height: 100px;
    transition: all 0.25s;
}

.brand_logo img {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    top: 0;
    bottom: 0;
    padding: 0 0 15px 0;
    filter: brightness(0) invert(1);
    transition: all 0.25s;
}

.images_icon {
    object-fit: cover;
    width: 23px;
    height: 23px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: #ffffff;
    margin: auto;
    transition: all 0.25s;
    vertical-align: middle;
}

.images_icon:hover {
    background: var(--secondary-color);
}

.contact_header ul {
    padding: 0;
    margin: 0;
}

.contact_header li {
    list-style: none;
    padding: 0 10px;
    float: left;
}

.contact_header li:nth-last-child(1) {
    padding-right: 0;
}

.text_slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: fit-content;
    margin: auto;
    width: 550px;
    text-align: center;
    color: #ddc7a7;
    text-transform: uppercase;
    font-size: 26px;
    font-family: var(--font-title);
    line-height: normal;
    padding: 5px;
    /*background: linear-gradient(90deg, #9f7f64 0%, #e3cead 50%, #9f7f64 100%);*/
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
    background: linear-gradient(90deg,rgba(17, 31, 53, 0) 0%, rgba(17, 31, 53, 0.7) 25%, rgba(17, 31, 53, 1) 50%, rgba(17, 31, 53, 0.7) 75%, rgba(17, 31, 53, 0) 100%);
    z-index: 1;
}
.text_slide label{
    display: inline-block;
    width: 100%;
}

.text_slide p {
    margin: 0;
    /*border: 1px solid #c8b18e;*/
    padding: 10px;
}
.section_intro{
    background-image: url('../images/icon/bg_intro.jpg');
    background-size: cover;
    margin-top: -150px;
    padding: 150px 0 100px;
    text-align: center;
    color: #cbd5e7;
    border-bottom: 6px solid;
    border-image: linear-gradient(90deg,rgba(159, 127, 100, 1) 0%, rgba(227, 206, 173, 1) 35%, rgba(159, 127, 100, 1) 70%, rgba(227, 206, 173, 1) 100%) 1;
}
.section_intro .container{
    position: relative;
    z-index: 1;
}
.section_intro h1{
    padding: 15px 0 20px;
    position: relative;
    margin-bottom: 25px;
}
.section_intro h1:before {
    content: '';
    background-image: url('../images/icon/hr.png');
    width: 180px;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.section_intro p>label{
   display: inline-block;
    width: 100%;
}
.btn_readmore {
    border: 1px solid;
    border-image: linear-gradient(90deg,rgba(227, 206, 173, 1) 0%, rgba(159, 127, 100, 1) 35%, rgba(227, 206, 173, 1) 70%, rgba(159, 127, 100, 1) 100%) 1;
    background: transparent;
    padding: 10px 30px;
    text-transform: uppercase;
    color: #e3cead;
    margin-top: 25px;
    position: relative;
    background-size: 300% 100%;
    transition: all 0.5s;
    display: inline-block;
}
.btn_readmore:before{
    content: '';
    background: linear-gradient(90deg, rgba(227, 206, 173, 1) 0%, rgba(159, 127, 100, 1) 35%, rgba(227, 206, 173, 1) 70%, rgba(159, 127, 100, 1) 100%);
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s;
    opacity: 0;
}
.btn_readmore:hover:before{
    width: 100%;
    opacity: 1;
}
.btn_readmore:hover{
    color: var(--pimary-color);
}
.btn_readmore label{
    position: relative;
}
.scroll_menu{
    background: var(--pimary-color);
    height: 60px;
    position: fixed;
    top: 0;
    align-items: center;
    box-shadow: #00000017 0 0 10px;
}
.scroll_menu .brand_logo {
    height: 60px;
}
.scroll_menu .brand_logo img{
    padding: 8px 0;
}
.scroll_menu .button_container{
    bottom: 0;
}
.section_currentproject{
    padding: 100px;
    text-align: center;
    display: flow-root;
    width: 100%;
}
.row_currentproject{
    display: flex;
    align-items: center;
    margin-top: 100px;
}
.images_currentproject{
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_currentproject img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_currentproject{
    background-image: url('../images/icon/bg_currentproject.jpg');
    padding: 50px 100px 50px 50px;
    background-size: cover;
    text-align: left;
    height: 500px;
    border-bottom: 6px solid;
    border-image: linear-gradient(90deg,rgba(159, 127, 100, 1) 0%, rgba(227, 206, 173, 1) 100%) 1;
    color: #3d3d3d;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.details_currentproject h4{
    letter-spacing: normal;
    text-transform: none;
}
.details_currentproject ul{
    margin: 0;
    padding: 0;
}
.details_currentproject li{
    list-style: none;
    padding: 0;
}
.details_currentproject li>label{
    width: 130px;
}
.btn_discover{
    background: none;
    border: 1px solid var(--pimary-color);
    color: var(--pimary-color);
    padding: 8px 25px;
    font-family: var(--font-tagline-storng);
    text-transform: uppercase;
    width: fit-content;
    margin-top: 25px;
    position: relative;
}
.btn_discover:before{
    content: '';
    width: 0;
    height: 100%;
    background: var(--pimary-color);
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s;
    opacity: 0;
}
.btn_discover label{
    position: relative;
}
.btn_discover:hover:before{
    width: 100%;
    opacity: 1;
}
.btn_discover i{
    transition: all 0.5s;
    position: relative;
    right: 0;
}
.btn_discover:hover i{
    right: -3px;
}
.btn_discover:hover{
    color: #ffffff;
}
.section_pastprojects{
    padding: 0 100px 50px;
    text-align: center;
    display: flow-root;
    width: 100%;
}
.images_pastprojects{
    width: 100%;
    height: 320px;
    position: relative;
}
.images_pastprojects img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_pastprojects{
    background-image: url('../images/icon/bg_pastprojects.png');
    background-size: cover;
    padding: 30px;
    text-align: left;
    color: #3d3d3d;
    border-bottom: 6px solid;
    border-image: linear-gradient(90deg,rgba(200, 174, 143, 1) 0%, rgba(227, 206, 173, 1) 50%, rgba(200, 174, 143, 1) 100%) 1;
}
.row_pastprojects{
    margin: 100px 0 0;
}
.row_pastprojects .slide_pastprojects .slick-track{
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr 1fr;
}
.row_pastprojects .slide_pastprojects .slick-track:before{
    content: none;
}
.slide_pastprojects .slick-list{
    overflow: inherit;
}
.row_pastprojects .slide{
    width: 100%;
    /*padding: 0 25px;*/
}
.details_pastprojects h4{
    letter-spacing: normal;
    text-transform: none;
}
.price_project{
    margin-top: 25px;
    text-transform: uppercase;
    line-height: normal;
}
.price_project p{
    margin: 0 0 5px;
}
.price_project label{
    color: #3d3d3d;
    font-family: var(--font-storng);
    font-size: 26px;
}
.soldout{
    color: #caaf84;
    text-transform: uppercase;
    background: var(--pimary-color);
    padding: 8px 15px;
    position: absolute;
    left: -25px;
    top: 25px;
}
.section_owner{
    width: 100%;
    display: flow-root;
    border-bottom: 6px solid;
    border-image: linear-gradient(90deg,rgba(159, 127, 100, 1) 0%, rgba(227, 206, 173, 1) 35%, rgba(159, 127, 100, 1) 70%, rgba(227, 206, 173, 1) 100%) 1;
    position: relative;
    overflow: hidden;
}
.section_owner:before{
    content: '';
    background-image: url('../images/icon/bg_owner-1.png');
    background-size: cover;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.section_owner:after{
    content: '';
    background-image: url('../images/icon/bg_owner-2.jpg');
    background-size: cover;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.images_owner{
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_owner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_owner{
    padding: 100px;
    background-image: url('../images/icon/bg_owner.jpg');
    background-size: cover;
    background-position: left;
    text-align: left;
    color: #bdc4d1;
}
.details_owner p{
    margin-bottom: 0;
}
.details_owner h4{
    text-transform: none;
    letter-spacing: normal;
    color: #ffffff;
}
.details_owner h2{
    color: var(--secondary-color);
}
.details_owner h2>label{
    display: inline-block;
    width: 100%;
}
.section_owner .btn_discover{
    border: 1px solid #ffffff;
    color: #ffffff;
}
.section_owner .btn_discover:before{
    background: #ffffff;
}
.section_owner .btn_discover:hover{
    color: var(--pimary-color);
}
.section_ig{
    padding: 100px;
    text-align: center;
    display: flow-root;
    width: 100%;
    font-family: var(--font-tagline);
}
.section_ig img{
    width: 100%;
    height: auto;
    display: block;
}
.section_ig p {
    margin: 0;
    display: inline;
}
.details_ig{
    margin-top: 30px;
}
.btn_ig {
    padding: 8px 25px;
    border-radius: 50px;
    color: #ffffff;
    margin-left: 10px;
    border: none;
    background-image: linear-gradient(to right, #df993d, #c42a68, #7024c4);
    background-size: 130% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    display: inline-block;
}

.btn_ig:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.section_footer{
    padding: 100px 0 0;
    text-align: left;
    color: #ffffff;
    background: var(--pimary-color);
    border-top: 6px solid;
    border-image: linear-gradient(90deg, rgba(159, 127, 100, 1) 0%, rgba(227, 206, 173, 1) 35%, rgba(159, 127, 100, 1) 70%, rgba(227, 206, 173, 1) 100%) 1;
}
.section_footer h4{
    text-transform: uppercase;
    font-family: var(--font-storng);
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: normal;
}
.section_footer p{
    margin: 0;
}
.sitemap ul{
    margin: 0;
    padding: 0;
}
.sitemap li{
    list-style: none;
    padding: 5px 0;
    position: relative;
    line-height: normal;
}
.contact label{
    font-size: 18px;
    font-family: var(--font-storng);
}
.logo_footer img{
    width: auto;
    height: 100px;
    display: block;
    margin: auto;
}
.address p>label{
    display: inline-block;
    width: 100%;
}
ul.sub_sitemap{
    padding-left: 30px;
}
.address{
    padding-left: 30px;
}
.social{
    margin-top: 30px;
}
.social ul{
    margin: 0;
    padding: 0;
}
.social li{
    list-style: none;
    float: left;
    padding: 0 10px;
}
.social li:nth-child(1){
    padding-left: 0;
}
.social .images_icon{
    width: 30px;
    height: 30px;
}
ul.sub_sitemap li:before {
    content: '';
    width: 1px;
    height: 8px;
    position: absolute;
    left: -20px;
    top: 5px;
    border-left: 1px solid #ffffff;
    opacity: 0.5;
}
ul.sub_sitemap li:after {
    content: '';
    width: 10px;
    height: 1px;
    position: absolute;
    left: -20px;
    top: 13px;
    border-bottom: 1px solid #ffffff;
    opacity: 0.5;
}
ul.sub_sitemap li:nth-last-child(1){
    padding-bottom: 0;
}
.section_footer a:hover{
    color: var(--secondary-color);
}
.copyright{
    display: flow-root;
    width: 100%;
    border-top: 1px solid #ffffff29;
    padding: 15px 0;
    margin-top: 100px;
}
.copyright p{
    margin: 0;
    font-size: 14px;
}
.copyright p>label{
    float: right;
}
.copyright a{
    color: #e3be10;
}
ul.sub_menu{
    padding: 10px 30px 0 0;
    overflow: hidden;
}
ul.sub_menu li:before{
    left: auto;
    right: -22px;
    top: 6px;
    border-color: var(--secondary-color);
}
ul.sub_menu li:after{
    left: auto;
    right: -21px;
    border-color: var(--secondary-color);
}
.fix_body{
    overflow: hidden;
}
.address_menu{
    position: absolute;
    left: 50px;
    bottom: 50px;
    text-align: left;
    color: #b29f85;
}
.address_menu img{
    width: auto;
    height: 100px;
    margin: 0;
}
.address_menu ul{
    margin: 0;
    padding: 0;
    text-transform: none;
    letter-spacing: normal;
    overflow: hidden;
}
.address_menu li{
    list-style: none;
    padding: 0;
    text-align: left!important;
    font-family: var(--font-tagline);
}
.address_menu .social li{
    padding: 0 10px;
}
.address_menu .social li:nth-child(1){
    padding-left: 0;
}
.address_menu .social .images_icon{
    background: var(--secondary-color);
}
.slide_pastprojects .slick-arrow{
    position: absolute;
    left: -15px;
    margin: auto;
    top: 0;
    bottom: 0;
    height: 35px;
    width: 35px;
    background: none;
    border-radius: 100%;
    z-index: 1;
    border: 1px solid var(--pimary-color);
    padding: 8px;
    background: var(--pimary-color);
}
.slide_pastprojects .slick-arrow img{
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    filter: brightness(0) invert(1);
}
.slide_pastprojects .slick-next{
    right: -15px;
    left: auto;
}
.slide_pastprojects .slick-dots{
    margin-top: 30px;
    padding: 0;
}
.slide_pastprojects .slick-dots li {
    margin: 0 5px;
}
.slick-dots button, .slick-dots li.slick-active button{
    background: var(--pimary-color);
}
.arrow_more:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 7px solid #e2cdac;
    border-bottom: 5px solid transparent;
    position: absolute;
    right: -15px;
    top: 10px;
}
.section_parallax{
    height: 50vh;
    border-bottom: 6px solid;
    border-image: linear-gradient(90deg, rgba(159, 127, 100, 1) 0%, rgba(227, 206, 173, 1) 35%, rgba(159, 127, 100, 1) 70%, rgba(227, 206, 173, 1) 100%) 1;
}
.section_parallax img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section_parallax:after{
    content: none;
}
.section_aboutus{
    padding: 100px 0;
    text-align: center;
}
.section_aboutus h1{
    color: var(--pimary-color);
    font-size: 40px;
    background: none;
    -webkit-text-fill-color: inherit;
}
.section_aboutus p>label{
    display: inline-block;
    width: 100%;
}
.images_ourmission{
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_ourmission img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_ourmission{
    padding: 50px 50px 50px 0;
    text-align: left;
}
.row_mission{
    padding: 100px 0;
    display: flow-root;
    width: 100%;
}
.row_mission .col-xs-6:nth-child(1){
    float: right;
}
.images_ourmission_full{
    margin-top: 50px;
}
.images_ourmission_full img{
    width: 100%;
    height: auto;
    display: block;
}
.section_contact{
    padding: 100px 0;
    text-align: center;
}
.section_contact h1{
    color: var(--pimary-color);
    font-size: 40px;
    background: none;
    -webkit-text-fill-color: inherit;
}
.address_contact{
    padding: 100px 0 50px;
}
.address_contact .images_icon{
    background: var(--pimary-color);
    width: 35px;
    height: 35px;
}
.address_contact p>label{
    display: inline-block;
    width: 100%;
}
.address_contact p{
    margin-bottom: 0;
}
.address_contact a:hover{
    color: var(--secondary-color);
}
.telmail_contact ul{
    margin: 0;
    padding: 0;
    display: flex;
}
.telmail_contact li{
    padding: 50px;
    border-right: 1px solid #e0e0e0;
    width: 33.333%;
    float: left;
    list-style: none;
}
.telmail_contact li:nth-last-child(1){
    border: none;
}
.social_contact{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.telmail_contact .images_icon{
    background: var(--pimary-color);
    width: 35px;
    height: 35px;
    margin: 0 auto 15px;
}
.telmail_contact p{
    margin: 0;
}
.social_contact ul{
    margin: 0 auto;
    padding: 0;
    display: inline-block;
}
.social_contact li{
    float: left;
    padding: 0 15px;
    border: none;
}
.telmail_contact a:hover{
    color: var(--secondary-color);
}
.telmail_contact .images_icon:hover{
    background: var(--secondary-color);
}
.section_inquiry{
    padding: 0 100px 100px;
    text-align: center;
}
.row_inquiry{
    padding: 100px 0;
    background-image: url('../images/icon/bg_contact.jpg');
    background-size: cover;
    background-position: center top;
    display: flow-root;
    width: 100%;
}
.input_data{
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #000000;
    padding: 10px;
}
.row_input{
    text-align: left;
    width: 600px;
    margin: 50px auto 0;
}
.row_input label{
    padding: 10px 0;
    float: left;
}
.row_input .col-xs-12{
    margin-bottom: 15px;
}
.row_input .col-xs-2{
    width: 150px;
}
.row_input .col-xs-10{
    width: calc(100% - 150px);
}
.row_input .col-xs-12:nth-last-child(1){
    margin-bottom: 0;
}
.row_input textarea{
    border: 1px solid #000000;
    height: 200px;
}
.row_input .col-xs-12.text_area{
    margin-top: 30px;
}
.btn_submit{
    margin-top: 0;
    background: var(--pimary-color);
    color: #ffffff;
}
.btn_submit:before{
    background: var(--secondary-color);
}
.btn_submit:hover{
    border-color: var(--secondary-color);
    color: #ffffff!important;
}
.btn_submit span{
    position: relative;
}
span.error, span#span_error{
    color: red;
    font-size: 12px;
    font-style: italic;
    display: block;
    width: 100%;
}
.slide_currentproject .slick-arrow{
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 30px;
    z-index: 1;
    margin: auto;
}
.slide_currentproject .slick-arrow img{
    width: 100%;
    filter: brightness(0) invert(1);
}
.slide_currentproject .slick-next{
    left: auto;
    right: 30px;
}
.logo_dchateau{
    height: 120px;
}

.row_button{
    margin-top: 15px;
}
.row_button ul{
    margin: 0 auto;
    padding: 0;
    display: inline-block;
}
.row_button li{
    float: none;
    display: inline-block;
    padding: 0 15px;
    list-style: none;
}
.row_video{
    margin: 50px auto;
    border-radius: 0;
    overflow: hidden;
    width: 90%;
    display: flex;
}
.row_video video{
    width: 100%;
}
.row_video iframe{
    width: 100%;
    height: 592px;
}
.tab_details{
    margin: 50px 0 0;
    text-align: left;
}
.tab_details table{
    margin: auto;
    border-collapse: collapse;
}
.tab_details table td{
    padding: 10px 30px;
    border: 1px solid #ffffff47;
    color: #cbd5e7;
}
.tab_details table td:nth-child(even){
    font-family: var(--font-storng);
}
.section_intro_info{
    background-image: url('../images/icon/bg_intro_info.jpg');
    background-position: top center;
    position: relative;
}
.section_intro_info:before{
    content: '';
    background-image: url('../images/icon/bg_video.png');
    width: 100%;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 20%;
    left: 0;
    background-position: center;
}
.section_greencpncept{
    padding: 100px 0;
    text-align: center;
}
.slide_greenconcept{
    margin-top: 50px;
}
.images_greenconcept{
    width: 100%;
    height: 400px;
}
.images_greenconcept img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_greenconcept{
    padding: 15px 15px 0;
}
.details_greenconcept p{
    margin: 0;
    font-family: var(--font-storng);
}
.slide_greenconcept .slide{
    padding: 0 15px;
}
.slide_greenconcept .slick-list{
    margin: 0 -15px;
}
.slide_greenconcept .slick-arrow{
    background: none;
    width: 40px;
    height: 40px;
    border: none;
    position: absolute;
    left: -60px;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}
.slide_greenconcept .slick-dots{
    margin-top: 30px;
    padding: 0;
}
.slide_greenconcept .slick-dots li {
    margin: 0 5px;
}
.slide_greenconcept .slick-arrow img{
    width: auto;
    height: 100%;
    display: block;
    padding: 0;
}
.slide_greenconcept .slick-arrow.slick-next{
    left: auto;
    right: -50px;
}
.secton_masterplan{
    padding: 100px 0;
    text-align: center;
    background-image: url('../images/icon/bg_masterplan.jpg');
    background-size: cover;
}
.row_unit{
    margin: 15px auto;
}
.row_unit ul{
    display: inline-block;
    margin: auto;
    padding: 0;
}
.row_unit li{
    float: left;
    list-style: none;
    padding: 0 15px;
}
.row_unit span{
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
    /*border: 2px solid #ffffff;*/
}
.row_unit span:before{
    content: '';
    width: 26px;
    height: 26px;
    border-radius: 100%;
    position: absolute;
    left: -3px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(90deg, rgba(227, 206, 173, 1) 0%, rgba(159, 127, 100, 1) 35%, rgba(227, 206, 173, 1) 70%, rgba(159, 127, 100, 1) 100%);
}
.row_unit span:after{
    content: '';
    width: 20px;
    height: 20px;
    background: var(--pimary-color);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.row_unit span.unit_sold:before{
    background: #ffffff;
}
.row_unit span.unit_sold:after{
    background: #e31111;
}
.images_masterplan{
    position: relative;
    padding: 0;
}
.images_masterplan img{
    width: 100%;
    display: block;
    margin: auto;
}
.images_masterplan span{
    position: absolute;
    bottom: 33%;
    left: 19%;
    text-align: center;
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}
.images_masterplan span:before{
    content: '';
    width: 53px;
    height: 53px;
    border-radius: 100%;
    position: absolute;
    left: -3px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(90deg, rgba(227, 206, 173, 1) 0%, rgba(159, 127, 100, 1) 35%, rgba(227, 206, 173, 1) 70%, rgba(159, 127, 100, 1) 100%);
}
.images_masterplan span:after{
    content: '';
    width: 47px;
    height: 47px;
    background: var(--pimary-color);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.images_masterplan span.unit_sold:before{
    background: #ffffff;
}
.images_masterplan span.unit_sold:after{
    background: #e31111;
}
.images_masterplan label{
    position: relative;
    z-index: 1;
    font-size: 16px;
    text-align: center;
    font-family: var(--font-storng);
    color: #ffffff;
}
.images_masterplan span.unit7{
    left: 50%;
    bottom: 89%;
}
.images_masterplan span.unit6{
    left: 45%;
    bottom: 84%;
}
.images_masterplan span.unit5{
    left: 40%;
    bottom: 79%;
}
.images_masterplan span.unit4{
    left: 34%;
    bottom: 73%;
}
.images_masterplan span.unit3{
    left: 29%;
    bottom: 67%;
}
.images_masterplan span.unit2{
    left: 23%;
    bottom: 61%;
}
.images_type{
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.details_type{
    padding: 50px;
    text-align: left;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.row_type{
    display: inline-block;
    margin-bottom: 100px;
    width: 100%;
}

.masterplan_type .row_type:nth-last-child(1){
    margin-bottom: 0;
}
.masterplan_type .row_type:nth-child(even) .col-xs-7{
    float: right;
}
.row_type img{
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
.masterplan_type{
    padding: 100px 100px 0;
}
.details_type ol{
    margin: 30px 0;
}
.btn_factsheet{
    border-color: var(--pimary-color);
    color: var(--pimary-color);
    border-image: none;
    width: fit-content;
    margin: 0 0 0 20px;
}
.btn_factsheet:hover{
    color: #ffffff;
}
.btn_factsheet:before{
    background: var(--pimary-color);
}
.details_type li label{
    width: 170px;
}
.details_type span{
    font-family: var(--font-storng);
}
.row_type .col-xs-5{
    position: relative;
}
.row_type .col-xs-5:before{
    content: '';
    background-image: url('../images/icon/bg_currentproject.jpg');
    width: calc(100% + 100px);
    height: 100%;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
}
.row_type .col-xs-5:after{
    content: '';
    border-bottom: 6px solid;
    border-image: linear-gradient(270deg, rgba(159, 127, 100, 1) 0%, rgba(227, 206, 173, 1) 100%) 1;
    width: calc(100% + 100px);
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}
.row_type .col-xs-7{
    position: relative;
    z-index: 1;
}
.row_type:nth-child(even) .col-xs-5:after, .row_type:nth-child(even) .col-xs-5:before{
    left: 0;
}
.section_gallery{
    padding: 100px;
    text-align: center;
    display: flow-root;
    width: 100%;
}
.section_gallery ul.nav{
    display: inline-block;
    margin: 50px auto;
    padding: 0;
}
.section_gallery li{
    list-style: none;
    padding: 0;
    float: left;
    margin: 0 !important;
}
.section_gallery li a{
    background: none;
    border: none;
    padding: 10px 30px;
    border-radius: 0;
    line-height: normal;
}
.section_gallery li.active a, .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus{
    background: var(--pimary-color);
    color: #ffffff;
}
.images_gallery{
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.images_gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.25s;
}
.images_gallery .overlay_photo{
    background: #0d1b32ad;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transition: all 0.25s;
}
.row_photogallery{
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
}
.row_photogallery .col-xs-4{
    width: 100%;
}
.row_photogallery .col-xs-4:hover .overlay_photo{
    opacity: 1;
}
.row_photogallery .col-xs-4:hover .images_gallery img{
    transform: scale(1.01);
}
.images_gallery a{
    display: contents;
}
.section_location{
    padding: 0 100px 100px;
    display: flow-root;
    width: 100%;
    text-align: center;
}
.images_location{
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_location img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_location{
    padding: 100px;
    text-align: left;
    background-image: url('../images/icon/bg_location.png');
    background-size: cover;
    background-position: right bottom;
}
.slide_location{
    margin-top: 50px;
    border-bottom: 6px solid;
    border-image: linear-gradient(90deg, rgba(159, 127, 100, 1) 0%, rgba(227, 206, 173, 1) 35%, rgba(159, 127, 100, 1) 70%, rgba(227, 206, 173, 1) 100%) 1;
}
.details_location h3{
    text-transform: uppercase;
    font-size: 20px;
    font-family: var(--font-storng);
    color: #4a4a4a;
    letter-spacing: normal;
}
.details_location ul{
    margin: 30px 0 0;
    padding: 0;
}
.details_location li{
    list-style: none;
}
.details_location li label{
    float: right;
}
.details_location .images_icon{
    width: 50px;
    height: 50px;
    background: var(--pimary-color);
    margin: 0 0 15px;
}
.slide_location .slick-arrow{
    background: none;
    width: 40px;
    height: 40px;
    border: none;
    position: absolute;
    left: -60px;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}
.slide_location .slick-arrow img{
    width: auto;
    height: 100%;
    display: block;
    padding: 0;
}
.slide_location .slick-arrow.slick-next{
    left: auto;
    right: -50px;
}
.slide_location .slick-dots{
    margin-top: 30px;
    padding: 0;
}
.slide_location .slick-dots li {
    margin: 0 5px;
}
.section_googlemap{
    display: flow-root;
    width: 100%;
    height: 600px;
}
.section_googlemap iframe{
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
}
.row_owner{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    color: #bdc4d1;
    padding: 50px 0 0;
}
.row_owner img{
    width: 100%;
    height: auto;
    display: block;
}
.row_owner .col-xs-6{
    padding: 0 50px;
}
.row_owner h2{
    color: var(--secondary-color);
    font-size: 40px;
    line-height: 30px;
}
.row_owner h2>label{
    display: inline-block;
    width: 100%;
    font-size: 26px;
}
.row_owner .col-xs-3:nth-child(1){
    text-align: right;
}
.row_owner h4{
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: normal;
    color: #f6f6f6;
}
.row_owner .col-xs-12{
    display: none;
}
.section_thank .btn_discover{
    margin-top: 0;
    display: inline-block;
}
.col-xs-3.logo_footer{
    width: 100%;
    margin-bottom: 30px;
}
.col-xs-3.sitemap{
    width: 40%;
    padding-left: 30px;
}
.col-xs-3.contact, .col-xs-3.address{
    width: 30%;
}
.section_process{
    padding: 0 100px 100px;
    text-align: center;
    display: flow-root;
    width: 100%;
}
.box_select{
    padding: 0;
    border: none;
    background: var(--pimary-color);
    display: inline-flex;
    margin: 0 10px;
    text-align: left;

}
.tab-navigation{
    margin: 30px 0 50px;
    letter-spacing: normal;
}
#select-box{
    background: var(--pimary-color);
    padding: 10px 20px;
    border: none;
    color: #fff;
}
.box_select i {
    margin: 0 15px 0 0;
    line-height: 38px;
    color: #ffffff;
}
.section_process .col-xs-{
    width: 100%;
}
select#select-box option {
    color: #ffffff !important;
}
.details_location img{
    width: auto;
    height: 50px;
    display: block;
    margin: 0 auto 15px 0;
    object-fit: contain;
}
.dchateau_details{
    text-align: left;
    margin: 100px auto;
    width: 90%;
    color: #cbd5e7;
    display: flow-root;
}
.dchateau_details .col-xs-6{
    padding: 0 25px;
}
.dchateau_details .row_dchateau_details{
    margin: 0 -25px;
    position: relative;
}
.row_dchateau_details .col-xs-6:nth-child(1):before{
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,rgba(102, 88, 80, 1) 0%, rgba(187, 172, 150, 1) 50%, rgba(102, 88, 80, 1) 100%);
}
.row_dchateau_details ul{
    margin: 0;
    padding: 0 0 0 60px;
}
.row_dchateau_details li{
    padding: 0;
    list-style: none;
    width: 100%;
}
.row_dchateau_details li>label{
    font-family: var(--font-storng);
    width: 160px;

}
.images_dchateau{
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_dchateau img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slide_dchateau .slide {
    padding: 0 15px;
}
.slide_dchateau .slick-list {
    margin: 0 -15px;
}
.slide_dchateau p{
    color: #ffffff;
}
.slide_dchateau .slick-dots li.slick-active button, .slide_dchateau .slick-dots button, .slide_dchateau .slick-dots li.slick-active button{
    background: #ffffff!important;
}
.slide_dchateau .slick-dots{
    padding: 0;
    margin-top: 30px;
}