@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*** GENERIC CSS ***/
html,body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

body {
    font-size: 16px;
    color: #636363;
}

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

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

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: "Marcellus", 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;
    font-family: "Montserrat", sans-serif;
}

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;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    line-height: 55px;
    transition: all .3s ease-in;
    color: #fff;
    background: #660C39;
    border-radius: 50px;
    padding: 0px 30px;
    text-align: center;
    white-space: nowrap;
    z-index: 2;
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
}

.btn-default.white {
    color: #660C39;
    background: #fff;
}

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

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

.normal-btn {
    display: inline-block;
    font-size: 14px;
    line-height: 48px;
    padding: 0 25px;
    text-transform: uppercase;
    color: #fff;
    background: #660C39;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
}

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

.normal-btn:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

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

.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 {
    color: #636363;
    font-size: 13px;
    letter-spacing: 3px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}

.section-title h2 {
    color: #660C39;
    font-size: 58px;
    line-height: 1.2;
    margin: 0px;
    margin-bottom: 25px;
    font-weight: bold;
    letter-spacing: 0;
}

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

.section-title p {
    font-size: 18px;
    line-height: 1.8;
}

/*** SIDEMENU ***/
.side-menu {
	background:#fff;
	position:fixed;
	top:0px;
	left:-600px;
    width: 100%;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
	height:100%;
	z-index:9999999;
    padding: 55px 35px;
	overflow:hidden;
	overflow-y:auto;
    left: -100%;
}

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

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

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

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

.side-menu ul.main-menu>li:hover>a,
.side-menu ul.main-menu li.active>a {
	background:none;
    color:#660C39 !important;
}

a.CloseBtn {
    float: right;
    color: #fff;
    background: #660C39;
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 99;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 0px;
}

a.CloseBtn:before,
a.CloseBtn:after {
    content: '';
    display: block;
    width: 15px;
    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:hover>a {
	background:none;
    color: #000;
}

.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: #866d66 !important;
}

.side-menu .menu-item-has-children>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #fff;
    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: #000;
    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.navbar-nav li a:hover {
	background:none;
    color:#866d66;
    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;
    background: #ccc;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
}

.side-menu ul 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 {
    padding: 10px 10px;
    font-size: 12px;
    background: #ebebeb;
    color: #000;
}

.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 {
    background: #866d66 !important;
    color: #fff !important;
}

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

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

.side-menu h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    color: #000;
    margin-top: 25px;
}

.side-menu .contact-links {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: inline-block;
    width: 100%;
}

.side-menu .contact-links li {
    margin-bottom: 5px;
}

.side-menu .contact-links li a {
    color: #000000;
    display: flex;
    align-items: start;
}

.side-menu .contact-links li a svg {
    min-width: 20px;
    margin-right: 5px;
    margin-top: 5px;
}

.side-menu .contact-links li a:hover {
    color: #866d66;
}

.side-menu .social-media {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: inline-block;
    width: 100%;
}

.side-menu .social-media li a {
    color: #000000;
    border: 1px solid #000;
    border-radius: 50%;
    width: 40px;
    text-align: center;
    line-height: 38px;
    display: inline-block;
}

.side-menu .social-media li a:hover {
    background: #866d66;
    color: #fff;
}

.side-menu h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    color: #000;
    margin-top: 0px;
    margin-bottom: 0px;
}

.side-menu .social-links {
    margin-left: 25px;
}

.side-menu ul.main-menu li a {
    font-size: 14px;
    opacity: 0.5;
}

.side-menu ul.main-menu.main-pages li a {
    font-size: 20px;
    opacity: 1;
}

.side-menu ul.main-menu.main-pages li {
    margin-bottom: 20px;
}

.side-menu .contact-info a {
    font-size: 16px;
}

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

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

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

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

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


/*** SIDEMENU SEARCH ***/
.side-menu-search {
    position: fixed;
	background:#fff;
	position:fixed;
	top:0px;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
	height:100%;
	z-index:9999999;
	overflow:hidden;
	overflow-y:auto;
    right: -150%;
    width: 550px;
    padding: 50px 55px 34px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px;
}

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

.side-menu-search .btn-default.closebtn {
    float: right;
    border-radius: 0px;
    line-height: 45px;
}

.side-menu-search h2 {
    font-size: 30px;
    margin-top: 100px;
    margin-bottom: 40px;
}

.side-menu-search .form-control {
    border: 1px solid #ccc;
}

.side-menu-search select.form-control {
    appearance: auto;
}

.side-menu-search .btn-default {
    margin-top: 30px;
}


/*** HEADER ***/
header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    padding: 15px 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border: none;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 80px 80px 80px 80px;
    padding: 15px 30px;
    border: none;
    box-shadow: none;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}
}

.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:5px 0px !important;
    font-size: 16px;
}

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

.navbar-light .navbar-nav .nav-link {
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0px;
    position: relative;
}

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

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

header.fixed .navbar-light .navbar-nav .nav-item>.nav-link {
    color: #484247;
}

.navbar-light .navbar-nav>.nav-item>.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background: #660C39;
    width: 0px;
}

.navbar-light .navbar-nav .nav-item:hover>.nav-link::before,
.navbar-light .navbar-nav .nav-item.active>.nav-link::before {
    width: 0px;
    width: 100%;
}

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

.fixed .navbar-light .navbar-nav .nav-item:hover>.nav-link::before,
.fixed .navbar-light .navbar-nav .nav-item.active>.nav-link::before {
    background: #660C39 !important;
}

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

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

.navbar-expand-lg .navbar-nav>li {
    margin: 0px 15px;
	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;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 4%);
    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: 250px;
    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: 500;
    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: #660C39;
}

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

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

.menu-btn {
    color: #660C39 !important;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .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: #660C39 !important;
    height: 2px;
    margin: 2px 0px;
    transition: all .3s;
    float: right;
}

header .menu-btn div {
    margin-right: 0px;
    margin-left: 0px;
    position: relative;
    top: 0px;
    vertical-align: middle;
    width: 25px;
}

header .menu-btn div span:last-child {
    width: 50%;
    float: right;
}

header .menu-btn:hover div span:first-child {
    width: 50%;
}

header .menu-btn:hover div span:last-child {
    width: 100%;
}

header .navbar-brand img {
    height: 100px;
}

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

header .navbar-brand img.black-logo {
    display: none;
}

header.fixed .navbar-brand img {
    display: none;
}

header.fixed .navbar-brand img.black-logo {
    display: inline-block;
}

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

header.homi.fixed .navbar-brand img {
    opacity: 1;
    pointer-events: all;
}

/*** banner ***/
.banner {
    padding: 30px 0px 0px 0px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

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

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

.banner:after {
    position: absolute;
    content: "";
    background: #000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}

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

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

.banner .btn-default {
    margin: 5px 30px;
    min-width: 100px;
}

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

#myVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;	
    right: 0;
}

/*** INFO ***/
.info {
    padding: 0px 0px 90px 0px;
    position: relative;
    overflow: visible;
    position: relative;
    z-index: 4;
}

.info .bg {
    padding: 80px 60px;
    background-color: #00000005;
    background: linear-gradient(180deg,rgba(103, 0, 56, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(180deg,rgba(103, 0, 56, 1) 50%, rgba(255, 255, 255, 1) 116%);
    backdrop-filter: blur(30px);
    backdrop-filter: blur(95px);
    border-radius: 20px 20px 20px 20px;
    margin-top: -150px;
}

.info .bg p {
    font-size: 28px;
    color: #fff;
}

.info .bg h6 {
    font-size: 20px;
    color: #660C39;
    color: #fff;
    margin-top: 25px;
    font-weight: 600;
}

/*** CTAS ***/
.ctas {
    padding-bottom: 60px;
}

.ctaButton {
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    position: relative;
    transition: 0.4s all ease;
    margin-bottom: 20px;
    background: #660C39;
    height: 200px;
}

.ctaButton:hover {
    transform: scale(1.04);
}

.ctaButton::before {
    content: "";
    position: absolute;
    left: 60px;
    bottom: -55px;
    width: 2px;
    height: 100px;
    background: #000;
    z-index: 99;
    transition: all .3s;
}

.ctaButton .img::before {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, #000);
    background-color: #660C39;
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    transition: 400ms all ease;
    z-index: 1;
}

.ctaButton:hover .img::before {
    opacity: 0.2;
}

.ctaButton .img img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.ctaButton .inner {
    bottom: 10px;
    position: absolute;
    text-align: center;
    width: 100%;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 2;
    padding-left: 40px;
}

.ctaButton .inner .text {    
    transition: 0.4s all ease;
    text-align: left;
}

.ctaButton:hover .inner .text {
    transform: translateY(-50px);
}

.ctaButton h2 {
    margin: 0;
    font-size: 30px;
    color: #fff;
}

.ctaButton .hover-text img {
    margin-bottom: 25px;
    width: 80px;
}

.ctaButton h3 {
    font-size: 17px;
    color: #fff;
}

.ctaButton:hover .hover-text {
    opacity: 1;
}


/*** PROPERTY FORM ***/
.property-form {
    position: relative;
    background: #660C39;
    border-radius: 30px 30px 30px 30px;
}

.property-form .btn-default {
    width: 100%;
    margin-bottom: 20px;
}

.property-form .form-control {
    box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, .15) !important;
    margin-bottom: 20px;
}


/*** PROPETIES ***/
.properties {
    padding: 80px 0;
}

.properties.home-properties {
    background: #660C39;
}

.properties .list {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.properties .list .bg-img {
    position: relative;
    aspect-ratio: 4 / 3;
}

.properties .list .bg-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .properties .list .content {
    display: flex;
    align-items: start;
    padding-right: 35px;
}

.properties .list .num {
    min-width: 150px;
}

.properties .list .num span {
    font-size: 90px;
    letter-spacing: -2px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    stroke: #fff;
    color: #660C39;
    opacity: .5;
} */

.properties .prop-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #660C39;
    padding: 20px;
}

.properties.home-properties .prop-info {
    background: #fff;
}

.properties .prop-info .top-ctn {
    flex-grow: 1;
}

.properties .prop-info h3 {
    color: #fff;
    padding-bottom: 18px;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    font-size: 15px;
}

.properties.home-properties .prop-info h3 {
    color: #660C39;
    border-color: #660C39;
}

.properties .prop-info h3 svg {
    margin-right: 10px;
}

.properties .prop-info h3 a {
    color: #fff;
}

.properties.home-properties .prop-info h3 a {
    color: #660C39;
}

.properties .prop-info p {
    color: #fff;
    font-size: 26px;
    line-height: 1.3;
    font-weight: bold;
}

.properties.home-properties .prop-info p {
    color: #660C39;
}

.properties .flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 0px;
}

.properties .price {
    font-size: 21px;
    color: #fff;
    font-family: "Marcellus", serif;
    font-weight: bold;
}

.properties.home-properties .price {
    color: #660C39;
}

.properties .amenities {
    display: flex;
    align-items: center;
}

.properties .amenities div {
    margin-right: 12px;
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
}

.properties.home-properties .amenities div {
    color: #660C39;
}

.properties .amenities div i {
    vertical-align: middle;
    margin-right: 8px;
}

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


/*** FIND HOUSE ***/
.find-house {
    padding: 70px 0px;
}

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

.find-house .list-box {
    display: inline-block;
    width: 100%;
    transition: all .9s;
}

.find-house .list-box * {
}

.find-house .house-box:hover,
.find-house .house-box.active {
    width: 38.8%;
}

.find-house .house-box:hover .text,
.find-house .house-box.active .text {
    bottom: 0px;
    transform: rotate(0deg);
    bottom: 0px;
}

.find-house .house-box:first-child {
    margin-left: 0px;
}

.find-house .house-box:last-child {
    margin-right: 0px;
}

.find-house .house-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transition: width 0.6s cubic-bezier(0.38, 0.005, 0.215, 1), flex-shrink 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
    transition: all .9s;
    margin: 0px 8px;
    width: calc(11.94% - 16px);
    display: inline-block;
}

.find-house .house-box .img {
    display: inline-block;
    width: 100%;
    height: 100%;
    height: 630px;
    position: relative;
}

.find-house .house-box .img::before {
    position: absolute;
    top: 0px;
    left: 0px;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
}

.find-house .house-box .img img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.find-house .house-box .text {
    position: absolute;
    bottom: 40px;
    left: 0px;
    padding: 30px 30px;
    transform: rotate(-90deg);
    width: 100%;
}

.house-box .text h3 {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
}

/*** PROPERTY SALE ***/
.property-sale {
    padding: 130px 0px;
    position: relative;
    background: url(../img/bg-property-sale.jpg) 50% 50% no-repeat;
    background-size: cover;
    border-radius: 30px;
}

.property-sale p {
    color: #fff;
}

.artbox {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 220px;
    height: 50px;
    background: #fff;
    border-radius: 30px 0px 30px 0px;
    z-index: 1;
}

.artbox::before {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 30px;
    height: 30px;
    clip-path: path("M0 0 Q0,30 30,30 L 0 30 Z");
    bottom: -30px;
    left: 0px;
    transform: rotate(90deg);
    clip-path: path("M0 0 Q0,30 30,30 L 0 30 Z");
}

.artbox::after {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 30px;
    height: 30px;
    clip-path: path("M0 0 Q0,30 30,30 L 0 30 Z");
    top: 0;
    right: -30px;
    transform: rotate(90deg);
}

.artbox.right {
    border-radius: 0px 30px 0px 30px;
    left: auto;
    right: -1px;
}

.artbox.right::before {
    bottom: auto;
    left: -29px;
    transform: rotate(180deg);
    clip-path: path("M0 0 Q0,30 30,30 L 0 30 Z");
    top: 0px;
}

.artbox.right::after {
    clip-path: path("M0 0 Q0,30 30,30 L 0 30 Z");
    top: auto;
    right: 0px;
    transform: rotate(180deg);
    bottom: -30px;
}

.advantage-box {
    background: #fff;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 30px;
}

.property-sale .btn-default {
    margin-top: 15px;
}


/*** EXPERT OFFICE ***/
.expert-office {
    padding: 130px 0px 100px 0px;
    background: #fff;
    position: relative;
}

.expert-office .section-title {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 70px 30px;
    background: #660C39;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    position: relative;
    top: 0px;
    transition: all .3s;
}

.expert-office .section-title:hover {
    top: -5px;
}

.expert-office .section-title h2 {
    font-size: 40px;
}

.expert-office p {
    color: #fff;
    margin-bottom: 30px;
}


/*** TESTIINFO ***/
.testiinfo {
    padding: 140px 0px;
    position: relative;
    background: url(../img/bg-property-sale.jpg) 50% 50% no-repeat;
    background-size: cover;
    border-radius: 30px;
}

.testiinfo p {
    color: #fff;
}

.testiinfo h3 {
    font-weight: bold;
    color: #fff;
    margin-top: 40px;
}

/*** BLOGINFO ***/
.bloginfo {
    padding: 100px 0px 70px 0px;
    position: relative;
}

.blogbox {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.blogbox .date {
    display: inline-block;
    color: #fff;
    background: #660C39;
    font-size: 14px;
    padding: 7px 20px;
    text-align: center;
    border-radius: 25px;
    font-weight: 600;
}

.blogbox .datetext {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 15px;
}

.blogbox .datetext:before {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #ccc;
    order: 1;
}

.blogbox .img {
    display: inline-block;
    width: 100%;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.blogbox .img img {
    display: inline-block;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / .8;
    position: relative;
    left: 0px;
    transition: all .3s;
    -webkit-transform: translate3d(0, 0, 0) scale(1.2);
}

.blogbox:hover .img img {
    left: 20px;
}

.blogbox h3 {
    color: #660C39;
    font-size: 22px;
    font-weight: 600;
    margin: 0px;
    margin-top: 20px;
}





/*** ADVANTAGES ***/
.advantages {
    padding: 130px 0px;
    background: #f5f5f5;
    background: #660C39;
    border-radius: 30px 30px 30px 30px;
    position: relative;
}

.advantage-box .head {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 25px;
    margin-bottom: 35px;
}

.advantage-box .head .icon {
    background: #4b213e;
    background: #fff;
    background: #4b213e;
    box-shadow: 0px 1px 4px 0px rgba(75, 33, 62,.5);

    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
}

.advantage-box .head .icon img {
    max-height: 34px;
}

.advantage-box .head h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: bold;
    color: #660C39;
}

.advantage-box p {
    font-size: 18px;
    line-height: 1.2;
    color: #484247;
}


/*** FOOTER ***/
footer {
    padding: 80px 30px 0px 30px;
    background: #fff;
    border-radius: 40px;
    position: relative;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

footer ul {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 48%;
    vertical-align: top;
}

footer ul li {
    display: inline-block;
    width: 100%;
    margin: 5px 0px;
}

footer ul li a {
    display: inline-block;
    color: #000;
}

footer ul li a:hover {
    color: #660C39;
}

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

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

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

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

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-info .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    font-size: 20px;
    background: #660C39;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
}

.contact-info h6 {
    color: #8a8a8a;
    font-size: 15px;
    font-weight: 600;
}

.contact-info a {
    color: #660C39;
    font-size: 20px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

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

.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    gap: 25px;
}

.social-links a {
    color: #660C39;
    font-size: 24px;
}

.social-links a:hover {
    color: #000;
}

/*** COPYRIGHT ***/
.copyright {
    padding: 25px 0px;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}

.copyright p {
    font-size: 12px;
}

.copyright .disclaimer-ctn p {
    font-size: 14px;
}

.copyright a {
    text-decoration: underline;
}

/*** PAGE BANNER ***/
.page-banner {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.page-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
}

.page-banner.team-banner {
    height: 90vh;
}

.page-banner.team-banner::after {
    content: none;
}

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

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


/*** CONTACTPAGE-INFO ***/
.contactpage-info {
    padding: 90px 0px;
}

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

.contactpage-info .bg {
    background: #660C39;
    overflow: hidden;
    padding: 45px 35px;
}

.contactpage-info .bg h5 {
    margin-bottom: 5px;
    color: #fff;
}

.contactpage-info .bg p {
    font-size: 14px;
    margin-bottom: 25px;
    color: #fff;
}

.contactpage-info .bg .consent-ctn label,
.contactpage-info .bg .consent-ctn a {
    color: #fff;
}

.contactpage-info .form-check {
    color: #fff;
    padding-left: 30px;
}

.contactpage-info .form-check .form-check-input {
    margin-left: -30px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}


/*** MAP ***/
.map iframe {
    float: left;
    filter: grayscale(50%);
}


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

mw-calc-panel-body, mw-calc-section {
	background:#660C39 !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: #fff !important;
    background: #000 !important;
}

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

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

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



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

.evaluation-box .section-title h2 {
    line-height: 1;
}

.evaluation-box .bg-form {
    padding:75px 50px;
    background: rgba(103, 0, 56,.5);
    background: #660C39;
    border-radius: 30px;
}

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

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

.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: #fff;
    border-color: #fff;
    color: #000;
}

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

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

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


.evaluation-box .cf7mls_next.action-button,
.evaluation-box .cf7mls_back.action-button,
.evaluation-box .action-button,
.cf7mls-btns.cf7mls-btns-last-step .cf7mls_back.action-button {
    margin-bottom: 5px;
    opacity: 1 !important;
    outline: 0px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: visible;
    width: max-content;
    color: #fff !important;
    border: none;
    font-family: "Montserrat", sans-serif;
    background: #b88807;
    outline: 0px;
    padding: 0px 35px !important;
    font-weight: bold;
    font-size: 13px;
    line-height: 55px !important;
    border-radius: 100px;
    transition: all .3s ease-in;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: inherit;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}
 
.evaluation-box .cf7mls_next.action-button:hover,
.evaluation-box .cf7mls_back.action-button:hover,
.evaluation-box .action-button:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}
 
.evaluation-box .navigate-btns button[type="submit"] {
    margin-left: auto;
}
 
.evaluation-box .checkbox-group span.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
 
.evaluation-box .checkbox-group .wpcf7-list-item {
    flex: 0 1 calc(50% - 10px);
    margin: 0px;
    color: #000;
    margin-bottom: 25px !important;
    font-size: 16px;
    font-weight: 500;
}
 
.evaluation-box .checkbox-group .wpcf7-list-item label {
    margin: 0;
}
 
.evaluation-box input[type="submit"].btn-default, .evaluation-box button[type="submit"].btn-default {
    margin-left: auto;
}
 
input[type="submit"], button[type="submit"] {
    transition: all .3s;
}
 
.evaluation-box input[type="checkbox"] {
    margin-right: 7px;
}
 
span.wpcf7-list-item {
    margin: 0px;
}
 
 
.evaluation-box .cf7mls_next.action-button,
.evaluation-box .cf7mls_back.action-button,
.evaluation-box .action-button,
.cf7mls-btns.cf7mls-btns-last-step .cf7mls_back.action-button {
    line-height: 54px !important;
    padding: 0px 25px !important;
    text-transform: uppercase;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 0px !important;
    background-color: #000000 !important;
    border-color: #000 !important;
    color: #fff !important;
    font-family: 'arquitecta' !important;
}
 
.evaluation-box .cf7mls_next.action-button:hover,
.evaluation-box .cf7mls_back.action-button:hover,
.evaluation-box .action-button:hover,
.cf7mls-btns.cf7mls-btns-last-step .cf7mls_back.action-button:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

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


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

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

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

.imgstyle img {
    width: 100%;
    aspect-ratio: 1 / .8;
    object-fit: cover;
    object-position: center center;
    transition-duration: 0.3s;
    border-radius: 30px 30px 30px 30px;
}

.about .bottom {
    margin-bottom: 80px;
}

/*** TEAM ***/
.team {
    padding: 90px 0px 60px 0px;
}

.team-box {
    position: relative;
    margin-bottom: 30px;
}

.team-box img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    object-position: center;
}

.team-box .details {
    background:#660C39;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.team-box .details * {
    color: #fff;
}

.team-box .details h5 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.team-box .details p {
    font-size: 14px;
    letter-spacing: 0px;
    margin-bottom: 10px;
}

.team-box .details .social a {
    display: inline-block;
    color: #fff;
    margin: 0px 3px;
}

/*** follow-us ***/
.follow-us {
    padding: 90px 0px;
}

.follow-us .social {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.follow-us .social a {
    display: inline-block;
    color: #000;
    margin: 0px 25px;
    font-size: 30px;
}

.follow-us .social a:hover {
    color: #660C39;
}


/*** INFO INNER ***/
.info.inner .bg {
    margin-top: -70px;
}


/*** PEOPLE TALKING ***/
.about.people-talking {

}

.about.people-talking .img {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}

/*** POLICY INFO ***/
.policy-info {
    padding: 90px 0px;
}

.policy-info h6 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    color: #660C39;
    margin-top: 30px;
}

.policy-info ul,
.policy-info ol {
    padding-left: 20px;
    color: #000;
}

.policy-info ul li::marker,
.policy-info ol li::marker {
    color: #660C39;
}

.policy-info p {
    color: #000;
}

/*** BUYSELL FORM ***/
.buysellform {
    padding: 90px 0px;
}

.buysellform .bg-form {
    padding: 0px 15px;
}

.buysellform h4 {
    color: #660C39;
    font-size: 20px;
    font-weight: 400;
}

.buysellform .form-control {
    border-radius: 2px;
    padding: 10px 20px;
    box-shadow: none;
    resize: none;
    outline: none;
    height: 50px;
    font-size: 16px;
    color: #000;
    background: none;
    border:0px;
    border-bottom: 1px solid #000;
    margin-top: 18px;
}

.select2-selection.select2-selection--multiple {
    border-radius: 2px!important;
    padding: 10px 20px!important;
    box-shadow: none!important;
    resize: none!important;
    outline: none!important;
    height: auto;
    background: none!important;
    border:0px!important;
    border-bottom: 1px solid #000!important;
    margin-top: 18px!important;
}

.select2-search__field {
    font-size: 16px!important;
    color: #000!important;
    text-transform: uppercase!important;
}

.buysellform .form-control>option {
    color: #000;
}

.buysellform .form-control::-webkit-input-placeholder {
    color: #000;
}

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

.buysellform .btn-default {
    min-width: 150px;
    margin-top: 25px;
}

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


/*** INTERNATION INFO ***/
.internation-info {
    padding: 40px 0px 70px 0px;
}

.internation-info ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
    vertical-align: top;
}

.internation-info ul li {
    display: inline-block;
    width: 100%;
    margin: 25px 0px;
}

.internation-info ul li a {
    display: inline-block;
    color: #660C39;
    font-size: 35px;
    line-height: 1.2;
    font-weight: bold;
}

.internation-info ul li a span {
    font-size: 20px;
    font-weight: 600;
}

.internation-info ul li a:hover {
    color: #000;
}


