@font-face {
    font-family: 'Basker_Ville';
    src: url('../font/baskvill-webfont.woff2') format('woff2'),
    url('../font/baskvill-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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



:root{
    --pimary-color:#4c2f2c;
    --secondary-color:#d5c0a1;
    --third-color:#c1aaa9;
    --font-body: 'Calibri_Light', 'sans-serif';
    --font-storng: 'Calibri_Bold', 'sans-serif';
    --font-title: 'Basker_Ville', '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: #272727;
    line-height: 1.5;
    overflow-x: hidden;
    background: #f3eee7;
    letter-spacing: 0.5px;
}

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

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}
::selection {
    color: #ffffff;
    background: var(--secondary-color);
}
.container {
    /*width: 1600px;*/
    padding: 0;
    position: relative;
}
h1{
    font-family: var(--font-title);
    color: var(--secondary-color);
    margin: 0;
    font-size: 36px;
    font-weight: inherit;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h2{
    font-family: var(--font-title);
    color: var(--secondary-color);
    margin: 0;
    font-size: 32px;
    font-weight: inherit;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h3{
    font-family: var(--font-title);
    color: var(--secondary-color);
    margin: 0;
    font-size: 18px;
    font-weight: inherit;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h4{
    font-family: var(--font-body);
    margin: 0;
    font-size: 18px;
    font-weight: inherit;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #595959;
}
.section_slideshow{
    width: 100%;
    height: 100vh;
    position: relative;
}
.section_slideshow img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
.section_header{
    position: fixed;
    width: 100%;
    height: 70px;
    background: var(--secondary-color);
    text-align: center;
    z-index: 2;
    color: #000000;
    padding: 0 30px;
    top: 0;
}
.brand_logo{
    position: absolute;
    left: 0;
    right: 0;
    height: 70px;
    padding: 5px 0;
    margin: auto;
    width: fit-content;
}
.brand_logo img{
    width: auto;
    height: 100%;
    margin: auto;
}
.book_header{
    text-align: right;
}
.book_header ul{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    line-height: 70px;
    float: right;
}
.book_header li{
    list-style: none;
    padding: 0 10px;
}
.book_header li:nth-last-child(1){
    padding-right: 0;
}
.btn_register{
    padding: 8px 20px;
    text-transform: uppercase;
    font-family: var(--font-title);
    color: var(--secondary-color);
    letter-spacing: 1px;
    background: var(--pimary-color);
    border: 1px solid var(--pimary-color);
    transition: all 0.25s;
}
.btn_register:hover{
    background: transparent;
    color: var(--pimary-color);
}
.hamberger_menu {
    display: block;
    height: 70px;
    position: absolute;
    left: 30px;
}

.button_container {
    position: absolute;
    /*top: 0;*/
    /*bottom: 0;*/
    height: 18px;
    width: 30px;
    margin: auto;
    cursor: pointer;
    transition: all 1s;
    z-index: 15;
    right: auto;
    left: 0;
    top: 0;
    bottom: 0;
}

.button_container:hover {
    opacity: 1;
}

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

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

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

.button_container span {
    background: var(--pimary-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(1) {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay ul li a.active,
.overlay ul li a:hover,
.nav_mobile .overlay-menu .active {
    color: var(--secondary-color);
    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;
}
.navbar_fix li>ul{
    margin-top: 10px;
    padding: 0 25px;
    margin-left: 10px;
}
.navbar_fix li>ul li:nth-last-child(1){
    padding-bottom: 0;
}
.navbar_fix li>ul li:before{
    content: '';
    width: 6px;
    height: 6px;
    background: #9d7571;
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
    transform-origin: center;
}
.button_container.active{
    right: auto;
    left: 260px;
}
.button_container.active span{
    background: var(--secondary-color)!important;
}
.images_icon {
    object-fit: cover;
    /* display: inline-block; */
    width: 23px;
    height: 23px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: var(--secondary-color);
    margin: auto;
    transition: all 0.25s;
    vertical-align: middle;
}
.social_header li{
    float: left;
    width: auto !important;
    padding: 0 10px !important;
}
.social_header li:nth-child(1){
    padding-left: 0!important;
}
.social_header{
    position: absolute !important;
    left: 30px;
    bottom: 30px;
    top: auto;
    margin: 0 !important;
    height: auto !important;
    padding: 0 !important
}
.scroll_down{
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}
.scroll_down a span {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -12px;
    border-left: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb04 2s infinite;
    animation: sdb04 2s infinite;
    box-sizing: border-box;
    z-index: 2;
}
@-webkit-keyframes sdb04 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }
    20% {
        -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    }
    40% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }
}
@keyframes sdb04 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
    }
    20% {
        transform: rotate(-45deg) translate(-10px, 10px);
    }
    40% {
        transform: rotate(-45deg) translate(0, 0);
    }
}
.section_description{
    padding: 100px 0;
    text-align: center;
    background-image: url('../images/icon/bg.jpg');
    background-size: cover;
    position: relative;
    background-position: center;
    color: var(--third-color);
}
.section_description .container{
    width: 1600px;
    padding: 0 100px;
}
.section_description h1>label{
    display: inline-block;
    width: 100%;
}
.section_description p>label{
    display: inline-block;
    width: 100%;
}
strong{
    font-family: var(--font-storng);
}
.photo_description img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.photo_description .col-xs-5, .photo_description .col-xs-7{
    padding: 0 10px;
}
.row_description{
    margin: 0 -10px;
}
.photo_description{
    padding: 50px 0 0;
    display: flow-root;
    width: 100%;
}
.section_highlights{
    padding: 100px 0;
    text-align: center;
}
.section_highlights .container{
    width: 1600px;
    padding: 0 100px;
}
.section_highlights h2{
    color: var(--pimary-color);
}
.photo_highlights img{
    width: 100%;
    display: block;
    margin: auto;
}
.details_highlights li{
    width: 50%;
    float: left;
    list-style: none;
    padding: 15px 10px;
}
.details_highlights li:nth-child(1){
    padding-left: 0;
    font-family: var(--font-storng);
    text-transform: uppercase;
}
.details_highlights li:nth-last-child(1){
    padding-right: 0;
}
.details_highlights ul:nth-last-child(1){
    border-bottom: none;
}
.photo_highlights{
    display: flex;
    align-items: center;
    text-align: left;
    margin-top: 50px;
}
.details_highlights ul{
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--pimary-color);
    display: flow-root;
    width: 100%;
}
.details_highlights{
    padding-left: 50px;
}
.btn_more{
    border: 1px solid var(--pimary-color);
    color: var(--pimary-color);
    padding: 8px 20px;
    font-family: var(--font-storng);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 50px;
    background: none;
    transition: all 0.25s;
}
.btn_more:hover{
    background: var(--pimary-color);
    color: var(--secondary-color);
}
.section_design{
    padding: 0 0 0;
    display: flow-root;
    width: 100%;
}
.section_design .container{
    width: 1600px;
    padding: 0 100px;
}
.slick-dots li {
    margin: 0 5px;
}
.photo_design{
    position: relative;
}
.photo_design img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.photo_design .slick-dots{
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
}
.photo_design .slick-dots button, .photo_design .slick-dots li.slick-active button{
    background: #ffffff;
}
.details_design{
    padding: 50px 50px 0;
    display: flow-root;
    width: 100%;
}
.details_design .col-xs-6{
    padding: 0 50px;
}
.details_design .col-xs-6:nth-child(1){
    text-align: right;
}
.details_design .col-xs-6:nth-child(2){
    border-left: 1px solid var(--pimary-color);
}
.row_design{
    margin: 0 -50px;
}
.row_design h4, .section_highlights h4{
    margin-top: 5px;
}
.details_design h2{
    color: var(--pimary-color);
}
.details_design h2>label{
    display: inline-block;
    width: 100%;
}
.section_location{
    padding: 100px 0;
    display: flow-root;
    width: 100%;
}
.section_location .container{
    width: 1600px;
    padding: 0 100px;
}
.section_location img{
    width: 100%;
    display: block;
}
.details_location{
    padding: 0 50px 0 0;
    color: var(--pimary-color);
}
.details_location h2{
    color: var(--pimary-color);
    margin-bottom: 30px;
}
.details_location ul{
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--pimary-color);
    display: flow-root;
    width: 100%;
}
.details_location li{
    float: left;
    list-style: none;
    padding: 15px 25px;
    width: 50%;
}
.details_location li:nth-child(1){
    padding-left: 0;
}
.details_location li:nth-last-child(1){
    text-align: right;
    padding-right: 0;
}
.images_location, .images_location iframe{
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.row_location .col-xs-6:nth-child(1){
    float: right;
}
.images_location img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_location .btn_more{
    margin-top: 30px;
}
.details_location ul:nth-last-child(2){
    border-bottom: none;
}
.details_location .images_icon{
    height: 20px;
    width: 20px;
    background: var(--pimary-color);
    display: inline-block;
    margin-right: 10px;
}
.box_register{
    width: 768px;
    background: #442f2b;
    padding: 25px;
    display: flow-root;
    margin: auto;
    color: #ffffff;
}
.form_register{
    padding: 50px;
    border: 1px solid #ffffff;
    display: flow-root;
    width: 100%;
    text-align: center;
}
.form_register h2{
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 5px;
}
.form_register p{
    margin: 0;
}
.form_register .arrow_select{
    height: 12px;
    width: 14px;
    filter: brightness(0) invert(1);
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
}
.form_register .col-xs-12{
    position: relative;
    margin-bottom: 25px;
    text-align: left;
}
.form_register .col-xs-12:nth-last-child(1){
    margin-bottom: 0;
}
.form_register .col-xs-12 span{
    color: red;
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
    padding: 0;
    letter-spacing: normal;
}
.input_data{
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    background: none;
}
.form_register ::placeholder{
    color: #ffffff;
}
.row_input{
    margin-top: 50px;
}
.btn_submit{
    margin-top: 0!important;
    border-color: #ffffff;
    color: #ffffff;
}
.btn_submit:hover{
    background: #ffffff;
    color: var(--pimary-color);
}
.section_connect{
    padding: 100px 0;
    text-align: center;
}
.section_connect .container{
    width: 1600px;
    padding: 0 100px;
}
.section_connect h2{
    font-size: 32px;
    color: var(--pimary-color);
}
.section_connect h4{
    text-transform: none;
    margin-top: 5px;
}
.widget_ig{
    margin-top: 50px;
}
.widget_ig img{
    width: 100%;
    height: auto;
    display: block;
}
.section_footer{
    background-image: url('../images/icon/bg.jpg');
    background-size: cover;
    background-position: center -100px;
    text-align: center;
    padding: 50px 0;
}
.section_footer img{
    height: 100px;
    width: auto;
    margin: auto;
    display: block;
}
.section_footer .col-xs-3, .section_footer .col-xs-6{
    padding: 0;
}
.section_footer .col-xs-6{
    padding-left: 80px;
}
.row_address{
    text-align: left;
    width: 100%;
    margin: 50px auto 0;
    color: #ffffff;
}
.section_footer h3{
    margin-bottom: 15px;
}
.section_footer a:hover{
    color: var(--secondary-color);
}
.row_address ul{
    margin: 0;
    padding: 0;
}
.row_address li{
    list-style: none;
    padding: 5px 0;
    line-height: normal;
    position: relative;
}
.row_address li>ul{
    padding: 10px 0 0 35px;
}
.row_address li>ul>li:before{
    content: '';
    width: 6px;
    height: 6px;
    border: 1px solid #fff;
    background: none;
    position: absolute;
    left: -20px;
    bottom: 0;
    top: 0;
    margin: auto;
    transform: rotate(45deg);
    transform-origin: center;
}
.contact_footer li>label{
    width: 100px;
}
.row_address p{
    margin: 0;
}
.copyright{
    padding: 15px 0;
    background: #321f1d;
    color: #ffffff;
}
.copyright label{
    float: right;
}
.copyright .container{
    margin: auto;
    padding: 0;
}
.copyright a:hover{
    color: var(--secondary-color);
}
.slide_show .slide img{
    transition: all 0.25s;
    transform: scale(1.01);
}
.slide_show .slide.slick-active img{
    transform: scale(1.0);
}
.btn_slideshow{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    height: 40px;
    z-index: 1;
    padding: 0 30px;
}
.btn_slideshow img{
    width: auto;
    height: 40px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.3;
}
.btn_slideshow img:hover{
    opacity: 1;
}
.btn_slideshow button{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
.next_btn{
    float: right;
 }
.book_header .images_icon{
    background: var(--pimary-color);
    display: none;
}
.book_header a:hover{
    color: var(--pimary-color);
}
.contact_footer .images_icon{
    background: var(--secondary-color);
}
.contact_footer ul:nth-last-child(1){
    display: none;
}
.contact_footer ul:nth-last-child(1) li{
    width: auto;
    float: left;
    padding: 10px;
}
.tel_header_m{
    display: none;
    position: absolute;
    left: 80px;
    height: 70px;
    align-items: center;
}
.tel_header_m .images_icon{
    background: var(--pimary-color);
}
.section_parallax{
    height: 500px;
    margin-top: 70px;
}
.section_parallax img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section_aboutus{
    text-align: center;
    padding: 100px 0;
}
.section_aboutus h1{
    color: var(--pimary-color);
}
.section_aboutus h4{
    margin-top: 5px;
}
.images_about{
    height: 500px;
}
.images_about img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.photo_about{
    text-align: left;
    margin-top: 50px;
}
.row_about{
    display: flow-root;
    width: 100%;
}
.photo_about .row_about:nth-child(1) .col-xs-7 .images_about{
    border-left: 50px solid #f3eee7;
    border-bottom: 50px solid #f3eee7;
}
.photo_about .row_about:nth-child(2) .col-xs-5{
    float: right;
}
.photo_about .row_about:nth-child(2){
    position: relative;
    margin-top: -300px;
    z-index: -1;
}
.photo_about .row_about:nth-child(1) .details_about{
    padding: 0 50px 0 0;
}
.photo_about .row_about:nth-child(2) .details_about{
    padding: 0 0 50px 50px;
}
.photo_about .row_about:nth-child(2) .images_about{
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.section_highlights_info{
    padding: 0!important;
    background: var(--pimary-color);
    color: #ffffff;
    display: flow-root;
    width: 100%;
}
.section_highlights_info .photo_highlights{
    margin-top: 0;
}
.section_highlights_info .details_highlights h2{
    color: #f3eee7;
    margin-bottom: 30px;
}
.images_highlights{
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section_highlights_info .details_highlights{
    text-align: center;
    padding: 100px;
    color: #f3eee7;
}
.section_highlights_info .details_highlights ul{
    text-align: left;
    border-color: #f3eee7;
}
.images_highlights img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section_highlights_info .details_highlights li:nth-child(1){
    text-transform: none;
}
.section_design_info{
    padding: 100px 0;
}
.contact_info{
    margin-top: 50px;
}
.contact_info ul{
    display: inline-block;
    margin: auto;
    padding: 0;
}
.contact_info li{
    display: flex;
    align-items: center;
    float: left;
    padding: 0 25px;
    text-align: left;
    line-height: normal;
}
.contact_info li:hover label{
    color: var(--pimary-color);
}
.contact_info p{
    margin: 0;
    text-transform: uppercase;
}
.contact_info .images_contact{
    margin-right: 15px;
    border: 2px solid var(--pimary-color);
    border-radius: 100%;
    padding: 10px;
}
.contact_info label{
    text-transform: none;
    font-family: var(--font-storng);
    font-size: 18px;
}
.contact_info .images_icon{
    width: 25px;
    height: 25px;
    background: var(--pimary-color);
}
.section_register_contact{
    padding: 100px 0 0;
}
.section_register_contact .box_register{
    background: none;
    padding: 0;
    color: inherit;
}
.section_register_contact .form_register{
    border-color: var(--pimary-color);
    margin: 0;
}
.section_register_contact .box_register h2{
    color: var(--pimary-color);
}
.section_register_contact .col-xs-6{
    padding: 0 25px;
    margin-bottom: 25px;
    position: relative;
}
.section_register_contact .col-xs-12{
    padding: 0 25px;
    margin-bottom: 25px;
}
.section_register_contact .input_data{
    border-color: #9c7f6c;
    color: #272727;
    line-height: inherit;
    border-radius: 0;
}
.section_register_contact ::placeholder{
    color: #272727;
}
.section_register_contact .form_register .arrow_select{
    filter: invert(54%) sepia(21%) saturate(525%) hue-rotate(341deg) brightness(93%) contrast(79%);
    right: 25px;
    top: 20px;
}
.section_register_contact .btn_submit{
    background: var(--pimary-color);
    color: #ffffff;
    border: 1px solid var(--pimary-color);
    transition: all 0.25s;
}
.section_register_contact .btn_submit:hover{
    background: transparent;
    color: var(--pimary-color);
}
.section_map{
    padding: 100px 0;
}
.section_map .container{
    width: 1600px;
    padding: 0 100px;
}
.section_map img{
    width: 100%;
    display: block;
}
.section_register_contact .row_input{
    text-align: left;
    margin: 0 -25px;
}
.section_register_contact .form_register .col-xs-6 span, .section_register_contact .form_register .col-xs-12 span{
    color: red;
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
    padding: 0;
    letter-spacing: normal;
}
.box_status{
    text-align: center;
    margin: 30px 0;
}
.box_status ul{
    margin: 0  auto;
    display: inline-block;
    background: #e8e1d7;
    border-radius: 50px;
    padding: 10px 15px;
    color: var(--pimary-color);
    font-family: var(--font-storng);
}
.box_status li{
    float: left;
    list-style: none;
    padding: 0 15px;
}
.box_status li span{
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: var(--pimary-color);
    display: inline-block;
    margin-right: 5px;
}
.box_status li:nth-child(2) span{
    background: #d41500;
}
.section_masterplan img{
    width: 700px;
    margin: auto;
    display: block;
}
.section_masterplan h4{
    margin-top: 5px;
}
.section_villatype{
    display: flow-root;
    width: 100%;
}
.section_villatype .row_villatype{
    display: flow-root;
    width: 100%;
}
.section_villatype .row_villatype:nth-child(odd) .col-xs-8{
    float: right;
}
.images_villartpe{
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_villartpe img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_villartpe{
    background: #442f2b;
    padding: 15px;
}
.content_villatype{
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: #ffffff;
    padding: 50px;
}
.details_villartpe_list ul{
    padding: 0;
    border-bottom: 1px solid #ffffff;
    display: flow-root;
    width: 100%;
}
.content_villatype li{
    width: 50%;
    float: left;
    list-style: none;
    padding: 10px 0;
}
.content_villatype h2{
    color: #ffffff;
    margin-bottom: 10px;
}
.details_villartpe_list ul:nth-last-child(1){
    border: none;
}
.details_villartpe_list ul li:nth-child(1){
    text-transform: uppercase;
    font-family: var(--font-storng);
}
.images_planvilla{
    padding: 30px 0;
}
.images_planvilla img{
    width: 70%;
    margin: auto;
    display: block;
}
.content_villatype .btn_more{
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: all 0.25s;
    margin: 0 auto;
    display: block;
}
.content_villatype .btn_more:hover{
    background: var(--secondary-color);
    color: var(--pimary-color);
    border-color: var(--secondary-color);
}
.section_location_info{
    padding: 100px 0;
    text-align: center;
}
.section_location_info h2{
    color: var(--pimary-color);
}
.section_location_info h2>label{
    display: inline-block;
    width: 100%;
}
.section_location_info h4{
    margin-top: 5px;
}
.section_location_info p>label{
    display: inline-block;
    width: 100%;
}
.section_location_info img.map_location{
    width: 700px;
    margin: 50px auto;
    display: block;
}
.row_location_info{
    text-align: left;
}
.section_location_info .col-xs-6{
    padding: 0 25px;
}
.section_location_info .row_location_info{
    margin: 0 -25px;
}
.section_location_info .details_location .row_location_info ul{
    border-bottom: 1px solid var(--pimary-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
    padding-left: 40px;
}
.section_location_info li:nth-child(1){
    width: 60%;
    padding-left: 0;
}
.section_location_info li:nth-child(2){
    width: 40%;
}
.row_location_info li:nth-child(1){
    display: flex;
}
.row_location_info h3{
    font-family: var(--font-storng);
    text-transform: none;
    font-size: 18px;
    color: var(--pimary-color);
}
.content_location label{
    display: inline-block;
    width: 100%;
}
.row_location_info .col-xs-6 ul:nth-last-child(1){
    border: none;
}
.row_location_info .images_icon{
    width: 25px;
    height: 25px;
}
.section_photo{
    padding: 0;
    text-align: center;
}
.section_photo .container{
    width: 1600px;
    padding: 0 100px;
}
.section_photo h2{
    color: var(--pimary-color);
}
.images_gallery{
    height: 250px;
    position: relative;
    overflow: hidden;
}
.images_gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay_photo{
    background: #4d2f2ccc;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: all 0.25s;
}
.row_photogallery .col-xs-3{
    padding: 10px;
}
.row_photogallery{
    margin: -10px;
}
.tab-content{
    display: flow-root;
    width: 100%;
}
.section_photo ul.nav{
    display: inline-block;
    margin: 30px auto;
}
.row_photogallery .col-xs-3:hover .overlay_photo{
    opacity: 1;
}
.nav-pills > li > a{
    border-radius: 0;
    padding: 10px 20px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus{
    background: var(--pimary-color);
    color: #ffffff;
}
.section_construction{
    padding: 100px 0;
    text-align: center;
}
.section_construction .container{
    width: 1600px;
    padding: 0 100px;
}
.section_construction h2{
    color: var(--pimary-color);
}
.box_select{
    padding: 0;
    border: none;
    background: var(--pimary-color);
    display: inline-flex;
    margin: 0 10px;
    text-align: left;

}
.tab-navigation{
    margin: 30px 0;
    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;
}
.row_location_info label{
    float: right!important;
    display: inline!important;
    width: auto;
}
.row_location_info li{
    display: block!important;
    width: 100%!important;
    text-align: left!important;
    padding: 0!important;
}
.row_location_info li>label{
    float: left;
    display: inline;
}
.section_contactus{
    padding-bottom: 0!important;
}
.section_map iframe{
    width: 100%;
    height: 650px;
}
.row_input textarea{
    height: 200px;
}
select option{
    color: black!important;
}