@import url('https://fonts.googleapis.com/css2?family=Meow+Script&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
	font-size: 16px;
	color: #000;
	font-family: "Open Sans", sans-serif;
}

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

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

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 {
	font-family: "Montserrat Alternates", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
	color:#000;
}

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

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

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

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

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

p {
	color: #525252;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 15px;
	line-height: 2;
}

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

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

.wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-default {
	border-radius: 0px;
	color: #000;
	border: 2px solid #000000;
	outline: 0px;
	padding: 0px 40px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	line-height: 54px;
	display: inline-block;
	letter-spacing: 0px;
	transition: all .4s ease-in-out;
}

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

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

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

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

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

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

.btn-default.whitefill:hover {
	background: #525252;
	border-color: #525252;
	color:#fff;
}

.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 h6 {
	color: #2f2f2f;
	font-style: normal;
	font-size: 16px;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 15px;
}

.section-title.left h2 span {
	margin: 0;
}

.section-title h2 {
	display: inline-block;
	font-family: "Montserrat Alternates", sans-serif;
	font-size: 65px;
	line-height: 1;
	letter-spacing: -1px;
	color: #000;
	margin-bottom: 50px;
}

.section-title h2 span {
	display: block;
	font-family: "Open Sans", sans-serif;
	color: #999999;
	font-size: 25px;
	text-align: right;
	position: relative;
	padding-top: 3px;
	letter-spacing: 0.05em;
	font-weight: 300;
	margin: 0px -15px;
}

.section-title h2 span em {
	font-style: normal;
	display: inline-block;
	background: #fff;
	padding-left: 30px;
	font-style: normal;
	font-weight: 300;
	position: relative;
	z-index: 2;
}

.section-title h2 span::after {
	display: block;
	width: 100%;
	height: 1px;
	background: #999999;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -0.5px;
	content: "";
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	max-width: 1600px;
	padding-left: 100px;
	padding-right: 100px;
}

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

.consent-ctn {
    font-size: 14px;
}

.consent-ctn a {
    font-size: 14px;
    text-decoration: underline;
}

.contactform .consent-ctn,
.contactform .consent-ctn a {
    color: #fff;
}

/*** HEADER ***/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 5px 15px;
	z-index: 1001;
	overflow: visible;
	transition: all .3s;
}

@media only screen and (min-width:992px) {
	.header .navbar-collapse {
		display: flex;
		position: relative;
		align-items: center;
		justify-content: space-between;
	}
}

.header.fixed {
	position: fixed;
	z-index: 1001;
	background: #1E1E20;
	padding: 5px 15px;
}

.header .navbar-brand {
	position: relative;
}

.header .navbar-brand img {
	width: 145px;
}

/* homepage hide broker logo when header is on top */
.header .navbar-brand .broker-logo {
	display: none;
	filter: invert(1);
}

/* homepage show broker logo when header is scrolled */
.header.fixed .navbar-brand .broker-logo {
	display: block;
}

/* homepage hide agency logo when header is scrolled */
.header.fixed .navbar-brand .agency-logo {
	display: none;
}

/* other page show only broker logo */
body:not(.home) .header .navbar-brand .broker-logo {
    display: block;
}

.navbar-area {
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
}

.main-nav {
	position: relative;
	z-index: 2;
	padding-top: 0;
	padding-bottom: 0;
}

.main-nav .navbar {
	transition: all ease .5s;
	z-index: 2;
	position: unset;
	padding: 0
}

.main-nav .navbar ul {
	margin-bottom: 0;
	list-style-type: none;
	padding-left: 0;
	justify-content: center;
	align-items: center;
}

.main-nav .navbar .navbar-nav .nav-item {
	position: relative;
	padding: 0 20px;
	transition: all .3s;
}

.header.fixed .main-nav .navbar .navbar-nav .nav-item  {
	padding: 0px 6px;
}

.main-nav .navbar .navbar-nav>.nav-item:last-child {
	padding-right: 0px;
}

.main-nav .navbar .navbar-nav .nav-item.lbtn .nav-link {
	padding: 8px 30px;
	display: block;
	color: #ffffff;
	text-transform: uppercase;
	border: 2px solid #ffffff;
	text-align: center;
	transition: all 0.6s ease;
	flex-shrink: 0;
	min-width: 117px;
	margin-left: 13px;
}

.main-nav .navbar .navbar-nav .nav-item.lbtn:hover> .nav-link {
	background: #ddc5c4 !important;
	color: #fff !important;
	border-color:#ddc5c4 !important;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link {
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
	padding: 0px 0px;
	text-decoration: none;
	letter-spacing:1px;
	font-weight: 400;
	line-height: 1.4;
	font-family: "Open Sans", sans-serif !important;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::before,
.main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after,
.main-nav .navbar .navbar-nav .nav-item.menu-item-has-children>.nav-link:after {
	display: none;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::before {
	content: "";
	font-family: IcoFont;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	line-height: 1;
	font-size: 16px;    
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
	transition: all .3s;
}

.main-nav .navbar .navbar-nav .nav-item:hover>.nav-link.dropdown-toggle::before {
	transform: rotate(180deg);
	margin-top: -3px;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item .nav-link.active {
	background: none !important;
	color: #fff !important;
	opacity: .6;
}

.main-nav .navbar .navbar-nav .nav-item.active>.nav-link.dropdown-toggle::before {
	transform: rotate(180deg);
	margin-top: -3px;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link i {
	font-size: 18px;
	line-height: 0;
	position: relative;
	top: 4px
}

.main-nav .navbar .navbar-nav .nav-item:first-child .nav-link {
	margin-left: 0
}

.header.fixed .main-nav .navbar .navbar-nav>.nav-item:hover>.nav-link,
.header.fixed .main-nav .navbar .navbar-nav>.nav-item.active>.nav-link {
	color: #fff;
}

.header.fixed .main-nav .navbar .navbar-nav>.nav-item>.nav-link {
	color: #fff !important;
	font-size: 14px;
	padding: 8px 15px;
}

.navbar-expand-lg .navbar-nav>.nav-item {
	position: relative;
}

.navbar-expand-lg .navbar-nav>.nav-item:hover .dropdown-menu,
.navbar-expand-lg .navbar-nav>.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translate(-50%);
	border-radius: 0;
}

.navbar-expand-lg .navbar-nav>.nav-item .dropdown-menu,
.navbar-expand-lg .navbar-nav>.nav-item .sub-menu {
	padding: 11px 0 0;
	list-style: none outside none;
	margin: 0;
	position: absolute;
	left: 50%;
	width: auto;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 30px);
	transition: transform .3s, opacity .3s, visibility, .3s;
	display: block;
	min-width: 200px;
	background: none !important;
	border: none;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li {
	background: none !important;
	text-align: center;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li>a.nav-link {
	display: inline-block;
	width: 100%;
	white-space: nowrap;
	text-transform: inherit;
	letter-spacing: .65px;
	text-decoration: none !important;
	padding: 0px 14px;
	line-height: 32px;
	display: block;
	text-transform: uppercase;
	text-align: center;
	color: #fff !important;
	background: rgba(0, 0, 0, 1) !important;
	opacity: .6;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li:hover>a.nav-link,
.navbar-expand-lg .navbar-nav>.nav-item .sub-menu .active>a.nav-link {
	background: #fff !important;
	color: #000 !important;
	opacity: 1;
}

.header .navbar-nav.rt>.nav-item.tel .nav-link {
	display: flex;
	align-items: center;
	gap: 17px;
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	letter-spacing: 1.8px;
}

.header .navbar-nav.rt>.nav-item.tel:hover .nav-link,
.header .navbar-nav.rt>.nav-item.tel:focus .nav-link {
	background: none !important;
	color: #fff !important;
}

.header .navbar-nav.rt>.nav-item.tel .nav-link i {
	margin-right: 0px;
	margin-top: -7px;
	font-size: 24px;
	vertical-align: middle;
}

.header .navbar-nav.rt>.nav-item:last-child {
	margin-left: 40px;
}

.header .navbar-nav.rt>.nav-item:last-child .nav-link {
	padding-right: 0px !important;
}

.header .navbar-nav.rt>.nav-item.logo-agency {
	margin-left: 10px;
}

.header .navbar-nav.rt>.nav-item.logo-agency img {
	height: 35px;
}

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

.header.fixed .navbar-brand .hide-logo {
	display: block;
}

section {
	overflow: hidden;
}

/*** HERO ***/
.hero {
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.hero::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #1E1E20;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
	width: 100%;
    height: 100%;
	position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 90px;
	z-index: 5;
}

.hero .agency-logo {
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.hero .agency-logo img {
	max-height: 100px;
}

.hero-content h1 {
	font-size: 90px;
	margin-bottom: 20px;
	line-height: 1;
}

.hero-content h1, .hero-content h6 {
	color: #fff;
}

.hero-content h6 {
	color: #fff;
	letter-spacing: 9px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	font-family: "Quicksand", sans-serif;
	text-transform: uppercase;
	margin-bottom: 12px;
}

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

.hero-content .btn-default.btn-active, .hero-content .btn-default:hover {
	background:#fff;
	color:#000;
}

.hero-content .agency-logo-ctn {
	width: 200px;
	position: absolute;
	right: 50px;
	bottom: 50px;
}

.hero-content .agency-logo-ctn img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

.bootstrap-select>.dropdown-toggle:after {
	display: none;
}

.hero .container {
	max-width: 1170px;
	padding-left: 15px;
	padding-right: 15px;
}

.hero .hero-btn-ctn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}

.hero .btn-default {
	min-width: 120px;
	font-size: 16px;
	font-weight: 400;
	text-align: center;  
	line-height: 33px;
	letter-spacing: 0;
	color: #fff;
	border: 2px solid #ffffff;
	border-width: 2px;
	background: transparent;
	padding: 10px 30px;
}

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

.hero .btn-default:first-child {
	margin-left: 0;
}

.hero .btn-default:hover {
	background: #ddc5c4;
	color: #fff;
	border-color:#ddc5c4;
}

.hero .logo {
	max-height: 400px;
	filter: invert(1) brightness(1);
}

.social-fix {
	position: fixed;
	right: 35px;
	top: 50%;
	z-index: 15;
	transform: translate(0, -50%);
}

.social-fix ul {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	list-style: none;
}

.social-fix  ul li {
	margin: 5px 0;
}

.social-fix  ul li.st-divider {
	background-color: rgba(255, 255, 255, 0.2);
	width: 1px;
	height: 54px;
}

.social-fix  ul li a {
	font-size: 20px;
	display: flex;
	width: 36px;
	height: 36px;
	background: #ffffff;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: all 0.6s ease;
	color: #000;
}

.social-fix li a:hover {
	background:#ddc5c4;
	color:#fff;
}

.social-fix  ul li .ai-font-envelope-f {
	font-size: 12px;
}

/*** properties ***/
.properties {
	padding-top: 81px;
	padding-bottom: 81px;
	background:#DDC5C4;
}

.properties.inner-page {
	background:#fff;
	padding: 0;
}

.properties .section-title h2 span em {
	background:#DDC5C4;
	color:#000;
}

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

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

.propertybox .img:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgb(2, 0, 36) 0%, rgba(9, 9, 121, 0) 0%, #000 100%);
	z-index: 3;
	transition: all 0.6s ease;
	opacity: 0;
}

.propertybox .img:after {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
	background-size: 100%;
	z-index: 2;
}

.propertybox:after {
	display: block;
	width: 0;
	background: #000;
	height: 12px;
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	max-width: 238px;
	transition: all 0.6s ease;
}

.propertybox:hover:after {
	width: 100%;
}

.propertybox:hover .img:before {
	opacity: 1;
}

.propertybox:hover .details {
	background:#ddc5c4;
	color:#fff;
	border-color:#ddc5c4;
}

.propertybox .img img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / .7;
}

.propertybox .text {
	position: absolute;
	left: 0;
	bottom: 33px;
	width: 100%;
	padding: 0 33px;
	z-index: 6;
}

.propertybox .text h3 {
	color: #fff;
	font-size: 30px;
	letter-spacing: 0.14em;
	font-family:"Open Sans", sans-serif;
	margin: 0;
}

.propertybox .text p {
	font-size: 16px;
	letter-spacing: 0.14em;
	font-family:"Open Sans", sans-serif;
	color: #fff;
	text-transform: uppercase;
	margin: 5px 0;
}

.propertybox .text ul {
	display: flex;
	margin-top: 4px;
	list-style: none;
	padding: 0;
	color: #fff;
	margin: 0;
}

.propertybox .text ul li {
	font-size: 13px;
	text-transform: uppercase;
	padding: 8px 16px;
	border-left: 1px solid rgba(255, 255, 255, 0.502);
	letter-spacing: 0.14em;
}

.propertybox .text ul li:first-child {
	border-left: 0;
	padding-left: 0;
}

.propertybox span {
	width: 100%;
	color: #fff;
	position: absolute;
	display: block;
	max-width: 133px;
	right: 33px;
	bottom: 0;
	background: transparent;
	border: 2px solid #ffffff;
	font-size: 13px;
	line-height: 40px;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.6s ease;
	line-height: 42px;
	letter-spacing: 0.14em;
}
/* Mobile styles for propertybox span */
@media (max-width: 768px) {
    .propertybox span {
		width: 70px !important;
		color: #fff;
		position: absolute;
		display: block;
		max-width: 133px;
		right: 33px;
		bottom: 0;
		background: transparent;
		border: 2px solid #ffffff;
		font-size: 9px;
		line-height: 40px;
		text-align: center;
		text-transform: uppercase;
		transition: all 0.6s ease;
		line-height: 42px;
		letter-spacing: 0.14em;
    }
} 


.properties .arrowstyle {
	margin-top: 40px;
}

.properties .arrowstyle button {
	background: none !important;
	margin: 0;
	border: none !important;
	margin: 0px 13px;
	margin-top: 10px;
}

.properties .arrowstyle .btn-default {
	vertical-align: top;
}

.properties .arrowstyle i {
	font-size: 34px;
	color: #999999;
}

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

/*** SOLD MAP ***/
.sold-map {
	padding-top:80px;
}

/*** about ***/
.about {    
	padding: 75px 0px;
}

.about p {
	font-size: 14px;
	color: #767676;
	line-height: 1.8;
	letter-spacing: 0.02em;
	margin: 15px 30px 15px 0px;
}

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

.about .section-title {
	padding-top: 50px;
}

.about a:hover {
	color: #ddc5c4;
}

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


/*** featured-communities ***/
.featured-communities .wrapper {
    padding: 0 100px;
}

.featured-communities {
	position: relative;
	padding-top: 81px;
	padding-bottom: 81px;
}

.featured-communities .section-title {
	margin-bottom: 0px;
}

.featured-communities .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #1E1E20;
    opacity: 1;
}

.featured-communities .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #DDC5C4;
}

.comunity-box {
	display: inline-block;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 35px;
}

.comunity-box .img {
	position: relative;
	display: inline-block;
	overflow: hidden;
    aspect-ratio: 4/3;
}

.comunity-box .img:hover span {
	opacity: 1;
	transform: translate(-50%, -50%);
}

.comunity-box .img span {
    width: 100%;
	max-width: 153px;
	height: 45px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0);
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 43px;
	letter-spacing: 0.14em;
	color: #fff;
	border: 2px solid #ffffff;
	z-index: 6;
	transition: all 0.6s ease;
	opacity: 0;
}

.comunity-box .img img {
	position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: all .4s;
}

.comunity-box .img:after {
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	transition: all 0.6s ease;
	z-index: 5;
	opacity: 0;
}

.comunity-box:hover .img:after {
	opacity: .5;
}

.comunity-box:hover .img img {
	transform: scale(1.2);
}

.comunity-box h3 {
	color: #000;
	font-family:"Open Sans", sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
	padding: 25px 0 22px;
	display: inline-block;
	position: relative;
}

.comunity-box h3::after {
	display: block;
	content: "";
	background: #767676;
	height: 1px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	max-width: 28px;
	margin-left: -14px;
}

/*** reviews ***/
.reviews {
	padding:80px 0px;
	background:#ddc5c4;
}

.reviews .testimonial-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.reviews .testimonial-swiper .testimonial-ctn {
    width: 80%;
}

.reviews * {
	color:#000;
}

.reviews .stars {
	text-align: center;
	margin-bottom: 20px;
}

.reviews .stars i {
	font-size: 23px;
}   

.reviews p {
	line-height: 2.1;
	letter-spacing: 0.05em;
	font-size: 18px;
	text-align: center;
	margin: 0;
}   

.reviews h3 {
	font-family: "Open Sans", sans-serif;
	line-height: 1.5;
	letter-spacing: 0.19em;
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
	padding-top: 57px;
	padding-bottom: 15px;
}

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

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

.reviews .section-title h2 em {
	background:#ddc5c4;
}

/*** ctas ***/
.ctas {
	padding: 90px 0px 70px 0px;
}

.ctas .space>div {
	padding: 0px 20px;
}

.ctas a {
	display: inline-block;
	border: 1px solid #000;
	width: 100%;
	padding: 0 40px;
	color: #000;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	height: 130px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: center;
	transition: all 0.6s ease;
	position: relative;
	margin-bottom: 20px;
}

.ctas a:after {
	display: block;
	width: 2px;
	height: 97px;
	position: absolute;
	right: 10%;
	background: #d1d3d4;
	content: "";
	top: 50%;
}

.ctas a:hover {
	background: #000;
	background-size: cover;
	color: #ffffff;
	border-color: #000;
}

.ctas a span {
	font-family: "Montserrat Alternates", sans-serif;
	display: block;
	letter-spacing: 0.05em;
	font-size: 23px;
	padding-top: 0px;
	transition: all 0.6s ease;
}

/*** news ***/
.news .section-title {
	margin: 52px 0px;
}

.news .section-title {
	margin: 52px 0px 0px 0px;
}

.news .container {
	max-width: 1170px;
	position: relative;
	z-index: 5;
}

.news .btn-default {
	margin-top: 40px;
}

.news .blog-col {
	background: #fff;
	padding-left: 32px;
}

.news .bgblog {
	position: relative;
}

.news .bgblog .bgimg {
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../img/blog-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	filter: grayscale(1);
	z-index: 3;
}

.news .bgblog::after {
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4;
	background: #ffffff;
	opacity: 0.8;
}

.newsbox:last-child {
	margin-bottom: 0;
}

.newsbox {
	display: flex;
	align-items: center;
	color: #000;
	margin-bottom: 30px;
}

.newsbox:hover .img img {
	transform: scale(1.1);
}

.newsbox .img:after {
	display: block;
	content: "";
	width: 7px;
	background: #d1d3d4;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4;
	height: 100%;
}

.newsbox .img img {
	transition: all .3s;
	position: relative;
	aspect-ratio: 1 / .6;
	object-fit: cover;
}

.newsbox .img {
	position: relative;
	flex-shrink: 0;
	width: 54.614%;
	overflow: hidden;
}

.newsbox .text {
	width: 47.386%;
	padding-left: 6%;
}

.newsbox h3 {
	font-size: 23px;
	line-height: 1.3;
	color: #000;
	text-transform: inherit;
}

.newsbox p {
	color: #767676;
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.02em;
	margin: 25px 0;
}

.newsbox .text span {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: #000;
}

/*** facebookinfo ***/
.facebookinfo {
	padding: 60px 0px;
}

.facebookinfo .fb {
	max-height: 44px;
	filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(92deg) brightness(102%) contrast(170%);
}

.facebookinfo .rt .btn-default {
	min-width: 183px;
	text-align: center;
	line-height: 48px;
}

.facebookinfo .rt .btn-default i {
	margin-right: 8px;
	font-size: 16px;
}

.facebookinfo .blackfill {
	margin-top: 30px;
}
.facebookbox {
	display: inline-block;
	width: 100%;
	border: 1px solid #c1c1c1;
	padding: 22px;
	color: #767676;
	height: calc(100% - 20px);
	margin-bottom: 20px;
}

.facebookbox .img {
	display: inline-block;
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 25px;
}

.facebookbox .fa {
	background: #000;
	position: absolute;
	top: 0;
	right: 0;
	width: 43px;
	height: 43px;
	z-index: 6;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.facebookbox .img img {
	transition: all .3s;
	height: 190px;
	width: 100%;
	object-fit: cover;
}

.facebookbox:hover .img img {
	transform: scale(1.2);
}

.facebookbox p {
	color: #767676;
	font-size: 14px;
	line-height: 2.1;
	letter-spacing: 0.02em;
	font-weight: 500;
}

.facebookbox .link {
	font-size: 12px;
	color: #2f2f2f;
	letter-spacing: 0.1em;
}

.user {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.user .imgsmall img {
	display: flex;
	align-items: center;
	min-width: 47px;
	height: 47px;
	object-fit: cover;
	border-radius: 3px;
	margin-right: 15px;
}

.user h3 {
	line-height: 1;
	letter-spacing: 0.05em;
	font-size: 17px;
	text-transform: inherit;
	margin-top: 10px;
}

.user h3 span {
	color: #999999;
	font-size: 13.4px;
	letter-spacing: 0.05em;
	display: inline-block;
	margin-top: 17px;
	font-style: normal;
	font-family: "Open Sans", sans-serif;
}

/*** socialinfo ***/
.socialinfo {
	padding: 100px 0px;
}

.sociallist {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
}

.sociallist .userimg {
	display: flex;
	align-items: center;
}

.sociallist .userimg .img .fa {
	width: 66px;
	height: 66px;
	background: #000;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin-right: 20px;
	flex-shrink: 0;
}

.sociallist .userimg h3 {
	font-size: 23px;
	line-height: 1.3;
	letter-spacing: 0.05em;
	color: #2f2f2f;
	text-transform: inherit;
}

.sociallist .userimg p {
	font-size: 13px;
	margin-top: 10px;
	color: #2f2f2f;
	line-height: 1.5;
}

.sociallist .btn-default {
	min-width: 178px;
	text-align: center;
	line-height: 42px;
	text-transform: capitalize;
	padding: 0px 10px;
	font-weight: 400;
	margin-left: 15px;
}

.sociallist .btn-default i {
	margin-right: 6px;
	vertical-align: middle;
	font-size: 22px;
}

.faceimg img {
	aspect-ratio: 1 / 1.25;
	object-fit: cover;
	object-position: center;
}

.faceimg:hover img {
	opacity: 0.9;
}

.faceimg img {
	display: inline-block;
	width: 100%;
	height: 100%;
	transition: all 0.6s ease;
}

/*** contactform ***/
.contactform {
	background: url(../img/bgform.webp) 50% 50% no-repeat;
	background-size: cover;
	position: relative;
	padding: 191px 0px;
}

.contactform:before {
	display: block;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.4;
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	z-index: 2;
}

.contactform .container {
	position: relative;
	z-index: 3;
	max-width: 1170px;
	padding-left: 15px;
	padding-right: 15px;
}

.contactform .section-title h2 {
	margin-bottom: 0px;
}

.contactform .section-title p {
	margin: 0px;
	color: #ffffff;
	font-size: 19px;
	padding-top: 5px;
	text-transform: uppercase;
	font-weight: 300
}

.contactform .form-control {
	width: 100%;
	background: transparent;
	border: none;
	height: 31px;
	color: #ffffff;
	text-transform: uppercase;
	border-radius: 0px;
	padding: 0;
	border: none;
	border-bottom: 1px solid #ffffff;
	outline: none !important;
	box-shadow: none !important;
	margin-bottom: 20px;
}

.contactform .form-control::-webkit-input-placeholder {
	color: #fff;
}

.contactform .form-control:focus {
	color: #fff;
	border: none;
	background: transparent;
	border-bottom: 1px solid #ffffff;
}

.contactform .btn-default {
	font-size: 13px;
	letter-spacing: 0.14em;
	line-height: 44px;
	padding: 0px 30px;
}

.contactform textarea.form-control {
	margin-top: 10px;
	margin-bottom: 30px;
	resize: none;
}


/*** footer ***/
.footer {
	position: relative;
	padding: 80px 0px 0px 0px;
	background:#ddc5c4;
}

.footer .logo img {
	max-height:150px;
	margin-bottom: 30px;
}

.footer h3 {
	color: #000;
	font-size: 19px;
	margin-bottom: 32px;
	font-weight: bold;
	text-transform: uppercase;
	font-family:"Open Sans", sans-serif;
}

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

.footer .links ul li a {
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	color: #2f2f2f;
	margin-bottom: 10px;
}

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

.footer p {
	color: #2f2f2f;
}

.footer p a {
	color: #2f2f2f;
}

.footer a:hover {    
	color: #767676;
}

.footer p a:hover {
	color: #767676;
}

.footer form {
	position: relative;
}

.footer .form-control {
	width: 100%;
	display: inline-block;
	border-radius: 0;
	height: 57px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	color: #828282;
	color: #000;
	outline: none;
	border: 1px solid #2f2f2f;
	background: transparent;
	padding: 0px 60px 0px 15px;
	box-shadow: none !important;
	outline: none !important;
	margin: 0px;
}

.footer .submitbtn {
	position: absolute;
	top: 0;
	right:0;
	width: 56px;
	line-height: 55px;
	border: none;
	color: #fff;
	font-size: 20px;
	background: #000;
}

.footer .social-items {
	margin-top: 40px;
}

.footer .social-items a {
	display: inline-block;
	width: 47px;
	line-height: 47px;
	background: #000;
	border-radius: 50%;
	text-align: center;
	font-size: 21px;
	color: #ffffff;
	margin: 0 6px;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.footer .social-items a:hover {
	opacity: 0.7;
}

.footer .copy p {
	margin-top: 50px;
	padding: 20px 0px;
	border-top: 1px solid #c3c3c3;
}

.footer .copy img {
    width: 150px;
	margin-left: 5px;
}

/*** PAGE BANNER ***/
.page-banner {
	height: 45vh;
}

.page-banner .breadcrumbs {
	margin: 0px;
	padding:15px;
	list-style: none;
}

.page-banner .breadcrumbs li {
	margin:0px 5px 0px 0px;
	padding: 0px;
	display: inline-block;
}

.page-banner .breadcrumbs li, .page-banner .breadcrumbs li a {
	color: #fff;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/*** TESTIMONIALS ***/
.testimonials {
	padding: 30px 15px;
}

h1.page-title {
	font-size: 33px;
	font-weight: 700;
	margin-bottom: 30px;
}

.testimonial-box {
	width: 100%;
    height: 100%;
	display: flex;
	flex-direction: column;
	gap: 15px;
	text-align: center;
	border: 1px solid #000;
	padding: 50px;
}

.testimonial-box .testimonial-content {
    flex-grow: 1;
}

.testimonial-box .ratings i {
	font-size: 25px;
}

.testimonial-box p {
	color: #767676;
	font-size: 17px;
	line-height: 1.6;
	margin: 1.12em 0;
}

.testimonial-box h5 {
	font-size: 25px;
	font-weight: 700;
	margin: .83em 0;
	color: #767676;
	font-family: "Open Sans", sans-serif;
	text-transform: none;
}

.testimonials .testimonials-pagination {
	display: flex;
	justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.testimonials .page-numbers {
	display: inline-block;
    min-width: 55px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.61px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    padding: 15px 25px;
    transition: 0.4s all ease;
}

.testimonials .page-numbers:hover,
.testimonials .page-numbers.current {
	color: #fff;
    background: #ddc5c4;
}

/*** TEAM ***/
.team {
	padding: 30px 15px;
}

.team h2 {
	font-size: 45px;
	line-height: 54px;
	font-family: "Open Sans", sans-serif;
}

.team h5 {
	font-family: "Open Sans", sans-serif;
}

.team h2 b {
	font-weight: 700;
}

.team figure {
	margin-bottom: 0px;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1.42;
}

.team figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: all 0.4s ease;
}

.team .team-member-pic:hover img {    
	transform: scale(1.1);
}

.team .team-intro {
	display: flex;
	flex-grow: 1;
	margin-left: 50px;
	align-items: center;
	flex-flow: row wrap;
	height: 100%;
}

.team .team-intro.last {
	margin-right: 50px;
	margin-left: 0px;
}

.team .team-intro p {
	color: #000;
	font-size: 16px;
	line-height: 1.7;
}

.team .member-info {
	background:#000;    
	display: flex;
	align-items: center;
	justify-content: left;
	flex-flow: row wrap;
	margin: 50px 0 0px;
	padding: 10px 10px;
	position: relative;
	width: 100%;
}

.team .member-info a {
	color: #fff;
	font-size: 15px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0.05em;
	padding: 10px 8px;
}

.team .member-info a:hover {
	opacity: 0.7;
}

/*** ABOUT ***/
.about-page {
	padding: 30px 15px;
	position: relative;
}

.about-page .about-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 55%;
	margin-right: -4%;
}

.about-page .about-img::after {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 15%;
	background-color:#fff;
	height: 90%;
	content: "";
}

.about-page .bg-white {
	background:transparent !important;
	padding-top: 10%;
	position: relative;
	z-index: 2;
}

.about-page p {
	color: #767676;
	font-size: 16px;
	line-height: 27px;
}

.about-info {
	position: relative;
	margin-top: 25px;
}
.about-info > ul {
	display: flex;
	flex-flow: row wrap;
	margin: 0 !important;
	padding: 0 20px;
	align-items: center;
	justify-content: center;
	gap: 10px 34px;
}
.about-info > ul > li {
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #767676;
}
.about-info > ul > li > i {
	font-size: 12px;
	font-style: normal !important;
	margin-right: 12px;
	color: #767676;
}
.about-info > ul > li > a {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.8;
	transition: all 0.35s ease-in-out;
	color: #767676;
}
.about-info > ul > li > a:hover {
	opacity: 0.8;
}
.about-info > ul > li .aios-about-smis {
	position: relative;
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
	gap: 10px;
	padding: 0
}
.about-info > ul > li .aios-about-smis > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: solid 1px #767676;
	font-size: 20px;
	color: #767676;
	transition: all 0.35s ease-in-out;
}
.about-info > ul > li .aios-about-smis > a:hover {
	background-color: #767676;
	color: #ffffff;
}
.about-info > ul > li .aios-about-smis > a i {
	font-style: normal !important;
}

.about-info > ul > li .aios-about-smis > a {
	border: solid 1px #767676;
	color:#767676;
}
.about-info > ul > li .aios-about-smis > a:hover {
	background-color:#767676;
	color: #fff;
}

/*** CONTACT PAGE ***/
.contact-page {
	padding: 60px 0px;
}

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

.contact-page .form-box {
	margin-top: 30px;
}

.form-box .form-control {
	width: 100%;
	height: 51px;
	border: none;
	border-bottom: 1px solid #000;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .02em;
	color: #000;
	margin: 10px 0px;
	padding: 0 10px;
	border-radius: 0px;
	outline: 0;
	box-shadow: none;
}

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

.form-box textarea.form-control {
	height: 100px;
	resize: none;
	margin-top: 30px;
}

.form-box .btn-default {
	background: #fff;
	font-size: 16px;
	letter-spacing: 2px;
	font-weight: 400;
}

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

/*** BLOG ***/
.blog-list {
	padding: 40px 0px;
}

.blog-list .featured-post h2 {
	font-size: 24px;
	line-height: 41px;
	text-transform: none;
	font-weight: bold;
	margin-bottom: 30px;
}

.blog-list .featured-post p {
	font-size: 22px;
	color: #767676;
}

.blog-box .post-img {
	aspect-ratio: 1 / 0.69;
	object-fit: cover;
	object-position: center;
	margin-bottom: 15px;
}

.blog-box h2 {
	font-size: 24px;
	line-height: 41px;
	text-transform: none;
	font-weight: bold;
	margin-bottom: 30px;
}

.blog-box p {
	font-size: 16px;
	line-height: 27px;
}

.blog-box .btn-default {
	margin-bottom: 30px;
}

/*** COMMUNNITIES PAGE ***/
.featured-communities.inner-page {
	padding: 40px 0px;
}


/*** SOCIAL MEDIA ***/
.social-media {
	padding: 30px 15px;
}

.social-media .container {
	max-width: 1290px;
	padding: 0px 12px;
}

.social-media .tps {
	margin-top: 60px;
}

.social-media .bordere-style>div.bright {
	border-right: solid 1px #d4d4d4;
}

.social-media .bordere-style>div.bbottom {
	border-bottom: solid 1px #d4d4d4;
}

.social-media .bordere-style>div {
	padding: 30px;
}

.socialbox h2 {
	font-weight: 700;
	font-size: 37px;
	text-transform: uppercase;
	letter-spacing: -3px;
	color: #333;
	margin: 80px 0px 30px 0px;
	font-family: "Open Sans", sans-serif;
	text-align: center;
}

.socialbox ul {
	margin: 22px 0 0;
	line-height: 1.7;
	list-style: none;
	padding: 0;
}

.socialbox li a {
	display: block;
	position: relative;
	width: 123px;
	height: 123px;
	border: solid 1px #999;
	transition: all 0.3s linear;
	text-align: center;
	margin-bottom: 10px;
	color: #666;
}

.socialbox li a:hover {
	background: #999;
	color: #fff;
}

.socialbox li a span {
	display: block;
	margin: 33px 0 4px;
	font-size: 31px;
}

.socialbox li a span + span {
	font-size: 12px;
	margin: 15px 0 0px;
}

.sociallinks {
	height: 100%;
	display: flex;
	align-items: end;
	justify-content: end;
	text-align: right;
}

.sociallinks a {
	position: relative;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	text-align: right;
	letter-spacing: 0.6em;
	color: #a3a3a3;
	margin-top: 20px;
	transition: color 0.3s linear;
	display: inline-block;
}

.sociallinks a::before {
	content: '';
	display: block;
	width: calc(100% - 12px);
	height: 1px;
	background: #3f3f3f;
	position: absolute;
	bottom: -4px;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s linear;
}

.sociallinks a:hover,
.sociallinks a.active {
	color: #3f3f3f;
}

.sociallinks a:hover::before,
.sociallinks a.active::before {
	opacity: 1;
}

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

.socialboxes>img {
	display: inline-block;
	width: 100%;
	aspect-ratio: 1 / .7;
	object-fit: cover;
	margin-bottom: 35px;
}

.socialboxes .text {
	display: flex;
}

.socialboxes .text p {
	padding-right: 10px;
	font-weight: 300;
	font-size: 13px;
	color: #767676;
}

.socialboxes .text .dates {
	padding-right: 10px;
	font-weight: 300;
	font-size: 13px;
	color: #767676;
	line-height: 2;
	font-family: "Open Sans", sans-serif;
}


/*** propertiesinfo ***/
.propertiesinfo {
	padding: 30px 15px 140px 15px;
}

.propertiesinfo .page-title {
	margin-bottom: 70px;
}

.propertiesinfo .list-links a {
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #767676;
	margin-right: 8px;
}

.propertiesinfo .list-links a:hover,
.propertiesinfo .list-links a.active {
	color: #c1b283;
}

.propertiesinfo .sright .dropdown {
	display: inline-block;
	background: none !important;
	border-radius: 0px;
	text-align: left;
	margin-left: 15px;
}

.propertiesinfo .sright .dropdown-toggle {
	display: inline-block;
	background: none !important;
	border-radius: 0px;
	padding: 0px;
	color: #000;
	border: none;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.34px;
	text-transform: uppercase;
}

.propertiesinfo .sright .dropdown-toggle::after {
	display: inline-block;
	margin-left: 10px;
	position: relative;
	top: -2px;
}

.propertiesinfo .dropdown-menu.formdrop {
	min-width: 325px;
	padding: 20px;
}

.propertiesinfo .dropdown-menu {
	margin-top: 15px !important;
}

.propertiesinfo .formdrop label {
	display: block;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .34px;
	text-transform: uppercase;
	color: #767676;
	margin-bottom: 10px;
}

.propertiesinfo .formdrop .form-control {
	height: 40px;
	border: 1px solid #d9d9d9;
	padding: 0 10px;
	font-size: 13px;
	font-weight: 400;
	border-radius: 0;
	margin-bottom: 10px;
}

.propertiesinfo .formdrop .btn-default {
	width: 100%;
	font-size: 17px;
	margin: 15px 0px;
	line-height: 35px;
}


/**/
.propertiesinfo ul.dropdown-menu {
	padding: 0px;
	min-width: 275px;
	padding: 10px 0;
	margin-top: 10px;
}

.propertiesinfo ul.dropdown-menu li a:hover,
.propertiesinfo ul.dropdown-menu li a.active {
	background: #c1b283;
	color: #fff;
}

.propertiesinfo ul.dropdown-menu li a {
	display: inline-block;
	width: 100%;
	padding: 5px 15px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.34px;
	text-transform: uppercase;
	color: #333;
}

.propertiesinfo .spr {
	padding: 0px 13px;
}

.propertiesinfo .spr>div {
	padding: 1px;
}

.listings-item {
	display: inline-block;
	width: 100%;
	position: relative;
	overflow: hidden;
	color: #fff;
	float: left;
}

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

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

.listings-item:hover .listings-img img {
	transform: scale(1.1);
}

.listings-img .property-status {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
	max-width: 42%;
}

.listings-img .property-status span {
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	padding: 2px 5px;
	letter-spacing: 0.1em;
	margin: 0 1px 5px 0px;
}

.status-green {
	background: #008852;
	color: #fff;
}

.listings-info {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: rgba(0, 0, 0, .5);
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
}

.listings-info .listings-address {
	font-size: 25px;
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}

.listings-info .listings-address span {
	display: block;
	font-size: 20px;
	color: #fff;
	margin-top: 8px;
}

.listings-info .listings-price {
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	margin-top: auto;
	padding-top: 10px;
	position: relative;
	top: 0;
	-webkit-transition: top 0.3s ease;
	transition: top 0.3s ease;
}

.listings-info .listings-plan {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	padding-bottom: 16px;
	position: absolute;
	bottom: -56px;
	-webkit-transition: bottom 0.3s ease;
	transition: bottom 0.3s ease;
}

.listings-info .listings-plan span {
	display: block;
	position: relative;
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	line-height: 1;
	color: #fff;
}

.listings-info .listings-plan span + span {
	margin-left: 30px;
}

.listings-info .listings-plan span em {
	display: block;
	font-style: normal;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.listings-item:hover .listings-price {
	top: -56px;
}

.listings-item:hover .listings-plan {
	bottom: 0;
}

/*** maininfo ***/
.maininfo {
	padding: 20px 5px 90px 5px;
}

.maininfo .links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	font-size: 16px;
	margin-bottom: 40px;
}

.maininfo .links ul li {
	padding: 3px 2px;
	text-align: center;
	width: calc(100% / 6);
}

.maininfo .links ul li a {
	padding: 3px;
	border: 1px solid transparent;
	color: #0a0a0a;
	display: inline-block;
	width: 100%;
	line-height: 1.3;
	padding: 1vw;
	font-size: max(0.6vw, 16px);
	text-transform: uppercase;
	height: 100%;
}

.maininfo .links ul li a i {
	font-size: max(2.813vw, 45px);
	margin-bottom: 3px;
	display: inline-block;
}

.maininfo .links ul li:hover a,
.maininfo .links ul li.active a {
	border-color: #000000;
	color: #000000;
}

.maininfo .links ul li a i {
	margin-bottom: 3px;
}

.maininfo .page-title {
	margin-bottom: 35px;
}

.maininfo h3 {
	font-weight: bolder;
	font-size: 1.17em;
	margin: 20px 0;
	color: #767676;
	font-family: "Open Sans", sans-serif;
	text-transform: inherit;
}

.maininfo p {
	font-size: 16px;
	line-height: 1.7;
	margin: 16px 0;
	color: #767676;
}

.maininfo .linkbtn {
	color: #474747;
	text-transform: uppercase;
	font-size: 16px;
	display: inline-block;
	font-weight: 600;
	padding: 0 30px;
	margin-top: 35px;
	position: relative;
}

.maininfo .linkbtn img {
	margin-left: 10px;
}

.maininfo .img-right {
	float: right;
	padding-left: 5%;
	padding-bottom: 4%;
	display: block;
	width: 50%;
}

.maininfo .sbtns a + a {
	border-left: 1px solid #c8c8c8;
	margin-left: -2px;
}

.maininfo .text ul {
	line-height: 1.7;
	padding-left: 40px;
	color: #767676;
	font-size: 16px;
}

.maininfo .text ol {
	line-height: 1.7;
	padding-left: 40px;
	color: #767676;
	font-size: 16px;
}

.maininfo .sbtns .linkbtn.prev img {
	margin-left: 0px;
	margin-right: 10px;
}

.maininfo .table-responsive {
	display: inline-block;
	width: 100%;
}

.maininfo table {
	width: 100%;
}


.maininfo table tr:nth-child(odd) td {
	background: #e8e8e8;
}

.maininfo table td {
	padding: 8px;
	border-spacing: 2px;
	text-align: center;
	color: #767676;
	font-weight: bold;
	font-family: "Open Sans", sans-serif;
	font-size: 17px;
}

.maininfo table td a {
	color: #767676;
}

.maininfo table td em {
	font-style: normal;
}

.maininfo .lists-col {
	display: flex;
	flex-flow: row wrap;
	padding-left: 18px;
}

.maininfo .lists-col li {
	padding: 0 19px;
	width: calc(100% / 3);
}

.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: #fff;
	-webkit-box-shadow: 0 2px 7px rgba(0, 1, 1, .09);
	-moz-box-shadow: 0 2px 7px rgba(0,1,1,.09);
	box-shadow: 0 2px 7px rgba(0, 1, 1, .09);
}

.topbar .tel {
	color: #4d4d4d;
	color: #767676;
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
}

.menu-btn {
    align-items: center;
    border-radius: 100%;
    cursor: pointer;
    display: inline-block;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    justify-content: end;
    line-height: 4px;
    position: absolute;
    position: relative;
    text-align: right;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.menu-btn .spans {
    position: relative;
    width: 25px;
}

.menu-btn .spans:hover span {
    background: #fff;
}

.menu-btn .spans span {
    background: #fff;
    display: inline-block;
    height: 1px;
    margin: 3.5px 0;
    transition: all 0.3s;
}

.btn-close {
	filter: invert(1);
	opacity: 1;
}

.side-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 910;
	overflow: hidden;
	height: 100vh;
	background: #fff;
}

.header .side-menu,
.header.fixed .side-menu {
	top: 90px;
}

.side-menu .bgblack {
	padding: 0px;
}

.side-menu .img img {
	height: 100vh;
	width: 100%;
	object-fit: cover;
}

.side-menu.mobile-is-open {
	left:0;
}

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

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

.side-menu ul.main-menu {
	margin: 0;
	padding: 0;
	height:100%;
	width:100%;
}

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

.side-menu ul.main-menu>li>a {
	border-bottom: 1px solid #f7f7f7;
}

.side-menu ul.main-menu li a {
	padding: 0px 20px;
	color: #858585;
	font-size: 16.5px;
	font-weight: 400;
	line-height: 37px;
	text-decoration: none;
	display: inline-block;
	width: 100%;
	text-align: center;
}

.side-menu ul.main-menu li:hover>a,
.side-menu ul.main-menu li.active>a {
	background: #3c3c3c;
	color: #fff;
	font-weight: 400;
}

.side-menu .menu-item-has-children:hover>a,
.side-menu .menu-item-has-children.active>a {
	background: #3c3c3c;
	color: #fff;
	font-weight: 400;
}

a.menu-btn.active span:nth-child(2) {
	opacity: 0;
}

a.menu-btn.active span:nth-child(1) {
	transform: rotate(-45deg);
	position: relative;
	top: 14px;
}

a.menu-btn.active span:last-child {
	transform: rotate(45deg);
	width: 100%;
	position: relative;
	top: -4px;
}

a.menu-btn.active span:last-child {
	width: 100%;
}

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

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

.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: #f5f5f5;
	padding: 0px 0px !important;
	display: none !important;
	top: 0 !important;
	box-shadow: none;
	border: none;
	background: #f5f5f5;
}

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

.side-menu ul.main-menu li ul.sub-menu li:hover a,
.side-menu ul.main-menu li ul.sub-menu li.current_page_item>a,
.side-menu ul.main-menu li ul.sub-menu li.active>a  {
	background: #3c3c3c !important;
	color: #fff !important;
}

.side-menu ul.main-menu li ul.sub-menu li a {
	color: #c5c5c5;
	font-size: 14px;
	padding: 0px 10px;
	line-height: 34px;
	font-weight: 400;
	text-decoration: none;
	border-bottom: 1px solid #f7f7f7;
	background-color: #232323;
}

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

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

.backdrop-sidemenu {
	position: fixed;
	top: 90px;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0009;
	pointer-events: none;
	opacity: 0;
	transition: all .3s;
	z-index: 900;
}

.backdrop-sidemenu.active {
	opacity: 1;
	pointer-events: all;
}


/*** PAGE BANNER ***/
.page-banner {
	height: 45vh;
}

.page-banner .breadcrumbs {
	margin: 0px;
	padding:15px;
	list-style: none;
}

.page-banner .breadcrumbs li {
	margin:0px 5px 0px 0px;
	padding: 0px;
	display: inline-block;
}

.page-banner .breadcrumbs li, .page-banner .breadcrumbs li a {
	color: #fff;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 14px;
}

.page-title {
	padding: 35px 15px 15px 15px;
}

.page-title h1 {
	margin: 0;
	font-family: "Open Sans", sans-serif;   
	font-size: 35px;
	font-weight: 600;
	letter-spacing: 0px;
	text-transform: uppercase;
}


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

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

.evaluation-box .section-title h2 {
	/* font-family: "Open Sans", sans-serif; */
	text-transform: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

mw-calc-label {
	color: #000 !important;
	font-weight:500 !important;
}

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

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

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

mw-calc-table {
	background: #FAF8F1;
}

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

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

/*** Buyer and seller page ***/
.buysellform {
	overflow: hidden;
	position: relative;
	background:#ddc5c4;
	padding: 70px 50px;
}

.buysellform .form-control {
	border: 1px solid #ccc !important;
	background: #fff !important;
	border: 0px;
	border-radius: 0px;
	color: #000 !important;
	margin-bottom: 15px;
	height: 60px;
	padding: 10px 16px;
	font-size: 16px;
	line-height: 1.6;
}

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

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

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

.buysellform .select2-container--default .select2-selection--multiple {
	height: auto;
	font-size: 16px!important;
	line-height: 1.6!important;   
	color: #000 !important;
    border: 1px solid #ccc !important;
	border-radius: 0px!important;
	background: #fff !important;
	margin-bottom: 15px!important;
	padding: 10px 16px!important;
}

.buysellform .select2-search__field::placeholder {
    line-height: 1.6!important;  
    color: #000;
    opacity: 1;
}

.buysellform h4 {
	font-size: 18px;
	margin-bottom: 15px;
	letter-spacing: 2px;
	text-align: left;
	font-weight: 400;
	text-transform: uppercase;
}

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

.contact-page .btn-default:hover {
	background:#ddc5c4;
	color:#fff;
	border-color:#ddc5c4 !important;
}

select.form-control {
	appearance: auto;
}

.info-small {
	overflow: hidden;
	padding: 75px 0px;
}



/*** SECTORS ***/
.lavalinfo {
	position: relative;
	padding: 70px 0px 0px 0px;
	overflow: hidden;
}

.lavalcontent {
	margin-top:70px;
	padding: 70px 0px 70px 0px;
	overflow: hidden;
	background:#f1f1f1;
}

.lavalcontent .nav-tabs {
	border: none;
	justify-content: center;
	margin-bottom: 50px;
}

.lavalcontent .nav-tabs .nav-link {
	border: none;
}

.lavalcontent .nav-tabs .nav-link {
	margin: 0px 10px;
}

.lavalcontent .nav-tabs .nav-link{
	display: inline-block;
	background: #000;
	color: #fff;
	line-height: 55px;
	padding: 0px 25px;
	font-size: 16px;
	border-radius: 4px;
	min-width: 180px;
	text-align: center;
	text-transform: capitalize;
}

.lavalcontent .nav-tabs .nav-link.active  {
	color: #fff;
	background-color: #676767;
	/* background: -webkit-linear-gradient(145deg, rgba(210, 35, 42, 1) 36%, rgba(7, 76, 142, 1) 61%); */
}

.lavalcontent .table {
	background: #fff;
	padding: 40px;
}

.lavalcontent .table tr:first-child td {
	border: none;
}

.lavalcontent .table tr td {
	font-size: 15px;
	color:#000;
	padding: 20px 20px;
}

.lavalcontent h3 {
	color: #676767;
	position: relative;
	font-size: 35px;
	line-height: 1.1;
	margin-bottom: 17px;
	letter-spacing: 1px;
}

.lavalcontent h4 {
	color: #676767;
}

.lavalcontent .tp {
	margin-bottom: 40px;
}

.lavalcontent .bgs {
	background: #fff;
	padding: 40px 40px;
	border-radius: 15px;
}

.lavalcontent .bgs h3 {
	font-size: 22px;
}

.lavalcontent .bgs h6 {
	font-family: "din-2014",sans-serif;
}


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

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li {
	padding: 0;
}

.header .main-nav .navbar .navbar-nav>.nav-item.current_page_item>.nav-link,
.header .main-nav .navbar .navbar-nav>.nav-item.current-menu-parent>.nav-link {
	opacity: .6;
	font-weight: 600;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li.current-menu-item>a.nav-link {
	background: #fff !important;
	color: #000 !important;
	opacity: 1;
}

.header .main-nav .navbar .navbar-nav>.nav-item.lbtn.current_page_item>.nav-link {
	opacity: 1 !important;
}

.footer .social-items a {
	height: 47px;
	line-height: 50px;
}

.side-menu ul.main-menu>li.current-menu-item>a,
.side-menu ul.main-menu>li.current-menu-parent>a {
	background: #3c3c3c !important;
	color: #fff !important;
	font-weight: 400 !important;
}

.evaluation-box .cf7mls_next.action-button, .evaluation-box .cf7mls_back.action-button, .evaluation-box .action-button {
	flex-wrap: wrap;
	margin-bottom: 5px;
	background: none;
	opacity: 1 !important;
	border-radius: 0px;
	color: #000;
	border: 2px solid #000000;
	outline: 0px;
	padding: 0px 40px !important;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	line-height: 54px;
	display: inline-block;
	letter-spacing: 0px;
	transition: all .4s ease-in-out;
}

.evaluation-box .cf7mls_next.action-button:hover, .evaluation-box .cf7mls_back.action-button:hover, .evaluation-box .action-button:hover {
	background: #000 !important;
	border-color: #000 !important;
	color: #fff !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;
	margin-bottom: 25px;
	font-size: 16px;
}

.evaluation-box .checkbox-group .wpcf7-list-item label {
	margin: 0;
	font-weight: 500;
}

.evaluation-box input[type="submit"].btn-default,
.evaluation-box button[type="submit"].btn-default {
	margin-left: auto;
}

/**/
.header .main-nav .navbar .navbar-nav>.nav-item.lbtn>.nav-link:hover {
	color: #000 !important;
}

section.about.contact-page .form-box .btn-default {
	color: #000;
	border-color: #000;
	margin-top: 30px;
	display: block;
}

section.about.contact-page .form-box .btn-default:hover {
	color: #fff;
	border-color: #000;
}


.main-nav .navbar .navbar-nav .nav-item.menu-item-has-children>.nav-link:after {
	display: inline-block;
	margin-left: 8px;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
}


.side-menu ul.main-menu>li.menu-item-has-children>a:after {
	display: inline-block;
	margin-left: 8px;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
}


input.wpcf7-form-control.wpcf7-not-valid{
	border-bottom: 2px solid #f00 !important;
}
span.wpcf7-not-valid-tip{
	display:none;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
	display:inline-block !important; 
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok{
	display:inline-block !important;
}
.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output{
	display:none !important;
}
.wpcf7 form .wpcf7-response-output{
	display:inline-block !important;
}

.contactform .wpcf7-response-output {
    color: #fff !important;
}
.row justify-content-center ul {
    margin: 10px;
}
.pagination .btn-default {
    background: #000;
    color: #fff;
    border-color: #000;
	margin: 0 5px;
}
.pagination .btn-default:hover {
    background: #ddc5c4;
    color: #fff;
    border-color: #ddc5c4;
}
.d-inline-block.mb-md-0.mb-2 .btn-default {
	background: #000;
	color: #fff;
	border-color: #000;
	margin: 0 5px;
}
.d-inline-block.mb-md-0.mb-2 .btn-default:hover {
	background: #ddc5c4;
	color: #fff;
	border-color: #ddc5c4;
}

/* MARKETING ALERT START */
/* progress bar */
#multi-step-form .fw-progress-bar-container,
#multi-step-form .fw-step-part-title {
    display: none!important;
}

@media (min-width: 769px) {
    #multi-step-form .fw-wizard-step-header-container {
        margin-bottom: 0;
    }
}

/* left border */
#multi-step-form .fw-step-part {
    background-color: transparent!important;
    border-left: none!important;
}

@media (min-width: 769px) {
    #multi-step-form .fw-step-part {
        padding: 0!important;
        border-left: none!important;
        background-color: transparent!important;
    }
}

/* steps title + form label */
#multi-step-form span.msf-h3 {
    font-size: 24px!important;
    font-weight: 700!important;
    text-transform: uppercase!important;
    line-height: 2!important;
    color: #000!important;
    margin: 0!important;
}

/* title text + checkbox labels */
#multi-step-form .fw-wizard-step-header p,
#multi-step-form [data-type=fw-radio] label, #multi-step-form [data-type=fw-checkbox] label,
.fw-paragraph-container {
    font-size: 18px!important;
    color: #000;
}

/* checkboxes display */
@media screen and (min-width: 577px) { 
    #multi-step-form .fw-choice.fw-input-container {
        display: inline-block;
        width: 49%;
        margin-bottom: 0;
    }
}

/* checkboxes check */
#multi-step-form [data-type=fw-checkbox] input[type=checkbox]:checked+label:before, 
#multi-step-form ul.fw-progress-bar li.fw-active .fw-txt-ellipsis {
    color: #000 !important;
}

/* step 3 inputs labels */
.bg-form #multi-step-form [data-type=fw-text] .fw-input-container label {
    margin-top: 0!important;
    margin-bottom: 0!important;
}

/* button container */
#multi-step-form .fw-wizard-buttons {
    display: flex;
    justify-content: end;
    margin-top: 30px;
}

@media (max-width: 768px) {
    #multi-step-form .fw-wizard-buttons {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* buttons styling */
#multi-step-form .fw-wizard-buttons button, 
#multi-step-form .fw-wizard-buttons .fw-btn {
    height: 45px!important;
    line-height: 39px;
    padding: 0 22px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600!important;
    border: solid 2px #000!important;
    color: #000!important;
    transition: all 250ms ease-in-out;
    background-color: transparent!important;
    opacity: 1!important;
}

/* button hover style */
#multi-step-form .fw-wizard-buttons button:hover, 
#multi-step-form .fw-wizard-buttons .fw-btn:hover {
    color: #fff!important;
    background: #000!important;
}

#multi-step-form .fw-button-previous, 
#multi-step-form .fw-button-next, 
#multi-step-form .fw-button-fileupload {
    background: transparent !important;
}

/* submit button styling */
#multi-step-form .fw-btn-submit {
    font-weight: 600!important;
    color: #000!important;
    border: solid 2px #000!important;
    background-color: transparent!important;
    margin-top: 25px;
    transition: all 250ms ease-in-out;
}

/* submit button hover style */
#multi-step-form .fw-btn-submit:hover {
    color: #fff!important;
    background: #000!important;
}

/* summary field */
#multi-step-form div.fw-step-summary-field {
    border-left: 8px solid #000!important;
}
/* END REAL ESTATE ALERT */

/* new pagination buttons style start */
.nolist {
    padding: 0;
}

.my-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    padding-left: 0;
}

.my-pagination-btn {
    display: inline-block;
    min-width: 55px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.61px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    padding: 15px 25px;
    transition: 0.4s all ease;
}

.my-pagination-btn:hover {
    color: #fff;
    background: #ddc5c4;
}

.current-page-pagination {
    color: #fff;
    background: #ddc5c4;
}
/* new pagination buttons style end */

.single-properties .header {
	background: #1E1E20;
}

.grecaptcha-badge {
	display: none !important;
}