
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');


/*** GENERIC CSS ***/
html,body {
    font-family: "Inter", sans-serif;
}

body {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #000;
    letter-spacing: .05rem;
}

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

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

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
}

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

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color:#000;
    font-weight: 400;
    font-family: "Noto Serif Display", serif;
    font-family: "Italiana", sans-serif;
}

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;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

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

.visible-xs {
    display: none;
}

.btn-default {
    background: transparent;
    cursor: pointer;
    display: inline-block;
    color: #1B2E47;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    line-height: 56px;
    transition: all .3s ease-in;
    border-radius: 0px;
    padding: 0px 23px;
    text-align: center;
    white-space: nowrap;
    z-index: 2;
    vertical-align: middle;
    border: 2px solid #959595;
    background-color: transparent;
    overflow: hidden;
}

/* .btn-default:before {
    content: '';
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    border-right: 50px solid transparent;
    transform: translateX(-100%);
    transition: .6s ease-out;
    z-index: -1;
    border-bottom: 80px solid #959595;
} */

.btn-default:hover {
    color: #fff;
    background: #959595;
}

.btn-default:hover:before {
    transform: translateX(0);
}

.btn-default span {
}

.btn-black {
    border-color: #112132;
    color: #112132;
}

.normal-btn {
    display: inline-block;
    border: 2px solid #fff;
    font-size: 13px;
    line-height: 40px;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    border-radius: 20px;
}

.normal-btn i {
    margin-right: 5px;
    font-size: 20px;
    position: relative;
    top: 3px;
}

.normal-btn:hover {
    background: #bf0000;
    color: #fff;
    border-color: #bf0000;
}

.underlined {
    position: relative;
    display: inline-block;
}

.underlined::after {
    content:'';
    width:100px;
    background:#134db8;
    height: 4px;
    position:absolute;
    top:100%;
    left: 0%;
}

ul.list li {
    margin:0px 0px 15px 0px;
}

/*** PRELOADER ***/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 99999;
}

.preloader .lds-ripple {
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
    position: absolute;
    border: 2px solid #134db8;
    opacity: 1;
    border-radius: 0;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
            animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
}
100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
}
}

@keyframes lds-ripple {
0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
}
100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
}
}

.img-rounded {
    border-radius: 15px;
}

.hover-animate {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.hover-animate:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.section-title {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.section-title h6 {
    letter-spacing: 3px;
    font-weight: 600;
    color: #959595;
    color: #e1c086;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
}

.section-title h2 {
    font-size: 44px;
    line-height: 1.2;
    margin: 0px;
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0;
}

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

.section-title p {
    font-size: 16px;
    line-height: 1.5;
}


/*** HEADER ***/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 20px 0px;
    background-color: #f6f5ee;
    transition: all .4s ease-out;
}

.header .logo {
    display: inline-block;
    vertical-align: middle;
}

.header .logo img {
    max-height: 60px;
}

.header .logo-agency img {
    max-height: 40px;
    margin-left: 15px;
}

.header .logo-cm {
    display: none;
}

.header .logo-cm img {
    max-height: 60px;
}

/*.header.fixed .logo-cm {
    display: inline-block;
}*/

.header.fixed .logo,
.header.fixed .logo-agency {
    display: none;
}

.header .logo-cm {
    display: none;
}

.header.fixed .logo-cm {
    display: inline-block;
}

.header .leftinfo {
    display: flex;
    justify-content: end;
    gap: 20px;
    align-items: center;
}

.header .search-btn {
    color: #1B2E47;
    margin-left: 30px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    font-size: 16px;
    margin-top: 15px;
    display: none;
}

.header .link {
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    color: #1B2E47;
    margin-left: 30px;  
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    font-size: 14px;
    margin-top: 15px;
}

.header .link:hover {
    border-color: #1B2E47;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f6f5ee;
    z-index: 9;
    padding:10px 0px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .1);
}

.navbar-nav .nav-link {
    color: #fff;
    line-height: 17px;
    padding-bottom: 5px;
    position: relative;
    transition: all .3s;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 400;
    letter-spacing: 1.12px;
    padding:0px 0px !important;
    font-size: 16px;
}

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

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: .15em;
}

.navbar-light .navbar-nav .nav-link i {
    vertical-align: middle;
    margin-right: 10px;
    background: #000;
    border: 1px solid #000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.navbar-light .navbar-nav .nav-item>.nav-link {
    color: #fff;
}

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

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

.navbar-light .navbar-nav .nav-item.active>a,
.fixed .navbar-light .navbar-nav .nav-item.active>a,
.header.innerheader .menu-btn span {
    color:#bf0000!important;
}

.navbar-light .navbar-nav .nav-item ul.sub-menu li:hover {
    background: #fff;
}

.navbar-expand-lg .navbar-nav>li {
    margin-left: 25px;
	display:inline-block;
    vertical-align: top;
}

.navbar-brand img {
    max-height: 100px;
    margin-right: 20px;
}

.navbar {
	padding:0px 0px;
}

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

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

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

ul.sub-menu {
    min-width:255px;
    width: 100%;
    padding:0px 0px;
    border: none;
    border-radius: 0;
    text-align: left;
    margin: auto;
    background: none;
    margin-top: 0px;
    display: block;
    padding-top: 15px;
    
    list-style: none;
    margin: 0;
    background: 0 0;
    padding: 0;
    position: absolute;
    left: calc(50% - 100px);
    min-width: 100%;
    padding-top: 15px;
    opacity: 0;
    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;
}

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

.navbar-nav ul.sub-menu li a.nav-link {
    transition: all .3s;
    display: inline-block;
    clear: both;
    margin: 0px;
	width:100%;
	position:relative;
    line-height: 25px;
    padding: 10px 10px !important;
    
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;

    background: rgba(255, 255, 255, 1);
    color: #000!important;
    border: none;
    text-transform: uppercase;
    white-space: break-spaces;
}

.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:#fff!important;
    background: #bf0000;
}

.fixed .menu-btn:hover {
    color: #000 !important;
}

.menu-btn {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.3;
    color: #000;
    font-weight: 600;
    margin: 0;
    margin-bottom: 0px;
    letter-spacing: 3px;
    margin-top: 15px;
}

.menu-btn:hover {
    color: #000 !important;
}

.menu-btn div {
    position: relative;
    display: inline-block;
    width: 45px;
    margin-top: 5px;
    margin-left: 5px;
    position: relative;
    top: -2px;
    vertical-align: middle;
}

.header.fixed .menu-btn div {
    margin-left: 0px;
}

.menu-btn div span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: 0.3s -webkit-transform ease;
    transition: 0.3s transform ease;
    margin: 8px 0px;
}

.side-menu {
	background:rgba(246, 245, 238,0.95);
	position:fixed;
	top:0px;
	left:0px;
    width: 100%;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
	height:100%;
	z-index:9999999;
    padding: 55px 35px;
	overflow:hidden;
	overflow-y:auto;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .1);
    display: none;
}

.side-menu .logo img {
    max-height: 60px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.side-menu.intro {
	left:0px;
    display: block;
}

.side-menu .logo-cm {
    display: none;
}

.side-menu ul.main-menu ul {
	padding: 0;
}

.side-menu ul.main-menu li {
	list-style:none;
	display:inline-block;
	width:100%;
}

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:50px;
    flex-direction: row;
    align-items: start;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    width: 100%;
    letter-spacing: 1px;
    color: #000;
    padding: 7px 0px;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
    font-weight: 500;
}

.side-menu ul.main-menu>li {
    width: 25%;
    float: left;
    padding: 30px 20px !important;
}

.side-menu ul.main-menu>li>a {
    letter-spacing: 1px;
    color: #000;
    font-family: "Noto Serif Display", serif;
    font-size: 24px;
    padding: 7px 0px;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
    font-weight: 400;
    margin-bottom: 20px;
}

.side-menu ul.main-menu li a:hover,
.side-menu ul.main-menu li.active>a {
	background:none;
    color:#1B2E47;
    font-weight: 500 !important;
}

a.CloseBtn {
    float: right;
    color: #000;
    font-size: 26px;
    margin: 0px 0px 45px 15px;
    position: relative;
    z-index: 99;
    cursor: pointer;
    min-width: 20px;
    min-height: 20px;
}

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

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);
}

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 ul.main-menu.navbar-nav {
	margin-top:30px;
}

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

.side-menu ul.main-menu.navbar-nav li:last-child a {
    border: none;
}

.side-menu ul.main-menu.navbar-nav li a:hover,
.side-menu ul.main-menu.navbar-nav>li.active>a {
	background:none;
    color: #000;
    font-weight: 400 !important;
}

.side-menu ul.main-menu.navbar-nav li .sub-menu a {
    padding: 10px 0px;
    font-size: 16px;
    color: #000;
    font-weight: 400 !important;
    position: relative;
    transition: all .4s ease-out;
}

.side-menu ul.main-menu.navbar-nav li .sub-menu a:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 1px;
    background-color: #000;
    margin: auto;
    opacity: 0;
    transition: all .4s ease-out;
}

.side-menu ul.main-menu.navbar-nav li .sub-menu a:hover:before,
.side-menu ul.main-menu.navbar-nav li .sub-menu .active>a:before {
    opacity: 1 !important;
    transition: all .6s ease-out .2s !important;
}


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

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

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

.side-menu ul.navbar-nav li a:hover {
	background:none;
    color:#000;
    border-bottom-color: rgba(11, 23, 23, .2);
}

.side-menu 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;
    padding: 0px 0px !important;
    top: 0 !important;
    pointer-events: all;
}

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

.side-menu ul.navbar-nav li ul.sub-menu li:hover a,
.side-menu ul.navbar-nav li ul.sub-menu li.active>a,
.side-menu ul.navbar-nav li ul.sub-menu li.current_page_item>a {
    background: none !important;
    color: #786759 !important;
    padding-left: 20px;
}

.side-menu ul.main-menu.navbar-nav li {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

@media only screen and (max-width:767px) {
.side-menu ul.main-menu>li {
    width: 100%;
    padding: 30px 0px !important;
}

.side-menu ul.main-menu {
    flex-wrap: wrap;
}
}

/* @media only screen and (max-width:767px) {
.side-menu li.menu-item-has-children ul.sub-menu {
    background: #ccc;
    display: none !important;
}

.side-menu ul.main-menu.navbar-nav li .sub-menu a {
    padding: 10px 15px;
    font-size: 12px;
    background: #fff;
    color: #000;
}

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

.side-menu .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 27px;
    z-index: 99;
    top: 51%;
    transform: translate(0px, -50%);
    right: 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 li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

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

} */

/*** banner ***/
.banner {
    padding: 0px 0px 00px 0px;
    position: relative;
    z-index: 8;
    overflow: hidden;
    height: calc(100vh - 124px);
    height: 100vh;
}

.banner .logo-remax {
    position: absolute;
    bottom: 20px;
    right: 15px;
    filter: invert(1) brightness(1);
    z-index: 6;
}

.banner .item {
    position: relative;
    height: calc(100vh - 124px);
    height: 100vh;
    /* padding-top: 124px; */
}

.banner .owl-carousel {
    height: calc(100vh - 124px);
    height: 100vh;
}

.banner .h-100vh {
    padding: 90px 0px 0px 0px;
}

.banner .owl-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
}

.banner .owl-nav button {
    background: none !important;
    margin: 0px 40px !important;
}

.banner .owl-nav button img {
    width: 50px;
}

.h-100vh {
    height: 100vh;
}

.banner .h-100vh {
    height: 100vh;
}

.banner .container-fluid,
.banner .container,
.banner .owl-carousel {
    position: relative;
    z-index: 2;
}

.banner .bg {
    transform: translateX(20px);
    transition: all .3s;
    opacity: 0;
    background-color: #fff;
    background-color: rgba(255, 255, 255, .9);
    padding: 30px 30px 30px 37px;
    margin-bottom: 55px;
    width: 45%;
    /* text-align: left; */
    display: inline-block;
}

.banner .active .bg {
    transform: translateX(0px);
    opacity: 1;
}

.banner h6 {
    letter-spacing: 3px;
    font-weight: 600;
    color: #959595;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
}

.banner h2 {
    font-size: 40px;
    color: #000;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.banner .btn-default {
    min-width: 225px;
}

.banner .btn-default + .btn-default {
    margin-left: 20px;
}

.banner .owl-dots {
    right: 0;
    bottom: 10px;
    width: 100%;
    position: absolute;
    z-index: 99;
}

.banner .owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 5px 5px;
    background: none;
    border: 1px solid #fff;
    border-radius: 50%;
}

.banner .owl-theme .owl-dots .owl-dot.active span,
.banner .owl-theme .owl-dots .owl-dot:hover span{
    background: #fff;
    border: 1px solid #fff;
}

.banner .owl-dots .owl-dot.active button {
    border-color: #000;
}

.banner .owl-dots .owl-dot button {
    text-indent: 0;
    width: 30px;
    height: 30px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: transparent;
    line-height: 1.25;
    color: #000;
    font-family: 'Noto Serif Display', serif;
    text-align: center;
    margin: 10px 0;
    opacity: 1;
    display: inline-flex;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1400px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1170px;
}
}

/*** about ***/
.about {
    padding: 75px 0 60px;
    background-color: #f6f5ee;
}

.about .mainimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .btn-default {
    margin-right: 2px;
    margin-bottom: 20px;
}

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

/*** PROPERTIES ***/
.properties {
    padding: 60px 0px 50px 0px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.properties:before {
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    bottom: 0;
    width: 100%;
    transition: all 1.2s linear 2s;
    background-color: rgba(220, 176, 149, .35);
}

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

.properties .section-title h2 {
    font-size: 70px;
    margin-top: 0;
}

.section-title.line h2 {
    position: relative;
    padding-bottom: 0px;
    display: inline-block;
    margin-bottom: 15px;
}

/* .section-title.line h2:after {
    content: '';
    display: inline-block;
    border: none;
    opacity: 1;
    height: 1px;
    background-color: #1B2E47;
    width: 0px;
    margin: 0;
    margin-bottom: -10px;
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: all .8s ease-out;
}

.animated .section-title.line h2:after {
    width: 100%;
} */

.listingbox {
    display: inline-block;
    width: 100%;
    position: relative;
    transition: all .3s;
    background-color: #fff;
    color: #000;
    margin-bottom: 30px;
}

.listingbox:hover {
    color: #000;
}

.listingbox .img {
    height: 300px;
    overflow: hidden;
}

.listingbox .img img {
    display: block;
    transition: all 1.2s ease-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.listingbox:hover .img img {
    transform: scale(1.1);
    transition: all 5s ease-out;
}

.listingbox .text {
    padding: 25px;
    min-height: 240px;
}

.listingbox h4 {
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #786759;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.listingbox h4 .delim {
    color: #959595;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
}

.listingbox h4 span {
    color: #1B2E47;
    font-style: italic;
}

.listingbox h3 {
    margin-top: 10px;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 1.2;
}

.listingbox .learn-text {
    letter-spacing: 3px;
    font-weight: 600;
    color: #1B2E47;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.listingbox .learn-text:hover {
    color: #000;
}

.listingbox p {
    color: #000;
}

.listingbox p img {
    width: 22px;
    color: #000;
}

.properties .mts {
    margin-top: 35px;
}

.properties .btn-default {
    min-width: 240px;
    margin: 5px 15px;
}

/*** social-media ***/
.social-media {
    padding: 90px 0px;
}

.social-media .nav-tabs {
    justify-content: center;
    margin-bottom: 40px;
    border: none;
}

.social-media .nav-tabs .nav-item.show .nav-link,
.social-media .nav-tabs .nav-link.active {
    border-color: #959595;
}

.social-media .nav-tabs .nav-item .nav-link,
.social-media .nav-tabs .nav-link {
    color: #000;
    border-radius: 3px !important;
    font-size: 20px;
    padding: 8px 0px;
    min-width: 50px !important;
    text-align: center;
}

.socialbox {
    position: relative;
    overflow: hidden;
    background: #000;
    display: inline-block;
    width: 100%;
    /* aspect-ratio: 1 / 1; */
}

.socialbox img {
    transition: all .3s;
}

.socialbox:hover img {
    transform: scale(1.1);
    opacity: .6;
}

/*** schedule ***/
.schedule {
    padding: 90px 0px;
    overflow: hidden;
}

.schedule .section-title h2 {
    margin-bottom: 20px;
}

.schedule .section-title p {
    margin-bottom: 20px;
}

.schedule select {
    display: inline-block;
    width: 100%;
    background: #fff;
    border: 0px;
    border-radius: 0px;
    padding: 5px 0px;
    margin-bottom: 18px;
    height: 40px;
    color: #000;
    letter-spacing: 1px;
    font-size: 15px;
    border-bottom: 2px solid #000;
    outline: none !important;
    margin-top: 15px;
    margin-bottom: 20px;
}

.schedule .submit {
    margin-top: 20px;
}

.time-box {
    width: 100%;
    display: inline-block;
    border: 1px solid #e9e9e9;
    text-align: center;
    color: #929292;
    font-size: 13px;
    padding: 18px 15px;
    line-height: 1.4;
}

.time-box span {
    color: #000;
    font-size: 45px;
}

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

.schedule .owl-theme .owl-nav [class*=owl-]:hover {
    background: #959595;
}

.schedule .owl-theme .owl-nav [class*=owl-]:hover i {
    color: #fff;
}

.schedule .owl-theme .owl-nav [class*=owl-] {
    border: 2px solid #959595;
    background: #fff;
    border-radius: 0;
    width: 42px;
    line-height: 37px;
    color: #959595;
    text-align: center;
    margin: 0;
    font-size: 18px;
    position: absolute;
    top: 37%;
    left: -53px;
}

.schedule .owl-theme .owl-nav [class*=owl-] i {
    font-size: 23px;
    position: relative;
    top: 1px;
}

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



/*** contact-details ***/
.contact-details {
    background: #101010;
    padding: 70px 0px;
}

.contact-details .icon {
    color:#e1c086;
    font-size: 24px;
    display: block;
    margin: 0 auto 30px;
}

.contact-details h3 {
    color: #f1fbfc;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-details p {
    line-height: 1.7em;
    color: #fff;
    font-size: 16px;
}

.contact-details p a {
    color: #fff;
}

.contact-details .social a {
    display: inline-block;
    color: #e1c086;
    background: #000;
    border-radius:50%;
    font-size: 22px;
    text-align: center;
    width: 40px;
    line-height: 40px;
}

.contact-details .social a:hover {
    background:#e1c086;
    color: #000;
}

.contact-details p a:hover {
    color: #959595;
}

/*** FOOTER ***/
.footer {
    padding:75px 0px 45px 0px;
    background: #000;
    background-size: cover;
}

.footer ul {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
}

.footer ul li {
    display: inline-block;
    margin: 10px 10px;
}

.footer ul li a {
    display: inline-block;
    color: #e1c086;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.footer ul li a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

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

.footer .logo img {
    max-height: 75px;
    filter: invert(1) brightness(1);
}

.footer .logo .remax {
    filter: invert(1) brightness(1);
    max-height: 50px;
}

.footer .logo a {
    margin: 0px 15px;
    display: inline-block;
}

.footer h3 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer p {
    color: #939598;
    font-size: 14px;
}

.footer small, .footer .details {
    color: #DDDDDD;
}

.footer .details { 
    margin:10px 0px 20px 0px;
}

.footer small {
    font-size: 12px;
}

.footer .details a {
    color: #DDDDDD;
    margin: 0px 10px;
    font-size: 18px;
    line-height:2;
}

.footer .details .fa {
    margin-right: 10px;
}

.footer .details a:hover {
    color: #fff;
}

.footer .socials li {
    display: inline-block;
    margin: 0px 7px;
    padding: 0px;
    list-style: none;
}

.footer .socials li a {
    border:1px solid #ddd;
    width:40px;
    height: 40px;
    border-radius: 40px;
    display: inline-block;
    line-height: 40px;
    color: #fff;
}

.footer .socials li:hover a {
    background: #fff;
    color: #000;
}

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

.copyright p {
    color: #ddd;
}

.copyright img {
    max-height: 50px;
    max-height: 40px;
    margin-left: 5px;
}


/*** buysell ***/
.buysell {
    padding: 40px 0px;
    padding: 60px 0 80px;
    overflow: hidden;
}

.buysell .left .section-title {
    position: relative;
}

.buysell .section-title hr {
    position: absolute;
    left: 50%;
    top: 0;
}

.buysell .animated .section-title hr {
    height: 120px;
}

.buysell .section-title hr {
    display: inline-block;
    border: none;
    opacity: 1;
    height: 0px;
    background-color: #1B2E47;
    width: 1px;
    margin: 0;
    transition: all .8s ease-out;
}

.cta-imgs {
    position: relative;
}

.cta-lg-img {
    position: absolute;
    top: 0;
    bottom: 150px;
    right: 0;
    left: 60px;
}

.cta-lg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.animated .cta-lg-img:before {
    left: 100%;
}

.cta-lg-img:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: all 1s ease-out .6s;
}

.cta-sm-img {
    border: 5px solid #fff;
    position: relative;
    z-index: 1;
    margin-left: 0;
    width: 40%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .8s ease-out .6s, transform .8s ease-out .6s;
}

.animated .cta-sm-img {
    opacity: 1;
    transform: translateX(0px);
}

.cta-sm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-heading {
    background-color: #fff;
    padding: 25px;
    width: 60%;
    margin-left: 40%;
    position: relative;
    z-index: 1;
    margin-bottom: 250px;
    margin-left: 45px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .8s ease-out .6s, transform .8s ease-out .6s;
}

.animated .cta-heading {
    opacity: 1;
    transform: translateX(0px);
}

#buy1 .cta-sm-img {
    height: 250px;
}

.buysell .second .cta-lg-img {
    top: 0;
    left: 0;
    right: 60px;
    bottom: 150px;
    left: 0;
}

.buysell .second .cta-lg-img:before {
    right: 0%;
    left: 0;
}

.buysell .second.animated .cta-lg-img:before {
    right: 100%;
}

.buysell .second.animated .cta-lg-img {
    top: 0;
    left: 0;
    right: 60px;
    bottom: 150px;
}

.buysell .second .cta-heading {
    width: 60%;
    margin-left: 40%;
}

.buysell .second.animated .cta-heading {
    opacity: 1;
    transform: translateX(0px);
}

.buysell .second .cta-sm-img {
    border: 5px solid #fff;
    position: relative;
    z-index: 1;
    width: 50%;
    margin-left: 50%;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .8s ease-out .6s, transform .8s ease-out .6s;
}

.buysell .second.animated .cta-sm-img {
    opacity: 1;
    transform: translateX(0px);
}

.buysell .mts {
    margin-top: 150px;
}



/*** CONTACT FORM ***/
.contact-form {
    padding: 70px 0px;
    background-color: #f6f5ee;
    position: relative;
}

.contact-form .bg {
    background-color: #fff;
    padding: 25px 60px 50px;
}

.contact-form .section-title h2 {
    font-size: 64px;
    margin-top: 0;
}

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

.contact-form .container {
    position: relative;
    z-index: 3;
}

.contact-form p {
}

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

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

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

select.form-control {
    appearance: auto;
}

.form-control:focus {
    color: #000;
    outline: 0;
    box-shadow: none;
    background: none;
    border: 2px solid #000;
}

textarea {
    height: 100px;
    resize: none;
}

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

.contact-form h5 {
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    margin: 0px 0 15px;
}

.btn-default.fillbtn {
    background: #959595;
    color: #fff;
    min-width: 250px;
}

.btn-default.fillbtn:hover {
    border-color: #000;
    background: #000;
}

.btn-default.fillbtn:before {
    border-bottom: 80px solid #fff;
}

section {
    overflow: hidden;
}



/*** page-banner ***/
.page-banner {
    height: 60vh;
    padding-top: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/page-banner.png) 50% 65% no-repeat;
    background-size: cover;
}

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

.properties.inner {
    padding:70px 0px 40px 0px;
}

/*** CONTACT FORM ***/
.contactpage-info {
    padding: 80px 0px;
    position: relative;
}

.contactpage-info .section-title h2 {
    margin-bottom: 15px;
}

.contactpage-info h3 {
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contactpage-info .bg {
    padding: 70px 60px;
    background: #f6f5ee;
}

.contact-info {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-info>i {
    margin-top: 3px;
    margin-right: 8px;
    color: #0d1321;
    font-size: 16px;
    background: #959595;
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    padding-left: 1px;
}

.contact-info.white a,
.contact-info.white span {
    color: #fff;
}

.contact-info.white>i {
    color: #fff;
    background: #959595;
}

.contact-info a,
.contact-info span {
    color: #000;
}

.contact-info:hover a {
    background: none;
    color: #959595;
}
 
.contactpage-info .socials {
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}

.contactpage-info .socials li {
    display: inline-block;
    margin: 0px;
    margin-right: 10px;
    padding: 0px;
    list-style: none;
}

.contactpage-info .socials li a {
    border:none;
    background: none;
    width:auto;
    height: auto;
    border-radius: 0;
    display: inline-block;
    line-height: inherit;
    text-align: center;
    color: #000;
    font-size: 16px;
}

.contactpage-info .socials li:hover a {
    background: none;
    color: #959595;
}

.btn-link {
    color: #959595;
}

.btn-link:hover{
    color: #959595;
}


/** Buyer-Seller **/
.about.buysell-about {
    padding: 70px 0px;
}

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

.buysellform {
    padding:100px 0px 0px 0px;
    overflow: hidden;
    position: relative;
}

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

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

.buysellform h4 {
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.buysellform .bg-form {
    padding: 80px 50px;
    background-color: #fff;
    background-color: #f6f5ee;
    background: none;
    padding: 25px 60px 50px;
    border: 1px solid #1B2E47;
    border-top: none;
    padding: 0 90px 45px;
}

.buysellform .bg-form {
    padding: 80px 50px;
    background-color: #fff;
    background-color: #f6f5ee;
    background: none;
    padding: 25px 60px 50px;
    border: 1px solid #1B2E47;
    padding: 0 90px 45px;
}


.buysellform .bg-form .section-title {
    background-color: #fff;
    display: inline-block;
    margin-top: -35px;
    padding: 0px 40px;
}


.buysellform .bg-form .section-title h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

/*** ***/
.info-small {
    overflow: hidden;
    padding: 80px 0px;
}

.info-small .section-title h2 {
    font-size: 48px;
} 

.info-small p {
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: .05rem;
} 


/*** bloginfo ***/
.bloginfo {
    padding: 50px 0px 25px 0px;
}

.bloginfo .blogbox {
    margin-bottom: 25px;
    box-shadow: 0px 1px 6px 0px rgba(0,0,0,.2);
}

.blogbox {
    display: inline-block;
    width: 100%;
    height: calc(100% - 30px);
    position: relative;
    transition: all .3s;
    background-color: #fff;
    color: #000;
    margin-bottom: 30px;
}

.blogbox:hover {
    color: #000;
}

.blogbox .img {
    height: 250px;
    overflow: hidden;
}

.blogbox .img img {
    display: block;
    transition: all 1.2s ease-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blogbox:hover .img img {
    transform: scale(1.1);
    transition: all 5s ease-out;
}

.blogbox .text {
    padding: 25px;
    min-height: 240px;
}

.blogbox .text p {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogbox h4 {
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #959595;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.blogbox h4 .delim {
    color: #959595;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
}

.blogbox h4 span {
    color: #1B2E47;
    font-style: italic;
}

.blogbox h3 {
    margin-top: 10px;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 500;
}

.blogbox .learn-text {
    letter-spacing: 3px;
    font-weight: 600;
    color: #1B2E47;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.blogbox .learn-text:hover {
    color: #000;
}


.bloginfo.details {
    padding: 50px 0px;
}

.bloginfo.details p {
    color: #000;
}



/*** Calculator info ***/
.calc-info {
    padding: 70px 0px;
    overflow: hidden;
}

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

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

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

#calculate_lt {
	background:#959595 !important;
	color: #fff !important;
    transition: all .3s;
    border: 1px solid #959595 !important;
}

#calculate_lt:hover {
	color: #959595 !important;
    background: #fff !important;
}

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

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

/*** FREE HOME EVALUATION ***/
.evaluation-box {
    padding:75px 0px 75px 0px;
    position: relative;
}

.evaluation-box .btn-default {
    min-width: 120px;
}

.evaluation-box .section-title {
    width: 100%;
}

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

.evaluation-box label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-top: 10px;
    margin-bottom: 12px;
}

.evaluation-box .checkbox-group label {
    font-size: 15px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.evaluation-box .btn-default.bordered {
    width: 100%;
    line-height: 1.4;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #959595;
    color: #000;
    border: 1px solid #959595;
    border-radius: 0px;
    padding: 25px 0px;
    font-weight: 400;
    background: none;
}

.evaluation-box .btn-default.bordered span {
    font-size: 14px;
}

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

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

.evaluation-box button.active:hover {
    background: none;
    border-color: #fff;
    color: #fff;
}

.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 {
}

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

.evaluation-box .checkbox-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensure items wrap when needed */
}

.evaluation-box .checkbox-group label {
    flex: 0 1 calc(50% - 10px); /* Each item takes 50% width minus a small margin */
    margin-bottom: 25px; /* Adds spacing between rows */
}

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

.evaluation-box .btn-default.fillbtn {
    min-width: 180px;
}

/*** who-we-are ***/
.who-we-are {
    padding: 50px 0px 90px 0px;
}

.who-we-are .section-title {
    margin-top: 55px;
    margin-bottom: 55px;
}

.team-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-box .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 340px;
    margin-bottom: 2px;
    overflow: hidden;
}

.team-box .img img {
    object-position: top;
    display: block;
    transition: all .8s ease-out;
    width: 100%;
    height: 100%;
    object-fit: cover;    
}

.team-box .img .read {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 340px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .8);
    color: #1B2E47;
    transition: all .4s linear;
    z-index: 3;
    opacity: 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
}

.team-box:hover .img .read {
    opacity: 1;
}

.team-box:hover .img img {
    transform: scale(1.1);
    transition: all 5s ease-out;
}

.team-box .text {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.team-box h3 {
    font-weight: 500;
    line-height: 1.2;
    font-size: 20px;
    margin-bottom: 10px;
}

.team-box h6 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #959595;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.who-we-are.tdetails {
    padding: 80px 0px;
}

.who-we-are.tdetails h6 {
    margin-bottom: 40px;
}

.who-we-are.tdetails p {
    margin-bottom: 20px;
}

.who-we-are.tdetails .contact-info {
    justify-content: center;
}

.who-we-are.tdetails .contact-info.first {
    margin-top: 50px;
}

.cta-lg-img {
    bottom: 45px;
}
/**/

.buysell .section-title h6 {
    font-size: 17px;
}

.buysell .section-title h6.headwithline {
    position: relative;
    margin-bottom: 50px;
}

.buysell .section-title h6.headwithline::after {    
    position: absolute;
    right: auto;
    margin-left: -22.5px;
    bottom: -25px;
    left: 50%;
    content: '';
    background: #e1c086;
    width: 45px;
    height: 2px;
}

.about {
    position: relative;
    overflow: hidden;
}

.about .teamimg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 15px);
    height: 100%;
    object-fit: cover;
}

/** TESTIMONIALS **/
.testimonials {
    padding: 80px 0px;
    background-color: #f6f5ee;
}

.inner-page {
    /* padding-top:200px !important; */
}

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

.testimonials .bg p {
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.testimonials .bg {
    position: relative;
    padding-top: 40px;
    padding-bottom: 130px;
    padding: 40px 10px 126px 10px;
    padding: 40px 15px 126px 15px;
    background: #EFEEEC;
    background: linear-gradient(38deg,rgba(239, 238, 236, 1) 0%, rgba(239, 230, 223, 1) 100%);
    background: linear-gradient(38deg,rgba(239, 238, 236, 1) 0%, rgba(239, 234, 230, 1) 49%, rgba(226, 222, 217, 1) 100%);
    background: linear-gradient(287deg, rgb(193 191 187) 0%, rgb(209 209 209) 49%, rgb(255 248 248) 100%);

    background: linear-gradient(90deg, rgba(239, 238, 236, 1) 0%, rgba(239, 234, 230, 1) 49%, rgb(199 197 192) 100%);
    background: linear-gradient(90deg, rgba(239, 238, 236, 1) 40%, rgba(239, 234, 230, 1) 81%, rgb(199 197 192) 100%);
}

.testimonials .bg .left {
    position: absolute;
    top: 37px;
    left: 5px;
    filter: invert(91%) sepia(2%) saturate(5117%) hue-rotate(342deg) brightness(102%) contrast(83%);
    max-width: 70px;
    transform: rotate(3deg);
}

.testimonials .bg .right {
    position: absolute;
    bottom: 131px;
    right: 5px;
    filter: invert(91%) sepia(2%) saturate(5117%) hue-rotate(342deg) brightness(102%) contrast(83%);
    max-width: 70px;
    transform: rotate(2deg);
    z-index: 2;
}

.testimonials .bg .bgimg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.testimonials .gicon {
    display: inline-block;
    max-width: 30px;
}

.testimonials .stars {
    display: inline-block;
    width: 100%;
    margin: 20px 0px 30px 0px;
}

.testimonials .name {
    font-weight: bold;
    font-size: 13px;
    display: inline-block;
    margin-top: 15px;
    position: relative;
    text-transform: uppercase;
}


.about.buysell-about.inner-page .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about.buysell-about.inner-page .bg {
    background-color: #fff;
    padding: 45px;
}

.about.buysell-about.inner-page .section-title h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.site-nav-wrap .side-social {
}

.side-social {
    position: fixed;
    top: 0px;
    left: -30px;
    left: 40px;
    width: 35px;
    padding: 10px 10px 10px 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 95px;
    padding-bottom: 0px;
}

.side-social a {
    color: #fff;
    font-size: 14px;
    margin: 14px 0;
    display: inline-block;
    background: #959595;
    font-size: 20px;
    line-height:40px;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
}

.side-social a:first-child {
    padding-bottom: 5px;
}

.side-social a:hover {
    color: #fff;
    background: #e1c086;
}

.trigger-btn {
    position: fixed;
    left: 0;
    top: 40%;
    z-index: 10;
    transform: rotate(90deg);
    transform-origin: bottom left;
    background-color: #959595;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px 5px;
}

.trigger-btn:hover {
    background-color: #000;
    color: #fff;
}


/*** New Css ***/
.about.newstyle .section-title {
    background: #fff;
    padding: 50px;
    margin-top: -100px;
}

.about.newstyle .container-fluid {
    max-width: 1440px;
}

.about.newstyle .btn-default {
    margin:0px 5px;
    margin-bottom: 20px;
}

.about.buysell-about.inner-page .bg {
    overflow: hidden;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}
/* 
.section-title h2:after {
    content: '';
    background: #ead8b6;
    background: #e1c086;
    position: absolute;
    bottom: 20px;
    right: -70px;
    width: 45px;
    height: 2px;
} */

.section-title h2:after {
    content: '';
    background: #ead8b6;
    background: #e1c086;
    position: relative;
    width: 45px;
    height: 2px;
    display: inline-block;
    margin-left: 15px;
}

.properties:before {
    background: #e1c086;
    background: #ead8b6;
}

.header.fixed .leftinfo .text-end,
.header.fixed .leftinfo .search-btn {
    display: none;
}

.header.fixed .menu-btn {
    display: block !important;
    margin-bottom: 0px;
    text-align: center;
}

.about.buysell-about.inner-page {
}

.about.buysell-about.inner-page .img {
    position: relative;
}

.about.buysell-about.inner-page .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about.buysell-about.inner-page .bg {
    height: 100%;
}

.buysell-info {
    padding: 70px 0px;
}

.buysell-info .section-title {
    position: relative;
    padding: 20px 40px;
}

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

.buysell-info .section-title h2:after {
    right: -40px;
}

.buysell-info #buysellsecton-1.animated .section-title:before {
    height: 130px;
}

.buysell-info .section-title:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    height: 0;
    width: 1px;
    margin: auto;
    background-color: #1B2E47;
    transition: all .6s linear .6s;
}

.buysell-info .img {
    display: inline-block;
    position: relative;
    width: 100%;
}

.buysell-info .text {
    float: right;
    position: relative;
    width: 80%;
    margin-left: 20%;
    background-color: #fff;
    margin-top: -60px;
    padding: 30px;
}

.buysell-info .text p {
    color: #e1c086;
    font-family: "Noto Serif Display", serif;
    font-size: 18px;
    line-height: 1.5;
}

.buysell #buy2 .cta-sm-img {
    max-width: 250px;
    top: 180px;
    position: relative;
    margin-left: auto;
}

.buysell #buy2.right .cta-sm-img {
    margin-left: 0;
    margin-right: auto;
}

.buysell.buysellpage .section-title {
    padding-left: 50px;
}

.buysell.buysellpage .section-title h2 {
    margin-bottom: 20px;
}

.buysell.buysellpage .cta-lg-img {
    margin-top: 50px;
    position: relative;
    width: 80%;
    margin: 0 auto;
    display: block;
}

.buysell.buysellpage .cta-lg-img>img {
    aspect-ratio: 1 / 1.45;
}

.buysell.buysellpage #buy2 .cta-sm-img {
    max-width: 250px;
    top: -160px;
    position: relative;
    margin-left: auto;
    border: 10px solid #fff;
    right: -55px;
}

.buysell.buysellpage .cta-lg-img>.cta-sm-img>img {
    aspect-ratio: 1 / 1.5;
}

.buysell.buysellpage p:last-child {
    margin-top: 35px;
}

.buysell-info.nextlevel {
    background-color: #f6f5ee;
    padding: 80px 0px 0px 0px;
    position: relative;
    overflow: visible;
}

.buysell-info.nextlevel .section-title h2 {
    margin-bottom: 15px;
}

.buysell-info.nextlevel p {
    margin-bottom: 35px;
}

.buysell-info.nextlevel .img {
    width: 90%;
}

.buysell-info.nextlevel .img>img {
    aspect-ratio: 1 / 1;
}

.buysell-info.nextlevel .text {
    padding: 0px;
    position: relative;
    border: 10px solid #fff;
    width: 400px;
    right: -60px;
    padding-top: 44.25%;
    margin-bottom: -53px;
    margin-top: -24px;
}

.buysell-info.nextlevel .text iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    z-index: 1;
}

.buysell-info.nextlevel .text iframe.active {
    opacity: 1;
}

.buysell-info.nextlevel .text .imgin.active {
    opacity: 0;
    pointer-events: none;
}

.buysell-info.nextlevel .text .imgin.buy {
    background: url(../img/next-4.png) 50% 50% no-repeat;
    background-size: cover;
}

.buysell-info.nextlevel .text .imgin {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/next-2.png) 50% 50% no-repeat;
    background-size: cover;
    z-index: 1;
}

.buysell-info.nextlevel .text #play-btn img {
    width: 100px;
}

.buysell-info.nextlevel.animated:before {
    height: 220px;
}

.buysell-info.nextlevel:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
    margin: auto;
    height: 0;
    width: 1px;
    background-color: #1B2E47;
    transition: all 1s linear 1s;
}

.buysell-info.nextlevel .btn-default {
    margin-right: 20px;
    margin-bottom: 15px;
}

.buysellform {
    padding-top: 170px;
}

.buysellform .section-title h2:after {
    position: absolute;
    right: auto;
    left: 0;
    margin-left: -22.5px;
    bottom: -10px;
    left: 50%;
}

.contactpage-info.inner-page .section-title h2:after {
    position: absolute;
    right: auto;
    left: 0;
    margin-left: 0px;
    bottom: -5px;
}

.page-banner {
    display: none;
}

.mw-calc-search-label, .mw-calc-table > tbody > tr.active > td > input[readonly], .mw-calc-table > tbody > tr.active > td > textarea[readonly] {
    color: #000 !important;
    font-weight: bold !important;
}

.info-tel, .info-tel:hover {
    color: #000;
}

.side-menu .info-tel {
    margin-right: 30px;
}

.info-tel:hover {
    font-weight: bold;
}

.info-tel i {
    font-size: 14px;
    margin: 14px 0;
    display: inline-block;
    background: #959595;
    color: #fff;
    font-size: 24px;
    line-height: 37px;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    padding-left: 2px;
}

.info-tel:hover i {
    color: #fff;
    background: #e1c086;
}

.bulleted li::marker {
    color: #e1c086;
}

.about.newstyle .section-title .newinfo {
    margin-top: 50px;    
}

.linksbar {
    padding: 54px 0;
    z-index: 999999;
}

.linksbar.active {
    position: fixed;
    top: 94px;
    padding: 27px 0px;
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
    background: #fff;
    width: 100%;
}

.linksbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.linksbar ul li {
    display: inline-block;
}

.linksbar ul li a {
    display: inline-block;
    margin: 0 20px;
    padding-bottom: 10px;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    position: relative;
    border-bottom: 2px solid transparent;
}

.linksbar ul li.active a {
    border-bottom: 2px solid #000;
    color: #e1c086;
    font-weight: bold;
}

.agencynewinfo {
    padding: 70px 0px;
}

.agencynewinfo p {
    margin-bottom: 40px;
}

.agencynewinfo h2 {
    margin-bottom: 20px;
}

#nos-valeurs-d-excellence {
    padding: 90px 0px;
    background: url(../img/bg-profusion.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

#nos-valeurs-d-excellence::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#nos-valeurs-d-excellence h2 {
    margin-bottom: 30px;
}

#nos-valeurs-d-excellence p {
    color: #fff;
}

#nos-valeurs-d-excellence ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    margin-top: 40px;
}

#nos-valeurs-d-excellence ul li {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}

#nos-valeurs-d-excellence ul li:after {
    display: inline-block;
    content: '|';
    margin-right: 8px;
    margin-left: 14px;
}

#nos-valeurs-d-excellence ul li:last-child:after {
    display: none;
}

#distinction {
    padding: 90px 0px;
}

#distinction h2 {
    margin-bottom: 30px;
}

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

#distinction h3 {
    font-weight: 600;
    font-size: 36px;
    color: #df9045;
    text-align: center;
    line-height: 1.2em;
    position: relative;
    padding-bottom: 5px;
}

#distinction h3:after {
    content: '';
    background: #d1d1d1;
    width: 112px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -56px;
}

#distinction h4 {
    font-weight: 900;
    font-size: 22px;
    color: #8c8c8c;
    line-height: 1.3em;
    text-align: center;
    max-width: 180px;
    display: block;
    margin: 0 auto;
}

#distinction .text {
    font-size: 14px;
    text-align: center;
    max-width: 167px;
    display: block;
    margin: 15px auto 35px auto;
}

#distinction .sinfo {
    border-top: 1px solid #c4c4c4;
    margin-top: 80px;
    padding-top: 40px;
}

#distinction .sinfo.last {
    border-bottom: 1px solid #c4c4c4;
    padding-bottom: 40px;
}

#distinction h5 {
    font-weight: 700;
    font-size: 22px;
    color: #000;
    position: relative;
    margin-bottom: 20px;
}

#distinction .sinfo p {
    margin-bottom: 30px;
}

#distinction .sinfo .img img {
    max-height: 66px;
}

#distinction .sinfo p.gold {
    color: #df9045;
}

#distinction .sinfo p.gold a {
    color: #df9045;
}

#distinction .sinfo p.gold a:hover {
    opacity: .5;
}

#distinction .sinfo h5.gold {
    color: #df9045;
    font-size: 25px;
}


#distinction .slogos img {
    max-height: 60px;
}

.about.newstyle .section-title .img {
    max-height: 50px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.contact-form label {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-form label.check {
    display: inline-block;
    width: 100%;
    font-weight: 400;
}


/**/
.page-banner-title {
    position: relative;
    background: #ead8b6;
    margin-top: 118px;
    padding: 10px 0px;
}

.page-banner-title h1 {
    margin: 10px 0px;
    font-size: 50px;
}

.page-banner-title p {
    margin: 10px 0px;
}

.page-banner-title p a {
    color: #000;
}

.page-banner-title p span {
    margin: 0px 12px;
}

.page-banner-title p span.active {
    margin: 0px 0px;
    /* color: #ccc; */
    text-decoration: underline;
    font-weight: 600;
}

.about.buysell-about.inner-page.mstrategy {
    padding: 60px 0px 70px 0px !important;
}

.about.mstrategy .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about.mstrategy .section-title p {
    font-size: 30px;
}

.marketing-strategy-info {
    padding: 80px 0px;
}

.marketing-strategy-info h2 {
    margin-bottom: 30px;
}

.marketing-strategy-info hr {
    border-top: 1px solid #e1c086;
    opacity: 1;
    margin: 40px 0px 60px 0px;
}

.marketing-strategy-info h4 {
    color: #e1c086;
    font-weight: bold;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
}

.marketing-strategy-info .mts p {
    font-size: 12px;
}





