@font-face {
    font-family: 'Inter_Regular';
    src: url('../font/Inter-Regular.woff2') format('woff2'),
        url('../font/Inter-Regular.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: '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: 'AdobeCaslon_Pro';
    src: url('../font/ACaslonPro-Bold.woff2') format('woff2'),
        url('../font/ACaslonPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



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

body {
    padding: 0;
    margin: 0;
    font-family: 'Inter_Regular', 'sans-serif';
    font-size: 16px;
    color: #666666;
    line-height: 2;
    overflow-x: hidden;
    background: #ffffff;
}

input,
select,
button,
a,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    transition: all 0.5s;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}

::selection {
    color: #ffffff;
    background: #b59f71;
}

h1 {
    font-family: 'AdobeCaslon_Pro', 'sans-serif';
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 1px;
    color: #2e2e2e;
    line-height: initial;
    margin: 0;
}

h2 {
    font-family: 'AdobeCaslon_Pro', 'sans-serif';
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 1px;
    line-height: initial;
    margin: 0;
}

h4 {
    font-family: 'Gotham_Light', 'sans-serif';
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.container {
    padding: 0;
}

.section_slideshow i {
    font-size: 5px;
    vertical-align: middle;
    margin: 0 10px;
}

.text p {
    font-family: 'Gotham_Light', 'sans-serif';
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section_slideshow .title {
    font-family: 'AdobeCaslon_Pro', 'sans-serif';
    text-transform: uppercase;
    font-size: 50px;
    letter-spacing: 1px;
    line-height: 50px;
}

.section_slideshow .pagination {
    display: none;
}

.section_header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
    z-index: 2;
    background: #fff;
    height: 80px;
    box-shadow: #0000001a 0px 3px 8px;
}

.section_header .brand_logo {
    position: absolute;
    left: 50px;
    top: 0;
    width: 162px;
    text-align: center;
    padding: 30px 0;
    transition: all 1s;
}

.section_header .brand_logo:before {
    content: '';
    background-image: url('../images/icon/bg_logo.png');
    width: 162px;
    height: 186px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-position: center bottom;
    transition: all 1s;
}

.section_header .brand_logo img {
    display: block;
    height: 115px;
    margin: 0 auto;
    transition: all 1s;
}

.section_header .nav_pc {
    float: right;
    color: #1d6068;
    text-transform: uppercase;
}

.section_header .nav_pc ul {
    margin: 0;
    padding: 0;
}

.section_header .nav_pc li {
    position: relative;
    list-style: none;
    float: left;
    line-height: 80px;
    padding: 0 15px;
}

.section_header .nav_pc a {
    line-height: 80px;
    padding: 0;
    display: inline-block;
    position: relative;
}

.section_header .nav_pc a:before {
    content: '';
    background: #b59f71;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 1s;
}

.section_header .nav_pc a:hover:before,
.section_header .nav_pc a.active:before {
    width: 100%;
}

.section_header .nav_pc img {
    height: 20px;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    transition: all 1s;
}

.section_header .nav_pc li:nth-last-child(1),
.section_header .nav_pc li:nth-last-child(2) {
    background: #b59f71;
    text-align: center;
    padding: 0;
}

.section_header .nav_pc li:nth-last-child(2) {
    margin-right: -0.5px;
}

.section_header .nav_pc li:nth-last-child(1) a,
.section_header .nav_pc li:nth-last-child(2) a {
    padding: 0;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section_header .nav_pc li:nth-last-child(2) a {
    padding-left: 30px;
    margin-right: 10px;
}

.section_header .nav_pc li:nth-last-child(1) a {
    padding-right: 30px;
}

.section_header .nav_pc li:nth-last-child(1) a:hover img,
.section_header .nav_pc li:nth-last-child(2) a:hover img {
    filter: none;
}

.section_description {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.small_logo img {
    height: 50px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.section_description h4 {
    font-family: 'Gotham_Light', 'sans-serif';
    text-transform: uppercase;
    color: #9e9e9e;
    letter-spacing: 3px;
    margin: 15px 0;
}

.section_description h1>label {
    display: inline-block;
    width: 100%;
}

.section_description p>label {
    font-family: 'Inter_SemiBold', 'sans-serif';
    display: inline;
}

.section_description:before {
    content: '';
    background-image: url('../images/icon/bg_description.png');
    width: 100%;
    height: 100%;
    background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    opacity: 0.9;
}

.images_hightlight {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.images_hightlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 1s;
    transform: scale(1.05)
}

.text_hightlight {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 2;
}

.text_hightlight h2 {
    font-size: 30px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    margin: 0;
}

.text_hightlight h2:before {
    content: '';
    background: #ffffff;
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.section_hightlight {
    overflow: hidden;
}

.overlay_hightlight {
    background: #00000033;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 1s;
}

.images_hightlight:hover img {
    transform: scale(1)
}

.images_hightlight:hover .overlay_hightlight {
    opacity: 0;
}

.section_homegallery {
    padding: 100px 0;
    text-align: center;
    background-color: #b49e70;
    position: relative;
    overflow: hidden;
}

.section_homegallery:before {
    content: '';
    background-image: url('../images/icon/bg_gallery.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.12;
}

.section_homegallery h4,
.section_homegallery h2 {
    color: #ffffff;
    margin: 0;
}

.section_homegallery h2 {
    letter-spacing: 3px;
    padding-bottom: 25px;
    position: relative;
    margin-top: 10px;
    font-size: 40px;
}

.section_homegallery h2:before {
    content: '';
    background: #ffffff;
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section_homegallery .container {
    position: relative;
    z-index: 1;
}

.btn_seegallery {
    background: #1d6068;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    margin-top: 30px;
    transition: all 1s;
}

.btn_seegallery:hover {
    background: #ffffff;
    color: #1d6068;
}

.section_ourproject {
    padding: 100px 0;
    text-align: center;
}

.master_plan {
    font-family: 'Gotham_Light', 'sans-serif';
    text-align: left;
    color: #262626;
    margin: 50px 0;
    display: inline-block;
    width: 100%;
}

.master_plan img {
    width: 100%;
}

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

.master_plan li {
    list-style: none;
    width: 100%;
    padding: 10px 0;
}

.master_plan li:nth-last-child(1) {
    padding-bottom: 0;
}

.master_plan label {
    font-family: 'Gotham_Bold', 'sans-serif';
    width: 30px;
    height: 30px;
    text-align: center;
    background: #b59f71;
    border-radius: 100%;
    color: #181617;
    margin-right: 10px;
}

.master_plan .col-xs-9 {
    padding-right: 50px;
}

.section_ourproject h2 {
    color: #1d6068;
}

.section_ourproject .btn_seegallery {
    margin-top: 0;
}

.section_ourproject .btn_seegallery:hover {
    background: #b59f71;
    color: #1d6068;
}

.images_footer {
    text-align: center;
    height: 900px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.images_footer p {
    margin: 0;
}

.contact_footer {
    color: #ffffff;
    background: #b59f71;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact_footer a:hover {
    color: #1d6068;
}

.copyright_footer {
    color: #ffffff;
    background: #1e5e67;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tel_footer {
    font-family: 'Inter_SemiBold', 'sans-serif';
    margin-top: 26px !important;
    font-size: 24px;
    line-height: normal;
}

.copyright_footer img {
    height: 120px;
    margin-bottom: 25px;
}

.images_ig {
    height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.images_ig img {
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: all 1s;
}

.images_ig:hover img {
    transform: scale(1.0);
}

.images_ig ul {
    margin: 15px auto 0 auto;
    padding: 0;
    display: inline-block;
}

.images_ig p {
    color: #b59f71;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.images_ig .social_media img {
    height: 30px;
    width: auto;
}

.mask_img {
    width: 35px;
    height: 35px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #b59f71;
    transition: all 1s;
}

.scroll_menu .brand_logo img {
    height: 85px;
}

.scroll_menu .brand_logo {
    padding: 10px 0;
}

.scroll_menu .brand_logo:before {
    height: 130px;
}

.social_media .mask_img:hover {
    background: #1d6068;
}

.slideshow .slide .caption {
    padding: 0 30px;
    margin-top: 80px;
}

.section_header .nav_pc li:nth-last-child(2) {
    margin-left: 15px;
}

.section_footer .col-xs-6:nth-child(1) {
    float: right;
}

.button_container {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 130px;
    height: 17px;
    width: 35px;
    margin: auto;
    cursor: pointer;
    z-index: 100;
    padding-bottom: 0;
    transition: all 1s;
}

.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: #ffffff;
}

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

.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: #1d6068;
    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;
}

.overlay {
    position: fixed;
    background: #222222;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    /*max-width: 540px;*/
    /* opacity: 0; */
    overflow: hidden;
    z-index: 9;
    transition: all 1s;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
}

.overlay.open {
    opacity: 1;
    width: 370px;
}

.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;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    text-align: left;
    padding: 0 50px;
    margin-top: 75px;
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    position: relative;
    height: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    color: #ffffff;
}

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

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

.overlay ul li a.active,
.overlay ul li a:hover,
.nav_mobile .overlay-menu .active {
    color: #b59f71;
    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;
    }
}

.fix_body {
    overflow: hidden;
}

.button_container.active {
    right: 50px;
}

.slick-dots li {
    margin: 0 3px;
}

.slide_hightlight .slick-dots {
    position: absolute;
    margin: 0;
    bottom: 30px;
    left: 0;
    right: 0;
}

.slide_hightlight .slick-dots button,
.slide_hightlight .slick-dots li.slick-active button {
    background: #ffffff;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1d6068;
    /* change if the mask should have another color then white */
    z-index: 99;
    /* makes sure it stays on top */
}

#status {
    /*background-image: url('../images/icon/logo.png');*/
    /*width: 200px;*/
    /*height: 55px;*/
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

#status img {
    width: auto;
    height: 130px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.section_parallax {
    height: 450px;
    margin-top: 80px;
}

.section_parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section_about {
    padding: 100px 0;
    text-align: center;
}

.section_about h4 {
    font-family: 'Gotham_Light', 'sans-serif';
    text-transform: uppercase;
    color: #9e9e9e;
    letter-spacing: 3px;
    margin: 15px 0;
}

.section_about p>label {
    font-family: 'Inter_SemiBold', 'sans-serif';
    display: inline;
}

.images_about {
    display: inline-block;
    width: 768px;
    margin: 50px auto;
    text-align: center;
}

.images_about img {
    width: 100%;
    height: auto;
    display: block;
}

.images_about_2 {
    display: inline-block;
    margin: 50px auto;
    text-align: center;
}

.images_about_2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.images_about_2 .col-xs-6 {
    padding: 0 25px;
}

.row_imagesabout {
    margin: 0 -25px;
}

.section_parallax_about img {
    object-position: center right;
}

.section_parallax_contact img {
    object-position: center 65%;
}

.contact_form h3 {
    font-family: 'AdobeCaslon_Pro', 'sans-serif';
    font-size: 30px;
    color: #b19867;
    margin: 0 0 25px;
    line-height: normal;
}

.contact_form {
    text-align: left;
    margin-top: 50px;
}

.contact_form label {
    width: 110px;
}

.contact_form ul {
    margin: 25px 0 0;
    padding: 0;
}

.contact_form li {
    list-style: none;
    width: 100%;
    padding: 0;
}

.contact_form .col-xs-7 {
    padding-left: 100px;
}

.contact_form .col-xs-5 a:hover {
    color: #1d6068;
}

.contact_form p {
    margin: 0;
}

.input_data {
    width: 100%;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    padding: 0 0 5px;
    border-radius: 0;
    background: #ffffff;
}

.section_contact:before,
.section_about:before,
.section_estate:before,
.section_project:before {
    content: none;
}

.row_input label {
    width: 100%;
}

.row_input .col-xs-12 {
    margin-bottom: 15px;
}

.row_input textarea {
    height: 200px;
}

.btn_submit {
    background: #b19867;
    color: #ffffff;
    margin-top: 0;
}

.btn_submit:hover {
    background: #1d6068;
    color: #ffffff;
}

.images_estate {
    height: 450px;
}

.images_estate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content_estate {
    margin-top: 50px;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.details_estate {
    padding: 50px 0 50px 50px;
}

.content_estate .box_estate:nth-last-child(1) .col-xs-7 {
    float: right;
}

.content_estate .box_estate:nth-last-child(1) {
    position: relative;
    margin-top: -50px;
    display: inline-block;
    width: 100%;
}

.content_estate .box_estate:nth-last-child(1) .images_estate img {
    clip-path: polygon(36% 20%, 36% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
}

.content_estate p {
    margin: 0;
}

.content_estate .box_estate:nth-last-child(1) .details_estate {
    padding: 100px 50px 50px 0;
}

.content_estate .box_estate:nth-last-child(1) .images_estate {
    height: 500px;
}

.section_masterplan {
    padding: 0 !important;
}

.section_masterplan h2 {
    color: #b49e70;
    font-size: 32px;
}

.section_masterplan p {
    margin: 0;
}

.section_villatype {
    padding: 100px 0;
    text-align: center;
}

.section_villatype h2 {
    color: #b49e70;
    font-size: 32px;
}

.section_villatype p {
    margin: 0;
    font-size: 18px;
}

.images_villatype {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.images_villatype img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content_villatype {
    padding-top: 50px;
}

.details_villatype {
    background: #b49e70;
    color: #ffffff;
    text-align: left;
    padding: 50px;
}

.details_villatype ul {
    margin: 25px 0 0;
    padding: 0;
    font-size: 16px;
}

.details_villatype li {
    list-style: none;
    padding: 0;
    width: 50%;
    float: left;
}

.details_villatype li:nth-child(even) {
    text-align: right;
}

.details_villatype li:nth-child(odd) {
    font-family: 'Inter_SemiBold', 'sans-serif';
}

.details_villatype h3 {
    font-size: 30px;
    font-family: 'AdobeCaslon_Pro', 'sans-serif';
    margin: 0;
    line-height: normal;
}

.masterplan {
    margin-top: 25px;
}

.masterplan img {
    height: 250px;
    width: auto;
    display: block;
}

.box_villatype {
    display: inline-block;
    width: 100%;
}

.content_villatype .box_villatype:nth-last-child(1) .col-xs-8 {
    float: right;
}

.content_villatype .box_villatype:nth-child(1) {
    padding-bottom: 50px;
}

.tab_gallerymobile {
    display: none;
}

.section_gallery {
    text-align: center;
    padding: 0;
}

.section_gallery h2 {
    color: #b49e70;
    font-size: 32px;
}

.section_gallery ul {
    margin: 30px auto;
    padding: 0;
    display: inline-block;
}

.section_gallery li {
    list-style: none;
    float: left;
    padding: 0 10px;
    text-transform: uppercase;
}

.section_gallery button {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 0 10px;
    margin: 0;
    position: relative;
}

.section_gallery button:before {
    content: '';
    background: #b49e70;
    width: 0;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 1s
}

.section_gallery button.active:before,
.section_gallery button:hover:before {
    width: 100%;
}

.overlay_gallery {
    position: absolute;
    background: #00000087;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    opacity: 0;
    width: calc(100% - 20px);
    margin: auto;
    right: 0;
    height: calc(100% - 20px);
    bottom: 0;
    transition: all 1s;
}

.gallery_categories img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transform: scale(1.0);
    transition: all 1s;
}

.gallery_categories .col-xs-3 {
    overflow: hidden;
    padding: 10px;
}

.gallery_categories .col-xs-3:hover .overlay_gallery {
    opacity: 1;
    cursor: pointer;
}

.gallery_categories .col-xs-3:hover img {
    transform: scale(1.0);
}

.gallery_categories {
    margin: 0 -10px;
}

.gallery_categories .animation {
    overflow: hidden;
    position: relative;
}

.section_location {
    padding: 100px 0;
    text-align: center;
}

.section_location h2 {
    color: #b49e70;
    font-size: 32px;
}

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

.section_location li {
    font-family: 'Inter_SemiBold', 'sans-serif';
    width: 100%;
    list-style: none;
    border-bottom: 1px solid #c7c7c7;
    padding: 8px 10px;
}

.images_map {
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.images_map img {
    height: 100%;
    width: auto;
    margin: 0 auto;
}

.content_location {
    margin-top: 50px;
    text-align: left;
}

.section_location label {
    float: right;
    font-family: 'Inter_Regular', 'sans-serif';
}

.section_googlemap {
    padding-bottom: 100px;
    text-align: center;
}

.section_googlemap iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.section_googlemap .btn_seegallery:hover {
    color: #ffffff;
    background: #b49e70;
}

.section_masterplan .master_plan {
    margin: 50px 0 0 !important;
}

.images_hover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    opacity: 0;
    z-index: 1;
}

.images_hightlight:hover .images_hover {
    opacity: 1;
}

.slide_villatype .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}

.slide_villatype .slick-dots li.slick-active button,
.slide_villatype .slick-dots button {
    background: #ffffff;
}

.masterplan_mobile {
    display: none;
}

.section_construction {
    text-align: center;
    padding: 0 0 100px 0;
}

#select-box {
    border: none;
    color: #4d4d4d;
    padding: 0;
    line-height: 40px;
}

.box_select {
    padding: 0;
    border: none;
    border-bottom: none;
    display: inline-flex;
    margin: 0 10px;
    text-align: left;

}

.box_select i {
    margin-left: 10px;
    line-height: 38px;
}

.tab-container {
    padding-top: 30px;
}

.box_imagesgallery {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.box_imagesgallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
    transition: all 1s;
}

.box_gallery .col-xs-4 {
    padding: 15px;
}

.box_gallery .col-xs-4:hover .box_imagesgallery img {
    transform: scale(1.0);
}

.section_construction h2 {
    color: #b49e70;
    font-size: 32px;
}

.box_gallery {
    margin: 50px -15px 0;
}

.dropdown_new .dropdown_menu {
    background: #b59f71;
    color: #ffffffb3;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    /*transform-origin: top left;*/
    /*transition-duration: 0.5s;*/
    transform: translateY(-2em);
    transition: all 1s;
    /*max-height: 0;*/
    /*overflow: hidden;*/
    /*-webkit-transition: max-height 0.8s;*/
    /*-moz-transition: max-height 0.8s;*/
    /*transition: max-height 0.8s;*/
}

.dropdown_menu {
    color: #2c2a26;
}

.dropdown_menu li {
    width: 100%;
    padding: 0 25px !important;
    white-space: nowrap;
    margin: 0 !important;
}

.dropdown_menu a {
    line-height: normal !important;
    padding: 15px !important;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin: 0 !important;
    height: auto !important;
    border-bottom: 1px solid #ffffffb3;
}

.dropdown_menu li:nth-last-child(1) a {
    border-bottom: none;
}

.dropdown_menu a {
    width: 100%;
}

.dropdown_menu a:hover,
.dropdown_menu a.active {
    color: #fff;
}

.dropdown_new:hover .dropdown_menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

ul.dropdown_mobile {
    margin: 0;
    padding: 10px 0 0 25px;
    display: inline-block;
    width: 100%;
}

.section_ourproject_new {
    text-align: center;
}

.section_ourproject_new h2 {
    color: #1d6068;
}

.section_ourproject_new .container {
    width: 100%;
    padding: 0 100px;
}

.images_ourproject_new {
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.images_ourproject_new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.details_ourproject_new {
    padding: 0 0 0 50px;
    text-align: left;
}

.details_ourproject_new h3 {
    color: #b49e70;
    font-size: 30px;
    font-family: 'AdobeCaslon_Pro', 'sans-serif';
    margin: 0;
    font-weight: normal;
    line-height: normal;
}

.details_ourproject_new h4 {
    font-family: 'Inter_Regular', 'sans-serif';
    letter-spacing: normal;
    text-transform: none;
    font-weight: normal;
}

.details_ourproject_new p {
    margin-bottom: 0;
}

.row_ourproject_new {
    margin-top: 50px;
}

.details_ourproject_new .mask_img {
    width: 20px;
    height: 20px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #666666;
    transition: all 1s;
    margin-right: 5px;
    vertical-align: middle;
}

.row_ourproject_new .box_ourproject_new:nth-child(even) .col-xs-8 {
    float: right;
}

.row_ourproject_new .box_ourproject_new:nth-child(even) .details_ourproject_new {
    padding: 0 50px 0 0;
}

.row_ourproject_new .box_ourproject_new {
    margin-bottom: 50px;
    display: inline-block;
    width: 100%;
}

.row_ourproject_new .box_ourproject_new:nth-last-child(1) {
    margin-bottom: 0;
}

.details_ourproject_new .btn_seegallery {
    background: #b49e70;
}

.details_ourproject_new .btn_seegallery:hover {
    background: #1d6068;
    color: #ffffff;
}

.section_location_home {
    padding: 100px 0;
    text-align: center;
}

.section_location_home h2 {
    color: #1d6068;
}

.images_location {
    margin-top: 50px;
    display: inline-block;
    width: 820px;
}

.images_location img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.slide_project .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 30px;
    padding: 0;
}

.slide_project .slick-dots li.slick-active button,
.slide_project .slick-dots button {
    background: #ffffff;
}

.award-image {
    position: absolute;
    top: 110px;
    right: 40px;
    z-index: 1000;
    width: 120px;
    height: auto;
}

.award-img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .award-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -115%);
        right: auto;
        width: 110px;
        z-index: 1000;
    }
}