@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/*** GENERIC CSS ***/
html,body {
	height: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	font-size: 16px;
	font-family: "Nunito Sans", serif;
	color: #333;
}

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

a:hover {
	text-decoration: none;
	color: #d33 !important;
}

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:#fff;
	font-weight: 500;
	font-family: "Nunito Sans", serif;
}

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

h2 {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.1em;
}

h3 {
}

h4 {
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
}

h5 {
}

h6 {

}

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

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

p {
}

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

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

.visible-xs {
	display: none;
}

.btn-default {
	color: #fff !important;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	padding: 0px 30px;
	margin-bottom: 0;
	border:2px solid #d33 !important;
	background-color: #d33 !important;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #d33)) !important;
	background-image: linear-gradient(to right, transparent 50%, #d33 50%) !important;
	min-width: 90px;
	height: 40px;
	line-height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.btn-default:hover {
	color: #d33 !important;
	background:#fff !important;
}

.btn-transparent {
	background:transparent;
	padding:0px 40px;
	height: 60px;
	line-height: 60px;
	color:#fff;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: 500;
	border: 2px solid #fff;
}

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

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

.btn-black:hover {
	background: none !important;
	color: #000 !important;
}

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

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

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

.form-control {
	width: 100%;
	margin: 0 13px 13px 0;
	padding: 9px 0 9px 13px;
	color: #8593a9;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: none;
	-webkit-appearance: none;
	height: 40px;
	line-height: 1.428571429;
	border-radius: 3px;
	transition: border-colorease-in-out .15s, box-shadowease-in-out .15s;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-size: 14px;
	opacity: 1;
}

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

select.form-control {
	appearance:button !important;
}

input[type="submit"] {
	color: #fff !important;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	padding: 0px 30px;
	margin-bottom: 0;
	border-color: #d33 !important;
	background-color: #d33 !important;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #d33)) !important;
	background-image: linear-gradient(to right, transparent 50%, #d33 50%) !important;    
	width: 100%;
	min-width: 90px;
	height: 40px;
}

.p-relative {
	position: relative;
}

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

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

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

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

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

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

.img-rounded {
	border-radius:15px;
	background: #d33;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: end;
}

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

.hover-animate:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
/*** HEADER ***/
.header {
	padding: 3px 0px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index:9;
	background: #fff;
}

.header .navbar {
	padding: 0px;
}

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

.header .nav-link {    
	font-size: 15px;
	font-weight: 700;
	padding:7px 15px !important;
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
	color: #222;
}

.header .nav-item:hover>.nav-link, .header .nav-item.active>.nav-link {
	background: #d33;
	color: #fff !important;
}

.header .dropdown-menu .active>a,
.header .dropdown-menu li:hover>a {
	background: #d33;
	color: #fff !important;
}

.header .navbar-nav>li:last-child {
}

.header .navbar-nav>li:last-child a {
}

.header .dropdown-menu {
	top: 70px;
	background: #fff;
	padding: 25px 0px;
	width: 285px;
	border-radius: 0px;
	border: 0px;
	left: auto;
	right: 0;
}

.header .dropdown-item {
	padding: 12px 30px;
	font-size: 14px;
	font-weight: 600;
}

.header .dropdown-item:hover {
	background: #d33;
	color: #fff !important;
}

/*** BANNER ***/
.banner {
	background: url(../img/banner-home.webp) 50% 50% no-repeat;
	background-size: cover;
	height: 580px;
	position: relative;
}

.banner:after {
	background: #181818;
	opacity: 0.4;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

.banner h1 {
	color: #fff;
	letter-spacing: -.02em;
	margin-bottom: 15px;
}

.banner p {
	color: #fff;
	font-size: 24px;
	line-height: 1;
}

.banner .banner-form { 
	margin-top: 150px;   
	padding: 15px 20px 5px 20px;
	-webkit-box-shadow: 3px 1px 20px 0 rgb(0 110 225 / 8%);
	box-shadow: 3px 1px 20px 0 rgb(0 110 225 / 8%);
	height: auto;
	display: inline-block;
	border-radius: 2px;
	background: rgba(243,243,243,0.2);
	width: 100%;
	margin-bottom: 30px;
}

/*** PROPERTIES ***/
.properties {
	padding: 0px 0px;
}

.properties * {
	color: #000;
}

.properties h2 {
	text-transform: uppercase;
	margin-bottom: 50px;
}

.properties .prop-box {
	box-shadow: 0 10px 31px 0 rgba(7, 152, 255, .09);
	border-radius: 2px;
	border: 1px solid #f1f8ff;
	background: #fff;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.properties .prop-box:hover {
	box-shadow:1px 3px 20px 9px rgba(7,152,255,.11);
}

.prop-box figure {
	width: 100%;
	margin: 0px;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.prop-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all ease 0.5s;
}

.properties .prop-box:hover figure img {
	transform: scale(1.1);
}

.prop-box .img-details {
	position: absolute;
	top: 0px;
	left:-12px;
	width: 100%;
	height: 100%;
	padding: 15px 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 56%);
}

.prop-box .img-details>div {
	display: flex;
}

.prop-box .type {
	background: #a0a0a0 !important;    
	font-size: 11px;
	color: #fff;
	padding: 0 15px;
	line-height: 20px;
	margin-right: 5px;
}

.prop-box .status {
	background:#d33 !important;    
	font-size: 11px;
	color: #fff;
	padding: 0 15px;
	line-height: 20px;
}

.prop-box .location { 
	margin-left: 25px;
}

.prop-box .location *, .prop-box .location {
	font-size: 13px;
	color: #fff;
}

.prop-box .photos *, .prop-box .photos {
	font-size: 13px;
	color: #fff;
}

.prop-box .prop-details {
	padding: 12px 40px 12px 0px;
	display: flex;
	flex-direction: column;
	justify-content:end;
	height: 220px;
}

.prop-box .prop-details .price {
	font-size: 17px;
	line-height: 30px;
	font-weight: 700;
	color: #d33;
}

.prop-box .prop-details .prop-feature * {
	color: #5c727d;
	font-size: 13px;
}

.prop-box .prop-details .btn-link {    
	font-size: 12px;
	color: #fff;
	float: right;
	padding: 4px 7px;
	margin-top: 4px;
	line-height: 12px;
	background-color: #5b5b5b;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #5b5b5b));
	background-image: linear-gradient(to right, transparent 50%, #5b5b5b 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	border: 1px solid #5b5b5b;
	font-weight: 600;
	border-radius: 2px;
	text-decoration: none;
}

.prop-box .prop-details .btn-link:hover {    
	text-decoration: none;
	background-color: transparent;
	background-position: left bottom;
	color: #f1bf7f;
	border-color: #f1bf7f;
	transition: all .3sease;
}

.prop-box .prop-details h4 {
	font-size: 20px;
	font-weight: 800;
	margin: 0px;
}

.prop-box .prop-details p {
	font-size: 13px;
}

.prop-box .prop-agent img {
	width: 30px;
	height: 30px;
	object-fit: cover;
	border-radius: 30px;
	margin-right: 10px;
}

.prop-box .prop-agent a {    
	font-weight: 800;
	color: #333;
	font-size: 13px;
}


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

.about .img-rounded {
	height: 100%;
}

.about h2 {
	color: #d33;
}

.about h6 {
	color: #000;
	font-weight: 800;
}

.about * {
	color: #000;
}

.contact-details {
	list-style: none;
	margin:0px 0px 15px 0px;
	padding: 0px;
	font-size: 15px;
}

.contact-details li:hover .fa {
	color: #d33;
}

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

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

.socials li {
	color: #777;
	margin-right: 5px;
	font-size: 13px;
	background: #efefef;
	position: relative;
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
}

.socials li:hover .fa {
	color: #d33;
}

.about .details {
	padding: 75px 0px;
}


/*** TESTIMONIALS ***/
.testimonials {
	padding: 75px 0px;
	background: #f2f2f2;
}

.testimonials * {
	color: #000;
}

.testimonials h2 {
	color: #d33;
}

.quote-box {    
	box-shadow:0px 5px 70px 0px rgba(38, 41.99999999999998, 76, 0.1);
	border-radius:10px;
	border: 1px solid #f1f8ff;
	background: #fff;
	position: relative;
	overflow: hidden;
	padding: 30px;
}

.quote-box .stars .fa {
	color: #ffc662;
}

.quote-box .quote-name {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.quote-box .quote-name img {
	width: 50px;
	border-radius: 50px;
	height: 50px;
	object-fit: cover;
	border: 2px solid #d33;
}

/*** CONTACT FORM ***/
.contact-form {
	background:#F4EBE4 url(../img/bg-contact.png) bottom right no-repeat;
	background-size: 50% auto;
	padding: 75px 0px;
	padding-top: 200px;
}

.contact-form * {
	color: #000;
}

/*** BUY SELL CTA ***/
.buysell {
}

.buysell * {
	color: #000;
}

.buysell .img {
	min-height: 80vh;
}

.buysell .text {
	display: flex;
	justify-content: center;
	align-self: center;
	flex-direction: column;
	min-height: 80vh;
	text-align: left;
	padding: 50px;
}

.buysell .section-title {
	width: 85%;
	margin: 0 auto;
	max-width: 960px;
	position: relative;
	text-align: left;
	padding: 40px 0px;
}

.buysell .btn-default {
	margin-top: 20px;
	color: #fff;
}

/*** FOOTER ***/
.footer {
	background: #2c2c2c;
	padding: 90px 0px 60px 0px;
}

.footer h4 {
	color: #878787;
	margin-bottom: 20px;
}

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

.footer .company-info li {
	margin-bottom: 8px;
}

.footer .company-info .fa {
	margin-right: 13px;
}

.footer .company-info a {
	color: #bbb;
	font-weight: 600;
	line-height: 22px;
	font-size: 13px;    
}

/*** COPYRIGHTS ***/
.copyrights {
	background: #fff;
	padding: 20px 0px;
}

.copyrights * {
	color:#bbb;
}

.copyrights p {    
	font-size: 13px;
	font-weight: 600;
}

.footer-links-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.foot-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.foot-links li {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.foot-links li a {
    font-size: 13px;
    font-weight: 600;
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.foot-links li a:hover {
    color: #d33;
}

/*** VIDEO BANNER ***/
.video-banner {
	margin: 0px;
	padding: 0px;
}

.video video {
	height: 100%;
	object-fit: cover;
}

.page-banner {
	height: 50vh;
	margin-top: 90px;
}

.team {
	padding: 75px 0px;
	background-color: #f8f8f8;
}

.team h2 {
	color: #d33;
}

.team-box {
	-webkit-box-shadow: 0px 10px 31px 0px rgb(38 42 76 / 0.1);
	box-shadow: 0px 10px 31px 0px rgb(38 42 76 / 0.1);
	position: relative;
	overflow: hidden;
	background-color: #fff;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	cursor: pointer;
	padding: 30px;
	display:block;
	border-radius:10px;
}

.team-box figure {
	aspect-ratio: 1 / 0.65;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.team-box figure img {
	object-fit: cover;
	height: 100%;
	margin: 0px auto;
	transition: all 0.5s ease;
}

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

.team-box h4 {
	color: #000;
	font-weight: bold;
	margin: 0px;
	font-size: 20px;
}

.team-box:hover h4 {
	color:#d33;
}

.team-box p {
	font-size: 14px;
}

.team-contact {
	display: flex;
	gap: 0px;
	margin-top: 15px;
	justify-content: space-between;
}

.team-contact a {
	color: #777;
	margin-right: 5px;
	font-size: 13px;
	background: #efefef;
	position: relative;
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
}



/*** buysellform ***/
.buysellform {
	padding: 75px 0px;
	background: #f2f2f2;
}

.buysellform h6 {
	color: #000;
	font-weight: 800;
}

.buysellform h2 {
	color: #d33;
	margin-bottom: 55px;
}

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

.buysellform h4 {
	color: #000;
	font-size: 15px;
	text-transform: uppercase;
}

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

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

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

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

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

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

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

/*** info-small ***/
.info-small {
	padding: 70px 0px;
}

.info-small .btn-default {
	padding: 0px 25px;
}

.info-small h6 {
	color: #000;
	font-weight: 800;
}

.info-small h2 {
	color: #d33;
	margin-bottom: 25px;
}

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

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

.evaluation-box .section-title {
	display: block;
	margin: 0px auto;
}

.evaluation-box h2 {
	color: #d33;
	margin-bottom: 40px;
}

.evaluation-box .form-control {
	height: 50px;
}

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

.evaluation-box label {
	font-size: 16px;
	font-weight: 600;
	color: #000;
	margin-bottom: 15px;
}

.evaluation-box .btn-default.bordered {
	width: 100%;
	line-height: 1.8;
	font-size: 13px;
	font-weight: bold;
	border: 2px solid #d33 !important;
	background: transparent !important;
	color: #d33 !important;
	border-radius: 0px;
	padding: 17px 0px;
	font-weight: 400;
	height: auto;
	text-transform: uppercase;
}

.evaluation-box .btn-default.bordered span {

}

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

.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; /* Ensure items wrap when needed */
}

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

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



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

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

ul.sub-menu {
	position: absolute;
	top: 100%;
	background: #fff;
	width: 285px;
	border-radius: 0px;
	border: 0px;
	left: auto;
	right: 0;
	display: none;
	list-style: none;
	margin: 0;
	padding: 25px 0px;
}

.navbar-nav li.menu-item-has-children:hover>ul.sub-menu {
	display: block;
}

.navbar-nav li.menu-item-has-children ul.sub-menu li a {
	display: inline-block;
	width: 100%;
	padding: 0px 30px !important;
	font-size: 14px;
	line-height: 45px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.navbar-nav li.menu-item-has-children ul.sub-menu li:hover>a,
.navbar-nav li.menu-item-has-children ul.sub-menu li:hover>a {
	background: #d33;
	color: #fff !important;
}

.navbar-nav .nav-item.current_page_item>.nav-link,
.navbar-nav .nav-item.current-menu-parent>.nav-link {
	background: #d33 !important;
	color: #fff !important;
}

.navbar-nav .nav-item ul.sub-menu li.current_page_item>.nav-link {
	background: #d33 !important;
	color: #fff !important;
}

.copyrights p a img {
	filter: invert(1) brightness(1);
}

.checkbox-group label {
	font-size: 16px;
	color: #000 !important;
	text-transform: uppercase;
}

.checkbox-group span.wpcf7-list-item {
	color: #000 !important;
}

.checkbox-group span.wpcf7-list-item input {
	width: 25px;
	height: 25px;
	vertical-align: middle;
	display: inline-block;
	margin-bottom: 0px;
	margin-right: 10px;
}

.checkbox-group span.wpcf7-list-item {
	display: inline-block;
	width: 48%;
	text-align: left;
	margin: 0px;
	margin-bottom: 20px;
}

.checkbox-group input {
	background: none !important;
	border: none!important;
	border-bottom: 1px solid #2b2b2b!important;
}

.checkbox-group #StepTwo input {
	margin-bottom: 0px;
}

.checkbox-group input:focus {
	box-shadow: none !important;
	outline: none !important;
}

.checkbox-group label {
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	text-transform: inherit;
}

.checkbox-group span.wpcf7-list-item {
	color: #fff;
}

.evaluation-box .checkbox-group label {
	margin-bottom: 0;
}

.cf7mls-btns .cf7mls_next.action-button, .cf7mls-btns .cf7mls_back.action-button {
	margin: 25px 0px 26px;
	color: #fff !important;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	padding: 0px 30px !important;
	margin-bottom: 0;
	border: 2px solid #d33 !important;
	background-color: #d33 !important;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #d33)) !important;
	background-image: linear-gradient(to right, transparent 50%, #d33 50%) !important;
	min-width: 90px;
	height: 40px;
	line-height: 35px;
	display: inline-block;
	transition: all .3s;
}

.cf7mls-btns .cf7mls_back.action-button {
}

.cf7mls-btns .cf7mls_next.action-button:hover {
	color: #d33!important;
	background: #fff!important;
}

.cf7mls-btns .cf7mls_back.action-button:hover {
	color: #d33!important;
	background: #fff!important;
}

.evaluation-box .navigate-btns {
	margin-top: 30px;
	display: block;
	float: right;
}

.evaluation-box fieldset:last-child button {
	margin-top: 30px !important;
}

.evaluation-box .navigate-btns {
	margin-top: 0px;
	display: block;
	float: right;
}

input.wpcf7-form-control.wpcf7-not-valid{
	border: 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;
}
.team.team-single {
    padding-top: 0;
    margin-top: -330px;
}

.team.team-single .bg {
    position: relative;
    background: #fff;
    padding: 30px;
}

.team.team-single .team-box {
    border-radius: 0;
    box-shadow: none;
    background: none;
    box-shadow: 0px 10px 31px 0px rgb(38 42 76 / 0.1);
    
    box-shadow: 0 10px 31px 0 rgba(7, 152, 255, .09);
    padding: 30px;
    padding-bottom: 0;
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
}

.team .social-left {
    /*bottom: 40px;*/
    left: 0;
    right: 0;
    background-color: #fff;
    width: 72%;
    padding: 10px;
    z-index: 10;
    position: relative;
    text-align: center;
    /*box-shadow: 0 3px 14px 0 rgba(7, 152, 255, .09);*/
    margin: 0 auto;
    border-radius: 2px;
    font-size: 16px;
}

.team .social-left a {
    color: #777;
    margin-right: 7px;
    margin-left: 7px;
}

.team .social a {
    font-size: 13px;
    line-height: 1.65em;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.team .social a:hover {
    color: #d33 !important;
}

.team .social a i {
    color: #777;
    margin-right: 5px;
    font-size: 13px;
    background: #efefef;
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}

.team-box h2 {
    color: #000;
    font-weight: bold;
    margin: 0px;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.team.team-single .btn-default {
    margin-right: 15px;
    padding: 0px 30px;
    line-height: 50px;
    height: 54px;
}

.team.team-single p {
    
}

.team-single .stop {
    padding-top: 80px;
}

.team-single h3 {
    color: #222;
    font-weight: 800;
    margin: 0px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.3em;
}

.team-single h3.lg {
    font-size: 19px;
    margin-bottom: 24px;
}

.team-single .sbtns a {
    display: inline-block;
    border: 1px solid #d33;
    color: #d33;
    margin-bottom: 15px;
    padding: 5px 17px;
    margin-right: 12px;
    font-size: 12px;
    border-radius: 17px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.65em;
}

.team-single .sbtns a:hover {
    border: 1px solid #d33;
    background: #d33;
    color: #fff !important;
}

.team-single .stop p  {
    color: #333;
    font-size: 14px;
    line-height: 1.65em;
}

.team-single .formcontact textarea {
    height: 180px;
}

.team-single .formcontact input[type="submit"] {
    border: none;
    min-width: 170px;
    height: 54px;
}

.properties.team-details {
    padding-top: 20px;
}

.properties.team-details h2 {
    text-transform: inherit;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.properties.team-details .nav-tabs {
    border: none;
    margin-bottom: 40px;
}

.properties.team-details .nav-tabs .nav-link {
    font-size: 14px;
    padding: 15px 26px 13px;
    min-width: 120px;
    margin-right: 1px;
    color: #333;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: -.005em;
    line-height: 22px;
    border:none;
    border-radius: 2px;
    transition: none;
}

.properties.team-details .nav-tabs .nav-link.active {
    background-color: #d33;
    color: #fff;
}

.properties.team-details .nav-tabs .nav-link:hover {
    color: #d33;
}

.properties.team-details .nav-tabs .nav-link:focus {
    color: #fff;
}

.properties.team-details .prop-box {
    background-color: #fff;
}

.properties.team-details .prop-box .img-details {
    left: 0;
}

.properties.team-details .prop-box .prop-details {
    padding: 14px 20px 0px 20px;
    height: auto;
}

.properties.team-details .prop-box .prop-agent {
    border-top: 1px solid #eef3f6;
    margin-top: 15px !important;
    padding: 9px 0;
}

.properties.team-details .prop-box .prop-details p {
    font-size: 13px;
    color: #333;
    margin-top: 10px;
}

.properties.team-details .sharebtns {
    float: right;
    margin-top: 1px;
}

.properties.team-details .sharebtns a {
    width: 30px;
    height: 30px;
    margin-left: 8px;
    float: left;
    cursor: pointer;
    background-repeat: no-repeat;
    border: 1px solid #eef3f6;
    border-radius: 2px;
    text-align: center;
    padding: 6px 0 !important;
}

.properties.team-details .sharebtns a:hover {
    border: 1px solid #d8e0e5;
    color: #d33 !important;
}

.properties.team-details .sharebtns a:hover i {
    color: #d33 !important;
}

.properties.team-details .sharebtns a i {
    color: #c2cbd9;
}

.agent-reviews {
    padding-bottom: 70px;
}

.agent-reviews .bg {
    position: relative;
    background: #fff;
    padding: 30px;
}

.agent-reviews h3 {
    color: #222;
    font-weight: 800;
    margin: 0px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.3em;
}

/* Add properties section title style */
.agent-properties h3 {
    color: #222;
    font-weight: 800;
    margin: 0px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.3em;
    padding: 30px 30px 0 30px;  /* Add padding on all sides except bottom */
}

.agent-properties .bg {
    position: relative;
    background: #fff;
    padding: 0 0 30px 0;  /* Add padding to the container but not top to avoid double padding */
    box-shadow: 0 10px 31px 0 rgba(7, 152, 255, .09);
    border-radius: 2px;
}

.cf7mls-btns .cf7mls_next.action-button, .cf7mls-btns .cf7mls_back.action-button {
    text-transform: uppercase;
}
 
.evaluation-box input[type="submit"] {
    margin: 30px 0px 26px;
}
.team.team-single {
    padding-top: 0;
    margin-top: -330px;
    padding-bottom: 60px;
}
 
.team.team-single .bg {
    box-shadow: 0 10px 31px 0 rgba(7, 152, 255, .09);
    border-radius: 2px;
}
 
.team.team-single .team-box {
    border-radius: 0;
    box-shadow: none;
}
.header {
    z-index: 99;
}
input.agent-name {
    display: none;
}
@font-face {
    font-family: 'Tahoma';
    src: url('../fonts/Tahoma.eot');
    src: url('../fonts/Tahoma.eot') format('embedded-opentype'),
         url('../fonts/Tahoma.woff2') format('woff2'),
         url('../fonts/Tahoma.woff') format('woff'),
         url('../fonts/Tahoma.ttf') format('truetype'),
         url('../fonts/Tahoma.svg#Tahoma') format('svg');
}
 
.banner h1 {
    font-family: 'Tahoma';
    font-size: 46px;
    font-weight:500;
    line-height: 1.07;
    letter-spacing: -.02em;
}
 