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



:root{
    --main-color:#362922;
    --body-color:#f2ebe8;
    --font-color:#3b3939;
    --font-calibri:'Calibri Light', 'sans-serif';
    --font-calibri-bold:'Calibri Bold', 'sans-serif';
    --font-gotham:'Gotham Light', 'sans-serif';
    --font-gotham-bold:'Gotham Bold', 'sans-serif';
    --font-didot:'Didot', 'sans-serif';
}
::selection {
    color: #ffffff;
    background: var(--main-color);
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-calibri);
    font-size: 18px;
    color: var(--font-color);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--body-color);
}

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;
}
.container {
    position: relative;
    padding: 0;
}
h1{
    font-family: var(--font-didot);
    text-transform: uppercase;
    margin: 0;
    color: var(--main-color);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 5px;
}
h2{
    font-family: var(--font-didot);
    text-transform: none;
    margin: 0;
    color: var(--main-color);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 5px;
}
h3{
    font-family: var(--font-gotham);
    color: var(--font-color);
    margin: 0;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: normal;
}
h4{
    font-family: var(--font-gotham);
    color: var(--font-color);
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 4px;
    font-weight: normal;
}
.section_header{
    position: fixed;
    width: 100%;
    top: 0;
    height: 100px;
    padding: 0 50px;
    z-index: 2;
    background: var(--body-color);
    transition: all 0.5s;
}
.brand_logo{
    position: absolute;
    left: 0;
    right: 0;
    display: inline-flex;
    height: 100px;
    padding: 25px 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    transition: all 0.5s;
}
.brand_logo img{
    width: auto;
    height: 100%;
    margin: auto;
    display: block;
}
.header_contact{
    float: right;
    position: absolute;
    right: 50px;
    height: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.header_contact ul{
    margin: 0;
    padding: 0;
}
.header_contact li{
    list-style: none;
    padding: 0;
    float: left;
}
.header_contact li a{
    display: inline-block;
}
.header_contact li:nth-last-child(1){
    padding-left: 15px;
}
.header_contact img{
    height: 25px;
    display: block;
    width: auto;
}
.header_contact .mask_img{
    width: 25px !important;
    height: 25px !important;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #73584a;
    transition: all 0.5s;
}
.header_contact .mask_img:hover{
    background: var(--main-color);
}
.hamberger_menu {
    display: block;
    height: 100px;
    float: left;
}
.button_container {
    position: absolute;
    height: 18px;
    width: 30px;
    margin: auto;
    cursor: pointer;
    transition: all 1s;
    z-index: 15;
    left: 50px;
    right: auto;
    top: 0;
    bottom: 0;
}
.button_container:before{
    content: 'Menu';
    position: absolute;
    left: 45px;
    top: -5px;
    bottom: auto;
    text-transform: uppercase;
    font-family: var(--font-gotham);
    letter-spacing: 1px;
    transition: 0.5s;
}

.button_container:hover {
    opacity: 1;
}
.button_container.active:before{
    content: 'Close';
    color: #ffffff;
}

.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: var(--main-color);
    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 {
    font-family: var(--font-gotham);
    position: fixed;
    background: var(--main-color);
    top: 0;
    left: 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;*/
    /*background-image: url('../images/icon/bg_description.jpg');*/
}

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

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

    margin: 100px auto 0;
    position: relative;
    height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;
    padding: 0 50px;
}

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

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

.fix_body {
    overflow: hidden !important;
}
ul.sub_menu{
    margin: 0;
    padding: 15px 0 0 25px;
}
ul.sub_menu li::before {
    content: "-";
}
ul.sub_menu a{
    display: inline!important;
}
.section_slideshow{
    position: relative;
    overflow: hidden;
    padding: 0;
}
.slideshow{
    border: 50px solid #f2ebe9;
    border-top: 100px solid #f2ebea;
}
.slideshow .pagination .item::before{
    width: 30px;
}
.slideshow .pagination .item{
    width: 35px;
}
.section_intro{
    padding: 50px 0 100px 0;
    text-align: center;
}
.section_intro h1, .section_masterplan h1, .section_nearby h1, .section_progress h1{
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section_intro h1:before, .section_masterplan h1:before, .section_nearby h1:before, .section_progress h1:before{
    content: '';
    background: var(--main-color);
    width: 80px;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.3;
}
.images_intro{
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_intro img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.row_intro{
    margin: 100px -25px 0;
    text-align: justify;
}
.row_intro .col-xs-6{
    padding: 0 25px;
}
.row_intro .col-xs-12{
    padding: 50px 25px 0;
    text-align: center;
}
.details_intro p:nth-child(1){
    margin-top: 0;
}
.details_intro p:nth-last-child(1){
    margin-bottom: 0;
}
.row_intro .col-xs-6:nth-child(1) .images_intro{
    margin-top: 50px;
    height: 550px;
}
.row_intro .col-xs-6:nth-child(2) .images_intro{
    margin-bottom: 50px;
}
.row_intro .col-xs-12 .images_intro{
    margin-bottom: 50px;
    height: auto!important;
}
.row_intro .col-xs-12 .images_intro img{
    height: auto!important;
}
.btn_discover{
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: none;
    padding: 15px 30px;
    font-family: var(--font-gotham-bold);
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 2px;
    font-size: 16px;
}
.btn_discover:hover{
    background: var(--main-color);
    color: #ffffff;
}
.section_masterplan{
    padding: 0 50px 50px;
    text-align: center;
}
.box_masterplan{
    border: 1px solid var(--main-color);
    padding: 50px 0;
}
.row_masterplan{
    margin-top: 50px;
}
.row_masterplan img{
    width: auto;
    height: 600px;
    display: block;
}
.row_masterplan .col-xs-4{
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    right: -50px;
}
.row_masterplan .col-xs-8{
    float: right;
    position: relative;
}
.row_masterplan .col-xs-12{
    margin-top: 50px;
}
.row_masterplan label{
    font-family: var(--font-calibri-bold);
    width: 30px;
    height: 30px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 100%;
    background: var(--main-color);
    color: #ffffff;
    margin-right: 15px;
    padding: 2px 0;
}
.row_masterplan ul{
    margin: 0 0 0 auto;
    padding: 0;
    float: right;
    font-family: var(--font-gotham);
    text-transform: uppercase;
    text-align: left;
}
.row_masterplan li{
    list-style: none;
    padding: 10px 0;
}
.section_nearby{
    overflow: hidden;
    padding: 100px 0;
    text-align: center;
    background: #e9e2df;
}
.images_nearby{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
    text-align: justify;
}
.images_nearby img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.row_nearby{
    margin: 100px -15px 0;
}
.row_nearby .col-xs-4, .row_nearby .col-xs-2, .row_nearby .col-xs-3{
    padding: 0 15px;
}
.row_nearby .col-xs-12{
    margin-top: 50px;
    padding: 0 15px;
}
.row_nearby .col-xs-5{
    float: right;
}
.row_nearby .col-xs-5 .col-xs-3{
    width: 50%;
}
.row_nearby .col-xs-7 .col-xs-4{
    width: 70%;
}
.row_nearby .col-xs-7 .col-xs-2{
    width: 30%;
}
.section_ig{
    padding: 100px;
    text-align: center;
}
.widget_ig{
    margin: 50px 0;
    font-family: var(--font-gotham);
}
.widget_ig img{
    width: 100%;
    display: block;
}
.section_ig p {
    margin: 0;
    color: var(--font-color);
    font-size: 18px;
    display: inline;
    font-family: var(--font-gotham);
}
.section_ig h3 > label{
    font-family: var(--font-gotham-bold);
}

.btn_ig {
    font-family: var(--font-gotham);
    font-size: 18px;
    padding: 15px 40px;
    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;
}

.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{
    font-family: var(--font-gotham);
    padding: 50px 0;
    background: #c9bfbb;
    color: var(--main-color);
}
.section_footer img{
    height: 80px;
}
.section_footer ul{
    margin: 0;
    padding: 0;
}
.section_footer li{
    list-style: none;
}
.section_footer ul.sub_footer{
    padding-left: 25px;
}
.section_footer ul.sub_footer li::before {
    content: "-";
}
.section_footer h4{
    color: #3c3c3c;
    margin-bottom: 10px;
    font-family: var(--font-gotham-bold);
    letter-spacing: 1px;
}
.section_footer p > label{
    display: inline-block;
    width: 100%;
}
.social_media{
    margin-top: 15px;
}
.social_media li{
    float: left;
    padding: 0 5px;
}
.social_media li:nth-child(1){
    padding-left: 0;
}
.social_media .mask_img{
    width: 25px !important;
    height: 25px !important;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #523e33;
    transition: all 0.5s;
}
.social_media .mask_img:hover{
    background: var(--main-color);
}
.section_copyright{
    background: #7f7673;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-family: var(--font-gotham);
    letter-spacing: 1px;
}
.section_copyright p{
    margin: 0;
}
.section_copyright p:nth-last-child(1){
    float: right;
}
.section_copyright p:nth-child(1){
    float: left;
}
.section_copyright a{
    color: #cd900e;
}
.section_copyright a:hover{
    color: #fdc20f;
}
.row_footer p{
    margin: 0;
}
.section_header.scroll_menu{
    box-shadow: #00000012 0 3px 8px;
    height: 60px;
}
.scroll_menu .brand_logo{
    height: 60px;
    padding: 12px 0;
}
.details_nearby p > label{
    font-family: var(--font-calibri-bold);
}
.details_nearby p:nth-child(1){
    margin-top: 0;
}
.section_slideshow{
    height: 70vh;
}
.section_slideshow .section_parallax{
    height: 100%;
}
.section_slideshow .section_parallax img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section_slideshow_home{
    height: 100vh!important;
}
.section_intro_ourteam p>label{
    font-family: var(--font-calibri-bold);
}
.section_intro_ourteam h1{
    margin-bottom: 30px;
}
.section_ourteam{
    padding: 100px 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
}
.images_ourteam{
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_ourteam img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.text_ourteam{
    position: absolute;
    left: 25%;
    text-align: left;
}
.text_ourteam h2{
    color: #ffffff;
    line-height: normal;
}
.text_ourteam p{
    margin: 0;
}
.details_ourteam{
    margin-top: 50px;
}
.details_ourteam p:nth-child(1){
    margin-top: 0;
}
.details_ourteam p:nth-last-child(1){
    margin-bottom: 0;
}
.logo_al{
    position: absolute;
    bottom: 50px;
    left: 50px;
}
.logo_al img{
    height: 70px;
    width: auto!important;
}
.section_aboutus{
    padding: 0 0 100px 0;
}
.images_aboutus{
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.images_aboutus img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_aboutus{
    padding: 50px 0 0 50px;
}
.details_aboutus p{
    margin-top: 0;
}
.details_aboutus h2{
    font-size: 36px;
    letter-spacing: 2px;
}
.section_aboutus .container{
    width: 100%;
    padding: 0 100px;
}
.section_aboutus .row_aboutus{
    margin-bottom: 100px;
    display: inline-block;
    width: 100%;
}
.section_aboutus .row_aboutus:nth-last-child(1){
    margin-bottom: 0;
}
.section_aboutus .row_aboutus:nth-child(even) .col-xs-8{
    float: right;
}
.section_aboutus .row_aboutus:nth-child(even) .details_aboutus{
    padding: 50px 50px 0 0;
}
.images_location{
    display: flex;
    align-items: center;
}
.images_location img{
    width: 100%;
    height: auto;
    display: block;
}
.details_location{
    padding-left: 50px;
    font-family: var(--font-calibri-bold);
}
.details_location ul{
    width: 100%;
    margin: 0;
    padding: 0;
}
.details_location li{
    width: 100%;
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #d7c8c2;
}
.details_location li:nth-last-child(1){
    border-bottom: none;
}
.details_location .distance{
    float: right;
    font-family: var(--font-calibri);
    text-align: right;
}
.details_location .distance label:nth-child(1){
    margin-right: 25px;
}
.section_location{
    padding-bottom: 100px;
}
.section_location .container{
    display: flex;
    align-items: center;
}
.section_googlemap{
    padding: 0 50px 100px;
    text-align: center;
}
.section_googlemap iframe{
    width: 100%;
    height: 600px;
    display: block;
}
.section_googlemap .btn_discover{
    margin-top: 50px;
}
.section_contactus{
    padding-bottom: 100px;
}
.section_contactus label{
    display: inline-block;
    width: 100%;
}
.section_contactus ul{
    margin: 0;
    padding: 0;
}
.section_contactus li{
    list-style: none;
    width: 100%;
    padding: 10px 0;
    display: flex;
}
.section_contactus .mask_img {
    width: 25px !important;
    height: 25px !important;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #000000;
    transition: all 0.5s;
    margin-right: 10px;
}
.section_contactus .col-xs-6:nth-child(1){
    padding-right: 50px;
}
.input_data{
    padding: 10px;
    background: none;
    width: 100%;
    border: 1px solid #a18e85;
    display: block;
}
.section_contactus a:hover{
    color: var(--main-color);
}
.row_input .col-xs-12{
    padding-bottom: 15px;
}
textarea.input_data{
    height: 200px;
}
.row_input .col-xs-12:nth-last-child(1){
    margin-bottom: 0;
}
span.error, #span_error{
    margin-top: 3px;
}
#span_error{
    margin-top: 0;
}
.section_tiara{
    display: flow-root;
    width: 100%;
}
.images_introtiara img{
    width: 991px;
    height: auto;
    display: block;
    margin: 50px auto 0;
}
.images_tiara{
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_tiara img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_tiara{
    padding: 0 50px;
    display: flex;
    align-items: center;
}
.details_tiara h2{
    line-height: normal;
    font-size: 36px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 25px;
}
.details_tiara h2:before{
    content: '';
    background: #b3b3b3;
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.details_tiara ul{
    margin: 25px 0;
    padding: 0;
}
.details_tiara ul:nth-last-child(1){
    margin-bottom: 0;
}
.details_tiara li{
    width: 100%;
    list-style: none;
    padding: 5px 0;
}
.details_tiara .distance{
    float: right;
    text-align: right;
}
.images_typeplan{
    text-align: center;
}
.images_typeplan img{
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.details_tiara .col-xs-6:nth-last-child(2){
    padding-right: 50px;
}
.slick-arrow{
    background: none;
    border: none;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 30px;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 1;
}
.slick-arrow img{
    filter: brightness(0) invert(1);
    height: 30px;
}
.slick-next{
    right: 30px;
    left: auto;
}
.slick-prev{
    left: 30px;
    right: auto;
}
.slick-dots{
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
}
.slick-dots li.slick-active button, .slick-dots button{
    background: #ffffff;
}
.slick-dots li {
    margin: 0 5px;
}
.section_tiara{
    padding: 50px 0 0;
}
.section_tiara .row_tiara{
    margin: 0 0 100px 0;
    display: inline-block;
    width: 100%;
}
.section_tiara .row_tiara:nth-last-child(1){
    margin-bottom: 0;
}
.section_tiara .row_tiara:nth-child(even) .col-xs-6:nth-child(1){
    float: right;
}
.section_tiara .row_tiara:nth-child(even) .details_tiara .col-xs-6{
    float: left!important;
}
.section_progress{
    padding: 100px 0;
    text-align: center;
}
.tab-content{
    margin-top: 50px;
}
#select-box{
    background: none;
    border: none;
    color: #4d4d4d;
    padding: 0 0 0 5px;
    line-height: 40px;
}
.box_select{
    padding: 0 10px;
    border: 1px solid #000;
    display: inline-flex;
    margin: 0 10px;

}
.box_select i{
    margin-left: 10px;
    line-height: 38px;
}
.tab-container{
    padding-top: 50px;
}
.images_gallery{
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
    transition: all 1s;
}
.box_gallery .col-xs-4{
    padding: 10px;
}
.gallery{
    margin-left: -10px;
    margin-right: -10px;
}
.box_imagesgallery{
    overflow: hidden;
}
.box_gallery .col-xs-4:hover .images_gallery{
    transform: scale(1.0);
}
.dropdown_new .dropdown_menu{
    background: #000000b3;
    color: #b3b3b3;
    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!important;
    white-space: nowrap;
}
.dropdown_menu a{
    line-height: normal!important;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    width: 100%;
}
/*.dropdown_new:hover .dropdown_menu{*/
/*    opacity: 1;*/
/*    !*transform: scaleY(1);*!*/
/*    transform: translateY(0);*/
/*    pointer-events: auto;*/
/*    !*max-height: 500px!important;*!*/
/*}*/
.dropdown_menu a{
    width: 100%;
}
.dropdown_menu a:hover{
    background: #d5a752;
    color: #fff;
}
.dropdown_new.active .dropdown_menu{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.row_masterplan .col-xs-8 label{
    margin: 0;
    font-size: 14px;
    width: 25px;
    height: 25px;
    position: absolute;
}
.row_masterplan .col-xs-8 label.soldout, .row_masterplan label.soldout{
    background: #bd1010;
}
.row_masterplan .col-xs-8 .a1{
    right: 36%;
    top: 82%;
}
.row_masterplan .col-xs-8 .a2{
    right: 45%;
    top: 82%;
}
.row_masterplan .col-xs-8 .a3{
    right: 55%;
    top: 82%;
}
.row_masterplan .col-xs-8 .a4{
    right: 64%;
    top: 82%;
}
.row_masterplan .col-xs-8 .a5{
    right: 64%;
    top: 59%;
}
.row_masterplan .col-xs-8 .a6{
    right: 66%;
    top: 47%;
}
.row_masterplan .col-xs-8 .a7{
    right: 68%;
    top: 36%;
}
.row_masterplan .col-xs-8 .a8{
    right: 70%;
    top: 24%;
}
.row_masterplan .col-xs-8 .a9{
    right: 54%;
    top: 34%;
}
.row_masterplan .col-xs-8 .a10{
    right: 47%;
    top: 42%;
}
.row_masterplan .col-xs-8 .a11{
    right: 41%;
    top: 51%;
}
.row_masterplan .col-xs-8 .b1{
    right: 73%;
    top: 80%;
}
.row_masterplan .col-xs-8 .c1{
    right: 29%;
    top: 58%;
}
.row_masterplan .col-xs-8 .d1{
    right: 79%;
    top: 14%;
}
.row_masterplan .col-xs-8 .e1{
    right: 45%;
    top: 66%;
}
.row_masterplan .col-xs-8 .e2{
    right: 89%;
    top: 14%;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: var(--main-color);
}
.register_button{
    margin-bottom: 100px;
}
.register_button .btn_discover{
    background: #533322;
    color: #ffffff;
}
.register_button .btn_discover:hover{
    background: var(--main-color);
}
.section_intro_ourteam img.logo_brandmark{
    height: 25px;
    width: auto;
    display: block;
    margin: 25px auto 0;
}
.section_intro_ourteam p > label{
    letter-spacing: 10px;
}
.details_aboutus img{
    height: 90px!important;
    width: auto!important;
    object-fit: contain;
    object-position: left;
    margin-bottom: 15px;
}