/* TypoGraphy */
* {
	box-sizing: border-box;
}
:focus {
	outline: none !important;
	box-shadow: none;
	border-color: inherit;
}
textarea.form-control {
	resize: none;
	overflow: hidden;
}
html, body {
	width: 100%;
}
body {
	padding: 0;
	margin: 0;
	font-family: "Open Sans", serif;
	font-weight: normal;
	background: #fff;
	overflow-x: hidden;
	font-size: 16px;
	color: #212121;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
img {
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
a, a:hover {
	text-decoration: none;
}
p {
	font-size: 16px;
	color: #212121;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px 0 20px;
	padding: 0px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #212121;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover,h6 a:hover {
	color: #b80000;
}
h1 {
	font-weight: bold;
	font-size: 98px;
	line-height: 84px;
	color: #585B5D;
}
h2 {
	font-weight: bold;
	font-size: 36px;
	line-height: 37px;
	color: #585B5D;
}
h3 {
	font-weight: bold;
	font-size: 28px;
	line-height: 43px;
	color: #585B5D;
}
h4 {
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
	color: #585B5D;
}
h5 {
	font-weight: bold;
	font-size: 22px;
	line-height: 30px;
	color: #585B5D;
}
h6 {
	font-weight: bold;
	font-size: 20px;
	line-height: normal;
	color: #585B5D;
}
p {
	font-size: 16px;
	line-height: 1.8;
	color: #212121;
}
p:last-child {
	margin-bottom: 0;
}
ul {
	padding: 0px 0 20px 18px;
	margin: 0px;
}
ol {
	padding-bottom: 20px;
	padding-left: 15px;
}
ol li {
	position: relative;
	padding-left: 5px;
}
li {
	font-weight: normal;
	font-size: 16px;
	line-height: 1.8;
	color: #212121;
}
li a {
	color: #212121;
}
li a:hover {
	color: #b80000;
}
a {
	transition: 0.7s;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	color: #03b1e7;
}
a:hover {
	transition: 0.7s;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	color: #1A1A1A;
}
b, strong {
	font-weight: bold;
}
button {
	padding: 0;
	background-color: transparent;
	border: none;
}
html.mobile-menu {
	overflow: hidden;
}
.btn {
	background: rgb(184, 0, 0);
	color: #fff;
	font-size: 18px;
	min-width: 156px;
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	border-radius: 8px;
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
}
.btn:hover {
	background: #4c4c4c;
	color: #fff;
}
.pd10 {
	padding: 100px 0px;
}
/** ================== // HEADER CSS START // ================== **/
.header {
	background: #fff;
	padding: 10px 0px 18px;
}
.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
    width: 350px;
}
.navigation .moblelogo {
	display: none;
}
.main-nav .menu-bar {
	display: none;
}
.nav-manu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
    padding: 10px 0px 0px;
}
.nav-manu ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	list-style-type: none;
}
.nav-manu ul li {
    padding: 0 0;
    position: relative;
    margin-right: 31px;
    font-family: 'Proxima Nova Semibold';
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1em;
    color: #b80000;
}
.nav-manu ul li a {
	color: #b80000;
	position: relative;
}
.nav-manu ul li:hover a,
.nav-manu ul li a:hover {
    color: rgba(26, 26, 26, .4);
}
.nav-manu ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 2px;
	bottom: -5px;
	background: #fff;
	transition: 0.7s;
}
.nav-manu ul li a:hover::after {
	width: 100%;
}
.nav-manu ul li.current-menu-item a::after {
	width: 100%;
}
/** SUB MENU **/
.navigation ul li ul.sub-menu {
    position: absolute;
    display: block;
    top: 10px;
    width: auto;
    transform: scale(1, 0);
    transition: all 0.5s;
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    min-width: 208px;
    padding: 0;
    left: 0;
    z-index: 1999;
    padding: 20px 0px 0px;
    width: auto;
}
.navigation ul li ul.sub-menu.shop-submenu {
	left: auto;
	right: 0;
}
.navigation ul li:hover>ul.sub-menu {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.navigation ul li ul.sub-menu.shop-submenu::before {
	left: auto;
	right: 40px;
}
.navigation ul li ul.sub-menu li:first-child {
	border-radius: 10px 10px 0px 0px;
}
.navigation ul li ul.sub-menu li:last-child {
	border-radius: 0px 0px 10px 10px;
}
.navigation ul li ul.sub-menu li {
    padding: 0;
    width: 100%;
    margin: 0px 0 0;
    transition: .4s;
    background-color: #fff;
    border-bottom: none;
    position: relative;
    box-shadow: 0 20px 30px rgb(88 91 93 / 15%);
    border-radius: 0;
    border-bottom: 1px solid #dfdfdf;
}
.navigation ul li ul.sub-menu li::after {
	display: none;
}
.navigation ul li ul.sub-menu li::before {
	right: 15px;
	transform: rotate(-40deg) translateY(-20%);
	top: 43%;
}
.navigation ul li ul.sub-menu li a {
    display: block;
    padding: 8px 15px;
    line-height: 20px;
    color: #b80000;
}
.navigation ul li ul.sub-menu li a::after {
	display: none;
}
.navigation ul li ul.sub-menu li:last-child a {
	border-bottom: none;
}
.navigation ul li ul.sub-menu li.current-menu-item {
	background-color: #e04f26;
}
.navigation ul li ul.sub-menu li.current-menu-item a {
	color: #fff;
}
.navigation ul li ul.sub-menu li:hover a {
	color: rgba(26, 26, 26, .4);
}
.navigation ul li ul.sub-menu ul.sub-menu {
	left: 100%;
	top: 0;
	width: max-content;
	margin-left: 3px;
}
.navigation ul li ul.sub-menu li:last-child {
	border-bottom: none;
}
.navigation ul li ul.sub-menu ul.sub-menu li {
	border-left: 0;
}
.navigation .menu-item-has-children > a::before {
    content: "";
    position: absolute;
    top: 55%;
    right: -12px;
    width: 7px;
    height: 7px;
    transform: translateY(-50%);
    transition: 0.4s;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #b80000;
    margin-top: 0px;
}
.navigation ul li.menu-item-has-children:hover a::before {
	border-top-color: rgba(26, 26, 26, .4);
	transition: 0.4s;
}
.navigation ul li.current-menu-item ul.sub-menu li a::before {
	display: none;
}
.navigation ul li ul.sub-menu li::before {
	display: none;
}
.navigation ul li ul.sub-menu li:hover::before {
	border-color: #fff;
}
.navigation ul li ul.sub-menu li a:hover {
	color: rgba(26, 26, 26, .4);
}
.navigation ul li ul.sub-menu ul.sub-menu li a {
	color: #08161D;
}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
	color: #fff;
}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li:hover a {
	color: #fff;
}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li ul.sub-menu a {
	color: #08161D;
}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li ul.sub-menu li:hover a {
	color: #fff;
}
.navigation ul li.menu-item-has-children ul.sub-menu li:hover a::before {
	border-top-color: #fff;
}
.navigation ul li.menu-item-has-children ul.sub-menu li:hover ul.sub-menu li a::before {
	border-top-color: #e04f26;
}
.navigation ul li.menu-item-has-children ul.sub-menu li:hover ul.sub-menu li:hover a::before {
	border-top-color: #fff;
}
.navigation .menu-item-has-children ul.sub-menu li a::before {
	right: 10px;
	transform: rotate(-95deg);
	top: 46%;
	border-top-color: #fff;
}
.navigation ul li.current-menu-item a {
    color: rgba(26,26,26,.4);
}
.navigation ul li.current-menu-item a::before {
	border-top-color: rgba(26,26,26,.4);
}
.home-nav.active a {
    font-family: 'Proxima Nova Semibold';
    font-weight: 600;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 1.5em !important;
    display: block;
    background-color: transparent;
    border: 2px solid #b80000;
    color: #b80000;
    border-radius: 100px;
    line-height: 1;
}
.home-nav.active a:hover {
	background-color: #b80000;
    color: #efefef;
}

/** ================== // HEADER CSS END // ================== **/

/** ================== // BANNER SECTION CSS START // ================== **/
.banner-section {
	height: 550px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	background-color: #10131B;
	text-align: center;
	overflow: hidden;
}
.banner-section div {
	height: 100%;
}
.home-banner-bg {
	height: 100%;
	width: 100%;
	background-color: #101010;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
}
.home-banner-bg::after {
	content: "";
	background: rgba(0,0,0,.3);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.slider-item {
	height: 100%;
	width: 100%;
}
.slider-content-absolute {
    padding: 0;
    position: absolute;
	top: 0;
	bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: auto !important;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider-content-absolute  .container {
    height: auto;
}
.slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: normal;
}
.heading-slider {
    margin: 0 0 0px;
}
.banner-content {
	max-width: 780px;
	margin: 0 auto;
	height: auto !important;
}
.banner-content h1 {
    position: relative;
	font-family: 'Adobe Garamond Pro Bold';
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
	color: #fff;
	margin: 0 auto 0px;
}
.banner-content p {
    color: #fff;
    font-weight: 500;
    margin-top: 15px;
}
.videofullwidth {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	background: #000;
}
.videofullwidth video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: flex;
	opacity: 0.5;
}
.home-slider-item.slick-slider {
	width: 100%;
}
.home-slider-item .slick-list {
	width: 100%;
}
.home-slider-item .slider-item {
	position: relative;
	background: #101010;
}
.home-slider-item .slick-track {
	width: 100%;
}
.home-slider-item .slick-prev {
	background: url(../images/slider-arrow-white.png);
	left: -100%;
	transition: 1s;
}
.home-slider-item .slick-next {
	background: url(../images/slider-arrow-white.png);
	right: -100%;
	transition: 1s;
}
.home-banner-section:hover .home-slider-item .slick-prev {
	left: 30px;
}
.home-banner-section:hover .home-slider-item .slick-next {
	right: 30px;
}
.overlay-none::after {
	display: none !important;
}
.home-slider-item ul.slick-dots {
    bottom: 40px;
}
.home-slider-item .slick-dots li button {
    height: 20px;
    width: 20px;
    border: 2px solid #fff;
}
.home-slider-item .slick-dots li.slick-active button {
    border: 2px solid #fff;
}
/** ================== // BANNER SECTION CSS END // ================== **/

/** ================== // BANNER SECTION SEARCH CSS START // ================== **/
.banner-content .es-search--main {
    background: transparent;
    padding: 0 !important;
    margin-top: 30px;
}
body .banner-content .es-search .es-field__address,
.es-search__address .es-field.es-field__address {
    padding: 0px !important;
}
.banner-content input.js-es-address {
    padding: 0px 15px !important;
}
.banner-content input.js-es-address, .es-search__address .js-es-address {
    padding: 0px 15px 0px 40px!important;
    color: #646464 !important;
    font-size: 16px !important;
    height: 52px !important;
    border-radius: 0 !important;
}
body .es-search .es-field__address::before {
    color: #aaa;
    float: left;
    font-size: 16px;
    position: absolute;
    left: 16px;
    top: 13px;
    content: "\f13f";
    font-family: es-icon;
}
.banner-content .es-btn,
.es-search__address .es-btn {
    height: 52px !important;
    background: #b80000 !important;
    border-color: #b80000 !important;
}
.es-autocomplete.js-es-autocomplete {
    height: auto !important;
    border-radius: 0;
}
.es-autocomplete.js-es-autocomplete ul {
    max-height: 160px;
    overflow-y: auto;
}
.es-autocomplete .es-address-list .es-address-list__item {
    text-align: left !important;
    padding: 0 !important;
}
.es-autocomplete .es-address-list .es-address-list__item a.js-autocomplete-item {
    font-size: 14px;
    border-bottom: 1px solid #ccc !important;
    padding: 6px 15px;
}
.es-search__address .es-field.es-field__address::before {
    left: 10px;
}
.es-search__address input.js-es-address {
    border-radius: 8px 0 0 8px !important;
    padding-left: 28px !important;
    font-size: 14px !important;
}
.es-search--main .es-search-nav>li>a, .es-search--simple .es-search-nav>li>a, .widget .es-search--main .es-search-nav>li>a, .widget .es-search--simple .es-search-nav>li>a {
    font-size: 15px !important;
}
.es-search--main .es-search-nav.es-search-nav--dropdowns>li, .es-search--simple .es-search-nav.es-search-nav--dropdowns>li, .widget .es-search--main .es-search-nav.es-search-nav--dropdowns>li, .widget .es-search--simple .es-search-nav.es-search-nav--dropdowns>li {
    padding: 9px 15px !important;
	border: 2px solid #dfdfdf !important;
}
.es-search--main .es-search-nav .es-search-nav__content, .es-search--simple .es-search-nav .es-search-nav__content, .widget .es-search--main .es-search-nav .es-search-nav__content, .widget .es-search--simple .es-search-nav .es-search-nav__content {
	padding: 10px 15px !important;
    border: 1px solid #dce0e0;
	border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1) !important;
    margin-top: 13px !important;
}
.es-search--main .es-search-nav .es-search-nav__content:before, .es-search--simple .es-search-nav .es-search-nav__content:before, .widget .es-search--main .es-search-nav .es-search-nav__content:before, .widget .es-search--simple .es-search-nav .es-search-nav__content:before {
    top: -19px !important;
}
body .es-field .es-field__label {
    font-size: 14px !important;
}
body .es-field .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 14px !important;
}
body .es-field .select2-container .select2-selection .select2-selection__arrow b {
    font-size: 16px !important;
}
span.es-icon.es-icon_chevron-bottom.js-es-search-nav__open {
    font-size: 16px !important;
    position: relative;
    top: 1px;
}
body .es-field.es-field--checkboxes .es-field--checkbox:not(:last-child) {
    padding-bottom: 0px !important;
}
body .es-field.es-field--checkboxes .es-field__show-more {
    font-size: 15px !important;
}
body .es-field input[type=email]:not(.es-ignore-style),
body .es-field input[type=number]:not(.es-ignore-style), body .es-field input[type=password]:not(.es-ignore-style),
body .es-field input[type=text]:not(.es-ignore-style), body .es-field input[type=url]:not(.es-ignore-style),
body .es-field select:not(.select2-hidden-accessible):not(.es-ignore-style), body .es-field textarea:not(.es-ignore-style) {
	font-size: 14px !important;
    color: #000000 !important;
}
.es-search-nav-wrap {
    width: calc(100% - 290px);
}
.es-search-nav-wrap ul.es-search-nav.es-search-nav--dropdowns.js-es-search-nav {
    width: 100%;
    display: flex !important;
    flex-wrap: wrap;
	justify-content: flex-end;
    column-gap: 6px;
}
.es-search-nav-wrap ul.es-search-nav.es-search-nav--dropdowns.js-es-search-nav > li {
    width: 19.5%;
    flex: unset !important;
    margin: 4px 0;
}
.es-radio--bordered span.es-icon.es-icon_check-mark {
    font-size: 20px !important;
    top: 2px !important;
}
.js-es-search--advanced form {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 19px;
}
.js-es-search--advanced .es-search__address {
    width: 30.25%;
    padding: 0 !important;
    margin-top: 23px;
}
.js-es-search--advanced .es-field-row.es-field-row__range.js-search-field-container {
    width: 33.33%;
	padding: 0 !important;
}
.js-es-search--advanced .js-es-field.es-field.es-field__es_category.es-field--select,
.js-es-search--advanced .js-es-field.es-field.es-field__es_type.es-field--select {
    width: 16.66%;
    padding: 0 !important;
}
.js-es-search--advanced .js-es-field.es-field.es-field__city.es-field--select.js-es-field__city {
    width: 20%;
    padding: 0;
}
.js-es-search--advanced .es-field.es-field__from_bedrooms.es-field--radio-bordered,
.js-es-search--advanced .es-field.es-field__from_bathrooms.es-field--radio-bordered {
    padding: 0 !important;
    width: 23%;
}
.js-es-search--advanced .es-search__buttons {
    justify-content: flex-end;
    width: 30%;
    align-items: center;
    margin-top: 5px;
    column-gap: 10px;
}
.js-es-search--advanced .es-search__buttons button.es-btn {
    width: auto !important;
    padding: 0;
    margin: 0;
}
/** ================== // BANNER SECTION SEARCH CSS END // ================== **/

/** ================== // MANNA REAL ESTATE RED SECTION CSS START // ================== **/
.realestate-red-section{
	margin: 0;
	padding: 20px 0;
	background: #b80000;
}
.realestate-html-content{
	margin: 0 auto;
	padding: 0;
	max-width: 800px;
}
.realestate-html-content p{
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
}

/** ================== // MANNA REAL ESTATE RED SECTION CSS END // ================== **/

/** ================== // MARKET TRENDS IN SEATTLE SECTION CSS START // ================== **/
.market-trends-section{
	margin: 0;
}

.market-trends-content {
    padding: 0 32px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}
.market-trends-heading{
	text-align: center;
}
.market-trends-heading h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #212121;
    font-size: 34px;
    margin-bottom: 50px;
    text-align: center;
    line-height: 28.8px;
}

.market-trends-infographics {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	row-gap:23px;
	column-gap: 23px;
}
.market-trends-under-warp {
    display: flex;
    flex-wrap: wrap;
}
.market-trends-under-left {
    display: inline-flex;
	align-items: center;
	justify-content: center;
    height: 138px;
    position: relative;
    width: 116px;
    background: #b40001;
}

.market-trends-under-right {
    background-color: #fff;
    border-bottom: 1px solid #cacaca;
    border-right: 1px solid #cacaca;
    border-top: 1px solid #cacaca;
	display: inline-flex;
	align-items: center;
	justify-content: center;
    height: 138px;
    position: relative;
    vertical-align: top;
    width: 110px;
}
.market-trends-text-info{
	text-align: center;
	padding: 0 10px;
}
.market-trends-text-info span {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: rgba(26,26,26,.7);
}
.market-trends-text-info p {
	font-size: 12px;
	line-height: 12px;
    color: rgba(26,26,26,.7);
}

/** ================== // MARKET TRENDS IN SEATTLE SECTION CSS END // ================== **/

/** ================== // INSPIRATION SECTION CSS START // ================== **/
.inspiration-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
	position: relative;
}
.inspiration-section::before {
    content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(196,196,196,.5);
}
.inspiration-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.inspiration-col4 {
    width: 33.33%;
    width: 30%;
    display: inline-block;
    background-color: #fff;
    vertical-align: middle;
    border: 1px solid #cacaca;
    text-align: center;
    cursor: pointer;
    transform: translateZ(0);
    z-index: 0;
    -ms-transition: .25s ease-in-out;
    -ms-transition-property: -ms-transform, box-shadow, -webkit-box-shadow, -moz-box-shadow;
    transition-property: transform, box-shadow, -webkit-box-shadow, -moz-box-shadow;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, .75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .75);
    padding: 50px 20px;
}
.inspiration-col4:hover {
    transform: translatez(80px) translatey(calc(-1 *  35px));
    transition: calc(.01s* 35)ease-in-out;
    -webkit-box-shadow: 0 20px 39px 0 rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 20px 39px 0 rgba(0, 0, 0, .75);
    box-shadow: 0 20px 39px 0 rgba(0, 0, 0, .75);
    z-index: 2;
}
.ins-icon-card {
    width: 135px;
    height: 135px;
    margin: 0 auto;
}
.ins-icon-card img {
    width: auto;
    max-height: 115px;
}
.ins-info-card {
    margin-top: 20px;
}
.ins-info-card h3 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    color: rgba(26, 26, 26, .7);
    margin-bottom: 20px;
}
.ins-info-card p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    padding: 0px 20px;
    line-height: 28px;
}
.insp-btn {
    margin-top: 30px;
}
/** ================== // INSPIRATION SECTION CSS END // ================== **/

/** ================== // TEAM SECTION CSS START // ================== **/
.heading {
    text-align: center;
    margin-bottom: 30px;
}
.heading h2 {
    font-size: 42px;
    font-weight: 800;
    font-family: 'Adobe Garamond Pro Bold';
    color: rgba(26, 26, 26, .9);
    margin: 0;
    line-height: 1.2;
}
.heading p {
    margin-top: 5px;
}
.our-team-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 40px;
}
.our-team-col4 {
    width: 300px;
}
.our-team-inner {
    border: 1px solid #eee;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
    background: #fff;
}
.team-content-card {
    padding: 20px;
}
.team-content-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1c1c1c;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 30px;
    margin-bottom: 6px;
}
.team-content-card p {
    font-size: 17px;
    color: #1c1c1c;
}
.team-btn .btn {
    padding: 5px 28px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: normal;
}
/** ================== // TEAM SECTION CSS END // ================== **/

/** ================== // HOME CONTACT SECTION CSS START // ================== **/
.hm-contact-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.hm-contact-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 77%);
}
.hm-contact-section .container {
	position: relative;
	z-index: 1;
}
.hm-contact-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 0;
    padding-top: 30px;
}
.contact-hm-col-6 {
    padding-left: 30px;
    padding-right: 30px;
    width: 50%;
}
.contact-hm-map-card {
    height: 408px;
    width: 100%;
}
.contact-hm-map-card iframe {
    width: 100%;
    height: 100%;
}
.contact-hm-info-card {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.contact-hm-info-item {
    display: flex;
    background: #fff;
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 37%) 0px 0px 5px;
}
.contact-hm-icon {
    width: 40px;
    border-right: 1px solid #8f8f8f;
    padding: 0px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-hm-content {
    width: calc(100% - 40px);
}
.contact-hm-content p {
    font-size: 16px;
    line-height: 33px;
    color: #1a1a1a;
}
.contact-hm-content p a {
    color: #1a1a1a;
	display: block;
	padding: 15px 10px;
}
.contact-hm-content p a:hover {
    color: rgb(184, 0, 0);
}
.contact-hm-form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.form-group label, .form-group .form-item label.lb {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
}
.form-group label em {
    color: #ff0606;
    font-size: 12px;
}
.form-group .form-item label {
    font-size: 12px;
}
.form-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form-item {
    width: 100%;
}
.form-item.half-left, .form-item.half-right {
    width: 48%;
}
.form-control {
    background-color: #fafafa;
    border: 1px solid #a9a9a9;
    box-sizing: border-box;
    height: 46px;
    padding: 10px;
    position: relative;
    width: 100%;
    color: #1a1a1a;
	box-shadow: none !important;
}
textarea.form-control {
	min-height: 100px;
}
.checkbox-form-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.checkbox-form-group input[type="checkbox"] {
    position: relative;
    border: 2px solid #aaaaaa;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    line-height: 0;
    margin-right: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 25px;
    width: 25px;
    -webkit-appearance: none;
    opacity: 1;
}
.checkbox-form-group input[type="checkbox"]::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 49%;
    width: 4px;
    height: 10px;
    border: solid #b80000;
    border-width: 0 2px 2px 0;
    margin: -1px 0px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
}
.checkbox-form-group input[type="checkbox"]:checked::before {
    opacity: 1;
}
.checkbox-form-group input[type="checkbox"]:checked {
	border-color: #b80000;
}
.checkbox-form-group label {
    width: calc(100% - 25px - 10px);
    background: #fff;
    border-radius: 5px;
    padding: .4em .4em .6em;
    position: relative;
    font-size: .8em !important;
    line-height: 1.26em;
    margin: 0;
	cursor: pointer;
}
.form-group.submit {
    text-align: center;
    position: relative;
}
.form-group.submit .wpcf7-spinner {
    position: absolute;
    left: 94px;
    right: 0;
    margin: 0 auto;
}
.form-group.submit input.btn {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    min-height: 52px;
    border-radius: 0;
}
.wpcf7-not-valid-tip {
    font-size: 13px !important;
    margin-top: 5px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0px 0px 20px;
    padding: 0;
    border: 0px solid #00a0d2;
    text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: #b80000;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}
/** ================== // HOME CONTACT SECTION CSS END // ================== **/

/** ================== // HOME PROPERTY SECTION CSS START // ================== **/
.inspiration-section.properties-section {
    margin-bottom: 100px;
}
.properties-section .container {
    position: relative;
    z-index: 1;
}
.properties-section .inspiration-wrap {
    display: block;
    background: rgba(255,255,255,.8);
    padding: 50px;
}
.es-listings-filter .es-total,
.es-listings-filter .es-field__sort label .es-field__label {
    color: #000000;
}
.properties-section .es-listing {
    position: relative;
}
.es-listing .es-listing__image .slick-slide a.es-listings__image__link {
    position: relative;
}
.es-listing .es-listing__image .slick-slide a.es-listings__image__link::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .75) 100%);
    z-index: 1;
}
.es-listing__content {
    position: relative;
}
.es-badges.es-listing--hide-on-list {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    color: #fff;
    padding: 5px 20px 15px;
}
.es-listing .es-listing__content .es-price {
	line-height: 1 !important;
    font-size: 18px !important;
    margin-right: 3px !important;
}
.es-listing .es-listing__content .es-badge {
    font-size: 13px;
    overflow: unset;
    background: transparent;
    color: #fff;
    padding: 0;
}
.es-listing .es-listing__image .es-badges {
    text-align: left;
}
.es-listing__image button.slick-prev.slick-arrow::before,
.es-listing__image button.slick-next.slick-arrow::before {
	font-family: Font Awesome\6 pro;
	font-weight: 400;
	color: #000 !important;
	font-size: 18px;
	display: block !important;
	margin: 6px 0px 0px;
}
.es-listing__image button.slick-prev.slick-arrow::before {
    content: "\f053";
}
.es-listing__image button.slick-next.slick-arrow::before {
    content: "\f054";
}
.es-listing .es-listing__image .es-listing__image__slider .es-slick-dots {
	display: none !important;
}
.es-listing__content {
    padding: 20px 0 !important;
}
.es-listing__content__left {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.es-listing__content {
    padding: 20px 0 !important;
}
.es-listing__content__left ul.es-listing__meta {
    order: 3;
    border: 1px solid #e6e6e6;
    margin: 10px 0px !important;
    padding: 0px 20px !important;
    display: flex;
    justify-content: flex-start;
    column-gap: 15px;
}
.es-listing__content__left ul.es-listing__meta li {
	margin: 0 !important;
	border-right: 1px solid #ccc;
	padding: 5px 10px 5px 0 !important;
}
.es-listing__content__left ul.es-listing__meta li svg path {
    fill: #000 !important;
}
.es-listing .es-listing__title {
    padding: 0px 20px !important;
}
.es-address.es-listing--hide-on-list {
    padding: 0px 20px;
}
.es-listing__footer ul.es-listing__terms {
    padding: 0px 20px;
}
.es-listing__footer ul.es-listing__terms li a {
    font-size: 14px;
    color: rgba(26,26,26,.7);
    font-weight: normal;
}
.es-listing__footer ul.es-listing__terms li a:hover {
    color: #b40001;
}
/** ================== // HOME PROPERTY SECTION CSS END // ================== **/

/** ================== // SITE FOOTER CSS START // ================== **/
.site-footer {
    background: #1f1f1f;
    padding: 70px 0px 40px;
    margin-top: auto;
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col3 {
    width: 25%;
    padding: 0px 15px;
}
.col3.footer-col2 {
    width: 18%;
}
.footer-logo {
    width: 230px;
    margin-bottom: 20px;
}
.footer-menu {

}
.footer-menu h3 {
    font-weight: 600;
    width: 100%;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    text-transform: uppercase;
}
.footer-menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer-menu ul li {
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.25em;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
}
.footer-menu ul li a {
	color: #fff;
}
.footer-menu ul li a:hover {
	color: #b80000;
}
.footer-menu .social-icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    margin-top: 20px;
}
.footer-menu .social-icon a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 100%;
	color: #b80000;
}
.footer-menu .social-icon a:hover {
    background: #b80000;
    color: #fff;
}
.footer-map {
    height: 237px;
}
.footer-map iframe {
    width: 100%;
    height: 100%;
}
.copyright {
    border-top: 1px solid #484848;
    padding-top: 30px;
    margin-top: 40px;
    color: #fff;
    text-align: center;
}
.copyright p {
    color: #fff;
}
.footer-privacy-policy-section {
    background: #262626;
    border-top: 1px solid #484848;
    padding: 50px 0px;
    text-align: center;
}
.footer-privacy-policy-inner {
    max-width: 760px;
    margin: 0 auto;
}
.footer-privacy-policy-section p {
    color: #909090;
    line-height: 22px;
    font-size: 12px;
    margin-bottom: 20px;
}
.footer-privacy-policy-section p:last-child {
	margin-bottom: 0px;
}
.footer-privacy-policy-section p a {
	color: #909090;
}
.footer-privacy-policy-section p a:hover {
	color: #b80000;
}
.symbol-logo {
    margin-bottom: 20px;
}
/** ================== // SITE FOOTER CSS END // ================== **/

/** ================== // TEAM PAGE CSS START // ================== **/
.banner-section.team-atf-banner {
    height: calc(100vh - 99.63px);
}
.team-atf-banner .home-banner-bg::after {
    background: rgb(0 0 0 / 34%);
}
.team-page-section .our-team-col4 {
    width: 47%;
}
.team-page-section .our-team-inner {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.team-page-section .team-img-card {
    width: 40%;
}
.team-page-section .team-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-page-section .team-content-card {
    padding: 20px;
    width: 60%;
}
.team-page-section .team-content-card h3 {
    color: #666;
    font-size: 20px;
}
.team-page-section .team-content-card h3 a {
    color: #666;
}
.team-page-section .team-content-card h3 a:hover {
    color:#b80000;
}
.team-page-section .team-content-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}
.team-page-section .team-content-card p a {
	color:#b80000;
}
.team-page-section .team-content-card p a:hover {
	color:#000;
}
.team-page-section .team-content-card  .btn.agent-btn {
    font-size: 16px;
    padding: 0;
    min-width: 135px;
    min-height: 48px;
    color: #fff;
}
/** ================== // TEAM PAGE CSS END // ================== **/

/** ================== // TEAM DETAIL PAGE CSS START // ================== **/
.banner-section.team-detail-banner {
    height: 725px;
}
.team-detail-banner .banner-content {
    max-width: 1038px;
}
.team-page-section.team-detail-banner .team-img-card {
    width: 35%;
}
.team-page-section.team-detail-banner .team-content-card {
    width: 65%;
}
.banner-section .team-heading {
    height: auto;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.team-page-section.team-detail-banner .our-team-inner {
    border: 0;
    background-color: rgba(18, 18, 18, .86);
    box-shadow: 1px 2px 6px rgba(0, 0, 0, .25);
    padding: 30px;
    align-items: center;
}
.team-detail-banner .team-content-card {
    text-align: left;
}
.team-detail-banner  .team-content-card .team-heading h1 {
	font-family: "Open Sans", serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 38px;
    margin-bottom: 8px;
    line-height: 1;
}
.team-detail-banner  .team-content-card .team-heading h3 {
    text-transform: unset;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0;
    font-size: 20px;
    margin: 0;
}
.team-detail-banner .team-content-card p {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0;
    font-size: 20px;
    margin: 0px 0px 20px;
}
.team-detail-banner .team-content-card p a {
    color: #fff;
}
.team-detail-banner .team-content-card p a:hover {
    color: #b80000;
}
.banner-section .team-detail-btns {
	height: auto;
}
.team-detail-btns {
    display: flex;
    column-gap: 15px;
    padding-top: 15px;
}
.team-detail-btns a.btn {
    font-size: 16px;
    min-width: 125px;
    min-height: 48px;
    text-transform: uppercase;
}
.team-detail-banner .search-property {
    background: rgba(245,245,245,.85);
    box-shadow: 1px 2px 6px rgba(0, 0, 0, .25);
    padding: 20px;
    max-width: 90%;
    margin: 30px auto 0;
}
.team-detail-banner .search-property h3 {
    text-transform: uppercase;
    font-size: 28px;
    line-height: 1;
    margin: 0;
}
.team-detail-banner .search-property .es-search {
    margin-top: 20px !important;
}
.realestate-red-section.realestate-team-detail-section {
    background: #f2f2f2;
    padding: 50px 0px;
}
.realestate-team-detail-section .realestate-html-content {
    max-width: 1038px;
}
.realestate-team-detail-section .realestate-html-content p {
    color: rgba(26, 26, 26, .7);
    font-size: 22px;
    line-height: 1.8;
}
.reviews-section .container {
    max-width: 1038px;
}
.reviews-section .slick-slide {
    margin: 0px 15px;
}
.reviews-section .testimonials-uesr-col-left {
    width: 235px;
}
.reviews-section .testimonials-text-col-right {
    width: calc(100% - 235px);
}
.reviews-section .testimonials-zillow-logo-wrap img {
    margin: 0 auto;
}
.reviews-section .testimonials-bottom {
    text-align: center;
}
.reviews-section .testimonial-reviewer-link {
    text-align: center;
    margin: 20px 0px;
}
.reviews-section .testimonials-warp-row {
    padding: 30px;
}
.reviews-section .slick-arrow {
    width: 40px;
    height: 40px;
    background: #b80000 url(../images/slider-arrow.png);
    border-radius: 100%;
    background-size: 9px;
    background-repeat: no-repeat;
    background-position: 14px center;
}
.reviews-section .slick-next {
    right: -60px;
}
.reviews-section .slick-prev {
    left: -60px;
}
/** ================== // TEAM DETAIL PAGE CSS END // ================== **/

/** ================== // CONTACT PAGE CSS START // ================== **/
.banner-section.inner-banner {
    height: 400px;
}
.contact-hm-map-card.map-full-section {
	width: 100%;
	height: 500px;
}
.contect-page-section .contact-hm-info-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 37%) 0px 0px 5px;
    row-gap: unset;
}
.contect-page-section .contact-hm-info-card:first-child {
	margin-top: 0px;
}
.contect-page-section .contact-hm-info-item {
    display: block;
    background: transparent;
    box-shadow: none;
}
.contect-page-section .contact-hm-info-card h3 {
    font-size: 18px;
    letter-spacing: 1px;
    color: #000;
    border-bottom: 1px solid #ccc;
    padding: 4px 15px;
    margin: 0;
}
.contect-page-section .contact-hm-info-card ul {
    padding: 0;
    margin: 20px 0 25px;
    list-style-type: none;
}
.contect-page-section .contact-hm-info-card ul li {
    font-size: 16px;
    line-height: 28px;
    color: #1a1a1a;
    padding: 0px 15px;
    margin-bottom: 6px;
}
.contect-page-section .contact-hm-info-card ul li:last-child {
	margin-bottom: 0px;
}
.contect-page-section .contact-hm-info-card ul li a {

}
.contect-page-section .contact-hm-col-6:nth-child(1) {
    width: 45%;
}
.contect-page-section .contact-hm-col-6:nth-child(2) {
    padding-left: 30px;
    padding-right: 30px;
    width: 55%;
}
.contect-page-section .checkbox-form-group label {
    border-radius: 0px;
    padding: 0;
    margin: 0;
    color: #000;
}
.contect-page-section .contact-hm-form {
    padding: 20px;
}
.hm-contact-section.contect-page-section::before {
	display: none;
}
.checkbox-form-group .wpcf7-checkbox span.wpcf7-list-item-label {
    display: none;
}
.checkbox-form-group .wpcf7-list-item {
    margin: 0;
}
.contect-page-section .checkbox-form-group label a {
    color: #b80000;
}
.contect-page-section .checkbox-form-group label a:hover {
    color: #000;
}
/** ================== // CONTACT PAGE CSS END // ================== **/

/** ================== // TESTIMONIALS PAGE CSS START // ================== **/
.testimonials-section .container {
    max-width: 856px;
}
.agent-names-card {
    display: flex;
    align-items: center;
	margin-bottom: 40px;
}
.tabs-dropdown {
    display: none;
}
.agent-names-card ul {
    margin: 0;
    padding: 0;
    border: 0;
}
.agent-names-card span {
    font-size: 18px;
    line-height: 18px;
    color: #232323;
    font-weight: 500;
    margin-right: 15px;
}
.agent-names-card ul li button {
    cursor: pointer;
    background-color: #eaeaea;
    border-radius: 3px;
    display: inline-block;
    margin-right: 5px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 700;
    max-width: 250px;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 0px !important;
    color: rgba(26, 26, 26, .7) !important;
}
.agent-names-card ul li button.active {
    background-color: #ffcd00;
}

.testimonials-uesr-flex{
	display: flex;
	flex-wrap: wrap;
}

.testimonials-uesr-col-left{
	width: 165px;
}

.testimonials-image{
	position: relative;
	margin: 0;
	padding: 0;
}

.testimonials-image img{
	width: 100%;
}

.user-abs-name{
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 12px;
    background-color: rgba(255, 255, 255, .7);
    color: #000 !important;
    display: inline-block;
    border-radius: 0 5px 0 0;
    padding-left: 5px;
    padding-right: 5px;
    box-shadow: 2px -1px 5px -1px rgba(0, 0, 0, .3);
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonials-text-col-right{
	width: calc(100% - 165px);
	padding-left: 20px;
}
.testimonials-text-content-info{
	margin: 0;
	padding: 0;
}
.testimonials-text-content-info h2 {
    padding-left: 0;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 0;
    font-family: 'Open Sans', sans-serif;
    color: rgba(26,26,26,.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2em;
    margin: 0 0 10px;
}
.testimonials-text-content-info h2 a{
	color: rgba(26,26,26,.7);
}
.rating-star{
	margin: 0 0 23px;
	padding: 0;
}
.star-icon{
	margin: 0;
	padding: 0;
}
.star-icon ul{
	margin: 0 0 5px;
	padding: 0;
}
.star-icon ul li{
	margin: 0;
	padding: 0;
	display: inline-flex;
	color: #ffcd00;
}
.rating-star p {
    font-size: 18px;
    color: rgba(26,26,26,.7);
}

.rating-star-colum {
    display: flex;
    flex-wrap: wrap;
    max-width: 300px;
    margin: 0px -10px;
    row-gap: 5px;
}

.star-colum-col-6 {
    width: 50%;
    padding: 0px 10px;
}

.star-colum-col-6 p {
    margin: 0;
	font-size: 14px;
	line-height: 14px;
	color: rgba(26,26,26,.7);
}

.star-colum-col-6 .star-icon ul {
	margin: 0;
}
.rating-star-colum .star-icon ul li {
    font-size: 11px;
}
.testimonials-bottom {
    margin-top: 20px;
}
.testimonials-bottom p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4em;
    color: rgba(26, 26, 26, .7);
}
.testimonials-bottom p a {
    font-size: 12px;
    display: inline-block;
    color: rgba(26, 26, 26, .7);
}
.testimonial-reviewer-link {
    text-align: right;
    margin: 10px 0px;
}
.testimonials-zillow-logo-wrap {
    text-align: center;
}
.review-btn {
    text-align: center;
    margin: 20px 0px 0px;
}
.review-btn .btn {
    font-weight: normal;
    font-size: 16px;
    min-width: 136px;
    min-height: 47px;
    padding: 0 20px;
    border-radius: 5px;
}
.testimonials-warp-row {
    border: 1px solid #eee;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
    background: #fff;
    padding: 15px;
    margin-bottom: 25px;
}
.testimonials-warp-row:last-child {
	margin-bottom: 0px;
}
/** ================== // TESTIMONIALS PAGE CSS END // ================== **/

/** ================== // PROPERTY DETAIL PAGE CSS START // ================== **/
.property-detail-page {
    border-top: 1px solid #ccc;
    padding-top: 50px;
}
.property-detail-page h1.entry-title {
    font-size: 50px;
    letter-spacing: 0;
    color: #000;
    line-height: 1;
}
.property-detail-page a.es-breadcrumbs__item,
.property-detail-page span.es-breadcrumbs__item {
    color: #000;
}
.property-detail-page a.es-breadcrumbs__item:hover {
    color: #b80000;
}
.property-detail-page .js-es-control li.es-control__item {
    margin: 0px 0px 0px 5px;
}
.property-detail-page .js-es-control li.es-control__item .es-btn {
    line-height: 1 !important;
    background: #fff;
    color: #b80000;
    font-size: 13px !important;
    min-width: 70px;
    min-height: 35px;
    padding: 0px 10px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 8px;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    border: 1px solid #b80000;
    box-shadow: none !important;
    opacity: 1 !important;
    height: auto !important;
}
.property-detail-page .js-es-control li.es-control__item .es-btn span.es-icon {
    color: #b80000 !important;
}
.property-detail-page .js-es-control li.es-control__item .es-btn:hover {
    background: #b80000 !important;
    color: #fff !important;
}
.property-detail-page .js-es-control li.es-control__item .es-btn:hover span.es-icon {
	color: #fff !important;
}
.property-detail-page .es-breadcrumbs {
    margin-bottom: 25px;
}
.property-detail-page .js-es-control li.es-control__item .es-btn span.es-icon.es-icon_heart {
    position: relative;
    top: 2px;
}
.property-detail-page .js-es-control li.es-control__item span.es-btn__label {
    line-height: 1;
}
.property-detail-page .es-gallery {
    margin-bottom: 15px;
}
.property-detail-page ul.es-listing__terms li {
    font-size: 14px;
    font-weight: 500;
}
.property-detail-page ul.es-listing__terms li a {
    color: rgba(26, 26, 26, .7);
}
.property-detail-page ul.es-listing__terms li a:hover {
    color: #b80000;
}
.property-detail-page ul.es-listing__terms li::after {
    background: rgba(26, 26, 26, .7);
    width: 5px;
    height: 5px;
    margin-top: 4px;
}
.property-detail-page .es-single .es-single__header .es-single__header-terms {
    margin-bottom: 8px;
}
.property-detail-page .es-single--xl .property-title {
    font-size: 2.4em;
    line-height: 1.3em;
    margin-bottom: 10px;
}
.property-detail-page .es-single .es-address {
    font-weight: 400;
    color: rgba(26, 26, 26, .7);
    margin-bottom: 10px;
    font-size: 16px;
}
.property-detail-page ul.es-listing__meta li {
    font-size: 1.4em;
    color: rgba(26, 26, 26, .7);
}
.property-detail-page ul.es-listing__meta li svg path {
    fill: rgba(26, 26, 26, .7);
}
.property-detail-page .es-single .es-single__header .es-single__header-right .es-price-badge {
    background: #bf0707;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 12px;
    padding: 6px 10px;
    line-height: 1;
    border-radius: 7px;
}
.property-detail-page .es-single .es-single__header .es-single__header-right .es-price {
    font-size: 30px;
    font-weight: bold;
}
.property-detail-page .es-single .es-single__header .es-single__header-right .es-btn--request-info {
    margin-top: 5px !important;
}
.property-detail-page .es-property-section {
    margin: 30px 0;
}
.property-detail-page h3.es-property-section__title {
    font-size: 20px;
    font-weight: bold;
    color: rgba(26, 26, 26, .7);
}
.property-detail-page .es-property-section .es-property-section__title:after {
    background: rgba(26, 26, 26, .3);
}
.property-detail-page .es-property-section .es-property-section__content {
    padding: 19px 20px 0 !important;
}
.property-detail-page div#basic-facts ul.es-property-fields.es-entity-fields li span.es-property-field__label {
    font-weight: bold;
}
.property-detail-page span.es-property-field__value.es-entity-field__value p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    color: #263238;
}
.property-detail-page a.js-es-toggle-class {
    color: #b80000;
    font-weight: bold;
    text-transform: capitalize;
    margin-top: 25px;
}
.property-detail-page .es-appointments li {
    font-size: 12px;
}
.property-detail-page .es-property-section .es-property-fields .es-property-field .es-property-field__value a:hover {
    color: #b80000;
}
.property-detail-page .es-property-section .es-property-fields .es-property-field .es-property-field__value span.es-icon {
    margin-right: 8px;
    color: #b80000;
}
.property-detail-page div#features .es-property-fields .es-property-field {
    margin-bottom: 0 !important;
}
.property-detail-page .es-request-form.es-request-form--section .es-request-form__fields {
    max-width: 100%;
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.property-detail-page .es-request-form {
    padding: 16px 16px 0;
    max-width: 1038px;
    background: rgba(245, 245, 245, .85) !important;
    box-shadow: none;
}
.property-detail-page .es-request-form.es-request-form--section .es-request-form__fields .es-field {
    width: 48%;
}
.property-detail-page .es-request-form.es-request-form--section .es-field.es-field__phone.es-field--phone,
.property-detail-page .es-request-form.es-request-form--section .js-es-field.es-field.es-field__message.es-field--textarea {
    width: 100%;
}
.property-detail-page .es-request-form.es-request-form--section .es-field.es-field__phone.es-field--phone .js-es-field.es-field.es-field__code.es-field--select {
    flex: unset;
    width: 96px;
}
.property-detail-page .es-request-form.es-request-form--section .es-field.es-field__phone.es-field--phone .es-field.es-field__tel.es-field--text {
    width: calc(100% - 116px);
    flex: unset;
    max-width: calc(100% - 116px);
}
.property-detail-page .es-request-form .es-privacy-policy-container {
    color: #464646;
    font-size: 14px;
    margin-top: 0;
}
.property-detail-page .es-appointments li span {
    font-size: 15px;
}
/** ================== // PROPERTY DETAIL PAGE CSS END // ================== **/

/** ================== // WHY LIST WITH PAGE CSS START // ================== **/
.pd5 {
	padding: 50px 0px;
}
.did-you-know-wrap {
    text-align: center;
}
.did-you-know-wrap .inner-content h2 {
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 36px;
	font-family: 'Adobe Garamond Pro Bold';
}
.did-you-know-wrap .inner-content p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}
.did-you-know-icon {
    margin-bottom: 25px;
}
.did-you-know-icon img {
    width: 114px;
    height: 114px;
}
.inner-content {
    margin: 0px auto 0;
    max-width: 700px;
}
.inner-content h3 {
    margin: 25px auto 20px;
}
.inner-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 33px;
}
.inner-content p small {
    font-size: 14px;
    line-height: 23px;
}
.Why-list-repeat .container {
    max-width: 1740px;
    padding: 0px 50px;
}
.Why-list-repeat {
    background: #fff;
}
.Why-list-repeat:nth-child(odd) {
    background: #F6F6F6;
}
.Why-list-repeat:nth-child(even) .wrapper-content {
    flex-direction: row-reverse;
}
.Why-list-left, .Why-list-right {
    width: 50%;
}
.wrapper-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.info-content h2 {
    color: #000;
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
	font-family: 'Adobe Garamond Pro Bold';
}
.info-content p {
    max-width: 675px;
}
.marketing-right-info-icon {
    margin-top: 40px;
}
.marketing-right-info-icon ul{
   padding: 0px;
}
.marketing-right-info-icon ul li{
    list-style: none;
}
.marketing-right-info-icon ul li {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0px 0px 17px 0px;
}
.inner-left-icon {
    width: 100%;
    max-width: 40px !important;
    height: 40px;
}
.inner-right-text {
    width: 85%;
    margin-left: 15px;
}
/** ================== // WHY LIST WITH PAGE CSS END // ================== **/

/** ================== // LOGIN PAGES CSS START // ================== **/
body .es-auth {
    max-width: 620px !important;
    margin: 0 auto !important;
    padding: 4em 20px !important;
    border: 1px solid #ccc;
    border-radius: 10px;
}
body .es-auth .es-auth__item .es-space {
    height: 0;
    display: none;
}
body .es-auth .es-auth__item {
    padding: 0 !important;
    background: transparent !important;
}
.login-back {
    color: #bf0707 !important;
    font-size: 14px !important;
    font-weight: 600;
    letter-spacing: 0 !important;
}
.login-back span.es-icon.es-icon_chevron-left {
    margin-right: 3px !important;
    font-size: 12px;
}
.login-back:hover {
	color: #000 !important;
}
body .es-auth .es-field:not(.es-field__terms_conditions), body .es-auth .forgot-pwd {
    max-width: 100% !important;
    text-align: center !important;
}
.es-auth__item.es-auth__reset-form input {
    text-align: center !important;
}
.es-auth__buyer-register-buttons a.js-es-auth-item__switcher.es-btn.es-btn--default.es-btn--auth {
    background: #bf0707 !important;
    color: #fff !important;
}
.es-auth__buyer-register-buttons a.js-es-auth-item__switcher.es-btn.es-btn--default.es-btn--auth {
    background: #bf0707 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-transform: uppercase;
}
/** ================== // LOGIN PAGES CSS END // ================== **/

.footer-v2 .col3 {
    width: 23%;
}
.footer-v2 .col3.footer-col1 {
    width: 23%;
}
.footer-v2 .col3.footer-col2 {
    width: 27%;
}
.footer-v2 .col3.footer-col2 .footer-menu ul {
    column-count: 2;
}
.footer-v2 .col3.footer-col3 {
    width: 25%;
}
.copyright.footer-copyright-v2 p {
	font-size: 14px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}
.copyright.footer-copyright-v2 p:last-child {
    margin-bottom: 0px;
}


.default-page-section h1, .default-page-section h2, .default-page-section h3, .default-page-section h4, .default-page-section h5, .default-page-section h6 {
    font-weight: 800;
    font-family: 'Adobe Garamond Pro Bold';
    color: #212121;
    margin: 0 0 10px;
	font-size: 36px;
	line-height: 37px;
}
.default-page-section .PageHeading-title {
    margin: 0 0 20px;
}
.default-page-section p{
	color: #212121;
	margin: 0 0 25px;
	padding: 0;
	line-height: 1.8;
	font-weight: 400;
}
.default-page-section ul {
    padding: 0 0 30px 20px;
    margin: 0;
}
.default-page-section ol {
    padding: 0 0 30px 20px;
    margin: 0;
}
.default-page-section li{
	color: #212121;
	margin: 0;
	padding: 0;
	line-height: 1.8;
	font-weight: 400;
}

.default-page-section p:last-child{
	margin-bottom: 0;
}

.default-page-section .table-responsive {
    margin-bottom: 25px;
}
.table-responsive {
    color: #212121;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.default-page-section p a {
    color: #b90202;
}
.default-page-section p a:hover{
    text-decoration: underline;
}
.default-page-section li a {
    color: #b90202;
}
.default-page-section li a:hover{
	text-decoration: underline;
}
