:root {
    --l-c-primary: #ca9700;
    --l-c-dark: #1c1c1c;
}

.container-small {
    max-width: 767px;
}

.landing-slider .owl-theme .owl-nav {
    text-align: right;
    z-index: 1;
}

.landing-slider .owl-theme .owl-dots {
    text-align: left;
}

.landing-slider .owl-theme .owl-dots,
.landing-slider .owl-theme .owl-nav {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    /**/
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
}

@media (min-width: 576px) {

    .landing-slider .owl-theme .owl-dots,
    .landing-slider .owl-theme .owl-nav {
        max-width: 540px
    }
}

@media (min-width: 768px) {

    .landing-slider .owl-theme .owl-dots,
    .landing-slider .owl-theme .owl-nav {
        max-width: 720px
    }
}

@media (min-width: 992px) {

    .landing-slider .owl-theme .owl-dots,
    .landing-slider .owl-theme .owl-nav {
        max-width: 960px
    }
}

@media (min-width: 1200px) {

    .landing-slider .owl-theme .owl-dots,
    .landing-slider .owl-theme .owl-nav {
        max-width: 1140px
    }
}

.landing-slider .item .text-area .text .title {
    font-size: 42px;
}

.landing-page .slider2 {
    margin-bottom: 0;
}

.landing-about {
    padding: 41px 0 21px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
}

.landing-about .about-logo {
    max-width: 250px;
    margin-bottom: 25px;
}

.landing-about .about-title {
    font-weight: 900;
    margin-bottom: 10px;
}

.landing-about .about-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: 55%;
    text-align: right;
    padding-bottom: 30px;
}

.landing-about .about-image img {
    max-height: 387px;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: calc(100% - 60px);
    margin-left: auto;
    object-fit: cover;
}

.landing-about .about-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: -60px;
    width: 100%;
    height: 30%;
    background-color: #1c1c1c;
    transform: rotate(15deg) skewY(-15deg);
}

.landing-about .about-image::after {
    content: "";
    position: absolute;
    z-index: -2;
    bottom: 0;
    right: -38px;
    width: 100%;
    height: 30%;
    background-color: #d09209;
    transform: rotate(15deg) skewY(-15deg);
}

.landing-section-title {
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 10px;
}

.landing-about-images {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.landing-about-images .item {
    width: 55%;
    overflow: hidden;
}

.landing-about-images .item:nth-child(odd) {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    position: relative;
    left: -1.5%;
}

.landing-about-images .item:nth-child(even) {
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    position: absolute;
    right: -1.5%;
    top: 0;
    height: 100%;
}

.landing-about-images .item img {
    object-fit: cover;
    width: 100%;
}

.landing-about-images .item:nth-child(even) img {
    height: 100%;
}

.landing-about-images .item .content {
    --border-primary: 30px solid
    var(--l-c-primary);
    --border-white: 15px solid #fff;
    --h-offset: 8%;
    position: absolute;
    top: -6%;
    width: 60%;
    height: calc(114%);
    transform: rotate(16deg) skewY(-16deg);
    background-color: rgb(0 0 0 / 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    font-size: 32px;
}

.landing-about-images .item:nth-child(odd) .content {
    border-left: var(--border-white);
    border-right: var(--border-primary);
    right: var(--h-offset);
}

.landing-about-images .item:nth-child(even) .content {
    border-left: var(--border-primary);
    border-right: var(--border-white);
    left: var(--h-offset);
}

.landing-about-images .item .content span:nth-child(3n + 1) {
    font-size: 26px;
}

.landing-about-images .item .content span:nth-child(3n + 2) {
    font-size: 31px;
}

.landing-about-images .item .content span:nth-child(3n) {
    font-size: 48px;
    color: var(--l-c-primary);
}

.landing-about-images .item .content.bg-tp {
    background-color: transparent;
    --border-primary: 30px solid transparent;
}

.landing-slogan {
    margin-top: 15px;
    min-height: 277px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    background-size: cover;
    background-position: center;
}

.landing-slogan::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.2);
}

.landing-slogan .content {
    color: #fff;
    font-weight: 900;
    padding: 30px 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.landing-slogan .content .title {
    background-color: var(--l-c-dark);
    font-size: 32px;
    padding: 5px 25px;
    margin: 4px 0;
}

.landing-slogan .content .subtitle {
    background-color: var(--l-c-primary);
    font-size: 25px;
    padding: 5px 25px;
    margin: 4px 0;
}

.landing-gallery {
    padding: 100px 0;
}

.landing-gallery .section-content {
    margin-bottom: 50px;
    text-align: center;
}

.landing-gallery .section-content .content-wrapper {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.landing-gallery .owl-theme .owl-dots {
    position: relative;
    bottom: 0;
    text-align: center;
    margin-top: 30px;
}

.landing-gallery .owl-theme .owl-nav {
    position: unset;
    bottom: 0;
    text-align: unset;
}

.landing-gallery .owl-theme .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.landing-gallery .owl-theme .owl-nav button.owl-prev {
    left: 0;
}

.landing-gallery .owl-theme .owl-nav button.owl-next {
    right: 0;
}

.landing-gallery .owl-theme .owl-nav button i {
    background-color: #fff;
    color: var(--l-c-dark);
    width: 50px;
    height: 50px;
    font-size: 28px;
}

.gallery-item {
    display: block;
}

.landing-situation-plan {
    padding: 150px 0;
}

.situation-plan {
    background-color: #dcdcdc;
    padding: 0 0 0 35px;
}

.landing-section-title-bg {
    background-color: var(--l-c-primary);
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    padding: 0 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.situation-plan .content-wrapper {
    line-height: 36px;
    font-size: 14px;
    margin-bottom: 0;
}

.situation-plan .image {
    margin-top: -150px
}

ul.landing-tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

ul.landing-tabs li {
    background: none;
    display: inline-block;
    padding: 11px 12px;
    cursor: pointer;
    border: 1px solid;
    color: #c0c0c0;
    background-color: #fff;
    font-size: 16px;
    font-weight: 800;
    flex-grow: 1;
}

ul.landing-tabs li.current {
    background: var(--l-c-primary);
    color: #fff;
    border-color: var(--l-c-primary);
    opacity: 1;
}

.landing-tab-content {
    display: none;
}

.landing-tab-content.current {
    display: inherit;
}

.landing-floor-plan .landing-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.plan-item {
    margin-bottom: 30px;
}

.plan-item .content .title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 22px;
}

.plan-item .content .square-meters {
    display: grid;
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
    grid-gap: 20px;
}

.plan-item .content .square-meters .item {
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: 14px;
}

.plan-item .content .square-meters .item {
    display: flex;
    flex-direction: row;
}

.plan-item .content .square-meters .item .number {
    font-size: 24px;
    margin-right: 10px;
    font-weight: bold;
    color: #ca9700;
}

.plan-item .content .square-meters .item span {
    font-size: 12px;
}

.plan-item .content .square-meters .item .right {
    display: flex;
    flex-direction: column;
}

.plan-item .content .desc {
    margin-top: 30px;
    font-size: 14px;
}

.floor-plan-button {
    margin-top: 65px;
    text-align: center;
}

.floor-plan-button .button {
    color: var(--l-c-dark);
}

.floor-plan-item {
    margin-bottom: 65px;
}

.floor-plan-item .image>a+a {
    display: none;
}

.floor-plan-item .image {
    cursor: pointer;
}

.floor-plan-tabs {
    position: relative;
    margin-bottom: 50px;
}

.landing-floor-plan {
    padding: 100px 0;
    background-color: #fff;
}

.landing-catalog-area {
    border: 10px solid var(--l-c-primary);
    display: grid;
    grid-template-columns: 50% 50%;
}

.landing-catalog-area .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-catalog-area .content {
    padding: 40px 15px;
    background-color: var(--l-c-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-catalog-area .content .content-area {
    max-width: 576px;
    margin: 0 auto;
}

.landing-catalog-area .content .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.landing-catalog-area .content .title span {
    background-color: var(--l-c-primary);
    display: inline-flex;
    margin-bottom: 10px;
}

.landing-catalog-area .content .link {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--l-c-primary);
}

.landing-catalog-area .content .link::after {
    content: "\f175";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    margin-left: 20px;
}

.landing-location {
    background-color: #d8d8d8;
}

.landing-location-content {
    padding: 50px 0;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width:100%;
}

.locations .item {
    padding: 5px 15px;
    font-size: 12px;
}

.locations .item .title {
    margin-bottom: 5px;
}

.locations .item .km {
    font-weight: 700;
}

.btn-map {
    border: 2px solid var(--l-c-dark);
    padding: 10px 30px;
    display: inline-block;
    margin-top: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.menu ul li a {
    font-size: 14px;
    font-weight: 400;
    margin-left: 36px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    border: 1px solid;
    margin-left: 36px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
}

.header-phone::before {
    content: "\f879";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    margin-right: 10px;
    font-size: 15px;
    line-height: 15px;
}

.landing-logo .line {
    width: 1px;
    height: 39px;
    margin: 1px 16px 0 18px;
    background-color: #ffffff;
}

.landing-logo {
    display: inline-flex;
    align-items: center;
}

/* lightbox */

.lightboxOverlay {
    background-color: rgba(0, 0, 0, .9);
    opacity: 1;
}

.lb-nav > a {
    opacity: 1!important;
}

.lb-data .lb-close {
    position: absolute;
    right: 30px;
    top: 0;
    opacity: 1;
}

.lb-nav a::before {
    content: "";
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #333330;
    background-color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.lb-nav a.lb-prev::before {
    content: "\f053";
    left: 0;
}

.lb-nav a.lb-next::before{
    content: "\f054";
    right: 0;
}

.lb-nav a {
    background: none!important;
}

@media (min-width: 992px){
    .lb-nav{
        width: 100%;
	}
	
	.lb-nav a.lb-prev::before{
		left: -60px;
	}

	.lb-nav a.lb-next::before{
		right: -60px;
	}
}

/* lightbox */



.landing-references{
    padding: 100px 0;
    background-color: #fff;
}
.landing-references .landing-section-title{
    text-align: center;
    margin-bottom: 40px;
}

.owl-reference .owl-stage {
    display: flex;
    flex-wrap: wrap;
}

.owl-reference .owl-nav {
    position: unset;
    bottom: unset;
}

.owl-reference .owl-nav .owl-prev, .owl-reference .owl-nav .owl-next {
    --offsetNav: -45px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-reference .owl-nav .owl-prev {
    left: var(--offsetNav);
}

.owl-reference .owl-nav .owl-next {
    right: var(--offsetNav);
}

.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media (min-width: 992px) {
    .col-lg-6:nth-child(even)>.plan-item::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #ccc;
    }

    .js-landing-tabs {
        display: none;
    }

    .landing-location .image img:nth-child(2) {
        display: none;
    }

    .landing-location {
        display: grid;
        grid-template-columns: 1fr;
    }

    .landing-location-content {
        grid-area: 1 / 1;
        position: relative;
    }

    .landing-location .image {
        grid-area: 1 / 1;
    }

    .locations .item {
        font-size: 16px;
    }

    .btn-map {
        font-size: 16px;
    }

    ul.landing-tabs li + li {
        border-left: none;
    }
}


@media (min-width: 992px) and (max-width: 1199px) {
    .landing-about-images .item .content span:nth-child(3n) {
        font-size: 38px;
    }

    .landing-about-images .item .content span:nth-child(3n + 1) {
        font-size: 21px;
    }

    .landing-about-images .item .content span:nth-child(3n + 2) {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .landing-about-images .item {
        width: 120%;
    }

    .landing-about-images .item:nth-child(even) {
        position: relative;
        left: -20%;
    }

    .situation-plan {
        padding: 50px 20px 0;
    }

    .situation-plan .image {
        margin-top: 25px;
    }

    .situation-plan .content-wrapper {
        line-height: 24px;
    }

    ul.landing-tabs{
        flex-wrap: wrap;
    }

    ul.landing-tabs li {
        width: 100%;
    }

    .js-landing-tabs+ul.landing-tabs {
        transform: scaleY(0);
        transform-origin: top;
        position: absolute;
        z-index: 8;
        width: 100%;
        transition: all .15s ease;
    }

    .js-landing-tabs.open+ul.landing-tabs {
        transform: scale(1);
    }

    .js-landing-tabs {
        border: 1px solid #ccc;
        padding: 15px 20px;
        font-size: 22px;
        font-weight: 800;
        color: var(--l-c-primary);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .js-landing-tabs::after {
        content: "\f078";
        font-family: "Font Awesome 5 Pro";
        color: #ccc;
    }

    .landing-catalog-area {
        grid-template-columns: 100%;
    }

    .landing-location .image img:nth-child(1) {
        display: none;
    }

    .landing-catalog-area .content .title {
        font-size: 20px;
    }
    .landing-gallery{
        padding: 40px 0 40px;
    }
    .landing-situation-plan {
        padding: 40px 0 80px;
    }
    .lb-data .lb-close {
        position: absolute;
        right: 10px;
        top: -40px;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .content-wrapper {
        font-size: 14px;
    }

    .landing-section-title {
        font-size: 20px;
    }

    .landing-about .about-title {
        font-size: 14px;
    }

    .landing-about .about-image {
        position: relative;
        top: 0;
        right: -15px;
        transform: none;
        max-width: 100%;
        z-index: 1;
        padding-bottom: 20px;
    }

    .landing-about .about-image img {
        width: calc(100% - 30px);
    }

    .landing-about .about-image::after {
        right: -10px;
    }

    .landing-about .about-image::before {
        right: -25px;
    }

    .landing-about {
        padding: 40px 0;
        min-height: auto;
    }

    .landing-about-images .item:nth-child(odd) {
        margin-bottom: 5px;
    }

    .landing-about-images .item .content {
        --border-primary: 10px solid var(--l-c-primary);
        --border-white: 5px solid #fff;
        width: 75%;
    }

    .landing-about-images .item .content span:nth-child(3n + 1) {
        font-size: 14px;
    }

    .landing-about-images .item .content span:nth-child(3n + 2) {
        font-size: 16px;
    }

    .landing-about-images .item .content span:nth-child(3n) {
        font-size: 24px;
        color: var(--l-c-primary);
    }

    .landing-slogan {
        margin-top: 5px;
    }

    .landing-slogan .content .title {
        font-size: 26px;
        padding: 5px 9px;
    }

    .landing-slogan .content .subtitle {
        padding: 5px 10px;
        font-size: 18px;
    }
    .landing-references{
        padding: 50px 0 0;
    }
    .landing-references .landing-section-title{
        margin-bottom: 15px;
    }

    .owl-reference .owl-nav .owl-prev, .owl-reference .owl-nav .owl-next {
        --offsetNav: 0;
    }
    
    .reference-item {
        padding: 0 55px;
    }
}

.all-settings {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: center;
}

.all-box {
    padding: 5px 20px;
    text-align: center;
    margin-right: 20px;
    border: solid 1px #ca9700;
}

.all-box .title {
    font-weight: 700;
}

.all-settings-area {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
}

.all-box-2 {
    text-align: center;
    margin-right: 15px;
    border: solid 1px #ca9700;
    padding: 5px 20px;

}

.all-box-2 .title {
    font-size: 15px;
    font-weight: 600;
}

.all-box-2 .sub-title {
    font-size: 14px;
}

.plan-item .content .title {
    background: #825b1d;
    text-align: center;
    color: white;
    padding: 10px;
    font-weight: 500;
    font-size: 22px;
}

.plan-item .content .title span {
    display: block;
    font-weight: 700;
}

a.picture-box {
    display: block;
    text-align: center;
    border: solid 1px #825b1d;
}

.picture-box .title {
    padding: 5px 10px;
    display: block;
    background: #825b1d;
    color: white;
}

@media (max-width:992px){
    .all-box {
        padding: 5px 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .all-box-2 {
        padding: 5px 10px;
        margin-bottom: 10px;
    }
    
    .plan-item {
        margin-top: 30px;
    }


    ul.landing-tabs li {
        width: auto !important;
        display: inline-block;
        flex-grow: 0;
    }
    
    .floor-plan-tabs {
        margin-bottom: 0;
    }
    
    ul.landing-tabs {
        margin-bottom: 20px;
    }
    
    .all-box {
        font-size: 13px;
        margin-right: 10px;
        padding: 5px 7px;
        margin-bottom: 0;
    }
    
    .all-settings {
        margin-bottom: 5px;
    }
    
    .all-box-2 {
        padding: 5px 7px;
        margin-bottom: 5px;
        margin-right: 10px;
    }

    .plan-item .content .title {
        font-size: 18px;
        padding: 5px;
    }
}


.floor-plan-item .image {
    margin-bottom: 30px;
}

.floor-plan-item .image a {
    padding-bottom: 20px;
}

.picture-box .title {
    margin-bottom: 10px;
}
