@font-face {
    font-family: 'Inter Medium';
    src: url('../font/Inter-Medium.woff2') format('woff2'),
    url('../font/Inter-Medium.woff') format('woff');
    font-weight: 500;
    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: #333333;
    --secondary-color: #e4d1b2;
    --third-color: #425a4c;
    --inter-light: 'Inter Light', 'sans-serif';
    --inter-medium: 'Inter Medium', 'sans-serif';
    --inter-semibold: 'Inter SemiBold', 'sans-serif';

}
html {
    scroll-behavior: smooth;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--inter-light);
    font-size: 16px;
    color: #3d3d3d;
    line-height: 1.7;
    overflow-x: hidden;
    background: #f8f5ed;
}

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 {
    background: var(--pimary-color);
    color: #ffffff;
}

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

select option {
    color: black !important;
}
h1{
    font-family: var(--inter-semibold);
    margin: 0;
    font-size: 30px;
    text-transform: none;
    line-height: normal;
    font-weight: inherit;
    background: linear-gradient(to right, #C7AA6C, #C7AA6C, #EBD29C, #C7AA6C, #C7AA6C);
    background-clip: text;
    color: transparent;
}
h2{
    font-family: var(--inter-semibold);
    margin: 0;
    font-size: 26px;
    text-transform: none;
    line-height: normal;
    font-weight: inherit;
}
h3{
    font-family: var(--inter-semibold);
    margin: 0;
    font-size: 20px;
    text-transform: none;
    line-height: normal;
    font-weight: inherit;
}
h4{
    font-family: var(--inter-semibold);
    margin: 0;
    font-size: 18px;
    text-transform: none;
    letter-spacing: normal;
}
.container{
    padding: 0;
    position: relative;
}
.section_header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(90deg,rgba(199, 170, 108, 1) 0%, rgba(235, 210, 156, 1) 50%, rgba(199, 170, 108, 1) 100%);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}
.scroll_menu {
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
    z-index: 2;
}
.brand_logo{
    position: absolute;
    left: 100px;
    top: 0;
    height: 60px;
    transition: all 0.25s;
}
.brand_logo img{
    height: 100%;
    width: auto;
    display: block;
    padding: 22px 0;
    transition: all 0.25s;
}
.hamberger_menu {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50px;
    transition: all 0.5s;
    top: 0;
    bottom: auto;
    height: 60px;
    margin: auto;
}
.hamberger_menu:before{
    content: none;
    background: var(--pimary-color);
    width: calc(100px + 15px);
    height: calc(30px + 15px);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
}
.button_container {
    position: relative;
    height: 18px;
    width: 30px;
    margin: auto;
    cursor: pointer;
    transition: all 1s;
    z-index: 15;
    right: auto;
    left: 0;
    /*top: 15px;*/
    /*bottom: 0;*/
}
.button_container:before{
    content: none;
    color: #ffffff;
    position: absolute;
    left: -55px;
    top: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    line-height: normal;
    font-family: var(--inter-semibold);
}
.button_container:hover {
    opacity: 1;
}

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

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

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

.button_container span {
    background: #ffffff;
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 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: 100%;
}
.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: #000000c7;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s;
    display: grid;
    z-index: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay ul {
    list-style: none;
    margin: 70px auto 0;
    position: relative;
    height: 100%;
    color: #ffffff;
    text-align: left;
    padding: 0 50px;
    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: #ffffff;
    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: #e4d1b2;
    opacity: 1;
}

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

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

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

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

    100% {
        opacity: 1;
        left: 0;
    }
}
.overlay-menu .left{
    flex: 1;
    background: #000000c0;
    -webkit-backdrop-filter: saturate(0);
    backdrop-filter: saturate(0);
    transition: all .3s ease;
}
.overlay-menu .right{
    flex: 1;
    background: var(--pimary-color);
    color: #fff;
    overflow: hidden;
    /*overflow-y: auto;*/
    height: 100%;
    text-align: left;
    position: absolute;
    left: 0;
    width: 50%;
}
.fix_body {
    overflow: hidden !important;
}
.images_icon {
    object-fit: cover;
    width: 30px;
    height: 30px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: #ffffff;
    margin: 0;
    transition: all 0.25s;
    vertical-align: middle;
    display: inline-block;
}
.social_header ul{
    margin: 0;
    padding: 0;
}
.social_header li{
    list-style: none;
    padding: 0 10px;
    float: left;
}
.section_slideshow{
    position: relative;
    height: 100vh;
    z-index: 1;
}
.section_slideshow img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
.section_intro{
    text-align: center;
    padding: 100px 0;
    position: relative;
}
.section_intro:before{
    content: '';
    background-image: url('../images/icon/bg-1.png');
    background-size: cover;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center top;
}
.section_intro:after{
    content: '';
    background: linear-gradient(180deg,rgba(232, 216, 192, 1) 0%, rgba(232, 216, 192, 0) 100%);background: linear-gradient(180deg,rgba(232, 216, 192, 1) 0%, rgba(232, 216, 192, 0) 100%);
    background-size: cover;
    width: 100%;
    height: 35%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: -1;
}
img.mainlogo{
    width: auto;
    height: 150px;
    display: block;
    margin: auto auto 25px;
}
.section_intro p{
    width: 70%;
    margin: 15px auto;
}
.images_intro{
    display: flex;
    align-items: center;
    padding: 50px 0;
    position: relative;
}
.images_intro img{
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    box-shadow: rgb(0 0 0 / 35%) 0px 8px 24px;
}
.images_intro .col-xs-7 img{
    height: 400px;
}
.images_intro .col-xs-7{
    position: relative;
}
.images_intro:before{
    content: '';
    width: calc(60% - 25px);
    height: calc(450px + 5px);
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid;
    border-image-source: linear-gradient(to right, #C7AA6C, #EBD29C, #C7AA6C);
    border-image-slice: 1;
}
.btn_discover{
    background: none;
    border: 2px solid #2b2b2b;
    color: #2b2b2b;
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--inter-semibold);
    font-size: 14px;
    transition: all 0.25s;
}
.btn_discover:hover{
    background: #2b2b2b;
    color: #ffffff;
}
.section_grandma{
    padding: 0 0 100px;
    text-align: center;
    position: relative;
}
.section_grandma:before{
    content: '';
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg,rgba(199, 170, 108, 1) 0%, rgba(235, 210, 156, 1) 50%, rgba(199, 170, 108, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.section_grandma img{
    width: auto;
    height: 120px;
    display: block;
    margin: 0 auto 0;
}
.section_grandma p{
    width: 70%;
    margin: 15px auto;
}
.images_plangrandma{
    padding: 50px 0 25px;
    position: relative;
}
.images_plangrandma img{
    width: 800px;
    height: auto;
    display: block;
    margin: auto;
}
.section_grandma_location{
    padding: 100px 0;
    text-align: left;
    display: flow-root;
    width: 100%;
    background: #ffffff;
}
.images_grandma_location{
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.images_grandma_location img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section_grandma_location h2{
    color: #425a4c;
}
.section_grandma_location h4{
    font-family: var(--inter-light);
    text-transform: none;
    letter-spacing: normal;
    font-size: 16px;
    font-weight: normal;
}
.details_grandma_location{
    padding: 0 100px 0 50px;
    color: #505050;
}
.details_grandma_location ul{
    margin: 0 0 25px 0;
    padding: 0;
}
.details_grandma_location li{
    list-style: none;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #d3d3d3;
    font-family: var(--inter-semibold);
}
.details_grandma_location li:nth-last-child(1){
    border-bottom: none;
}
.details_grandma_location li >label{
    float: right;
    text-align: right;
    font-family: var(--inter-light);
}
.details_grandma_location_top{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    width: 100%;
}
.details_grandma_location_top p{
    margin: 0;
}
.section_footer{
    padding: 50px 0 0;
    text-align: center;
    background: #333333;
    color: #ffffff;
    display: flow-root;
    width: 100%;
}
.section_footer ul{
    margin: 0;
    padding: 0;
}
.section_footer li{
    list-style: none;
}
.section_footer img{
    height: 150px;
    filter: brightness(0) invert(1);
    margin: 0 auto 25px;
}
.section_footer .col-xs-4:nth-child(1){
    text-align: left;
}
.section_footer .col-xs-4:nth-last-child(2){
    text-align: right;
}
ul.sub_sitemap{
    padding-left: 30px;
}
.section_footer .col-xs-4:nth-last-child(2) h4{
    font-family: var(--inter-light);
    font-size: 16px;
    text-transform: uppercase;
}
.section_footer .col-xs-4:nth-last-child(2) li{
    padding-bottom: 15px;
}
.section_footer .col-xs-4:nth-last-child(2) li:nth-last-child(1){
    padding-bottom: 0;
}
.social_footer ul{
    display: inline-block;
    margin: 30px auto 0;
}
.social_footer li{
    float: left;
    padding: 0 10px;
}
.section_footer p{
    margin: 0;
}
.section_footer .images_icon:hover{
    background: #e4d1b2;
}
.section_footer a:hover, .section_footer a.active{
    color: #e4d1b2;
}
.copyright{
    display: inline-block;
    width: 100%;
    border-top: 1px solid #5c5c5c;
    padding: 25px 0;
    margin-top: 50px;
}
a.trimiti{
    color: #fdc20f!important;
}
.leaf_intro{
    position: relative;
    top: -100px;
}
.leaf_intro:before{
    content: '';
    background-image: url('../images/icon/leaf-1.png');
    width: 250px;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
}
.leaf_intro:after{
    content: '';
    background-image: url('../images/icon/leaf-2.png');
    width: 250px;
    height: 330px;
    position: absolute;
    top: 0;
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
}

.scroll_down{
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb04 2s infinite;
    animation: sdb04 2s infinite;
    box-sizing: border-box;
    margin: auto;
    z-index: 1;
}
@-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_map{
    height: 600px;
    display: flow-root;
    width: 100%;
}
.section_map iframe{
    width: 100%;
    height: 100%;
    display: block;
}
.slick-arrow{
    width: auto;
    height: 30px;
    background: none;
    border: none;
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
.slick-arrow img{
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}
.slick-arrow.slick-next{
    right: 50px;
    left: auto;
}
.slide_grandma_location .slick-arrow{
    left: 30px;
}
.slide_grandma_location .slick-arrow.slick-next{
    left: auto;
    right: 30px;
}
.navbar_fix ul.sub_sitemap{
    margin: 10px 0 0;
}
.no_plan{
    background: #3b3b3b;
    color: #ffffff;
    font-family: var(--inter-semibold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 13px;
    position: absolute;
    transition: all 0.25s;
}
/*.no_plan:hover{*/
/*    background: var(--secondary-color);*/
/*    color: var(--pimary-color);*/
/*}*/
.no_plan:before{
    content: none;
    width: 1px;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 35px;
    background: var(--pimary-color);
    z-index: 0;
    transition: all 0.25s;
}
.no_plan:after{
    content: none;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: var(--pimary-color);
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    margin: auto;
    z-index: 0;
    transition: all 0.25s;
}
.plan_a1{
    right: 27%;
    top: 28%;
}
.plan_a1:before{
    height: 160px;
}
.plan_a1:after{
    top: -160px;
}
.plan_a2{
    right: 47%;
    top: 28%;
}
.plan_a2:before{
    height: 125px;
    top: auto;
    bottom: -125px;
}
.plan_a2:after{
    top: auto;
    bottom: -125px;
}
.plan_a3{
    right: 63%;
    top: 28%;
}
.plan_a3:before{
    width: 125px;
    height: 1px;
    top: 0;
    bottom: 0;
    right: -125px;
    left: auto;
}
.plan_a3:after{
    top: 0;
    bottom: 0;
    right: -125px;
    left: auto;
}
.plan_a4{
    right: 52%;
    top: 59%;
}
.plan_a4:before{
    width: 125px;
    height: 1px;
    top: 0;
    bottom: 0;
    right: -125px;
    left: auto;
}
.plan_a4:after{
    top: 0;
    bottom: 0;
    right: -125px;
    left: auto;
}
.section_parallax{
    height: 60vh;
}
.section_parallax img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section_aboutus{
    position: relative;
    padding: 100px 0;
    text-align: center;
}
.section_aboutus p{
    width: 60%;
    margin: 15px auto 0;
}
.row_about{
    margin: 100px 0 0;
}
.images_aboutus{
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.images_aboutus:before{
    content: '';
    width: calc(100% - 50px);
    height: calc(100% + 50px);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid;
    border-image-source: linear-gradient(to right, #C7AA6C, #EBD29C, #C7AA6C);
    border-image-slice: 1;
    z-index: -1;
}
.images_aboutus img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: rgb(0 0 0 / 35%) 0px 8px 24px;
}
.details_about{
    display: flex;
    align-items: end;
    text-align: left;
    margin-top: -150px;
}
.details_about p{
    width: 100%;
}
.details_about .images_aboutus:before{
    right: -25px;
    left: auto;
    top: auto;
    bottom: -25px;
    width: calc(100% - 15px);
}
.details_about .col-xs-6:nth-child(1) .images_aboutus:before{
    content: none;
}
.details_about .col-xs-6:nth-child(1){
    padding: 50px 50px 0;
}
.details_about .col-xs-6:nth-child(2){
    padding-right: 25px;
}
.details_about .col-xs-6:nth-child(1) .images_aboutus{
    padding-top: 150px;
}
.section_contactus{
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.row_contact{
    width: 820px;
    margin: 0 auto;
}
.row_contact ul{
    padding: 0;
    margin: 50px 0 0;
}
.row_contact li{
    list-style: none;
    width: 33.33%;
    float: left;
    border-right: 1px solid #c7aa6c;
    padding: 25px;
}
.row_contact li:nth-last-child(1){
    border: none;
}
.social_contact{
    margin-top: 25px;
}
.social_contact ul{
    display: inline-block;
    margin: auto;
}
.social_contact li{
    list-style: none;
    padding: 0 10px!important;
    border: none;
    float: left!important;
    width: auto!important;
}
.social_contact .images_icon{
    background: var(--pimary-color);
    width: 30px;
    height: 30px;
}
.section_register{
    padding: 0 0 100px;
    text-align: center;
}
.box_register{
    width: 820px;
    margin: 0 auto;
    padding: 50px;
    color: #ffffff;
    background: #c7aa6c;
    display: flow-root;
}
.box_register p>label{
    display: inline-block;
    width: 100%;
}
.box_register form{
    margin: 30px auto 0;
    text-align: left;
    width: 500px;
}
.box_register form ul{
    margin: 15px 0 0;
}
.box_register form li{
    list-style: none;
}
.input_data{
    width: 100%;
    border: none;
    padding: 10px;
    background: #ffffff;
    color: var(--pimary-color);
    border-radius: 5px;
}
.row_input .col-xs-12{
    margin-bottom: 15px;
    position: relative;
}
.row_input i{
    position: absolute;
    right: 15px;
    color: #333;
    top: 37px;
}
.btn_submit{
    background: var(--pimary-color);
    color: #ffffff;
    border-radius: 5px;
}
.row_input .col-xs-12:nth-last-child(1){
    margin-bottom: 0;
}
input[type="radio"], input[type="checkbox"] {
    accent-color: var(--pimary-color);
    margin: 0 15px 0 0;
}
.row_input label>span{
    color: red;
}
.row_contact a:hover{
    color: #c7aa6c;
}
.row_contact .images_icon:hover{
    background: #c7aa6c;
}
span.error, span#span_error{
    display: flow-root;
    color: red;
    font-style: italic;
    font-size: 12px;
    margin-top: 3px;
}
.section_header_projects{
    background: var(--third-color);
}
.text_slide{
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    text-align: center;
    color: #ffffff;
    padding: 0 30px;
}
.text_slide h1{
    color: #ffffff;
    font-size: 30px;
}
.text_slide p{
    margin: 0;
}
.section_projects{
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.section_projects p{
    width: 60%;
    margin: 15px auto;
}
.section_projects img.mainlogo{
    height: 110px;
}
.images_rooms{
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.section_rooms{
    position: relative;
    /*display: flex;*/
    /*align-items: center;*/
}
.images_rooms img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: rgb(0 0 0 / 35%) 0px 8px 24px;
}
.details_rooms{
    position: relative;
    background: #bca166;
    text-align: left;
    padding: 50px;
    height: calc(800px - 100px);
    color: #ffffff;
    background: linear-gradient(45deg, #bca166 0%, #bca166 50%, #ebd29c 100%);
}
.details_rooms:before{
    content: '';
    width: calc(100% - 25px);
    height: calc(100% + 50px);
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid;
    border-image-source: linear-gradient(to right, #C7AA6C, #EBD29C, #C7AA6C);
    border-image-slice: 1;
    z-index: -1;
    border-left: none;
}

.details_rooms p{
    margin: 15px 0 0;
}
.slide_rooms .col-xs-8{
    width: 65%;
}
.slide_rooms .col-xs-4{
    width: 35%;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.details_rooms h3{
    font-size: 24px;
}
.section_masterplan{
    padding: 100px 0;
    text-align: center;
}
.section_masterplan p>label{
    color: #ffffff;
    position: relative;
    padding: 0 10px;
    font-size: 14px;
}
.section_masterplan p>label:before{
    content: '';
    width: 35px;
    height: 35px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--pimary-color);
    z-index: -1;
    margin: auto;
}
.section_masterplan h2{
    font-size: 30px;
    color: var(--third-color);
}
.section_gallery{
    padding: 0 0 100px;
    text-align: center;
}
.section_gallery h2{
    font-size: 30px;
    color: var(--third-color);
    text-transform: uppercase;
}
.section_masterplan .images_plangrandma{
    padding-bottom: 0;
}
.section_gallery ul{
    display: inline-block;
    margin: 50px auto 50px;
}
.section_gallery li{
    display: inline-block;
    padding: 0;
    list-style: none;
}
.nav-pills > li + li{
    margin: 0;
}
.nav-pills > li > a{
    border-radius: 0;
    padding: 10px 30px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus{
    background: #c7aa6c;
    border-radius: 100px;
    color: #ffffff;
}
.overlay_gallery{
    background: #000c;
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-align: center;
    left: 0;
    top: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s;
}
.images_gallery{
    width: 100%;
    height: 300px;
}
.images_gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s;
}
.row_photogallery{
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
}
.row_photogallery .col-xs-4{
    width: 100%;
    overflow: hidden;
}
.row_photogallery .col-xs-4:hover .overlay_gallery{
    opacity: 1;
}
.row_photogallery .col-xs-4:hover .images_gallery img{
    transform: scale(1.05);
}
.section_location{
    background: #ffffff;
    text-align: left;
}
.section_location h2{
    font-size: 30px;
    color: var(--third-color);
    text-transform: uppercase;
}
.section_location ul{
    padding: 0;
    margin: 0;
    font-family: var(--inter-semibold);
}
.section_location li{
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e9;
    width: 100%;
}
.section_location li>label{
    float: right;
    text-align: right;
    font-family: var(--inter-light);
}
.section_location li:nth-last-child(1){
    border: none;
    padding-bottom: 0;
}
.section_location .col-xs-5{
    padding: 100px 0;
}
.section_location img{
    width: 100%;
    height: auto;
    display: block;
}
img.logo_grandma{
    padding: 20px 0;
}
.btn_sliderooms button{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
.btn_sliderooms button img{
    height: 30px;
    width: auto;
    box-shadow: none;
    filter: brightness(0) invert(1);
}
.btn_sliderooms{
    margin: 30px 0 0 -5px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 50px;
    left: 50px;
}
.rooms_count{
    padding: 0 10px;
}
.slide_rooms .slide{
    overflow: hidden;
}
.btn_sliderooms_mobile{
    display: none;
    color: #ffffff;
    align-items: center;
    position: absolute;
    bottom: 50px;
    left: 50px;
}
.section_header .images_icon:hover{
    background: var(--pimary-color);
}
.section_header_projects .images_icon:hover{
    background: var(--secondary-color);
}
.row_propertyinsights{
    padding: 50px 0 0;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
}
.details_propertyinsights{
    padding: 30px 0 0;
    text-align: left;
}
.details_propertyinsights h2{
    font-family: var(--inter-semibold);
    font-size: 18px;
    line-height: 26px;
}
.images_propertyinsights{
    width: 100%;
    height: 320px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
}
.images_propertyinsights img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.25s;
    transform: scale(1.0);
}
.row_propertyinsights a:hover .images_propertyinsights img{
    transform: scale(1.05);
}

.details_propertyinsights p{
    width: 100%!important;
}
.row_propertyinsights .col-xs-4{
    width: 100%;
}
.section_propertyinsights_details{
    margin-top: 60px;
}
.section_propertyinsights_details .container{
    width: 820px;
}
.images_header_details img{
    width: 100%;
    display: block;
}
.details_propertyinsightsinfo{
    padding: 50px 0;
    text-align: left;
}
.details_propertyinsightsinfo h1{
    color: var(--pimary-color);
    font-size: 22px;
}
.details_propertyinsightsinfo h2{
    color: var(--pimary-color);
    font-size: 18px;
}
.details_propertyinsightsinfo p{
    width: 100%!important;
    margin: 15px 0;
}
.details_propertyinsightsinfo ul{
    margin-bottom: 15px;
}
.video_youtube iframe{
    width: 100%;
    height: 500px;
}
.video_youtube:before{
    content: '';
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    position: absolute;
    left: -25px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid;
    border-image-source: linear-gradient(to right, #C7AA6C, #EBD29C, #C7AA6C);
    border-image-slice: 1;
}
.video_youtube{
    margin: 30px 0 50px 0;
    position: relative;
}
.section_propertyinsights_home{
    padding: 100px 0;
    text-align: center;
    background: #ffffff;
}
.section_propertyinsights_home h2{
    font-family: var(--inter-semibold);
    margin: 0;
    font-size: 24px;
    text-transform: none;
    line-height: normal;
    font-weight: inherit;
    background: linear-gradient(to right, #C7AA6C, #C7AA6C, #EBD29C, #C7AA6C, #C7AA6C);
    background-clip: text;
    color: transparent;
}
.slide_propertyinsights{
    margin-top: 50px;
}
.slide_propertyinsights h3{
    color: var(--pimary-color);
    font-size: 18px;
}
.slide_propertyinsights .slide{
    padding: 0 20px;
}
.slide_propertyinsights .slick-arrow{
    right: -50px;
    height: 320px;
    top: 0;
    bottom: auto;
}
.slide_propertyinsights .slick-arrow.slick-prev{
    right: auto;
    left: -50px;
}
.slide_propertyinsights .slick-arrow img{
    filter: none;
}
.section_nearby{
    padding: 0 0 100px;
    background: #ffffff;
}
.section_nearby .details_propertyinsights{
    text-align: center;
}
.section_nearby .details_propertyinsights p{
    margin: 0;
}
.section_nearby .slide_propertyinsights{
    margin: 0;
}
.slide_propertyinsights .slick-list{
    margin: 0 -20px;
}