@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

/*** GENERIC CSS ***/
html,
body {
    font-weight: 400;
    font-family: "Cinzel", serif;
    font-family: "Outfit", sans-serif;
}

body {
    font-size: 16px;
    background: #fff;
    color: #000;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

a i {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

a:hover {
    text-decoration: none;
    color: #000;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    cursor: pointer;
}

button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Outfit", sans-serif;
    font-family: "Cinzel", serif;
    font-weight: 400;
}

h1 {
    font-size: 54px;
    line-height: 1.5;
}

h2 {
    font-size: 48px;
    line-height: 1.4;
}

h3 {
    font-size: 35px;
    line-height: 1.5;
}

h4 {
    font-size: 27px;
    line-height: 1.5;
}

h5 {
    font-size: 24px;
    line-height: 1.5;
}

p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title h6 {
    color: #bca762;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 0px;
    font-family: "Outfit", sans-serif;
    font-weight: 200;
}

.section-title h2 {
    color: #000000;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0px 0px 0px 0px;
}

.section-title hr {
    display: inline-block;
    margin: 5px 0px 0px 0px;
    border-color: #000;
    opacity: 1;
    width: 240px;
}

.section-title.white h6,
.section-title.white h2 {
    color: #fff;
}

.section-title.white h2::before {
    background: #fff;
}

.section-title.white hr {
    border-color: #fff;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.list li {
    position: relative;
    padding-left: 22px;
    color: #000;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 13px;
}

.list li::before {
    /* content: "\f046";
    font: normal normal normal 14px / 1 FontAwesome; */
    content: '';
    position: absolute;
    top: 5px;
    left: 0px;
    color: #BCA762;
    background: url(../images/icon-check.svg) 50% 50% no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
}

.btn-default {
    display: inline-block;
    border-radius: 0;
    background: #BCA762;
    border: 1px solid #BCA762;
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    padding: 12px 24px;
    transition: all .3s;
}

.btn-default:hover {
    color: #BCA762;
    border-color: #000000;
    background: #000000;
    transform: scale(.9);
}

.btn-default.black {
    border-color: #000;
    color: #fff;
    background: #000;
}

.btn-default.black:hover {
    color: #BCA762;
    border-color: #000000;
    background: #000000;
}

.btn-default.white-border {
    border-color: #fff;
    color: #fff;
    background: none;
}

.btn-default.white-border:hover {
    border-color: #BCA762;
    background: #BCA762;
    color: #fff;
}

/*** SIDEMENU ***/
.menu-btn {
    min-width: 30px;
    border-radius: 0;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    margin-left: 15px;
    justify-content: end;
    text-align: right;
}

.menu-btn span {
    display: block;
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background: #fff !important;
    height: 3px;
    margin: 6px 0px;
    border-radius: 5px;
    transition: all .3s;
    margin-left: auto;
}

.menu-btn:hover span {
    width: 100% !important;
    background: #BCA762 !important;
}

.menu-btn div {
    position: relative;
    top: 0px;
    vertical-align: middle;
    width: 30px;
}

.side-menu {
    background: #fff;
    position: fixed;
    top: 0px;
    right: -180%;
    width: 400px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 100%;
    z-index: 9999999;
    padding: 55px 35px;
    overflow: hidden;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, .2);
}

.side-menu.intro {
    right: 0px;
}

.side-menu ul.main-menu {
    padding-left: 0px;
    margin-top: 10px;
    text-align: right;
}

.side-menu ul.main-menu.navbar-nav li {
    list-style: none;
    display: inline-block;
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
}

.side-menu ul.main-menu.navbar-nav li:last-child {
    margin: 0;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 0px;
    -webkit-transition: 0.3s all ease;
    transition: 0.2s all ease;
    border-bottom: 1px solid transparent;
}

.side-menu ul.main-menu li:hover>a {
    color: #BCA762;
    border-color: #BCA762;
}

.side-menu ul.main-menu li.active>a {
    color: #BCA762;
}


.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    transition: all .3s;
}

.side-menu-overlay.active {
    pointer-events: all;
    background-color: rgba(0, 0, 0, .8);
    z-index: 999999;
}

.side-menu a.CloseBtn {
    float: right;
    color: #000;
    /* background: #000; */
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 99;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 20px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 0px 0px 0px 5px;
}

.side-menu a.CloseBtn:before,
.side-menu a.CloseBtn:after {
    content: '';
    display: block;
    width: 25px;
    height: 2.5px;
    background-color: currentColor;
    position: absolute;
    border-radius: 5px;
    left: 50%;
    top: 50%;
}

.side-menu a.CloseBtn:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.side-menu a.CloseBtn:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu .menu-item-has-children {
    cursor: pointer;
}

.side-menu .menu-item-has-children>a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
}

.side-menu .menu-item-has-children:hover>a,
.side-menu .menu-item-has-children.active>a {
    color: #000 !important;
}

.side-menu .menu-item-has-children>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #000;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 27px;
    z-index: 99;
    top: 51%;
    transform: translate(0px, -50%);
    left: 6px;
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
}

.side-menu .menu-item-has-children.current>a:before {
    content: "\f068";
}

.side-menu ul.navbar-nav>li.menu-item-has-children ul.sub-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
}

.side-menu ul.navbar-nav>li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li {
    margin: 0;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li a {
    font-size: 12px;
    background: #ebebeb;
    color: #000;
    margin: 0;
    padding: 10px 15px !important;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li:hover a,
.side-menu ul.navbar-nav>li>ul.sub-menu>li.current_page_item>a,
.side-menu ul.navbar-nav>li>ul.sub-menu>li.active>a {
    color: #fff !important;
    background: #000 !important;
}

.side-menu ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu .social {
    margin-top: 10px;
}

.side-menu .social a {
    color: #000;
    font-size: 22px;
    margin-left: 10px;
}

/*** HEADER ***/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all .3s;
    padding: 0px 5%;
}

header .main-nav {
    padding: 35px 0px;
}

header.fixed .main-nav {
    padding: 25px 0px;
}

header.fixed {
    position: fixed;
    background: #000 !important;
    z-index: 999;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
}

header.fixed .navbar-brand img {
    max-height: 40px;
}

header.home-header .navbar-brand {
    opacity: 0;
    pointer-events: none;
}

header.home-header.fixed .navbar-brand {
    opacity: 1;
    pointer-events: auto;
}

.navbar-brand {
    padding: 0px !important;
    margin: 0px;
}

.navbar-brand img {
    max-height: 51px;
    transition: all .3s;
}

.navbar {
    padding: 0px 0px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-light .navbar-nav>.nav-item {
    margin: 0px 13px;
    display: inline-block;
    vertical-align: top;
}

.navbar-light .navbar-nav>.nav-item:first-child {
    margin-left: 0px;
}

.navbar-light .navbar-nav>.nav-item>.nav-link.dropdown-toggle:after {
    font-size: 18px;
}

.navbar-light .navbar-nav>.nav-item>.nav-link {
    position: relative;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 5px;
    transition: all .3s;
    padding: 0px 0px !important;
    text-transform: uppercase;
    font-weight: 400;
}

.navbar-light .navbar-nav>.nav-item>.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: all .3s;
    opacity: 0;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link::before {
    opacity: 1;
}

/* .navbar-light .navbar-nav>.nav-item.active>.nav-link::before {
    opacity: 1;
} */

.navbar-light .navbar-nav>.nav-item:hover>.nav-link,
.navbar-light .navbar-nav>.nav-item.active>.nav-link {
    color: #BCA762 !important;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu {
    border: none;
    border-radius: 0px !important;
    text-align: left;
    display: block;
    list-style: none;
    margin: 0;
    position: absolute;
    overflow: hidden;
    left: calc(50% - 100px);
    min-width: 180px;
    padding: 0px;
    padding-top: 10px;
    opacity: 0px;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    white-space: nowrap;
}

.navbar-light .navbar-nav>.nav-item:hover ul.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li {
    width: 100%;
    position: relative;
    margin-bottom: 1px;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li:last-child {
    border: none;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li>.nav-link {
    transition: all .3s;
    display: inline-block;
    clear: both;
    margin: 0px;
    width: 100%;
    position: relative;
    line-height: 40px;
    padding: 0px 18px !important;
    font-size: 13px;
    border: none;
    white-space: nowrap;
    color: #fff !important;
    background: #000;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li:hover>a,
.navbar-light .navbar-nav>.nav-item ul.sub-menu>li.active>a {
    color: #000 !important;
    background-color: #BCA762 !important;
}

header .btn-default {
    min-width: 141px;
    margin-left: 13px;
    padding: 12px 24px;

    min-width: inherit;
    padding: 12px 12px;
}

/*** BANNER ***/
.banner {
    position: relative;
    overflow: hidden;
    padding: 70px 0px 20px 0px;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    padding: 300px 110px 310px 110px;
}

.banner .row {
    position: relative;
    z-index: 3;
}

.banner .logo {
    display: inline-block;
    margin-bottom: 60px;
}

.banner .logo img {
    max-height: 120px;
}

.banner h6 {
    color: #bca762;
    font-size: 34px;
    font-weight: 200;
    font-style: italic;
    text-transform: uppercase;
    font-family: "Outfit", sans-serif;
    margin: 0px 0px 0px 0px;
}

.banner h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0px 0px 0px 0px;
}

.banner hr {
    display: block;
    margin: 15px auto 40px auto;
    border-color: #fff;
    opacity: 1;
    height: 2px;
    width: 28%;
    width: 31%;
}

.banner .btn-default {}

.banner .btn-default:hover {}

.banner:before {
    content: '';
    background: rgba(0, 0, 0, 0.66);
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    z-index: 1;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100%;
    object-fit: cover;
}

.banner .logo-remax {
    position: absolute;
    bottom: 40px;
    right: 20px;
    max-height: 60px;
    z-index: 2;
}


/*** MODAL ***/
.modal-dialog {
    margin: 0 auto;
    max-width: 625px;
    border-radius: 0px;
}

.modal .btn-close {
    opacity: 1;
    color: #000;
    font-size: 11px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.modal-content {
    border: none;
    border-radius: 0;
    padding: 0px 0px;
}

.modal-body {
    border: none;
    border-radius: 0;
    padding: 0px 40px;
}

.modal .section-title {
    margin-top: 40px;
    margin-bottom: 90px;
}

.modal label {
    color: #000000;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.modal .form-control {
    height: 42px;
    background-color: #FFFFFF00;
    color: #000000;
    border: none;
    border-bottom: 1px solid #000000FF;
    border-radius: 0px;
    padding: 10px 0px 10px 0px;
    box-shadow: none;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.form-control.email {
    padding-left: 36px !important;
    background: #fff url(../images/icon-email-grey.svg) 11px 50% no-repeat !important;
    background-size: 17px auto !important;
}

.modal textarea.form-control {
    height: 63px;
}

.modal .form-control::-webkit-input-placeholder {
    color: #b8b8b8;
}

.form-check-input {
    border-color: #767676;
}

.form-check.check-input {
    padding-left: 40px;
}

.form-check-input[type=checkbox] {
    margin-left: -40px;
}

.form-check label a {
    color: #335dff;
    text-decoration: underline;
}

.form-check label span {
    padding: 0px 0px 0px 5px;
}

.modal .btn-default {
    width: 100%;
    line-height: 47px;
    padding: 0;
    margin: 20px 0px 50px 0px;
    border-radius: 5px;
}


/*** ABOUT ***/
.about {
    padding: 100px 0px;
}

.about .section-title {
    margin-bottom: 30px;
}

.about .imgbox {
    display: inline-block;
    width: 100%;
}

.about .mb {
    margin-bottom: 150px;
}

.about .btn-default {
    margin-top: 20px;
}


/*** SERVICES ***/
.services {
    padding: 0px 0px 60px 0px;
}

.services .section-title {
    margin-bottom: 45px;
}

.services .space {
    padding: 0px 20px;
}

.services .space .row>div {
    padding: 10px 10px;
}

.service-box {
    display: inline-block;
    width: 100%;
    position: relative;
    transition: all .3s;
}

.service-box>img {
    display: inline-block;
    width: 100%;
    position: relative;
    transition: all .3s;
    aspect-ratio: 1 / .4;
    object-fit: cover;
}

.service-box .text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: all .3s;
    padding: 35px;
    background-color: rgba(0, 0, 0, 0.65);
}

.service-box:hover .text {
    opacity: 0;
    pointer-events: none;
}

.service-box .overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
    background-color: #000000D9;
    background-color: rgba(0, 0, 0, 0.8);
}

.service-box .overlay h3 {
    margin: 0 0 20px;
}

.service-box:hover .overlay {
    opacity: 1;
    pointer-events: all;
}

.service-box h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 200;
    font-style: italic;
    margin: 0px;
    line-height: 1;
}

/*** EXPERTS ***/
.experts {
    background: url(../images/bg-expert.webp) 50% 50% no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.experts:before {
    content: '';
    background: rgba(0, 0, 0, 0.64);
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    z-index: 1;
}

.experts .row {
    position: relative;
    z-index: 2;
}

.experts .section-title {
    margin-bottom: 60px;
}

.experts .section-title hr {
    width: 20%;
}

.expert-box {
    display: inline-block;
    width: 100%;
    border-right: 1px solid #fff;
    padding: 0px 10px;
    height: calc(100% - 20px);
    margin-bottom: 20px;
}

.expert-box.last {
    border: none;
}

.expert-box h3 {
    color: #BCA762;
    font-weight: 500;
    font-size: 69px;
    font-weight: 600;
    line-height: 1;
    margin: 0px 0px;
}

.expert-box p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    justify-content: center;
    line-height: 1.2;
    margin: 10px 0px 0px 0px;
}

.experts .btn-default {
    margin-top: 35px;
}

/*** PROPERTIES ***/
.properties {
    background: #000;
    padding: 100px 100px;
}

.properties .section-title {
    margin-bottom: 40px;
}

.properties .section-title hr {
    width: 20%;
}

.properties .btn-default {
    margin-top: 20px;
}

.property-box {
    display: inline-block;
    width: 100%;
    position: relative;
    transition: all .3s;
    overflow: hidden;
    margin-bottom: 20px;
}

.property-box:before {
    content: '';
    position: absolute;
    left: 0;
    pointer-events: none;
    z-index: 2;
    bottom: 36px;
    width: 4.5px;
    height: 92px;
    background-color: #BCA762;
    transition: all .3s ease-in-out;
}

.property-box .img {
    display: inline-block;
    width: 100%;
    position: relative;
    transition: all .3s;
}

.property-box .img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .1;
    transition: all .3s ease-in-out;
}

.property-box .img img {
    display: inline-block;
    width: 100%;
    aspect-ratio: 1 / .7;
    object-fit: cover;
}

.property-box:hover .img:before {
    background: linear-gradient(180deg, #fff 0, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.5) 50%, #fff);
    opacity: 1;
}

.property-box:hover:after {
    opacity: 1;
}

.property-box:after {
    content: '';
    position: absolute;
    left: 0;
    pointer-events: none;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 100%;
    border: .438vw solid #BCA762;
    opacity: 0;
    transition: all .6s ease-in-out;
}

.property-box:hover:before {
    bottom: 0;
    height: 100%;
}

.property-box:hover .heading {
    opacity: 1;
}

.property-box .heading {
    display: inline-block;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 20px 30px;
    transition: all .3s;
    text-transform: uppercase;
    color: #000;
    font-family: "Outfit", sans-serif;
    font-family: "Cinzel", serif;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 20px;
    font-size: 1.56vw;
    font-weight: 500;
    transition: all .3s;
    opacity: 0;
}

.property-box .heading span {
    font-size: 24px;
    margin: 0px 15px;
    border-left: 1px solid #BCA762;
    height: 40px;
    width: 1px;
}

.property-box:hover .content {
    bottom: 0;
}

.property-box .content {
    position: absolute;
    width: 100%;
    bottom: -5.688vw;
    left: 0;
    padding: 0 0 2.063vw 2.375vw;
    z-index: 1;
    min-height: 12.25vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all .3s;
}

.property-box .content-address {
    font-size: 22px;
    font-size: 1.563vw;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
    margin-bottom: 15px;
    font-family: "Barlow Semi Condensed", sans-serif;
}

.property-box .content-address div {
    font-size: 16px;
    font-size: 1.125vw;
    line-height: 1.8;
    margin-top: .313vw;
    color: #000;
}

.property-box .content-features {
    margin: 0 0 .125vw !important;
    padding: 0;
    opacity: 0;
    font-family: "Barlow Semi Condensed", sans-serif;
}

.property-box:hover .content-features {
    opacity: 1;
    line-height: 1;
}

.property-box .content-features li:first-child {
    padding-left: 0;
}

.property-box .content-features li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 17px;
    font-size: 1.125vw;
    font-weight: 500;
    color: #000;
    line-height: 1.8;
    text-transform: uppercase;
    padding: 0 .563vw;
}

.property-box .content-features li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 1vw;
    background-color: #000;
    pointer-events: none;
}

.property-box:hover .content-price {
    opacity: 1;
    line-height: 1;
}

.property-box .content-price {
    font-size: 35px;
    font-size: 2.438vw;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    color: #BCA762;
    transition: all .3s;
}

.property-box .content-price span {
    font-size: 22px;
    font-size: 1.563vw;
}

.property-box .btn-default {
    margin: 0;
    position: absolute;
    bottom: 2.375vw;
    right: 1.938vw;
}

/*** TESTIMONIALS ***/
.testimonials {
    background: #000;
    padding: 50px 0px 100px 0px;
}

.testimonials .section-title {
    margin-bottom: 40px;
}

.testimonials .btn-default {
    margin-top: 30px;
}

.testi-box {
    display: inline-block;
    width: 100%;
    border: 1px solid #fff;
    padding: 25px 25px 25px 25px;
    position: relative;
    overflow: hidden;
}

.testi-box .left {
    position: absolute;
    top: 10px;
    left: 10px;
}

.testi-box .right {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.testi-box .user-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testi-box p {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.testi-box p.name {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.testi-box .stars {
    color: #BCA762;
    font-weight: 400;
    transition: all .3s;
}

.testi-box .stars i {
    font-size: 20px;
    margin: 0px 1px;
}


/*** CONTACT INFO ***/
.contact-info {
    padding: 100px 0px 150px 0px;
}

.contact-info .section-title {
    margin-bottom: 30px;
}

.contact-info label {
    color: #000000;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.contact-info .form-control {
    height: 42px;
    background-color: #FFFFFF00;
    color: #000000;
    border: none;
    border-bottom: 1px solid #000000FF;
    border-radius: 0px;
    padding: 10px 0px 10px 0px;
    box-shadow: none;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-info textarea.form-control {
    height: 63px;
}

.contact-info .form-control::-webkit-input-placeholder {
    color: #b8b8b8;
}

.contact-info .btn-default {
    width: 100%;
    line-height: 47px;
    padding: 0;
    margin: 30px 0px 0px 0px;
    border-radius: 5px;
}

.contact-info .space {
    padding: 0px 70px 0px 40px;
}

.contact-info.home-contact {
    padding: 100px 86px 150px 86px;
}

.contact-info.home-contact .space {
    padding: 0px 45px 0px 32px;
}

.contact-info.home-contact .btn-default {
    display: block;
    width: auto;
    padding: 0px 25px;
    margin: 30px auto 0px auto;
}


/*** SMALL DECISION ***/
.small-decision {
    background: #000;
    padding: 80px 0px;
}

.small-decision .section-title h6 {
    color: #bca762 !important;
}

.small-decision .btn-default {
    margin-top: 35px;
}

.small-decision p {
    color: #fff;
}


/*** FOOTER ***/
.footer {
    background: #000;
    padding: 70px 0px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.footer .links ul {
    list-style: none;
    padding: 0px;
    margin: 0px 0px 80px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .links ul li {
    margin: 0px;
}

.footer .links ul li a {
    color: #fff;
    transition: .4s;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5;
}

.footer .links ul li a:hover {
    color: #BCA762;
}

.footer .logo {}

.footer .logo img {
    max-height: 75px;
}

.contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list li:last-child {
    margin-bottom: 0px;
}

.contact-list li a {
    display: flex;
    align-items: center;
    color: #fff;
}

.contact-list li a img {
    margin-right: 8px;
}

.footer .logo {}

.footer .exp {
    max-height: 78px;
}

.footer p {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    margin-top: 20px;
}

.footer .social {
    margin-bottom: 30px;
}

.footer .social a {
    color: #fff;
    font-size: 22px;
    margin-left: 10px;
}

/*** COPYRIGHT ***/
.copyright {
    background: #000;
    padding: 40px 0px;
}

.copyright ul {
    list-style: none;
    padding: 0px;
    margin: 0px 0px 0px 0px;
}

.copyright ul li {
    display: inline-block;
    margin-right: 40px;
}

.copyright ul li:last-child {
    margin-right: 0px;
}

.copyright ul li a {
    color: #fff;
    transition: .4s;
    font-family: "Outfit", sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5;
}

.copyright ul li a:hover {
    color: #BCA762;
}

.copyright p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.copyright p img {
    max-height: 46px;
}

.copyright p a {
    margin-left: 40px;
}

.copyright p img {
    max-height: 40px;
}



/*** page-banner ***/
.page-banner {
    position: relative;
    overflow: hidden;
    padding: 350px 0px;
}

.page-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner .container {
    position: relative;
    z-index: 3;
}

.page-banner h6 {
    color: #bca762;
    font-size: 34px;
    font-weight: 200;
    font-style: italic;
    text-transform: uppercase;
    font-family: "Outfit", sans-serif;
    margin: 0px 0px 0px 0px;
}

.page-banner h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0px 0px 0px 0px;
}

.page-banner hr {
    display: block;
    margin: 15px auto 0px auto;
    border-color: #fff;
    opacity: 1;
    height: 2px;
    width: 28%;
}

.page-banner:before {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    z-index: 1;
}

.page-banner .small-logo {
    max-height: 77px;
    margin-bottom: 30px;
}

.page-banner .big-logo {
    max-height: 220px;
    margin-bottom: 30px;
}

.page-banner .btn-default {
    margin-top: 50px;
}


/*** about ***/
.about .contact-list li a {
    color: #000;
}

.about .social {
    margin-top: 20px;
}

.about .social a {
    color: #000;
    font-size: 22px;
    margin-right: 10px;
}

/*** contact-form ***/
.contact-form {
    background: #000;
    padding: 100px 0px;
}

.contact-form .section-title {
    margin-bottom: 40px;
}


/*** aboutpage ***/
.about.about-page {}

.about {}

.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 15px 6px 5px 6px;
    background: #000;
    opacity: .2;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #000;
    opacity: 1;
}

.owl-theme .owl-nav {
    margin-top: 0px;
}

.owl-theme .owl-nav [class*=owl-] i {
    font-size: 36px;
    color: #FFF;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 25px;
    margin: 5px;
    padding: 0px 0px;
    background: none !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    position: absolute;
    top: 50%;
    left: 15px;
    margin-top: -35px;
    font-weight: 400;
}

.owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 15px;
}


/*** our-values ***/
.our-values {
    background: #000;
    padding: 100px 0px;
}

.our-values .section-title {
    margin-bottom: 45px;
}

.value-box {
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
    text-align: center;
    aspect-ratio: 1 / .7;
}

.value-box img {
    max-height: 88px;
}

.value-box h3 {
    color: #fff;
    font-family: "Outfit", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    line-height: 22px;
    margin-top: 30px;
}

.value-box .overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    background: #fff;
    padding: 0px 30px;
}

.value-box:hover .overlay {
    top: 0;
}

.value-box .overlay p {
    color: #000;
    font-family: "Outfit", Sans-serif;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}


/*** NEWSLETTER POPUP ***/
.newsletter-popup-overlay {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000;
    opacity: .66;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

.newsletter-popup-overlay.active {
    display: block;
    opacity: .66;
    pointer-events: all;
}

.newsletter-popup.active {
    display: block;
    pointer-events: all;
    right: 0;
}

.newsletter-popup {
    position: fixed;
    bottom: 0px;
    right: -350%;
    background: #fff;
    width: 530px;
    z-index: 99999;
    text-align: center;
    padding: 50px 50px;
    pointer-events: none;
    transition: all .3s;
}

.newsletter-popup::before {
    content: '';
    background: url(https://janiceco.ca/wp-content/uploads/2025/01/icon_janice_or.webp) 50% 50% no-repeat;
    opacity: .13;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.newsletter-popup .closebtn {
    position: absolute;
    top: -3px;
    left: -20px;
    font-weight: 400;
    color: #fff;
}

.newsletter-popup .logo {
    max-height: 63px;
}

.newsletter-popup .section-title {
    position: relative;
    z-index: 1;
}

.newsletter-popup .list {
    margin: 30px 0px 30px 0px;
}

.newsletter-popup .list li {
    padding-left: 22px;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 13px;
    display: block;
    margin: 0 auto 10px auto;
    width: max-content;
}

/*** About sale ***/
.about.buysell-about .btn-default {
    margin: 20px 15px 0px 0px;
}


/*** key-steps ***/
.key-steps {
    background: #000;
    padding: 100px 0px 50px 0px;
    overflow: hidden;
}

.key-steps .section-title {
    margin-bottom: 55px;
}

.key-steps-box {
    display: inline-block;
    width: 100%;
    padding: 11px;
    height: calc(100% - 50px);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
    text-align: center;
}

.key-steps-box .fullimg {
    width: 100%;
    aspect-ratio: 1 / .7;
    object-fit: cover;
    margin-bottom: 25px;
}

.key-steps-box .icon:hover {
    transform: scale(0.9);
}

.key-steps-box .icon {
    transition: all .3s;
    max-height: 106px;
}

.key-steps-box h3 {
    color: #fff;
    font-family: "Outfit", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    line-height: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.key-steps-box p {
    color: #fff;
    font-family: "Outfit", Sans-serif;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0px 15px;
}


/*** BUYSELL FORM ***/
.buysellform {
    padding: 100px 0px;
    background: #f5f5f5;
    overflow: hidden;
}

.buysellform .section-title {
    margin-bottom: 50px;
}

.buysellform .form-control {
    background: #fff;
    border: 0px;
    border-radius: 0px;
    padding: 10px 16px;
    margin-bottom: 18px;
    height: 50px;
    color: #000;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

.form-control::placeholder {
    color: #555;
}

.buysellform .form-control:focus {
    color: #000;
    outline: 0;
    box-shadow: none;
    background: #fff;
    border-color: #000;
}

.buysellform textarea.form-control {
    height: 118px;
    resize: none;
}

.buysellform select.form-control {
    appearance: auto;
}

.buysellform .btn-default {
    margin-top: 30px;
}

/*** INFO SMALL ***/
.info-small {
    padding: 80px 0px;
    overflow: hidden;
    background: #f5f5f5;
}

.info-small p {
    margin-bottom: 20px;
}

.info-small .section-title {
    margin-bottom: 20px;
}


/*** latest-transaction ***/
.latest-transaction {
    padding: 100px 0px 100px 0px;
    overflow: hidden;
}

.latest-transaction .section-title {
    margin-bottom: 35px;
}


/*** testimonials small-testi ***/
.testimonials.small-testi {
    background: #fff;
    overflow: hidden;
    padding: 100px 0px;
}

.testimonials.small-testi .section-title {
    margin-bottom: 10px;
}

.testimonials.small-testi .testi-box .user-img {
    width: 205px;
    height: 205px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonials.small-testi .testi-box .box {
    position: relative;
    padding: 30px 85px 0px 85px;
}

.testimonials.small-testi .testi-box p {
    color: #000;
    margin-bottom: 10px;
}

.testimonials.small-testi .testi-box .left {
    top: 23px;
}

.testimonials.small-testi .testi-box .right {
    bottom: -17px;
}


/*** our-values property-value ***/
.our-values.property-value {}

.our-values.property-value .value-box {
    padding: 0px 45px;
}


/*** builders-entrepreneurs-value ***/
.our-values.property-value.builders-entrepreneurs-value {}

.our-values.property-value.builders-entrepreneurs-value .value-box {
    padding: 0px 45px;
    aspect-ratio: 1 / .47;
}



/*** our-offer ***/
.our-offer {
    background: #000;
    padding: 100px 0px;
}

.our-offer .section-title {
    margin-bottom: 45px;
}

.offer-box {
    display: inline-block;
    width: 100%;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    padding: 50px 50px 15px 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
    text-align: center;
}

.offer-box img {
    max-height: 88px;
}

.offer-box h3 {
    color: #fff;
    font-family: "Outfit", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    line-height: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.offer-box .icon {
    transition: all .3s;
    max-height: 100px;
}

.offer-box .icon:hover {
    transform: scale(0.9);
}

.offer-box p {
    color: #fff;
    font-family: "Outfit", Sans-serif;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}


/*** OUR ENGAGEMENT ***/
.our-values.our-engagement {}

.our-values.our-engagement .value-box {
    padding: 0px 40px;
}


/*** property-about ***/
.property-about {
    padding: 100px 0px;
}

.property-about.properties-inner .section-title hr {
    width: 440px;
}

.property-about .section-title {
    margin-bottom: 40px;
}

.property-about .btn-default {
    margin-top: 20px;
}

.property-heading-box {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.property-heading-box .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.property-heading-box .img img {
    display: inline-block;
    width: 100%;
    aspect-ratio: 1 / .65;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.property-heading-box:hover .img img {
    transform: scale(1.1);
}

.property-heading-box .img:before {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    z-index: 1;
}

.property-heading-box h3 {
    color: #fff;
    font-style: italic;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: 30px;
    right: 25px;
    z-index: 2;
    text-align: right;
}

.property-heading-box .align {
    position: absolute;
    bottom: 30px;
    left: 25px;
    z-index: 2;
}

.property-heading-box .align .label {
    display: inline-block;
    padding: 5px 5px 5px 5px;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
    color: #fff;
    background-color: #BCA762;
}

.property-heading-box .align h5 {
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    margin: 20px 0px 0px 0px;
}

.pagination {
    justify-content: center;
}

.pagination .page-link {
    color: #000;
}

.pagination .active>.page-link,
.pagination .page-link:hover {
    color: #fff;
    background-color: #BCA762;
    border-color: #BCA762;
}

.properties-inner .property-box {
    margin-bottom: 50px;
}

.properties-inner .property-box .content-address {
    color: #fff;
}

.properties-inner .property-box .content-address div,
.properties-inner .property-box .content-features li {
    color: #fff;
}


/*** our-offer laurenties-offer ***/
.our-offer.laurenties-offer {}

.our-offer.laurenties-offer .offer-box {
    padding: 25px;
}

.our-offer.laurenties-offer .offer-box h3 {
    margin-top: 10px;
    margin-bottom: 20px;
}



/*** opening-model ***/
.opening-model {}

.opening-model .section-title {
    border: 3px double #000;
    margin: 10px 0px;
}

.opening-model .section-title h2 {
    font-weight: 200;
    text-transform: none;
    font-style: normal;
    letter-spacing: -0.5px;
    word-spacing: 2px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
}

.opening-model .owl-theme .owl-nav [class*=owl-] {
    margin-top: -25px;
}


/*** discover-info ***/
.discover-info {
    padding: 90px 0px;
}

.discover-info .section-title {
    margin-bottom: 30px;
}

.discover-model {
    display: inline-block;
    width: 100%;
}

.discover-model .img {
    display: inline-block;
    width: 100%;
}

.discover-model h6 {
    color: #bca762;
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 200;
    font-style: italic;
    margin: 20px 0px 45px 0px;
}


/*** living-info ***/
.living-info {
    padding: 30px 0px 200px 0px;
}

.living-info .section-title {
    margin-bottom: 60px;
}

.living-info .section-title p {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    margin-top: 35px;
}

.living-info .owl-dots {
    display: none;
}

.living-info .text-info h6 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    margin: 0px 0px;
}

.living-info .text-info h2 {
    color: #bca762;
    font-size: 67px;
    font-weight: 500;
    margin: 10px 0px 0px 0px;
    line-height: 1.2;
}

.living-info .text-info hr {
    display: inline-block;
    margin: 5px 0px 30px 0px;
    border-color: #000;
    opacity: 1;
    width: 170px;
}

.living-info .text-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.living-info .text-info ul li {
    display: inline-block;
    width: 100%;
    margin-bottom: 0px;
}

.living-info .text-info ul li .list-icon {
    display: flex;
    align-items: center;
}

.living-info .text-info ul li .list-icon .icon {
    max-height: 49px;
    transition: all .3s;
}

.living-info .text-info ul li .list-icon .icon:hover {
    transform: scale(0.9);
}

.living-info .text-info ul li .list-icon p {
    color: #000;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 200;
    font-style: italic;
    padding-left: 20px;
    margin: 10px 0px;
}

.living-info .mb {
    margin-bottom: 90px;
}

.living-info .mbs {
    margin-bottom: 110px;
}

.living-info .section-title .logo-s {
    max-height: 78px;
    margin-bottom: 60px;
}

.living-info .section-title.inner {
    margin-bottom: 15px;
}

.living-info .section-title.inner h3 {
    font-size: 28px;
    font-weight: 500;
}

.living-info .btn-default {
    margin-top: 35px;
}



/*** why-choose ***/
.why-choose {
    padding: 30px 0px 200px 0px;
}

.why-choose .section-title {
    margin-bottom: 60px;
}

.why-choose .section-title h3 {
    color: #000;
    font-size: 18px;
    font-family: "Outfit", sans-serif;
    font-weight: bold;
    margin-top: 35px;
    margin-bottom: 35px;
}

.why-choose .section-title .list li {
    width: max-content;
    margin: 0 auto;
    margin-bottom: 13px;
}

.why-choose-box {
    display: inline-block;
    width: 100%;
    border: 1px solid #000;
    padding: 10px 10px 35px 10px;
    height: calc(100% - 20px);
    margin-bottom: 20px;
}

.why-choose-box .img {
    display: inline-block;
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    object-fit: cover;
}

.why-choose-box .text {
    display: inline-block;
    width: 100%;
    padding: 0px 25px 0px 25px;
}

.why-choose-box h3 {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 15px;
}

.why-choose-box p {
    font-weight: 400;
    line-height: 1.5;
}

.why-choose-box p.bold {
    font-weight: bold;
}


/*** about lake-project-about ***/
.about.lake-project-about {
    padding-top: 0;
}

.about.lake-project-about .section-title p {
    margin-top: 30px;
}

.about.lake-project-about p.bold {
    font-weight: bold;
    margin-top: 25px;
}

/*** project-bones ***/
.project-bones {
    padding: 30px 0px 40px 0px;
}

.project-bones .section-title {
    margin-bottom: 140px;
}

.project-bones .section-title hr {
    margin-top: 20px;
    margin-bottom: 30px;
}

.project-bones .section-title p {
    line-height: 1.5;
}

.project-bones .section-title p.bold {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 25px;
}

.project-bones .section-title .logo {
    max-height: 104px;
}

.project-bones .book-img {
    max-height: 350px;
    transition: all .3s;
}

.project-bones .book-img:hover {
    transform: scale(0.9);
}

.project-bones .section-title.inner {
    margin: 0;
}

.project-bones .section-title.inner hr {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 102px;
}

.project-bones .section-title.inner p {
    margin: 0px 0px 50px 0px;
}


/*** contact-info lake-project-contact ***/
.contact-info.lake-project-contact {
    background: url(../images/bg-lake.jpeg) 50% 50% no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 75px 0px;
    position: relative;
    overflow: hidden;
}

.contact-info.lake-project-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #000000C4 0%, #020202 100%);
}

.contact-info.lake-project-contact .row {
    position: relative;
    z-index: 2;
}

.contact-info.lake-project-contact .section-title {
    margin-bottom: 10px;
}

.contact-info.lake-project-contact .section-title h6 {
    color: #bca762;
}

.contact-info.lake-project-contact .section-title hr {
    width: 245px;
    margin-bottom: 50px;
}

.contact-info.lake-project-contact .section-title .icon {
    max-height: 50px;
    margin-bottom: 20px;
}

.contact-info.lake-project-contact .section-title h3 {
    color: #fff;
    font-size: 20px;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0px;
}

.contact-info.lake-project-contact .section-title p {
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    font-style: normal;
}

.contact-info.lake-project-contact .section-title p span {
    margin-right: 5px;
    margin-bottom: 5px;
}

.contact-info.lake-project-contact .section-title p span img {
    max-height: 15px;
    margin-right: 5px;
}

.contact-info.lake-project-contact .section-title h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    font-family: "Outfit", sans-serif;
    margin-bottom: 5px;
}

.contact-info.lake-project-contact .section-title .links {
    display: inline-block;
}

.contact-info.lake-project-contact .section-title .links a {
    display: inline-block;
    margin: 10px 10px;
    color: #fff;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
}

.contact-info.lake-project-contact .section-title .links a i {
    margin-right: 5px;
    font-size: 18px;
}


/*** TEAM INFO ***/
.team-info {
    padding: 80px 0px 70px 0px;
}

.team-info .section-title {
    margin-bottom: 100px;
}

.team-info .section-title hr {
    margin-top: 20px;
    margin-bottom: 40px;
    width: 40%;
}

.team-info .section-title p {
    line-height: 1.2;
}

.team-info .row-space>div {
    padding: 0px 25px;
}

.team-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.team-box .img {
    display: inline-block;
    width: 100%;
}

.team-box .img img {
    display: inline-block;
    width: 100%;
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
    transition: all .3s;
}

.team-box .img img:hover {
    transform: scale(0.91);
}

.team-box h3 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    margin: 15px 0px 0px 0px;
    line-height: 1.1;
}

.team-box h6 {
    color: #BCA762;
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 200;
    font-style: italic;
    margin: 0px 0px 22px 0px;
}

.team-box .contact-links a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 0px 7px 0px;
}

.team-box .contact-links a img {
    max-height: 20px;
    margin-right: 5px;
}

/*** engagement info ***/
.engagement-info {
    background: #000;
    padding: 100px 0px 0px 0px;
}

.engagement-info .section-title {
    margin-bottom: 60px;
}

.engagement-info .section-title p {
    color: #fff;
    margin-top: 30px;
}

.engagement-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 70px;
}

.engagement-box .img {
    display: inline-block;
    width: 100%;
}

.engagement-box .img img {
    display: inline-block;
    max-height: 295px;
    transition: all .3s;
}

.engagement-box .img img:hover {
    transform: scale(0.91);
}

.engagement-box h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 28px 0px 20px 0px;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
}

.engagement-box h3 a {
    color: #fff;
}

/*** engagement-testi ***/
.testimonials.engagement-testi {
    padding-top: 10px;
}

.testimonials.engagement-testi .section-title {
    margin-bottom: 35px;
}

.testimonials.engagement-testi .section-title p {
    color: #fff;
    margin-top: 30px;
}

.testimonials.engagement-testi .row-space>div {
    padding: 0px 15px;
}

.testimonials.engagement-testi .testi-box {
    height: calc(100% - 20px);
    margin-bottom: 20px;
    min-height: 430px;
}

.testimonials.engagement-testi .testi-box .left {
    top: 24px;
}

.testimonials.engagement-testi .testi-box .right {
    bottom: 24px;
}



/*** CALC INFO ***/
.calc-info {
    padding: 70px 0px;
    overflow: hidden;
    background: #fff;
}

mw-calc-panel-body,
mw-calc-section {
    background: #000 !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    padding: 35px 0px !important;
}

mw-calc-section {
    padding: 35px 30px !important;
}

mw-calc-label {
    color: #fff !important;
    font-weight: 400 !important;
}

.mw-calc-search-input {
    border-radius: 0px !important;
}

#calculate_lt {
    color: #000 !important;
    background: #BCA762 !important;
}

#calculate_lt:hover {
    color: #000 !important;
    background: #BCA762 !important;
    border-color: #BCA762 !important;
    opacity: .7 !important;
}

.mw-calc-table>tbody>tr.active {
    border-color: #000 !important;
    border-color: #BCA762 !important;
    color: #000 !important;
}

.mw-calc-table>tbody>tr.active>td input {
    color: #000 !important;
}

.mw-calc-table>tbody>tr.active>td {
    background: #BCA762 !important;
    border-color: #BCA762 !important;
    color: #000 !important;
}



/*** EVALUATION BOX ***/
.evaluation-box {
    padding: 75px 0px;
    position: relative;
    background: #fff;
}

.evaluation-box .section-title h2 {}

.evaluation-box .bg-form {
    padding: 75px 50px;
    background: #000;
}

.evaluation-box label {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #fff;
}

.evaluation-box .checkbox-group label {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #fff;
}

.evaluation-box .btn-default.bordered {
    width: 100%;
    line-height: 1.4;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0px;
    padding: 25px 0px;
    font-weight: 400;
    background: none;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0% 100%);
    clip-path: none;
}

.evaluation-box .btn-default.bordered span {
    font-size: 12px;
    letter-spacing: .5px;
}

.evaluation-box .btn-default.bordered:hover,
.evaluation-box .btn-default.bordered.active {
    background: #BCA762;
    border-color: #BCA762;
    color: #000;
}

.evaluation-box .btn-default.active {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.evaluation-box .btn-default.bordered:before,
.evaluation-box .btn-default.bordered:after {
    display: none;
}

.evaluation-box fieldset {
    display: none;
}

.evaluation-box fieldset.active {
    display: block;
}

.evaluation-box .navigate-btns {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.evaluation-box p {
    color: #fff;
}

fieldset#StepOne .navigate-btns {
    justify-content: end;
}

.evaluation-box .checkbox-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.evaluation-box .checkbox-group label {
    flex: 0 1 calc(50% - 10px);
    margin-bottom: 25px;
}

.evaluation-box input[type="checkbox"] {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 10px;
}

.evaluation-box .form-control {
    margin-bottom: 18px;
    border-radius: 0px;
    color: #fff;
    border-color: #fff;
    height: 50px;
    color: #000;
}

.evaluation-box .form-control::-webkit-input-placeholder {
    color: #000;
    border-color: #fff;
}

.evaluation-box .form-control:focus {
    border-color: #fff;
}


/**/
.about.home-about {
    padding: 100px 88px;
}

/* Semi */
.why-choose-us {
    padding: 100px 0px 50px 0px !important;
}

.black-border {
    border: 1px solid #000 !important;
    padding: 25px 25px;
}

.plan-border {
    border: 1px solid #000 !important;
    /* padding: 25px 25px; */
    padding-bottom: 25px;
}

.maison-cerausole {
    margin-top: 5px;
}

.black-border h3 {
    color: #000 !important;
}

.gold-text {
    color: #BCA762 !important;
    font-size: 16px;
    font-weight: 500;
}

.options-section .section-title h2 {
    font-size: 32px;
}

.options-section h4 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    margin: 0px 0px;
}

.options-section img {
    max-height: 250px;
}

.options-section .btn-default {
    padding: 10px 20px;
}

.options-section p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0px 0px;
}

.page-banner:before {
    z-index: 2;
}
 
.page-banner .container,
.page-banner .container-fluid {
    z-index: 5;
}
 
.page-banner .banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
 
.page-banner .banner-slider .owl-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.page-banner .banner-slider .item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.page-banner .banner-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.page-banner .owl-carousel .owl-stage-outer {
    height: 100%;
}
 
.page-banner .owl-carousel .owl-stage {
    height: 100%;
}
 
.page-banner .owl-carousel .owl-stage {
    height: 100%;
}
 input.wpcf7-form-control.wpcf7-not-valid{
	border-bottom: 2px solid #f00 !important;
}
span.wpcf7-not-valid-tip{
	display:none;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
	display:inline-block !important; 
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok{
	display:inline-block !important;
}


/* ✅ Success message (form sent) */
.wpcf7 form.sent .wpcf7-response-output,  {
	background: #f6f4ee; /* soft beige or light neutral background */
	color: #0a3a2a; /* elegant dark green accent */
	border: 2px solid #0a3a2a;
	padding: 1rem 1.5rem;
	border-radius: 12px;
	font-family: 'Poppins', 'Helvetica Neue', sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	max-width: 500px;
	margin: 1.5rem auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

/* ❌ Error message (validation failed or required fields missing) */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output, .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors{
	background: #fdf2f2; /* soft red background */
	color: #8b0000; /* deep red text */
	border: 2px solid #e63946; /* elegant red border */
	padding: 1rem 1.5rem;
	border-radius: 12px;
	font-family: 'Poppins', 'Helvetica Neue', sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	max-width: 500px;
	margin: 1.5rem auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

/* ⚠️ Individual field validation tips (inline error under fields) */
.wpcf7-not-valid-tip {
	color: #e63946; /* red accent for field warnings */
	font-size: 14px;
	margin-top: 4px;
	font-weight: 500;
}

/* ✨ Fade-in animation for both messages */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.otgs-development-site-front-end{
	display:none;
}


body.page-template-default section.about.contact-page p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}
 
body.page-template-default section.about.contact-page h2 {
    font-family: "Cinzel", sans-serif;
    font-size: 28px;
    font-weight: 500;
}