/* @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100;0,8..144,200;0,8..144,300;0,8..144,400;0,8..144,500;0,8..144,600;0,8..144,700;0,8..144,800;0,8..144,900;1,8..144,100;1,8..144,200;1,8..144,300;1,8..144,400;1,8..144,500;1,8..144,600;1,8..144,700;1,8..144,800;1,8..144,900&display=swap');

:root {
    --first-color: #eae2cc;
    --second-color: #2d2d2b;
    --third-color: #213838;
    --fourth-color: #ad936d;
}

@media (min-width: 1400px) {
    .navbar-expand-xxl .navbar-toggler {
        display: unset!important;
    }
}

@media (min-width: 1550px) {
    .navbar-expand-xxl .navbar-toggler {
        display: none!important;
    }
}

@media (min-width: 1400px) {
    .navbar-expand-xxl .navbar-collapse {
        display: none !important;
    }
}

@media (min-width: 1550px) {
    .navbar-expand-xxl .navbar-collapse {
        display: flex !important;
    }
}


body {
    background-color: #fff;
    /*font-family: 'Lora', serif;*/
    font-family: 'Roboto Serif', serif;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
}

.text-main {
    color: #ad936d;
}

.btn-outline-main {
    background-color: #fff;
    border-color: #ad936d;
    color: #ad936d;
}

.btn-outline-main:hover {
    background-color: #ad936d;
    border-color: #ad936d;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.btn-main {
    background-color: #ad936d;
    border-color: #ad936d;
    color: #fff;
}

.btn-main:hover {
    background-color: #fff;
    border-color: #ad936d;
    color: #ad936d;
    transition: 0.3s ease-in-out;
}


.bg-first {
    background-color: var(--first-color);
    color: var(--second-color);
}

.bg-first-2 {
    background-color: #ad936d;
}

.bg-second {
    background-color: var(--second-color);
    color: var(--first-color);
}

.bg-third {
    background-color: var(--third-color);
    color: var(--fourth-color);
}

.btn-addon {
    display: flex;
    border-radius: 30px;
    font-size: 19px;
    justify-content: center;
    line-height: 23px;
    min-width: 248px;
    padding: 16px;
    text-transform: uppercase;
}

.arrow-button {
    display: flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
}

.arrow-button span {
    color: #000;
    flex: 1 1;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 24px;
    text-transform: uppercase;
    text-decoration: none;
}

.arrow-button button {
    align-items: center;
    background-color: #fff;
    color: #ad936d;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 60px;
    justify-content: center;
    margin-left: 30px;
    transition: background-color .3s ease;
    width: 60px; 
}

.arrow-button:hover button {
    background-color: #ad936d;
    color: #fff;
    transition: .3s ease-in-out;
}

.text-p {
    font-size: 1.1rem;
    font-weight: 300;
}

.fixed-background {
    background-image: url('../../images/kato1.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
}

.section-header span {
    color: #ad936d;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 3rem;
}

.section-header h2.dark {
    color: #ad936d;   
}

/* Header section */

.main-header {
    background-color: var(--first-color);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
    font-weight: 500;
}

.main-header a.active {
    color: #ad936d!important;
}

.main-header ion-icon[name="menu-sharp"], .fixed-header ion-icon[name="menu-sharp"] {
    font-size: 2.7rem;
    cursor: pointer;
}

.main-header .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 1.3rem;
}

.fixed-header {
    background-color: #2d2d2b;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    color: var(--first-color);
}

.fixed-header a {
    color: var(--first-color);
}

.fixed-header a.active {
    color: #ad936d!important;
}

.fixed-header a:hover {
    color: #ad936d;
}




/* Mobile menu / Main Menu */

.navbar-toggler{
    border: 0;
    box-shadow: none;
    outline: 0;
}

.navbar-toggler:focus {
    box-shadow:none;
    border: 0;
}

.navbar-toggler:active {
    box-shadow:none;
    border: 0;
}

.main-menu {
    background-color: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    top: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all .3s ease;
    width: 100%;
    z-index: 12;
}

.main-menu.main-menu_active {
    flex: 1 1;
    overflow: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.main-menu nav ul {
    align-items: center;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    gap: 45px;
    height: 100%;
    margin-top: 0;
    width: 100%;
    padding-left: 0;
    list-style-type: none;
}

.main-menu .nav-close {
    font-size: 3rem!important;
    border: 0;
    box-shadow: none;
    outline: 0;
}

.main-menu .nav-close:focus {
    box-shadow:none;
    border: 0;
}

.main-menu .nav-close:active {
    box-shadow:none;
    border: 0;
}

.main-menu nav a {
    color: #000;
    font-size: 24px!important;
    font-weight: 200;
    line-height: 32px;
    transition: color .3s ease;
    text-decoration: none;
}

.main-menu nav a:hover {
    color: #ad936d;
}

/* Home Hero section */

section.home-hero {
    background-color: var(--first-color);
}

section.home-hero h1 {
    font-size: 4rem;
    line-height: 70px;
}

.home-hero_text {
    border-left: 1px solid #000;
    height: 180px;
    flex: 1 1;
    max-width: 360px;
    padding-left: 30px;
}

section.home-hero .circle-row-absolute {
    position: absolute;
    bottom: -90%;
    right: 65%;
    height: 220px;
    width: 220px;
    border-radius: 50%;
    background-color: #ad936d;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

section.home-hero .circle-row-absolute:hover {
    background-color: #fff;
    color: #ad936d;
    transition: .3s ease-in-out;
}

@media (max-width: 767.98px) {

    .home-hero_text {
        border-left: 0;
        max-width: 100%;
        padding-left: 0;
    }

    section.home-hero h1 {
        font-size: 2.5rem;
    }

    section.home-hero .circle-row-absolute  {
        right: 50% !important;
        left: 50% !important;
        transform: translate(-50%, 0%);
    }
}

/* Home Investment - section */

section.home-investment {
    margin-top: 700px;
    background-color: var(--first-color);
    overflow: hidden;
}

section.home-investment p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 37px;
}

section.home-investment .section-shape {
    align-items: center;
    border: 1px solid #ad936d;
    border-radius: 0 0 441px 441px;
    display: flex;
    flex-direction: column;
    margin: -40px auto 0;
    max-width: 864px;
    padding: 180px 0 200px;
    position: relative;
    z-index: 1;
}

/* Home Location - section */

section.home-location {
    overflow: hidden;
    color: #eae2cc;
    background-color: var(--third-color);
}

section.home-location p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 37px;
}

/* Hoem Stadnard - section */

section.home-standard {
    background-color: #fff;
}

section.home-standard p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 37px;
}

section.home-standard .section-row-image .col-absolute {
    position: absolute;
    left: 0;
    bottom: -150px;
    width: 842px;
}

section.home-standard .section-row-image img {
    height:360px;
    width: 100%;
    object-fit: cover;
}

section.home-standard .section-row-image ul {
    padding-left: 0;
    font-size: 1.1rem;
}

section.home-standard .section-row-image ul li::marker {
    color: #ad936d;
}

section.home-standard .nav-link {
    border: 1px solid #ad936d;
    color: #ad936d;
    padding: 0.8rem 2.5rem;
}

section.home-standard .nav-link.active {
    border: 1px solid #ad936d;
    color: #fff;
    background-color: #ad936d;
}
/* Home houses - section */

section.home-houses {
    background-color: var(--first-color);
}

section.home-houses .interactive-houses svg {
    position: absolute;
}

section.home-houses .building-view-item {
    fill: transparent;
    cursor: pointer;
    position: relative;
}

section.home-houses .building-view-item.active {
    fill: hsla(0,0%,100%,.6);
}

section.home-houses .building-view-item.sold {
    fill: hsl(0deg 82.68% 18.97% / 60%);
}

section.home-houses .interactive-popup.hidden {
    display: none;
}

section.home-houses .interactive-popup {
    background-color: #213838;
    padding: 15px;
    width: 300px;
    position: absolute;
    -webkit-transform: translate(-25%, -90%);
    transform: translate(-25%, -90%);
}

section.home-houses .interactive-popup::after {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #213838;
    bottom: -29px;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 0;
}

section.home-houses .interactive-popup.status span {
    font-size: 25px;
    margin-top: 4px;
}

section.home-houses .interactive-popup.status-1 {
    background-color: rgb(109, 73, 19);
}

section.home-houses .interactive-popup.status-1::after {
    border-top-color: rgb(109, 73, 19);
}

section.home-houses .interactive-popup.status-2 {
    background-color: rgb(82 14 14);
}

section.home-houses .interactive-popup.status-2::after {
    border-top-color: rgb(82 14 14);
}

section.home-houses .interactive-popup .interactive-popup_info {
    display: flex;
}

section.home-houses .interactive-popup .interactive-popup_info>span {
    color: #fff;
    display: block;
    font-size: 36px;
    margin-top: 23px;
    white-space: nowrap;
}

section.home-houses .interactive-popup .interactive-popup_info .interactive-popup_info_number {
    border-right: 1px solid #ad936d;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-right: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

section.home-houses .interactive-popup .interactive-popup_info .interactive-popup_info_number span {
    color: #ad936d;
    font-size: 36px;
    line-height: 48px;
}

section.home-houses .interactive-popup .interactive-popup_items {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

section.home-houses .interactive-popup .interactive-popup_items_item {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

section.home-houses .interactive-popup .interactive-popup_items_item label {
    color: #faf8f2;
    font-size: 13px;
    line-height: 21px;
    white-space: nowrap;
}

section.home-houses .interactive-popup .interactive-popup_items_item span {
    color: #faf8f2;
    font-size: 18px;
    line-height: 21px;
    white-space: nowrap;
}

section.home-houses .interactive-popup span {
    color: #fff;
    display: block;
    font-size: 36px;
    margin-top: 13px;
    white-space: nowrap;
}

section.home-houses .interactive-popup .interactive-popup_sizeInfo {
    margin-top: 5px;
    font-weight: 500;
}

/* Home gallery - section */

section.home-gallery {
    background-color: #fff;
}

section.home-gallery .swiper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    user-select: none;
}

section.home-gallery .swiper .swiper-btn-next {
    position: absolute;
    top: 25%;
    z-index: 50;
    right: 10%;
    border-radius: 50%;
    height: 270px;
    width: 270px;
    border: 1px solid #ad936d;
    color: #ad936d;
    opacity: 1;
    transition: .2s ease-in-out;
}

section.home-gallery .swiper .swiper-btn-prev {
    position: absolute;
    top: 25%;
    z-index: 50;
    left: 10%;
    border-radius: 50%;
    height: 270px;
    width: 270px;
    border: 1px solid #ad936d;
    color: #ad936d;
    opacity: 1;
    transition: .2s ease-in-out;
}

section.home-gallery .swiper .swiper-additional {
    position: relative;
    height: auto;
    width: auto;
    border: 0;
}


section.home-gallery .swiper .swiper-buttons .swiper-button-disabled {
    opacity: 0;
}

/* Home contact - section */

section.home-contact {
    background-color: var(--third-color);
    color: #ad936d;
}

/* Footer */

footer section.footer-main {
    color: #eae2cc;
    background-color: var(--second-color);
}

footer section.footer-main a {
    color: #eae2cc;
}

footer section.footer-main .text-heading {
    color: #ad936d;
}

footer section.footer-main nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer section.footer-main nav a {
    font-size: 1.5rem;
    font-weight: 300;
    text-decoration: none;
    line-height: 42px;
    color: #eae2cc;
}

footer section.footer-main nav .footer-submenu {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 118px;
}

footer section.footer-main nav .footer-submenu a {
    color: #ad936d;
    font-size: 19px;
    line-height: 42px;
}


footer section.footer-main .footer-content {
    display: flex;
    flex-direction: column;
    row-gap: 117px;
}

footer section.footer-main .footer-content label {
    color: #ad936d;
    font-size: 16px;
    font-weight: 300;
}

footer section.footer-main .footer-content {
    color: #eae2cc;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

/* */ 

footer section.footer-bottom {
    color: #ad936d;
    background-color: rgba(0,0,0,.5);
    padding: 260px 0 46px
}

.page-wrap {
    overflow-x: hidden;
    overflow-y: visible!important;
}

.page-header h1 {
    font-size: 4.6rem;
}

@media (max-width: 767.98px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
}

.status-circle {
    content: "";
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background-color: red;
    display: inline-block;
    margin-right: 3px;
    flex-wrap: wrap;
}