/* open-sans-300 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local(''), url('../fonts/open-sans-v18-latin-300.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v18-latin-300.woff')
			format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-300italic - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	src: local(''), url('../fonts/open-sans-v18-latin-300italic.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v18-latin-300italic.woff')
			format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-regular - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local(''), url('../fonts/open-sans-v18-latin-regular.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v18-latin-regular.woff')
			format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-italic - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	src: local(''), url('../fonts/open-sans-v18-latin-italic.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v18-latin-italic.woff')
			format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-600 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: local(''), url('../fonts/open-sans-v18-latin-600.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v18-latin-600.woff')
			format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-700 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: local(''), url('../fonts/open-sans-v18-latin-700.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v18-latin-700.woff')
			format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-regular - latin */
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	src: local(''), url('../fonts/lato-v17-latin-regular.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/lato-v17-latin-regular.woff')
			format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* vollkorn-regular - latin */
@font-face {
	font-family: 'Vollkorn';
	font-style: normal;
	font-weight: 400;
	src: local(''), url('../fonts/vollkorn-v13-latin-regular.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/vollkorn-v13-latin-regular.woff')
			format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Global styles
================================================== */
:root {
	--primary: rgb(1, 95, 133);
	--primary-trans: rgba(1, 95, 133, 0.5);
	--primary-dark: rgb(7, 75, 101);
	--primary-light: rgb(77, 129, 177);
	--secondary: rgb(121, 89, 154);
	--secondary-trans: rgba(76, 116, 156, 0.15);
	--secondary-dark: rgb(106, 60, 132);
	--highlight: rgb(75, 183, 183);
	--highlight-dark: rgb(45, 138, 145);
	--titles: rgb(67, 58, 54);
	--text: rgb(80, 72, 67);
	--text-light: rgb(128, 128, 128);
	--links: ;
	--radius: 6px;

	/* Darkest Blue : HTML/HEX #015f85 rgb(1, 95, 133)
  Lighter Blue: HTML/HEX code:#4d81b1 rgb(77, 129, 177)
  Darker turquoise: HTML/HEX #2d8a91rgb(45, 138, 145)
  Lighter Turquoise: HTML/HEX #4bb7b7 rgb(75, 183, 183)
  Lighter Purple: HTML/HEX #79599a rgb(121, 89, 154)
  Darker Purple: HTML/HEX #6a3c84 rgb(106, 60, 132) */

	/* Shades */
	--white: rgb(255, 255, 255);
	--medium-grey: rgb(245, 245, 245);
	--medium-grey-dark: rgb(225, 225, 225);
	--charcoal: rgb(35, 40, 45);

	/*Settings */
	--radius: 6px;
}

html {
	overflow-x: hidden !important;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.body-inner {
	position: relative;
	overflow: hidden;
}

body {
	margin-top: 100px;
}

.home {
	margin-top: 0;
}

a {
	color: var(--secondary);
	font-weight: 400;
}
a:link,
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a.read-more {
	color: #323232;
}
section {
	position: relative;
}
.btn-gallery {
	color: var(--white);
	font-weight: 500;
}
a.btn-gallery:hover,
a.btn-gallery:focus {
	color: var(--white);
	text-decoration: none;
}
a:hover,
a:focus {
	color: var(--primary);
}
.btn {
	border-radius: var(--radius) !important;
}
.white-background {
	background-color: var(--white);
}
.grey-background {
	background-color: var(--medium-grey);
}
.pd-top {
	padding-top: 60px;
}
.pd-bottom {
	padding-bottom: 60px;
}
.narrow,
.page-content p,
.page-template p,
.single-estateagents p {
	max-width: 750px;
	margin: auto;
	text-align: center;
	margin-bottom: 25px;
}
.mt-0 {
	margin-top: 0px !important;
}
.mb-0 {
	margin-bottom: 0px !important;
}

/** Padding **/
.page-inner-default-section {
	padding-top: 60px;
}
.ts-padding {
	padding: 60px 0px 60px 0px;
}
.no-padding {
	padding: 0;
}
.pd80 {
	padding-top: 40px;
}
.pd60_inside {
	padding: 40px 0px 0px 0px;
}
.pd50-home {
	padding: 70px 0px 70px 0px;
}
.no-margin {
	margin: 0px;
}
.media > .pull-left {
	margin-right: 20px;
}
.wp-block-image .alignright {
	float: right;
	margin-left: 1em;
	max-width: 50%;
	height: auto;
}
.wp-block-image img {
	max-width: 100%;
	height: auto;
}

/** Padding End **/

.areas-heading {
	padding-bottom: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.gap-60 {
	clear: both;
	height: 60px;
}
.gap-40 {
	clear: both;
	height: 40px;
}
.gap-30 {
	clear: both;
	height: 30px;
}
.gap-20 {
	clear: both;
	height: 20px;
}
a:focus {
	outline: 0;
}

/* Typography
================================================== */

body {
	font-family: 'Open Sans', sans-serif;
}

p,
li,
blockquote p {
	font-size: 17px;
	line-height: 2;
	font-weight: 400;
	margin-bottom: 25px;
	letter-spacing: 0.75px;
	color: var(--text);
}

blockquote p {
	font-style: italic;
}

li {
	margin-bottom: 6px;
}

.pull-right {
	margin-bottom: 60px;
}

.single_content li,
.pull-right li {
	background: url(../images/checked.svg) no-repeat left 12px;
	height: auto;
	padding-left: 35px;
	background-size: 2%;
	list-style: none;
}

.pull-right p,
.textwidget p {
	text-align: left;
}

.widget section {
	margin-bottom: 40px;
}

.gform_wrapper form li,
.gform_wrapper li {
}

h1,
h2,
h3,
h4,
h5,
h6 {
	letter-spacing: 0.75px;
	font-family: 'Open Sans', sans-serif;
	text-transform: capitalize;
	font-weight: 600;
	color: var(--titles);
}

h1 {
	font-size: 36px;
	line-height: 1.25;
	margin-top: 20px;
	margin-bottom: 30px;
}
h2 {
	font-size: 28px;
	line-height: 1.25;
	margin-top: 20px;
	margin-bottom: 30px;
}
h3 {
	font-size: 22px;
	line-height: 1.25;
	margin-top: 20px;
	margin-bottom: 30px;
}
h4 {
	font-size: 18px;
	line-height: 1.25;
	margin-top: 16px;
	margin-bottom: 16px;
}
h5 {
	font-size: 22px;
	line-height: 1.25;
	margin-top: 12px;
	margin-bottom: 12px;
}

.page-heading h1,
.page-heading h2 {
	margin-top: 0px;
}

.home-page h1 {
	font-size: 50px;
	line-height: 1.1;
	font-weight: 700;
	color: var(--white);
}
.areas-heading h2 {
	color: #47354f;
	text-transform: uppercase;
}
.areas-heading h3 {
	color: #47354f;
}
.areas-we-cover-image-grid,
.areas-we-cover-image-grid a {
	display: flex;
	height: 100%;
	position: relative;
}
.areas-we-cover-image-grid img {
	object-fit: cover;
	width: 100%;
}

.areas-h3 {
	position: absolute;
	color: var(--white);
	bottom: 0px;
	width: 100%;
	height: 100%;
	transition: 0.5s;
}

.areas-h3:hover {
	background: var(--primary-trans);
}

.client_logo h3 {
	position: absolute;
	color: var(--white);
	bottom: 0px;
	margin-bottom: 0px;
	padding: 14px;
	width: 100%;
	text-align: left;
	background: linear-gradient(0deg, rgb(0 0 0 / 70%) 0%, rgb(255 255 255 / 0%) 100%);
}

/**** Typography **/

.mb-30 {
	margin-bottom: 30px;
}

/** Hero-module **/
.hero-module {
	width: 100;
	display: flex;
	height: 600px;
}
.hero-module-image {
	width: 100%;
	height: auto;
}
.hero-module-image::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
}
.hero-module-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.hero-module-content {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	text-align: center;
}
.hero-module-content h1 {
	color: var(--white);
	font-size: 52px;
	font-weight: 400;
	letter-spacing: 2.5px;
}
.hero-module-actions {
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-module-btn1,
.hero-module-btn2 {
	min-width: 220px;
	min-height: 50px;
	color: white;
	background: var(--highlight);
	display: flex;
	margin: 20px;
	justify-content: center;
	align-items: center;
	border-radius: var(--radius);
	font-weight: 600;
	letter-spacing: 1.25px;
	padding: 16px 12px;
}

.hero-module-btn1:hover,
.hero-module-btn2:hover {
	background: var(--highlight-dark);
}

.hero-module-btn1:focus,
.hero-module-btn2:focus,
.hero-module-btn1:active,
.hero-module-btn2:active {
	color: white;
}

.hero-module a:hover {
	color: white;
}

/** ACF MAP Google**/
.estate-map {
	width: 60%;
	height: 250px;
	margin: 20px 0;
}

.estate-agent-map {
	width: 100%;
	height: 700px;
	margin: 0px;
}
.estate-map img {
	max-width: inherit !important;
}

.contact-us-map {
	width: 100%;
	height: 700px;
	margin: 0px;
}
.contact-us-map img {
	max-width: inherit !important;
}

/** END Carousel inside property **/

/** Refine Search **/
#show-hidden-menu {
	cursor: pointer;
	display: none;
}
.refine-results h3 {
	font-weight: 300;
	font-size: 20px;
	margin: 10px;
}
/** Refine Search End**/

.form-center {
	margin: 0 auto;
	max-width: 40%;
}
.btn.btn-primary {
	color: #323232;
	border-radius: 50px;
	padding: 10px 30px;
	background: none;
	font-size: 18px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	margin-bottom: 20px;
}

.btn.btn-primary:hover {
	color: var(--white);
}

.btn.btn-primary.white {
	border: 2px solid var(--white);
	color: var(--white);
	border-radius: var(--radius);
}

.btn.btn-primary.square {
	border-radius: var(--radius);
	color: var(--white);
}

.btn.btn-primary.solid {
	color: var(--white);
}

.btn.btn-primary.solid.blank:hover {
	color: #333;
}

.btn.btn-primary.solid:hover {
	background: none;
}

ul.circle,
ul.check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.circle li {
	position: relative;
	margin-left: 30px;
	padding-bottom: 20px;
}

ul.circle li:before {
	content: '\f111';
	font-family: 'Font Awesome 6 Pro';
	font-size: 8px;
	line-height: 8px;
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 100%;
	position: absolute;
	left: -33px;
	top: 5px;
}

ul.unstyled {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.check-list li {
	margin-bottom: 5px;
}

ul.check-list li i {
	margin-right: 10px;
	font-size: 14px !important;
}

ul.arrow li:before {
	content: '\f105';
	font-family: 'Font Awesome 6 Pro';
	margin-right: 10px;
}

/*** Modal Popup **/
.custom-modal-body {
	padding: 0px;
	background: #000;
}
.row-modal {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}
.left-modal-column {
	background: #000;
	padding: 0px;
}
.right-modal-column {
	background: white;
	padding-left: 31px;
}
.left-modal-column-contact {
	background: var(--secondary);
	padding: 0px;
}
.right-modal-column-contact {
	background: #000;
}
.modal {
	overflow-y: auto;
}
.modal {
	text-align: center;
	padding: 0 !important;
}

.modal:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -4px;
}

.modal-dialog {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	max-width: 650px;
}

.modal-content {
	border-radius: 0px;
}

.custom-close-button {
	background: var(--primary) !important;
	height: 44px;
	margin: 0;
	width: 100%;
	opacity: 1;
	font-size: 32px;
	font-weight: 300;
	color: var(--white);
	position: relative;
	z-index: 99999999;
}
.custom-close-button:hover,
.custom-close-button:focus {
	color: var(--white);
}

/** ios home search **/
.property-search-popup select {
	text-transform: capitalize;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-position: calc(100% - 20px) center !important;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%23fff' fill='%23252839' d='M1683 808l-742 741q-19 19-45 19t-45-19l-742-741q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z'/%3E%3C/svg%3E");
	background-size: 12px;
	background-repeat: no-repeat;
}
.custom_register_form ul.gfield_checkbox li,
.gform_wrapper ul.gfield_radio li {
	width: 33%;
	display: inline-block;
}
body .gform_wrapper ul li.gfield {
	margin-top: 0px;
}
body .gform_wrapper .top_label div.ginput_container {
	margin-top: 0px;
}
/** ios home search close**/
/** ios **/
textarea,
input.text,
input[type='text'],
input[type='button'],
input[type='submit'],
.input-checkbox {
	-webkit-appearance: none;
	border-radius: 0;
}

.form-category select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: var(--white) url(../icons/select-arrow.png) no-repeat;
	background-position: 100% 50%;
	background-size: 14px;
}
/* Base for label styling */
.custom_register_form [type='checkbox']:not(:checked),
.custom_register_form [type='checkbox']:checked {
	position: absolute;
	left: -9999px;
}
.custom_register_form [type='checkbox']:not(:checked) + label,
.custom_register_form [type='checkbox']:checked + label {
	position: relative;
	padding-left: 1.6em !important;
	line-height: 1.3 !important;
	cursor: pointer;
}

/* checkbox aspect */
.custom_register_form [type='checkbox']:not(:checked) + label:before,
.custom_register_form [type='checkbox']:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.25em;
	height: 1.25em;
	border: 2px solid #ccc;
	background: var(--white);
	border-radius: 100%;
}
/* checked mark aspect */
.custom_register_form [type='checkbox']:not(:checked) + label:after,
.custom_register_form [type='checkbox']:checked + label:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	background-color: var(--secondary);
	line-height: 0.7;
	transition: all 0.2s;
	border-radius: 100%;
	width: 9px;
	height: 9px;
}
/* checked mark aspect changes */
.custom_register_form [type='checkbox']:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}
.custom_register_form [type='checkbox']:checked + label:after {
	opacity: 1;
	transform: scale(1);
}
/* disabled checkbox */
.custom_register_form [type='checkbox']:disabled:not(:checked) + label:before,
[type='checkbox']:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}
.custom_register_form [type='checkbox']:disabled:checked + label:after {
	color: #999;
}
.custom_register_form [type='checkbox']:disabled + label {
	color: #aaa;
}
/* accessibility */
.custom_register_form [type='checkbox']:checked:focus + label:before,
[type='checkbox']:not(:checked):focus + label:before {
	border: 2px solid black;
}

/* hover style just for information */
.custom_register_form label:hover:before {
	border: 2px solid #747474 !important;
}
/** ios close**/

.custom_styleform_one ul > li select {
	text-transform: capitalize;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-position: calc(100% - 20px) center !important;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='1792' height='1792' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%23807f88' fill='%23252839' d='M1683 808l-742 741q-19 19-45 19t-45-19l-742-741q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z'/%3E%3C/svg%3E");
	background-size: 12px;
	background-repeat: no-repeat;
}

.gform_wrapper h3.gform_title {
	color: var(--primary);
	font-size: 35px !important;
	font-weight: 300 !important;
}
.gform_wrapper form li,
.gform_wrapper li {
	margin-bottom: inherit;
	background: none;
	height: auto;
	padding-left: inherit;
	margin-top: inherit;
	background-size: inherit;
	font-size: inherit;
	list-style: none;
}

.custom_styleform_one ul > li label {
	font-size: 12px !important;
	font-weight: 300;
	max-width: 100% !important;
	color: var(--primary);
}
.custom_styleform_one .gf_list_3col {
	font-size: 16px;
}
.custom_styleform_one ul > li,
.custom_styleform_one ul > li > div,
.custom_styleform_one ul > li > div input,
.custom_styleform_one ul > li > div textarea {
	margin: 0px !important;
}

.custom_styleform_one ul > li > div input,
.custom_styleform_one ul > li > div textarea {
	margin-bottom: 6px !important;
}
.custom_styleform_one ul.gfield_checkbox > li > input {
	margin-bottom: 0 !important;
}
.custom_styleform_one ul > li ul.gfield_radio li label {
	margin-bottom: 6px;
	margin-top: 0;
	font-size: 12px;
	line-height: 1;
}
.custom_styleform_one ul > li ul.gfield_radio li input {
	margin-left: 1px !important;
}
.custom_styleform_one .gform_footer {
	padding: 6px 15px 10px 0px !important;
}
.custom_styleform_one .gform_footer input {
	top: 0;
	left: 0;
	width: 100% !important;
	border: 0;
	border-radius: var(--radius);
	background: var(--primary);
	font-size: 17px !important;
	padding: 12px 60px;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--white);
}
.custom_styleform_one .gform_footer input:hover {
	background-color: var(--primary) !important;
}
.custom-modal-form {
	border: 0px solid rgba(0, 0, 0, 0.2);
}
.custom_styleform_one ul > li input,
.custom_styleform_one ul > li textarea,
.custom_styleform_one ul > li select {
	min-height: 30px;
	border-bottom: 2px solid var(--primary);
	padding: 6px 3px;
	font-size: 16px;
	color: var(--primary);
	background-color: var(--medium-grey);
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
}
.custom_styleform_one ul > li select {
	margin-bottom: 16px;
}

.gform_wrapper ul.gform_fields li.gfield div.ginput_complex span.ginput_left select,
.gform_wrapper ul.gform_fields li.gfield div.ginput_complex span.ginput_right select,
.gform_wrapper ul.gform_fields li.gfield select {
	margin-left: 1px;
	padding: 5px 4px;
	font-size: 14px;
	margin-bottom: 6px;
	line-height: 28px;
	color: rgb(128, 127, 136);
}

.gform_wrapper .custom_styleform_one div.validation_error {
	display: none !important;
}
.gform_wrapper .custom_styleform_one .validation_message {
	color: #d9534f;
	padding-top: 0px !important;
}
.gform_wrapper .custom_styleform_one li.gfield.gfield_error,
.gform_wrapper
	.custom_styleform_one
	li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: transparent;
	margin-bottom: 6px !important;
	border-top: 0;
	border-bottom: 0;
	padding-bottom: 6px;
	padding-top: 0;
	box-sizing: border-box;
}
.gform_wrapper .custom_styleform_one .top_label li.gfield.gfield_error.gf_left_third,
.gform_wrapper .custom_styleform_one .top_label li.gfield.gfield_error.gf_middle_third,
.gform_wrapper .custom_styleform_one .top_label li.gfield.gfield_error.gf_right_third {
	margin-right: 16px !important;
}

/*** Register/Tenant Form **/
.col-centered {
	float: none;
	margin: 0 auto;
}

.custom_register_form {
	border: 1px solid #dedede;
	padding: 20px;
	color: #000;
	background: var(--medium-grey);
}
.custom_register_form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	background: var(--white) url(../icons/select-arrow.png) no-repeat;
	background-position: 98% 50%;
	background-size: 12px;
	outline: none;
	margin-bottom: 0;
}
.custom_register_form ul > li input,
.custom_register_form ul > li textarea,
.custom_register_form ul > li select {
	min-height: 45px;
	border: 1px solid #ccc;
	border-radius: 0 !important;
	padding: 6px 14px !important;
	font-size: 14px !important;
	color: #333 !important;
	background-color: var(--white);
}
.custom_register_form ul > li label {
	font-size: 12px !important;
	color: #747474;
	text-transform: uppercase;
	font-weight: 300;
}

.custom_register_form .gfield_checkbox li label {
	margin-top: 5px !important;
	margin-left: 3px !important;
}
.custom_register_form .gform_footer input {
	top: 0;
	left: 0;
	width: 100% !important;
	border: 0;
	background: var(--primary);
	font-size: 17px !important;
	padding: 12px 60px;
	line-height: 24px;
	border-radius: var(--radius) !important;
	text-transform: uppercase !important;
	color: var(--white);
}
/*** Register/Tenant Form Close**/

/** Homepage Services **/

.services-item {
	position: relative;
	height: 450px;
	transition: background-color 1s;
	cursor: pointer;
	background-position: top;
	background-size: cover;
}
.services-item:hover {
	background-color: rgba(0, 0, 0, 0.6) !important;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
}
.services-item:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: inherit;
	content: ' ';
}
.service-heading-item {
	position: absolute;
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, 0%);
	color: var(--white);
	font-size: 30px;
	text-align: left;
	width: 100%;
	padding: 14px;
	background: linear-gradient(0deg, rgb(0 0 0 / 70%) 0%, rgb(255 255 255 / 0%) 100%);
	font-weight: 400;
}

.service-block {
	text-align: center;
}
.service-block h3 {
	font-weight: 300;
	font-size: 26px;
	margin-bottom: 20px;
	margin-top: 20px;
}
.service-block p {
	font-weight: 300;
	font-size: 20px;
}

/** Inner page tabs **/

.section--details .section__actions {
	position: absolute;
	left: 0;
	width: 100%;
	height: 94px;
	z-index: 20;
	background: var(--white);
	will-change: all;
	transfom: translateZ(0);
	-webkit-backface-visibility: hidden;
}
.section ul {
	padding-left: 0;
}
.list-tools {
	padding: 20px 0 15px;
	text-align: center;
}
.list-tools li {
	display: inline-block;
	vertical-align: middle;
}
.list-tools li + li {
	margin-left: 34px;
}
.icon-details {
	width: 19px;
	height: 17px;
}
.icon-location {
	width: 18px;
	height: 25px;
}
.icon-gallery {
	width: 26px;
	height: 20px;
}
.icon-floorplan {
	width: 26px;
	height: 23px;
}
.icon-epc {
	width: 26px;
	height: 26px;
}
.icon-share {
	width: 20px;
	height: 20px;
}
.icon-print {
	width: 20px;
	height: 20px;
}

[class^='icon-'] {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
[class^='icon-'] svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
svg:not(:root) {
	overflow: hidden;
}
.list-tools span {
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
	color: #6a6a6a;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transition: color 0.4s;
	-o-transition: color 0.4s;
	transition: color 0.4s;
}

/*** Extra Content **/

#extra-content img {
	width: 100%;
	height: auto;
}

/** Image Content and Content Image Sections **/

.three-image {
	width: 100%;
}

.three-image {
	width: 100%;
	position: relative;
}

.images-card .col-md-4:before {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background: rgba(211, 211, 211, 0.8);
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.images-card {
	position: relative;
	-webkit-transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
}

.images-overlay {
	position: relative;
	margin: 0;
	-webkit-transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
}

.images-overlay:hover {
	box-shadow: 0 0rem 1rem 0rem rgba(52, 49, 47, 0.25);
}

.images-card a {
	display: block;
	line-height: 100%;
	position: relative;
	height: 100%;
}

.images-card h4:hover {
	color: var(--primary);
}

.images-card .images-overlay:before {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background: var(--primary-trans);
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.images-card .images-overlay:after {
	content: '+';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 45px;
	height: 45px;
	font-size: 50px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.images-card:hover .images-overlay:before,
.images-card:hover .images-overlay:after {
	opacity: 1;
	z-index: 1;
}

.content-image-text-container,
.content-text-image-container {
	display: flex;
}

.content-images,
.content-text {
	width: 50%;
	display: flex;
	justify-content: center;
}

/* .content-text-right, .content-text-left {
  text-align: justify;
} */

.content-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 0px;
}

.content-text p {
	text-align: left;
}

.content-text-left {
	padding-right: 40px;
}

.content-text-right {
	padding-left: 40px;
}

.content-button a:focus {
	color: white;
}

.content-image-left img,
.content-image-right img {
	max-width: 100%;
	align-self: center;
}

.wide-image img,
.narrow-image img {
	width: 100%;
	height: 235px;
}

.wide-image img {
	object-fit: cover;
}

.content-btn {
	background-color: var(--primary);
	color: white;
	border-radius: var(--radius);
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	padding: 12px;
	font-size: 17px;
	font-weight: 600;
}

.content-btn:hover {
	color: white;
	background-color: var(--primary-light);
}

@media screen and (max-width: 1200px) {
	.wide-image img,
	.narrow-image img {
		height: 190px;
	}
}

@media screen and (max-width: 992px) {
	.blog-container {
		margin-bottom: 40px;
	}
	.content-image-text-container {
		flex-direction: column-reverse;
	}
	.content-text-image-container {
		flex-direction: column;
	}
	.content-images,
	.content-text {
		width: 100%;
	}
	.content-text-left,
	.content-text-right {
		padding: 0px;
		max-width: 750px;
		text-align: left;
		margin: auto;
	}
	.wide-image img,
	.narrow-image img {
		height: 100%;
		min-height: 465px;
		object-fit: cover;
	}
	.development-info {
		flex-direction: column;
	}
}

@media screen and (max-width: 767px) {
	.pd-bottom {
		padding-bottom: 45px;
	}
	.pd-top {
		padding-top: 45px;
	}
	.content-text h2 {
		text-align: center;
	}
	.wide-image img,
	.narrow-image img {
		height: 100%;
		min-height: 375px;
		object-fit: cover;
	}
}

@media screen and (max-width: 480px) {
	.pd-bottom {
		padding-bottom: 30px;
	}
	.pd-top {
		padding-top: 30px;
	}
	.wide-image img,
	.narrow-image img {
		height: 100%;
		min-height: 300px;
		object-fit: cover;
	}
}

/* List of properties Home
================================================== */

.view-all-properties:hover {
	color: var(--primary);
	background-color: var(--medium-grey-dark);
}
.view-all-properties {
	background-color: var(--medium-grey);
	color: var(--primary);
	margin-right: 0px;
	margin-top: 22px;
	padding: 10px 30px;
	border-radius: var(--radius);
	border-style: none;
	font-size: 18px;
	font-weight: 400;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 2px solid white;
	border-radius: var(--radius);
}

.grid-img-home {
	position: relative;
	max-height: 250px;
	overflow: hidden;
	padding-top: 3px;
	height: 250px;
}
.grid-img-home img {
	vertical-align: middle;
	-moz-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	transition: all ease 0.5s;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.grid-img-home a:hover img {
	/*   -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
*/
}
.grid-content-home {
	background: white;
	padding: 20px 20px;
}
.grid-content-home .feature-info-home h4 {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--primary);
	margin: 0;
	/* height: 80px; */
	overflow: hidden;
}

.grid-content-inner .property-archive-address {
	margin-top: 6px;
	margin-bottom: 0;
	font-family: 'open sans';
	font-size: 19px;
	font-weight: 400;
	color: var(--titles);
}

.property-archive-price {
	font-size: 24px;
	margin: 2px 0 6px;
	color: var(--primary);
}
.property-archive-title {
	display: flex;
	justify-content: space-between;
}

.grid-content-inner .property-single-description {
	margin: 0;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
}
.feature-info-home h4 {
	height: 50px;
}

.grid-content-home h5 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
	color: var(--primary);
}
.grid-box-home {
	padding-top: 10px;
	box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.15);
	transform: translateY(-6px);
}

.grid-availability {
	position: absolute;
	bottom: 0px;
	padding: 5px 0 0 18px;
	min-width: 143px;
	height: 35px;
	font-size: 18px;
	text-transform: capitalize;
	background-color: rgba(0, 0, 0, 0.7);
	color: var(--white);
	top: 3px;
	border-bottom-right-radius: 11px;
	border-top-right-radius: 11px;
}

/* Property Hive
================================================== */

#container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

.grid-img {
	position: relative;
	max-height: 350px;
	overflow: hidden;
	padding-top: 3px;
}
.grid-img img {
	vertical-align: middle;
	-moz-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	transition: all ease 0.5s;
	height: 100%;
	object-fit: cover;
	width: 100%;
	height: 275px;
}
.grid-img a:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.grid-content {
	background: var(--primary);
	padding: 20px 20px;
}
.grid-content .feature-info h4 {
	font-size: 21px;
	text-transform: capitalize;
	color: var(--white);
	margin: 0;
	height: 80px;
	overflow: hidden;
}

.grid-content-inner {
	display: flex;
	flex-direction: column;
	min-height: 145px;
}
.grid-box {
	padding: 60px 10px 0;
}

.grid-availability {
	position: absolute;
	bottom: 0px;
	padding: 5px 0 0 18px;
	min-width: 143px;
	height: 35px;
	font-size: 18px;
	text-transform: capitalize;
	background-color: rgba(0, 0, 0, 0.7);
	color: var(--white);
	top: 3px;
	border-bottom-right-radius: 11px;
	border-top-right-radius: 11px;
}
.property-types {
	padding: 0px;
	margin: 0;
	margin-top: auto;
}
.property-types li:first-child {
	margin-left: 0;
}
.property-types li {
	display: inline-block;
	margin: 0 0 0 15px;
	vertical-align: middle;
	color: var(--titles);
}

.property-types li span {
	margin: 11px 7px 0 0px;
	font-size: 17px;
}
.pl-1 {
	padding-left: 13px !important;
}
.page-inner-section {
	padding: 41px 0;
}
.breadcrumbs-section {
	padding: 41px 0;
}
.page-inner-section:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url(../images/overaly.png);
	content: '';
}

.page-info h1 {
	color: var(--white);
}
.insideheader_breadcrumbs {
	display: inline-block;
	padding: 4px 18px;
	font-size: 12px;
	color: var(--white);
}
.insideheader_breadcrumbs a {
	color: var(--white);
}
.quick-links-results {
	max-width: 100%;
	margin-bottom: 60px;
}

.grid-box-card {
	box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.grid-content {
	background: unset;
}

.grid-content .feature-info h4 {
	color: var(--primary);
}

.grid-content h5 {
	color: var(--primary);
}

.property-excerpt p {
	text-align: left;
	font-size: 14px;
	margin-bottom: 8px;
	height: 110px;
	overflow: hidden;
}
.quick-links-description p {
	max-width: unset;
	width: 100%;
}

/** Single Estate Agent **/

/** New estate agent styling **/
.single-estate-hero {
	width: 100%;
	padding: 100px 0px;
}
.btn-contact-areas {
	display: inline-flex;
	justify-content: space-between;
	width: 100%;
}
.hidden-btn-desktop {
	display: none;
}
.pr2 {
	padding-right: 2px;
	padding-left: 0;
}
.pl2 {
	padding-left: 2px;
	padding-right: 0;
}
.search_icon-estate {
	font-size: 20px;
	cursor: pointer;
}
.btn-estate-agent-search {
	margin-bottom: 20px;
	width: 100%;
	background-color: var(--primary);
	color: var(--white);
	margin-right: 5px;
	padding: 2px 0px;
	border-radius: var(--radius);
	font-size: 19px;
	font-weight: 300;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
}
.btn-estate-agent-search:hover {
	background-color: var(--secondary);
}
.single-estate-office-details {
	border-top: 1px solid #b7a6ab;
	border-bottom: 1px solid #b7a6ab;
	padding: 10px 0px;
	color: #efefef;
	font-size: 15px;
	font-weight: 300;
	line-height: 24px;
	margin-bottom: 58px;
	width: 100%;
	float: left;
}
.single-estate-office-details a {
	color: var(--white);
	font-weight: 300;
	text-decoration: none;
}
.page-estate-agent {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 300;
}
/** New estate agent styling close**/

.estate-agents-block {
}
.page-inner-agent-section {
	min-height: 50vh;
	background-size: cover;
	background-position: center;
	position: relative;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-inner-agent-section:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url(../images/overaly.png);
	content: '';
}
.page-inner-sales-section {
	padding: 60px 0px 60px 0px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.page-inner-sales-section:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url(../images/overaly.png);
	content: '';
}
.page-info-title {
	font-size: 38px;
	color: var(--white);
	font-weight: 500;
	margin: 0px;
	letter-spacing: 0.5px;
	line-height: 45px;
}

.line {
	color: #faed2e;
	margin-left: 20px;
	margin-right: 20px;
}
.insideheader-breadcrumbs-agent {
	padding: 0px;
	color: var(--white);
}
.insideheader-breadcrumbs-agent a {
	color: var(--white);
}

#search_keyword_holder_agents {
	margin-top: 40px;
	background: transparent;
	width: 100%;
	max-width: 573px;
	height: 64px;
	box-sizing: border-box;
	position: relative;
	border-radius: 0px;
}
#search_keyword_value_agents {
	padding: 17px;
	margin: 0;
	width: 517px;
	width: calc(100% - 178px);
	width: -moz-calc(100% - 178px);
	width: -webkit-calc(100% - 178px);
	width: -o-calc(100% - 178px);
	border: none;
	background: rgba(0, 0, 0, 0.4);
	font-size: 19px;
	color: var(--white);
	outline: none;
	position: absolute;
	left: 119px;
	top: 0;
	box-sizing: border-box;
	border-left: 1px solid var(--primary);
	font-weight: 300;
}

.cta-buttons {
}
.btn-agents-sales {
	background-color: var(--secondary);
	color: var(--white);
	margin-right: 15px;
	padding: 10px 30px;
	border-radius: var(-radius);
	font-size: 20px;
	font-weight: 600;
}

.btn-agents-lettings {
	background-color: var(--secondary);
	color: var(--white);
	margin-right: 15px;
	padding: 10px 30px;
	border-radius: var(-radius);
	font-size: 20px;
	font-weight: 600;
}

.btn-2,
.btn-3 {
	background-color: var(--secondary);
	color: var(--white);
	padding: 17px 17px;
	font-size: 19px;
	font-weight: 300;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 0px;
	display: flex;
	justify-content: center;
	border-radius: var(--radius);
}
.btn-2 {
	margin-right: 5px;
	width: 50%;
}
.btn-3 {
	width: 50%;
}
.btn-2:hover,
.btn-3:hover {
	background-color: var(--secondary-dark);
}
.btn-4 {
	background-color: var(--highlight-dark);
	color: var(--white);
	margin-right: 6px;
	padding: 11px 16px;
	border-radius: var(-radius);
	font-size: 18px;
	font-weight: 300;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	margin-bottom: 20px;
}
.btn-4:hover {
	background-color: var(--highlight);
}

.btn-5 {
	background-color: var(--secondary);
	color: var(--white);
	padding: 11px 16px;
	border-radius: var(--radius);
	font-size: 18px;
	font-weight: 300;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
}
.btn-5:hover {
	background-color: var(--secondary-dark);
}

.estate-block {
	margin-top: 60px;
}
.estate-block h3 {
	text-transform: capitalize;
}
.contactus-box {
}
.contactus {
	background: var(--secondary);
	padding-bottom: 80px;
}
.form-contact {
	color: var(--white);
}

.form-contact h2,
.office-details h2 {
	font-size: 28px;
	color: var(--white);
}
.custom-form {
	font-weight: 300;
	background: transparent;
	padding: 41px;
}
.custom-form .btn-primary {
	background-color: #8e44ad;
	border-color: #8e44ad;
}
.custom-form .form-group {
	position: relative;
	padding-top: 30px;
	margin-bottom: 30px;
}

.custom-form .form-group .form-control:focus {
	border: 0px solid #49a2e7 !important;
}
.custom-form .form-group .animated-label {
	top: 20px;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	font-weight: 300;
	opacity: 0.5;
	cursor: text;
	transition: 0.2s ease all;
	margin: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.custom-form .form-group .animated-label:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 45%;
	height: 2px;
	width: 10px;
	visibility: hidden;
	background-color: var(--secondary);
	transition: 0.2s ease all;
}
.custom-form .form-group.not-empty .animated-label {
	top: 0;
	font-size: 12px;
}
.custom-form .form-group .form-control {
	position: relative;
	z-index: 1;
	border-radius: 0;
	border-width: 0 0 1px;
	border-bottom-color: rgba(236, 230, 230, 0.5);
	padding: 3px 0 5px;
	background-color: transparent;
}
.custom-form .form-group .form-control:focus {
	box-shadow: none;
	border-bottom-color: rgba(0, 0, 0, 0.12);
}
.custom-form .form-group .form-control:focus ~ .animated-label {
	top: 0;
	opacity: 1;
	color: var(--white);
	font-size: 12px;
}
.custom-form .form-group .form-control:focus ~ .animated-label:after {
	visibility: visible;
	width: 100%;
	left: 0;
}

.office-details {
	color: var(--white);
	padding: 40px;
	background-color: #65152e;
}

.office-details h5 {
	font-size: 28px;
	line-height: 24px;
	font-weight: 600;
	margin-top: 30px;
}

.office-details p {
	font-weight: 300;
	font-size: 21px;
	line-height: 30px;
}
/** DEVELOPMENT PAGE  **/

.latest-development {
	margin-right: 0px;
	margin-left: 0px;
}

.development-block {
	text-align: center;
}
.development-block h2 {
	margin-bottom: 30px;
}

.development-block p {
}

.development-grid {
	padding: 0px;
}

.development-grid:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.4);
	content: '';
}

.development-grid span {
	font-size: 30px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	display: block;
	width: 100%;
	z-index: 3;
	text-align: center;
	position: absolute;
	top: 50%;
	padding-left: 10px;
	padding-right: 10px;
}
.development-grid:hover span {
	display: none;
}
.content .content-overlay {
	background: var(--primary);
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay {
	opacity: 1;
}

.content-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.content-details {
	position: absolute;
	text-align: center;
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.after-heading {
	width: 50%;
	text-align: center;
}
.content:hover .content-details {
	top: 50%;
	left: 50%;
	opacity: 1;
}

.content-details h3 {
	font-size: 30px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
}

.content-details p {
	font-size: 21px;
	margin-bottom: 0;
	color: #fff;
	font-weight: 300;
}

.fadeIn-top {
	top: 20%;
}

/*** Development Single Page **/
.dev-map {
	width: 100%;
	height: 500px;
	margin: 0px;
}
.development-section {
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.development-title {
	transform: translateY(-36px);
}
.development-top:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, 0.3);
}
.btn-dev {
	letter-spacing: 0.5px;
	background-color: var(--highlight);
	color: #fff;
	margin-right: 10px;
	padding: 6px 18px;
	border-radius: var(--radius);
	font-size: 17px;
	font-weight: 500;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	min-width: 220px;
}

.btn-dev:hover {
	background-color: var(--highlight-dark);
	color: #fff;
	text-decoration: none;
}
.btn-dev:focus {
	color: #fff;
}
.btn-dev-enquire {
	background-color: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 300;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
}
.btn-dev-enquire:hover {
	background-color: var(--secondary);
}
.dev-page-info-title-welcome {
	font-weight: 400;
	line-height: 45px;
	color: #fff;
	line-height: 60px;
}
.dev-page-info-title {
	font-weight: 400;
}
#dev-content {
	background-color: var(--primary);
}
.dev-content h2 {
	font-weight: 400;
	color: #fff;
}
.dev2-content tr {
	height: 60px;
}
.dev-content p {
	color: #fff;
}
.dev-text {
	padding: 0px 40px;
}
.dev2-content img {
	display: block;
	height: auto;
	max-width: 100%;
}
.dev-text h2 {
	margin-top: 0px;
	margin-bottom: 14px;
}
.dev2-content ul {
	margin: 20px 0;
	padding-bottom: 0;
}
.dev2-content li {
	background: #ec1a1a00 url(../icons/tick.svg) no-repeat left center;
	padding: 4px 0 6px 30px;
	list-style: none;
	margin: 0;
}
.development-info {
	display: flex;
}
.development-info-image {
	display: flex;
	align-items: center;
}
.table {
	margin-bottom: 0px;
}
.table thead > tr > th,
.table tbody > tr > th,
.table tfoot > tr > th,
.table thead > tr > td,
.table tbody > tr > td,
.table tfoot > tr > td {
	vertical-align: middle;
	text-align: center;
}
.hidden-desktop {
	display: none;
}
.hidden-mobile {
	display: block;
}

/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box;
}

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: pointer;
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #ccc;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}
.mfp-preloader a {
	color: #ccc;
}
.mfp-preloader a:hover {
	color: var(--white);
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: var(--white);
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
}
.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: var(--white);
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #ccc;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
	margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}
.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}
.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}
.mfp-arrow-left:after {
	border-right: 17px solid var(--white);
	margin-left: 31px;
}
.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
	right: 0;
}
.mfp-arrow-right:after {
	border-left: 17px solid var(--white);
	margin-left: 39px;
}
.mfp-arrow-right:before {
	border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
	line-height: 0;
}
.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}
.mfp-figure small {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 14px;
}
.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #f3f3f3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

.hidden-gallery {
	overflow: hidden;
	display: none;
	visibility: hidden;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	/**
       * Remove all paddings around the image on small screen
       */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}
	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box;
	}
	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}
	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}
	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

/*** Development Single Page **/

/** DEVELOPMENT PAGE CLOSE **/

/* Search Form Design */

.form_margin {
	margin-top: 50px;
}
.search_block {
	background-color: #d2d6d7;
}

body.post-type-archive.post-type-archive-property form.property-search-form-inside .control {
	vertical-align: middle;
}
body.post-type-archive.post-type-archive-property form.property-search-form-inside {
	padding: 16px 16px 20px 16px;
	background-color: #f9f7f7;
}
body.post-type-archive.post-type-archive-property form.property-search-form-inside div label,
.pp_default .pp_content_container form div label {
	display: none;
	font-size: 14px !important;
	color: #747474;
	line-height: 20px;
	font-weight: 600;
}
body.post-type-archive.post-type-archive-property form.property-search-form-inside div input,
body.post-type-archive.post-type-archive-property form.property-search-form-inside div select {
	height: 50px;
	border: 1px solid #ccc;
	border-radius: 0 !important;
	padding: 6px 14px !important;
	font-size: 14px !important;
	color: #333;
	background: var(--white);
	width: 100%;
}
body.post-type-archive.post-type-archive-property form.property-search-form-inside div select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	background: var(--white) url(../icons/select-arrow.png) no-repeat;
	background-position: 96% 50%;
	background-size: 12px;
	outline: none;
	margin-bottom: 0;
}
body.post-type-archive.post-type-archive-property
	form.property-search-form-inside
	div.control-department
	input,
body.post-type-archive.post-type-archive-property
	form.property-search-form-inside
	div.control-exclude
	input {
	height: auto;
}
body.post-type-archive.post-type-archive-property
	form.property-search-form-inside
	input[type='submit'] {
	width: 100% !important;
	border: 0;
	border-radius: 2px !important;
	background: var(--primary);
	line-height: 24px;
	text-transform: uppercase;
	outline: none;
	color: var(--white);
	cursor: pointer;
}
body.post-type-archive.post-type-archive-property
	form.property-search-form-inside
	input[type='submit']:hover {
	background-color: var(--secondary) !important;
}
.control-department label {
	margin-right: 10px;
}
.search-properties {
	margin-top: 0px;
	background-color: #f9f7f7;
}

#search_block {
	position: relative;
	float: left;
	width: 100%;
}

.inside_address_keyword input {
	width: 100%;
}
/* search form END*/

/*** Pagination Overide Styling **/

.propertyhive-pagination {
	text-align: center;
	margin: 15px 0px 15px 0px;
	float: left;
	width: 100%;
}
.propertyhive-pagination ul li {
	font-weight: 600;
	display: inline;
	font-size: 15px;
	padding: 0 0 0 10px;
	position: relative;
}

.propertyhive-pagination ul li span {
	display: inline-block;
	width: 35px;
	border-radius: 9%;
	height: 35px;
	line-height: 35px;
	background: var(--primary);
	color: var(--white);
	border: 1px solid var(--primary);
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.propertyhive-pagination ul li a {
	display: inline-block;
	width: 35px;
	border-radius: 9%;
	height: 35px;
	line-height: 35px;
	background: var(--white);
	color: var(--primary);
	border: 1px solid var(--primary);
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
	margin-top: 10px;
}

/** Property count **/
.propertyhive-result-count {
	width: 33%;
	float: left;
	font-size: 22px;
	margin-top: 20px;
	padding-left: 10px;
}
.propertyhive-views {
	width: 33%;
	text-align: center;
	float: left;
	margin-top: 20px;
}
.list-view,
.map-view,
.shortlist-view {
	height: 40px;
}

.list-view p,
.map-view p,
.shortlist-view p {
	font-size: 11px;
	text-align: center;
}
.property-add-ons-list p {
	font-size: 12px;
}
.propertyhive-ordering {
	margin-right: 0;
	margin-bottom: 1.41575em;
	float: right;
	margin-top: 20px;
	padding-right: 10px;
}
.propertyhive-ordering select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: var(--white) url(../icons/select-arrow.png) no-repeat;
	background-position: 98% 50%;
	background-size: 13px;
	border: 1px solid #a0a0a0;
	padding: 0px 19px 0px 5px;
	height: 39px;
	font-size: 12px;
	border-radius: 0;
	text-transform: capitalize;
}
.propertyhive-views ul li a {
	display: block;
	position: relative;
	padding: 0;
	height: 40px;
	width: 40px;
	font-size: 0;
}
.propertyhive-views ul li {
	display: inline-block;
	margin: 0 0.2360828548em;
	background-color: var(--primary);
}
.propertyhive-views ul li.active,
.propertyhive-views ul li:hover {
	background-color: var(--secondary);
}

.propertyhive-views ul li a:after {
	position: relative;
	top: 7px;
	right: 0;
	width: 100%;
	text-align: center;
	height: 100%;
	color: var(--white);
	font-size: 24px !important;
}
.propertyhive-views ul li.list-view a:after {
	display: inline-block;
	font: normal normal normal 1em/1 'Font Awesome 6 Pro';
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f0c9';
}

.propertyhive-views ul li.map-view a:after {
	display: inline-block;
	font: normal normal normal 1em/1 'Font Awesome 6 Pro';
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f3c5';
}

.propertyhive-views ul li.shortlist-view a:after {
	display: inline-block;
	font: normal normal normal 1em/1 'Font Awesome 6 Pro';
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f004';
}

.propertyhive-map-canvas-wrapper {
	clear: both;
}
/** Property count End**/

/** Single Property **/
.back_to_result {
	padding-right: 15px;
	padding-left: 15px;
}
.property-label {
	color: var(--white);
	font-size: 12px;
	padding: 0 1rem;
	background: var(--secondary);
	text-transform: uppercase;
	line-height: 2;
	border-radius: 2px;
	display: block;
	clear: both;
	max-width: 120px;
	text-align: center;
	letter-spacing: 0.75px;
	font-weight: 600;
	margin-top: -2px;
	margin-right: 16px;
}
.property-description-icons-container {
	clear: both;
	border-top: 1px solid rgb(255 255 255 / 25%);
}
.property-description-type {
	display: flex;
}
.label-archive {
	position: absolute;
	top: 12px;
	left: 20px;
	margin-top: 0;
}
.col-custom-8 {
	width: 70%;
}
.col-custom-4 {
	width: 28%;
}
.wrapper-inside {
	width: 100%;
	clear: both;
	background-color: var(--charcoal);
	max-height: 226px;
}

.fa-home {
	color: var(--highlight);
	padding-right: 4px;
	font-size: 18px;
}

.fa-search {
	color: var(--primary);
}

.btn-estate-agent-search .fa-search {
	color: var(--white);
}

.single_propery_type {
	padding-left: 0px;
	color: var(--white);
	margin-top: 24px;
}

.single-property-types {
	padding: 0px;
	text-align: right;
	margin-top: -6px;
}

.single-property-types li:first-child {
	margin-left: 0;
}
.single-property-types li {
	display: inline-block;
	margin: 0 0 0 15px;
	vertical-align: middle;
	color: var(--highlight);
}
.single-property-types li span {
	margin: 0px 6px 0 0px;
	font-size: 16px;
}

.single_property_content {
	clear: both;
}
.property_name {
	height: 150px;
	padding-left: 0px;
}
.title-d {
	font-size: 30px;
	line-height: 30px;
	font-weight: 600;
	margin-bottom: 30px;
}

.expert_agent {
	background-color: var(--white);
	margin-top: -49px;
	margin-bottom: 20px;
	border: 1px solid #dedede;
	padding-right: 15px;
	padding-left: 15px;
}

.single_property_block {
	position: relative;
	float: left;
	width: 100%;
}

.single_wrapper {
	position: relative;
	min-height: 50vh;
	overflow-x: hidden;
}

.single_breadcrumbs {
	top: 76px;
	background: var(--charcoal);
	z-index: 49;
	width: 100%;
	position: fixed;
	box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.15);
}

.description,
.arrow_single {
	font-size: 18px;
	line-height: 32px;
	font-weight: 300;
}

.list-group-item span {
	display: inline-block;
	vertical-align: middle;
	margin-left: 16px;
	color: #3d3d3d;
	text-transform: uppercase;
	-webkit-transition: color 0.4s;
	-o-transition: color 0.4s;
	transition: color 0.4s;
}

.title-single-box {
	margin-top: 30px;
}
.sub-title-property {
	color: var(--highlight);
	font-size: 18px;
	font-weight: 400;
}
.single-property-mobile,
.property-description-mobile {
	display: none;
}
.property-mobile-details {
	display: flex;
}
.property-mobile-price-container {
	background: var(--charcoal);
	margin: -6px -15px;
	padding: 8px 15px;
}
.property-mobile-title {
	flex-direction: column;
}

.title-single {
	text-transform: capitalize;
	font-size: 38px;
	line-height: 30px;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 18px;
	margin-top: 40px;
}
.title-price {
	font-size: 38px;
	line-height: 30px;
	font-weight: 500;
	color: #fafdff;
	margin-top: 14px;
	text-align: right;
	text-transform: none;
}
.title-price a {
	font-size: 18px;
	text-decoration: underline;
	text-transform: capitalize;
	color: var(--secondary);
}

.fees_apply a {
	color: #eee1a0;
	font-size: 18px;
	text-decoration: underline;
	font-weight: 600;
	text-align: right;
	width: 100%;
	float: left;
}

.price-qualifier {
	text-align: right;
	font-size: 18px;
	color: var(--highlight);
	text-transform: capitalize;
	letter-spacing: 0px;
	margin-top: 38px;
	margin-bottom: 0px;
	font-weight: 400;
}
.my-0 {
	font-size: 18px;
	text-transform: capitalize;
}
.list-group-item a {
	color: #6a6a6a;
}

.stamp-duty-wrapper,
.calculator-sidebar {
	padding: 15px 15px;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid #dedede;
}

.propertyhive-moving-cost-calculator p,
.propertyhive-moving-cost-calculator label,
.propertyhive-moving-cost-calculator option,
.propertyhive-moving-cost-calculator select,
tr,
.stamp-duty-calculator p,
.stamp-duty-calculator label,
.stamp-duty-calculator option,
.stamp-duty-calculator select,
.mortgage-calculator p,
.mortgage-calculator label,
.mortgage-calculator option,
.mortgage-calculator select,
.rental-yield-calculator p,
.rental-yield-calculator label,
.rental-yield-calculator option,
.rental-yield-calculator select,
.rental-affordability-calculator label,
.rental-affordability-calculator option,
.rental-affordability-calculator.rental-affordability-calculator select,
.rental-affordability-results {
	font-size: 14px;
	line-height: 2;
	font-weight: 400;
	margin-bottom: 10px;
	letter-spacing: 1.25px;
	color: var(--text);
}
.rental-affordability-calculator.rental-affordability-calculator select {
	font-size: 15px;
}

.mortgage-calculator a,
.propertyhive-moving-cost-calculator a,
.stamp-duty-calculator a {
	font-size: 14px;
	line-height: 2;
	font-weight: 400;
	margin-bottom: 10px;
	margin-right: 4px;
	letter-spacing: 1.25px;
}

.mortgage-calculator input[type='submit'],
.propertyhive-moving-cost-calculator [type='submit'],
.stamp-duty-calculator [type='submit'],
.stamp-duty-calculator button,
.mortgage-calculator button,
.propertyhive-moving-cost-calculator button,
.rental-yield-calculator button,
.rental-affordability-calculator button {
	background-color: var(--primary) !important;
	color: var(--white);
	margin-right: 0px;
	padding: 10px 30px !important;
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 500;
	border: 0px;
	width: 100%;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
}

.mortgage-calculator input[type='submit']:hover,
.propertyhive-moving-cost-calculator [type='submit']:hover,
.stamp-duty-calculator [type='submit']:hover,
.stamp-duty-calculator button:hover,
.mortgage-calculator button:hover,
.propertyhive-moving-cost-calculator button:hover,
.rental-yield-calculator button:hover,
.rental-affordability-calculator button:hover {
	background-color: var(--primary-light) !important;
	color: var(--white);
}

.mortgage-calculator h4,
.propertyhive-moving-cost-calculator h2,
.stamp-duty-calculator h4,
.rental-yield-calculator h4,
.rental-affordability-calculator h4 {
	font-weight: bold;
	text-transform: inherit;
	font-size: 18px;
	color: var(--primary);
	margin: 12px 0px;
}

.propertyhive-moving-cost-calculator input,
.propertyhive-moving-cost-calculator select,
.propertyhive-moving-cost-calculator textarea {
	margin: 10px 0px;
	border-style: unset;
	border: 1px solid #dedede;
	padding: 4px;
}

.slide-single-property img {
	max-width: 100%;
	width: 100%;
	height: calc(100vh - 200px) !important;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
}

#valuation_type {
	width: 100%;
}

.tabs {
	width: 100%;
	text-align: center;
}

.tabs__tab--home {
	color: deepskyblue;
}
.tabs__tab {
	display: inline-block;
	width: 140px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: white;
	box-shadow: inset 10px 0;
	transition: box-shadow 200ms ease-out;
	cursor: pointer;
	font-size: 18px;
	font-weight: 300;
	margin-right: 10px;
}
.tabs__tab-inner {
	color: #222;
	transition: color 200ms ease-out;
}

.tabs__tab--active,
.tabs__tab:hover {
	box-shadow: inset 140px 0;
}
.tabs__tab--home {
	color: deepskyblue;
}
.tabs__tab:hover .tabs__tab-inner {
	color: var(--white);
}

.property-features {
	background-color: #efefef;
	padding: 15px 42px 26px 41px;
}

.stamp-duty-calculator input[type='text'],
.mortgage-calculator input,
.rental-yield-calculator input,
.rental-affordability-calculator input,
.rental-affordability-calculator select {
	color: #6a6a6a;
	display: block;
	margin-top: 5px;
	border: 1px solid #c3c3c3;
	border-radius: 3px;
	padding-left: 5px;
	background: var(--white);
	background: -moz-linear-gradient(top, var(--white) 0%, #f7f7f7 100%);
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, var(--white)),
		color-stop(100%, #f7f7f7)
	);
	background: -webkit-linear-gradient(top, var(--white) 0%, #f7f7f7 100%);
	background: -o-linear-gradient(top, var(--white) 0%, #f7f7f7 100%);
	background: -ms-linear-gradient(top, var(--white) 0%, #f7f7f7 100%);
	background: linear-gradient(to bottom, var(--white) 0%, #f7f7f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--white)', endColorstr='#f7f7f7',GradientType=0 );
}
.rental-affordability-calculator [id='results_rent'],
.rental-affordability-calculator [id='results_income'] {
	margin-top: 16px;
}
.rental-affordability-calculator [id='results_rent'] h3:last-child,
.rental-affordability-calculator [id='results_income'] h3:last-child {
	margin-bottom: 20px;
}

/** Single Agent **/

.expert_agent h4 {
	font-weight: 500;
	text-transform: inherit;
	font-size: 20px;
	color: var(--primary);
	margin-top: 10px;
	margin-bottom: -8px;
}
.single_contact_now {
	font-weight: bold;
}
.fa-caret-right {
	font-size: 20px;
	vertical-align: middle;
	padding-left: 6px;
}
.arrange-viewing {
	background-color: var(--primary);
	color: var(--white);
	margin-right: 0px;
	padding: 10px 30px;
	border-radius: 0px;
	font-size: 18px;
	font-weight: 500;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	width: 100%;
}
.arrange-viewing:hover {
	background-color: var(--secondary-dark);
}
.arrange-viewing-single {
	background-color: var(--secondary);
	color: var(--white);
	margin-right: 0px;
	padding: 10px 30px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 500;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	width: 100%;
}
.arrange-viewing-single:hover {
	background-color: var(--secondary-dark);
	color: var(--white);
}
.arrange-viewing-single:active {
	color: var(--primary);
}

.download-brochure {
	background-color: var(--white);
	color: #000;
	margin-right: 0px;
	padding: 10px 25px;
	border-radius: 0px;
	font-size: 15px;
	font-weight: 500;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	border: 1px solid var(--primary);
	width: 100%;
}

.single-property-btn {
	background-color: var(--white);
	color: var(--secondary);
	margin-right: 0px;
	padding: 10px 25px;
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 500;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	border: 1px solid var(--secondary);
	width: 100%;
	letter-spacing: 1.25px;
}

.single-property-btn:hover {
	background-color: var(--secondary-trans);
}

.arrange-viewing-btn {
	background-color: var(--highlight-dark);
	color: white;
	margin-right: 0px;
	padding: 15px 25px;
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 500;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	border: 1px solid var(--highlight);
	width: 100%;
	height: 50px;
	margin-bottom: 14px;
	letter-spacing: unset;
}

.arrange-viewing-btn:hover {
	background-color: var(--highlight);
	color: var(--white);
	border: 1px solid var(--highlight);
}

.download-brochure a {
	color: var(--primary);
	font-weight: 500;
}

.download-brochure:hover a {
	color: white;
}

.download-brochure:hover {
	background-color: var(--primary);
	color: var(--white);
	border: 1px solid var(--primary);
}

.details_actions {
	padding: 0;
	margin: 0;
	text-align: center;
}
.details_actions {
	list-style: none;
	margin-bottom: 20px;
}
.view-shortlist {
	transform: translateY(-10px);
}
.view-shortlist a {
	font-size: 15px;
	letter-spacing: 1.25px;
}

.agent_details {
	padding: 0;
	margin: 0;
}
.agent_details {
	list-style: none;
}
.exp_agent {
	display: flex;
	margin: 20px 0;
}
.agent_photo {
	width: 100px;
}
.agent_photo img {
	width: 100%;
	display: block;
	border-radius: 0;
	height: auto;
}
.agent_container {
	flex: 1;
	overflow: hidden;
	padding-left: 20px;
}
.sv-agent__details {
	padding-left: 1.25rem;
}
.agent_point.ag-name {
	font-size: 15px;
}
.agent_point.ag-office {
	font-size: 14px;
	line-height: 1.25;
	font-weight: 300;
}
.agent_point {
	color: var(--secondary);
	line-height: 1.75;
	list-style: none;
	margin-bottom: 0.25rem;
}
.agent_point.ag-phone {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0;
}
.agent_point.ag-phone a {
	color: var(--primary);
}

/** FAQ dropdown **/
.faq-section {
	max-width: 750px;
	margin: auto;
}
.faq-card-header {
	padding: 6px;
	margin-bottom: 3px;
	margin-top: 3px;
	background-color: var(--medium-grey);
	background: rgba(75, 183, 183, 0.39);
}
.faq-card-header:hover,
.faq-dark,
.faq-answer {
	/* background-color: var(--medium-grey-dark); */
	background: rgba(75, 183, 183, 0.19);
}
.faq-card-header {
	border-bottom: 1px solid var(--white);
	border-radius: 6px;
}
.faq-card-header p {
	margin-top: 6px;
	margin-bottom: 6px;
	color: var(--text);
}
.faq-heading a,
.faq-heading a:hover {
	color: var(--text);
	white-space: normal;
	max-width: 97%;
	font-weight: 600;
	font-size: 16px;
	text-align: left;
	text-decoration: none;
	width: 100%;
}
.faq-answer p {
	padding: 10px 25px;
	margin-bottom: 0px;
	font-size: 16px;
	text-align: left;
}
.faq-arrow {
	margin-top: 4px;
	position: absolute;
	right: 30px;
}

/** The Local Area Tab Content **/

.nav-tabs-local {
	display: table;
	table-layout: fixed;
	width: 100%;
	height: 75px;
	border-bottom: 2px solid var(--primary);
}

.nav-tabs-local > li {
	margin-bottom: 0px;
	list-style: none;
	display: table-cell;
	text-align: center;
	width: 100%;
	height: 100%;
}

.tab-content-local a {
	color: #23305e;
	text-decoration: underline;
	line-height: 30px;
}
.nav-tabs-local > li > a {
	border-right: 1px solid var(--white);
	border-radius: 0px 0px 0 0;
	background: var(--secondary);
	font-size: 16px;
	font-weight: 300;
	color: var(--white);
	padding: 20px;
	width: 100%;
	height: 100%;
	transition: 0.2s;
}

.nav-tabs-local > li.active > a,
.nav-tabs-local > li.active > a:focus {
	color: var(--white);
	cursor: default;
	background-color: var(--primary);
	display: block;
}

.nav-tabs-local li a:hover {
	background-color: var(--primary);
}

/** The Local Area Tab Content End **/

/** Property Tab **/

.nav-tabs > li {
	margin-bottom: 0px;
}
.latest-details-tabs.prop-details-tabs {
	top: auto;
	bottom: 0px;
	position: absolute;
	height: 50px;
	overflow: hidden;
}
.prop-details-tabs {
	background-color: rgba(35, 40, 45, 0.7);
}
.latest-details-tabs {
	display: block;
	border-bottom: 0;
}
.latest-details-tabs .nav-item:hover {
	background-color: rgba(35, 40, 45, 1);
}

.prop-details-tabs .nav-item .nav-link.active {
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	background-color: rgba(35, 40, 45, 0.7);
}
.prop-details-tabs .nav-item .nav-link {
	height: 50px;
	padding: 0 15px;
	color: var(--white);
	font-size: 15px;
	border: 0;
	border-right: 1px solid var(--white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 0px 0px 0 0;
}

.prop-details-tabs .nav-item .nav-link i {
	font-size: 18px;
	margin: 0;
	padding: 0;
}
.prop-details-tabs .nav-item .nav-link span {
	margin-left: 6px;
}
.nav-tabs > li > a {
	margin-right: 0px;
}
/** Tab End **/

/** Single Property Close **/

/** Tab **/

.form-control-myclocalarea {
	box-shadow: none;
	font-weight: 300;
	padding: 6px 20px;
	height: auto;
	font-size: 22px;
	border-radius: 0;
	background: var(--primary);
	color: var(--white);
	line-height: 1.428571429;
	vertical-align: middle;
	width: 100%;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#myLocalArea {
	display: none;
}

#tab-block img {
	display: block;
	height: auto;
	max-width: 100%;
}
.flexslider {
	margin: 0 0 0px;
}
.flex-direction-nav a {
	background: rgba(0, 0, 0, 0.5);
	color: rgba(255, 255, 255, 0.8) !important;
}

.flexslider .flex-direction-nav a.flex-prev,
.flexslider .flex-direction-nav a.flex-next {
	display: block;
	opacity: 1;
}
.flexslider .flex-direction-nav a.flex-prev {
	left: 50px;
	text-align: center;
}
.flexslider .flex-direction-nav a.flex-next {
	right: 50px;
	text-align: center;
}

#property_map_canvas {
	height: calc(100vh - 200px) !important;
}

/* Overlay Popup
================================================== */

.overlay_menu {
	height: 0%;
	width: 100%;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	background-color: var(--primary);
	overflow-y: auto;
	transition: 0.5s;
}

.overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.overlay_menu a {
	padding: 0px;
	text-decoration: none;
	font-size: 36px;
	color: var(--white);
	display: block;
	transition: 0.3s;
}

.overlay_menu a:hover,
.overlay_menu a:focus {
	color: #f1f1f1;
}

.overlay_menu .closebtn {
	position: absolute;
	top: 0px;
	right: 10px;
	font-size: 60px;
}

/*** Fancy Box Arrange Viewing **/

.fancybox-content h2 {
	font-weight: 300;
	text-align: center;
	text-transform: uppercase;
	font-size: 30px;
}
.fancybox-content p {
	font-size: 14px;
	text-align: center;
	font-weight: 300;
}
.fancybox-content .control {
	margin-bottom: 16px;
}
.fancybox-content label {
	font-size: 13px;
	font-weight: 300;
}
.fancybox-content form input:not([type='submit']) {
	height: 50px;
	width: 100%;
	color: #333;
	border: none;
	border-bottom: 1px solid #ccc;
	font-weight: 400;
	padding: 0;
}

.fancybox-content textarea {
	width: 100%;
	padding: 5px 0;
	height: 62px;
	border: none;
	border-bottom: 1px solid #ccc;
	font-weight: 300;
	resize: none;
}
.fancybox-content form input[type='submit'] {
	width: 100%;
	height: 48px;
	font-size: 17px;
	border: var(--secondary) 1px solid;
	background: var(--secondary);
	color: var(--white);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.fancybox-close-small {
	background: #333;
	color: var(--white);
}
.alert-success {
	color: var(--white);
	background-color: #333333;
	border-color: #333333;
	text-align: center;
}
.compensate-for-scrollbar {
	margin-right: 0 !important;
}
/*** Fancy Box Arrange Viewing CLOSE **/

/* Home Search Popup
================================================== */

form.property-search-form-default div.control-department label {
	margin: 0 15px 20px;
	margin: 0 15px 20px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 300;
	color: var(--white);
	font-size: 18px;
	letter-spacing: 0.2em;
}
form.property-search-form-122 .control-department {
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 20px;
}
form.property-search-form-122 .control-department label {
	margin-right: 20px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 300;
	color: var(--white);
	letter-spacing: 0.2em;
}
form.property-search-form-122 div.control {
	width: 50%;
	float: left;
	margin-bottom: 20px;
}
form.property-search-form-122 .control-exclude {
	width: 100% !important;
}
form.property-search-form-122 .control label {
	margin: 0 1px 3px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 300;
	color: var(--white);
	letter-spacing: 0.2em;
}
form.property-search-form-122 input[type='submit']:hover {
	background: var(--highlight);
}
form.property-search-form-122 input[type='submit'] {
	color: var(--white);
	border: 1px solid var(--white);
	background: var(--highlight-dark);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	cursor: pointer;
	margin: auto;
	width: 97%;
	border: 0;
	font-size: 18px;
	padding: 12px 60px;
	line-height: 24px;
	text-transform: uppercase;
}
form.property-search-form-122 .control-search {
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 20px;
}

/* Common styles
================================================== */
.bg-light-color {
	background: var(--medium-grey);
}

.estate-block p {
	font-size: 22px;
	line-height: 32px;
	font-weight: 300;
}

/* Angle */

.portfolio.angle:before {
	background: var(--medium-grey);
}

.portfolio.angle {
	padding-bottom: 120px;
}

.clients.angle {
	padding: 120px 0;
}

/* Parallax */

.parallax {
	background-attachment: fixed !important;
	padding: 73px 0;
	background-size: cover !important;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	position: relative;
}

.parallax h2,
.parallax h3 {
	color: var(--white);
}
.parallax .btn {
	color: var(--white);
}

.parallax-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

/* Hack to define CSS styles applied only to Safari browsers */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
	_::-webkit-full-page-media,
	_:future,
	:root,
	.parallax {
		/* Safari has a bug for background-attachment: fixed; */
		/* https://caniuse.com/background-attachment */
		background-attachment: unset !important;
	}
}

.parallax h3 {
	margin-bottom: 30px;
}

.parallax2 {
}
.parallax3 {
}
.parallax .btn.solid {
	margin-left: 10px;
}

/* Deafult title */

.title-icon {
	font-size: 32px;
	margin-right: 15px;
	margin-top: 9px;
	color: #959595;
}

.title-icon.classic {
	margin-top: 0;
}

.title {
	position: relative;
	margin: 0;
	line-height: 32px;
	border-left: 2px solid #e7e7e7;
	display: inline-block;
	padding-left: 15px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.title.classic {
	line-height: 40px;
	height: 34px;
}

.title-desc {
	font-family: 'Lato', serif;
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	text-transform: capitalize;
	display: block;
	color: #6a6a6a;
}

/* Title style 2 */

.title2 {
	position: relative;
	margin-top: 30px;
}

.title2 .title-desc {
	padding-top: 30px;
}

/* Title border */

.title-border {
	line-height: normal;
	margin-top: 0;
}

.widget-title {
	margin-bottom: 25px;
	font-size: 18px;
}
.textwidget p {
	text-align: left;
}

.post-title {
	font-size: 24px;
	line-height: normal;
}

.post-title a {
	color: #323232;
}

.long-desc {
	font-size: 16px;
}

.head_office p,
.head_office a {
	font-size: 12px;
	color: #dcd9cf;
}

/* Icon pentagon */

.icon-pentagon {
	display: inline-block;
	height: 24px;
	width: 40px;
	position: relative;
	color: var(--white);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.icon-pentagon:hover {
	color: rgba(0, 0, 0, 0.5);
}

.icon-pentagon i {
	font-size: 20px;
	line-height: 24px;
}

.service-icon {
	height: 46px;
	width: 90px;
	margin-bottom: 30px;
}
.service-icon:before {
	border-left: 45px solid rgba(0, 0, 0, 0);
	border-right: 45px solid rgba(0, 0, 0, 0);
	top: -30px;
}
.service-icon:after {
	border-left: 45px solid rgba(0, 0, 0, 0);
	border-right: 45px solid rgba(0, 0, 0, 0);
	bottom: -30px;
}

.service-icon i {
	font-size: 36px;
	line-height: 46px;
}

/* Carousel controller */

.carousel-control {
	width: auto;
}
.ts-carousel-controller {
	text-align: center;
	padding-top: 50px;
	z-index: 1;
	position: relative;
}

.ts-carousel-controller .left,
.ts-carousel-controller .right,
.owl-controls .owl-prev,
.owl-controls .owl-next {
	cursor: pointer;
	background: #f6f6f6;
	width: 38px;
	height: 38px;
	line-height: 38px;
	color: #989898;
	opacity: 1;
	top: auto;
	text-shadow: none;
	display: inline-block;
	text-align: center;
	border-radius: 100%;
}
.owl-controls .owl-next {
	margin-left: 6px;
}

.ts-carousel-controller .left:hover,
.ts-carousel-controller .right:hover,
.owl-controls .owl-prev:hover,
.owl-controls .owl-next:hover {
	color: var(--white);
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	display: inline-block;
}

/* Input form */

.form-control {
	box-shadow: none;
	padding: 6px 20px;
	height: 50px;
	font-size: 22px;
	border-radius: 0;
	background: var(--white);
}

.form-control:focus {
	box-shadow: none;
}

/*-- Flex slider --*/

.flexslider {
	border: 0px;
}

.portfolio-slider .flexslider,
.ts-flex-slider .flexslider {
	border: 0;
	box-shadow: none;
}

.portfolio-slider .flex-direction-nav a,
.ts-flex-slider .flex-direction-nav a {
	opacity: 0;
	background: #000;
	color: var(--white) !important;
	text-align: center;
	text-shadow: none;
	line-height: 40px;
}

.portfolio-slider .flex-direction-nav a:before {
	font-size: 32px;
}

.portfolio-slider .flex-direction-nav a:hover,
.ts-flex-slider .flex-direction-nav a:hover {
	color: var(--white);
	opacity: 1;
}

.flexportfolio.flexslider .slides img {
	height: auto;
}

/*-- Pagination --*/

.pagination li a {
	border-radius: 0 !important;
	margin-right: 8px;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > li > a:hover {
	color: var(--white);
	border: 1px solid transparent;
}

/* Header area
================================================== */

/*-- Header style 1 --*/
.header-solid ul.navbar-nav > li > a {
	color: var(--white);
}

.header-home-shadow {
	box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.15);
}
.navbar-fixed-top,
.navbar-fixed-bottom {
}

/*-- Logo --*/

#logo {
	width: 250px;
}

.navbar-header {
	z-index: 9999;
}

.navbar-brand.navbar-bg {
	position: absolute;
	left: 0;
	padding: 3px 15px 10px;
	width: 20%;
	height: 62px;
	line-height: 62px;
}

.navbar-brand img {
	float: right;
	padding: 0px;
}
.navbar-search {
	display: none;
}
.navbar-search {
	color: var(--white);
	font-size: 25px;
	position: relative;
	float: right;
	padding: 0px 8px;
	margin-top: 13px;
	margin-right: 12px;
	margin-bottom: 10px;
	cursor: pointer;
}

/* Main navigation */

.navbar {
	border-radius: 0;
	border: 0;
	margin-bottom: 0;
}

.navbar-right {
	margin-top: 16px;
}

.navbar-right .dropdown-menu {
	right: auto;
	left: 0;
}

.navbar-toggle {
	border-radius: 0;
	margin-right: 5px;
}

.navbar-toggle .icon-bar {
	background: var(--white);
}

ul.navbar-nav > li > a {
	text-transform: uppercase;
	font-size: 16px;
	color: var(--white);
	padding-top: 29px;
	padding-bottom: 14px;
	line-height: 20px;
}

ul.navbar-nav > li:last-child a {
	padding-right: 0;
}

ul.navbar-nav > li.active > a,
ul.navbar-nav > li > a:hover {
}

ul.navbar-nav > li > a i {
	font-weight: 700;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
	background: transparent;
	border: 0;
}

/* Dropdown */

.nav .caret {
	border-top-color: var(--white) !important;
	border-bottom-color: var(--white) !important;
}

.dropdown-menu {
	border: 0;
	border-radius: 0px;
	width: 100%;
	box-shadow: none;
	background: none;
	min-width: 180px;
}

.dropdown-menu > ul {
	list-style: none;
	padding: 0 15px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	margin-top: -5px;
	background: var(--white);
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 0.09px rgba(0, 0, 0, 0.15);
}

.dropdown-menu > ul > li > a {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	padding: 15px;
	color: #333;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-menu > ul > li.active > a {
}

.dropdown-menu > ul > li:last-child > a {
	border-bottom: 0;
}

.dropdown-menu > ul > li > a:hover,
.dropdown-menu > ul > li > a:focus {
	background: none;
}

.nav > li.megamenu {
	position: static;
}

.nav > li.megamenu .dropdown-menu {
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 20px !important;
	z-index: 1000;
	border-radius: 0;
	top: auto;
}

.nav > li.megamenu .dropdown-menu ul {
	margin-top: 4px;
	padding: 20px;
}

/* Header Style
================================================== */

.header2 {
	padding: 8px 0;
}

.header2 .navbar-brand {
	background: none;
}

.navbar-brand {
	background-image: url(../images/logo.png);
	height: 100%;
	width: 260px;
	background-repeat: no-repeat;
}

body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
	margin-right: 0px;
}
/**.modal{overflow-y: hidden;}**/
/*-- Header bgnone fixed --*/

.header-bgnone {
	/* padding: 5px 0;*/
	width: auto;
	box-shadow: 0px 1px 7px 0 rgba(0, 0, 0, 0.2);
}

.header-bgnone ul.navbar-nav > li:hover > a,
.header-bgnone ul.navbar-nav > li.active > a {
	color: #000;
}

/* Slideshow
================================================== */

/*-- Main slide --*/

.overlay {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url(../images/overaly.png);
}

#main-slide {
	height: 100vh;
}

#main-slide .item img {
	width: 100%;
	-webkit-backface-visibility: hidden;
}

#main-slide .item {
	-webkit-backface-visibility: hidden;
}

#main-slide .item .slider-content {
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	transition: opacity 500ms;
}
#main-slide .item.active .slider-content {
	opacity: 1;
	-webkit-transition: opacity 100ms;
	-moz-transition: opacity 100ms;
	-o-transition: opacity 100ms;
	transition: opacity 100ms;
}

#main-slide .slider-content {
	top: calc(50% - 155px);
	left: 0;
	padding: 0;
	text-align: center;
	position: absolute;
	width: 100%;
	color: var(--white);
}

.slider-content-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.slider-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#main-slide .carousel-indicators {
	bottom: 70px;
}

#main-slide .slides img {
	object-fit: cover;
	height: 100vh;
	min-height: 800px;
}

.carousel-indicators li {
	width: 30px !important;
	height: 10px !important;
	margin: 1px !important;
	border-radius: 0 !important;
	background: rgba(255, 255, 255, 0.5);
}

#main-slide .carousel-indicators li.active,
#main-slide .carousel-indicators li:hover {
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#main-slide .carousel-control.left,
#main-slide .carousel-control.right {
	opacity: 0;
	filter: alpha(opacity=0);
	background-image: none;
	background-repeat: no-repeat;
	text-shadow: none;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

#main-slide:hover .carousel-control.left,
#main-slide:hover .carousel-control.right {
	opacity: 1;
	filter: alpha(opacity=100);
}

#main-slide:hover .carousel-control.left {
	left: 20px;
}

#main-slide:hover .carousel-control.right {
	right: 20px;
}

#main-slide .carousel-control.left span {
	padding: 15px;
}

#main-slide .carousel-control.right span {
	padding: 15px;
}

#main-slide .carousel-control .fa-angle-left,
#main-slide .carousel-control .fa-angle-right {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-block;
}

#main-slide .carousel-control .fa-angle-left {
	left: 0;
}

#main-slide .carousel-control .fa-angle-right {
	right: 0;
}

#main-slide .carousel-control i {
	background: none;

	color: var(--white);
	line-height: 56px;
	width: 56px;
	height: 56px;
	border: 1px solid var(--white);
	border-radius: 100%;
	font-size: 36px;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

#main-slide .carousel-control i:hover {
	border: 1px solid rgba(0, 0, 0, 0.3);
}

#main-slide .slider-content h2 {
	font-size: 58px;
	text-transform: capitalize;
	color: var(--white);
	font-weight: 600;
}

#main-slide .slider-content h3 {
	font-size: 32px;
	margin-top: 0;
	color: var(--secondary);
	text-transform: capitalize;
	font-weight: 700;
}

.btn-home-bk {
	background-color: #000 !important;
	color: var(--white) !important;
}

.btn-home-bk:hover {
	background: transparent !important;
	color: #000 !important;
}
.btn--skew {
	-webkit-transform: skew(-20deg);
	transform: skew(-20deg);
}
.btn--skew > span {
	-webkit-transform: skew(20deg);
	transform: skew(20deg);
	display: inline-block;
}
.slider.btn {
	padding: 10px 35px;
	margin-top: 40px;
	font-size: 24px;
	text-transform: uppercase;
	color: var(--white);
	font-weight: 600;
}

.underline-span {
	background-image: linear-gradient(120deg, #f05222 0%, #f05222 100%);
	background-repeat: no-repeat;
	background-size: 100% 0.5em;
	background-position: 0 116%;
	transition: background-size 0.25s ease-in;
}
.underline-span:hover {
	background-size: 100% 88%;
}

/* .slider.btn:after {
	 content: ' ';
    display: block;
    border: 4px solid #F05222;
    margin-top: -10px;
    width: 96%;
}

*/

.slider.btn.solid {
	margin-left: 15px;
}

.slider-content-left {
	position: relative;
	margin: 0 0 0 40px;
}

.slider-content-right {
	position: relative;
}

/** Homepage Search Box **/
#search_keyword_holder {
	margin: 20px auto 0;
	background: transparent;
	width: 100%;
	max-width: 700px;
	height: 64px;
	box-sizing: border-box;
	position: relative;
	border-radius: 0px;
}

.search_type_selected {
	border: 0px;
	font: inherit;
	display: block;
	color: var(--white);
	font-size: 22px;
	text-align: left;
	padding: 16px 11px;
	text-decoration: none;
	transition: 0.3s ease;
	max-height: 62px;
	transition: 0.3s;
	cursor: pointer;
	border-top-left-radius: var(--radius);
	border-bottom-left-radius: var(--radius);
	background: var(--primary);
	outline: none;
	margin-bottom: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
}

.search_type_selected:hover {
	background: var(--primary-light);
}

#search_submit:hover {
	background-color: var(--primary-light);
}

#search_type_selector:after {
	font-family: 'Font Awesome 6 Pro';
	content: '\f078';
	font-size: 18px;
	margin-top: -40px;
	float: right;
	color: var(--white);
	pointer-events: none;
	margin-right: 6px;
}
#search_type_selector {
	width: 120px;
}

#search_type_selector select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#search_type_selector select option {
	display: block;
	color: var(--white);
	background: var(--primary);
	font-size: 22px;
	text-align: left;
	padding: 18px 12px;
	text-decoration: none;
	transition: 0.3s ease;
	max-height: 62px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

#search_keyword_value {
	font-weight: 300;
	padding: 17px;
	margin: 0;
	width: 517px;
	width: calc(100% - 178px);
	width: -moz-calc(100% - 178px);
	width: -webkit-calc(100% - 178px);
	width: -o-calc(100% - 178px);
	border: none;
	background: var(--white);
	font-size: 20px;
	color: var(--primary);
	outline: none;
	position: absolute;
	left: 119px;
	top: 0;
	box-sizing: border-box;
	/* border-left: 1px solid var(--white); */
}

#search_keyword_value::-webkit-input-placeholder {
	color: #bcaeae;
} /* WebKit, Blink, Edge */
#search_keyword_value:-moz-placeholder {
	color: #bcaeae;
} /* Mozilla Firefox 4 to 18 */
#search_keyword_value::-moz-placeholder {
	color: #bcaeae;
} /* Mozilla Firefox 19+ */
#search_keyword_value:-ms-input-placeholder {
	color: #bcaeae;
} /* Internet Explorer 10-11 */
#search_keyword_value::-ms-input-placeholder {
	color: #bcaeae;
}
#search_submit {
	position: absolute;
	border: none;
	width: 62px;
	height: 62px;
	right: 0;
	top: 0;
	padding: 0;
	text-indent: -99999px;
	cursor: pointer;
	background: var(--primary)
		url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAQzAAAEMwBkPhvlwAAACF0RVh0U29mdHdhcmUATWFjcm9tZWRpYSBGaXJld29ya3MgNC4w6iYndQAAAjJJREFUeJzVl82LTWEYwH9XZhozxuelSWlIY0thw0qNlDQ2Fj6SP4FsLMQSO7uxUGgmY5SklLCxkViQku5NTSyUhjCa0jB3+lncU/PO23XvOee6M81TTz295/n4nfd9n+eeW1BZSFmyoNUXC0A3MADcBT4Av4Fx4DlwBtjUFIFaTwfUZ9aXcfWCuqJBrppa7+HFBoVjeaH2/S+Ay1HysnpO3aH2qFvV4+qDyO+NWmwW4KA6EyQdVLvrJDmsfg387zQD0KW+DJJdTZmoX50K4vblBTgUJCmrnRne5lIQO5Q2Lm7DE4E9BPzK0FDDwI/E3gP0pAmKAXYG9uMMxQFKwLvE3gyszwMQBn3OCCAwmdgFoDMPwGRgd2UEAGgP7EoegLHA3pWxeJHZsTzB7H3IBHAvsI9lBOgHtiT2K+BTqqioLXrVL0krTSdDJk07rVVLQRueyjsHUM8HiSbU/Q2SrFYfRvNjZTMAa5w7Daes/jBti/x61CPq28B3Rt2dtrhKQWt+kvUC94Htwdo3oAz8BDqAjUBfFFcBngDvgbPAn6x3INSiOqpWbCwlda/6NFi7pbblOYJYD6jX1bGo6Hf1kXra2TO/EvmMqh15jqCWbADWUZ1w01R7/SNzB04XcA04GqyNACf512DKcmFSaps6Eu3EiNqe9wjy6DKrHyYNj6NVAKhLrV7EUG6qq+YLgGTbb0cQw/MJQLLtw0nx10aDaj4AUJerN+Limq0NWyKL4r9hS+UvrN4GmDdXC3sAAAAASUVORK5CYII=)
		no-repeat center center;
	transition: 0.3s ease;
	outline: none;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	/* border-left: 1px solid var(--white); */
}

/** Homepage Search Box End**/

/*-- Animation */
.carousel .item.active .animated1 {
}

.carousel .item.active .animated2,
.flex-active-slide .animated2 {
	-webkit-animation: flipInX 2s ease-in 800ms both;
	animation: flipInX 2s ease-in 800ms both;
}

.carousel .item.active .animated3,
.flex-active-slide .animated3 {
	-webkit-animation: flipInX 2s ease-in 800ms both;
	animation: flipInX 2s ease-in 800ms both;
}

.carousel .item.active .animated4,
.flex-active-slide .animated4 {
	-webkit-animation: flipInX 2s ease-in 800ms both;
	animation: flipInX 2s ease-in 800ms both;
}

.carousel .item.active .animated5,
.flex-active-slide .animated5 {
	-webkit-animation: bounceInLeft 1s ease-in-out 100ms both;
	animation: bounceInLeft 1s ease-in-out 100ms both;
}

.carousel .item.active .animated6,
.flex-active-slide .animated6 {
	-webkit-animation: bounceIn 1s ease-in 500ms both;
	animation: bounceIn 1s ease-in 500ms both;
}

.carousel .item.active .animated7,
.flex-active-slide .animated7 {
	-webkit-animation: bounceIn 1s ease-in 500ms both;
	animation: bounceIn 1s ease-in 500ms both;
}

.carousel .item.active .animated8,
.flex-active-slide .animated8 {
	-webkit-animation: bounceInDown 1s ease-in 800ms both;
	animation: bounceInDown 1s ease-in 800ms both;
}

/* Flex slider */

.home_video {
	width: 100%;
	height: 800px;
	object-fit: cover;
}
.ts-flex-slider {
	position: relative;
}

.ts-flex-slider .flexSlideshow {
	width: 100%;
	overflow: hidden;
	height: 100vh;
}

.overlay2 {
	position: relative;
}

.overlay2 img {
	width: 100%;
}

.overlay2::before {
	position: absolute;
	content: '';
	z-index: 3;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.ts-flex-slider .flexslider .slides {
	z-index: 0;
}

.ts-flex-slider .slider-content {
	z-index: 3;
}

.ts-flex-slider .flex-direction-nav a {
	width: 55px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 32px;
}

.ts-flex-slider .flex-direction-nav a.flex-next {
	border-radius: 3px;
}

.ts-flex-slider .flex-direction-nav a.flex-prev {
	border-radius: 3px;
}

/* Featured box
================================================== */

.owl-carousel-featured .owl-item > div {
	cursor: pointer;
	transition: margin 0.4s ease;
	opacity: 0.4;
}
.owl-carousel-featured .owl-item.center > div {
	cursor: auto;
	margin: 0;
	opacity: 1;
}
.owl-carousel .owl-item img {
	height: 400px;
	object-fit: cover;
}

.fa-chevron-right {
	width: 50px;
	height: 50px;
	line-height: 53px !important;
	text-align: center;
	font-size: 30px;
	color: #47354f;
	background: var(--highlight);
	opacity: 0.8;
}
.fa-chevron-left {
	width: 50px;
	height: 50px;
	line-height: 53px !important;
	text-align: center;
	font-size: 30px;
	color: #47354f;
	background: var(--highlight);
	opacity: 0.8;
}

.owl-nav button {
	position: absolute;
	top: 50%;
	background-color: #000;
	color: var(--white);
	margin: 0;
	transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
	left: 0;
}
.owl-nav button.owl-next {
	right: 0;
}

.feature-icon {
	font-size: 28px;
	margin-top: 5px;
}

.feature-content {
	padding-right: 0px;
	padding-left: 0px;
}

.feature-content h3 {
	margin-top: 0;
	font-size: 18px;
	text-transform: capitalize;
}

/* Feature center */

.feature-center-content .feature-center-icon {
	font-size: 72px;
	margin-bottom: 5px;
	display: inline-block;
}

.feature-center-content h3 {
	font-size: 18px;
}
.featured_button {
	padding-bottom: 43px;
}

.img-block-head p {
	font-size: 22px;
	line-height: 32px;
	font-weight: 300;
}
/* Image Block
================================================== */

.image-block {
	/* background: #f4f4f4;*/
}

.img-block-right {
	padding-right: 70px;
	padding-top: 105px;
}

.img-block-head h2 {
	font-size: 18px;
	line-height: normal;
	margin: 5px 0 0 0;
}

.img-block-head h3 {
	font-size: 45px;
	line-height: 32px;
	font-weight: 600;
	margin-bottom: 30px;
}

.image-block-content {
	text-align: center;
	margin-bottom: 30px;
}

.image-block-content .feature-icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	color: var(--white);
	border-radius: 100%;
	display: inline-block;
	text-align: center;
}

.image-block-content .feature-content {
	padding-top: 8px;
	text-align: center;
}

.image-block-content .feature-content h3 {
	margin-bottom: 0;
}

/* About us
================================================== */

/* Landing Tab */

.landing-tab {
	position: relative;
	z-index: 10;
}

.landing-tab .nav-tabs {
	border-right: 1px solid #e7e7e7;
	padding: 25px 0;
	border-bottom: 0;
}

.landing-tab .nav-tabs > li.active {
	margin-right: -3px;
}

.landing-tab .nav-tabs > li.active .tab-info h3 {
	color: #323232;
}

.landing-tab .nav-tabs > li {
	padding: 15px 0;
}

.landing-tab .nav-tabs > li > a {
	background: none !important;
	border-radius: 0;
	padding: 0 15px 0;
	color: #6a6a6a !important;
	position: relative;
	border: 0 !important;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.landing-tab .nav-tabs > li > a:hover {
	background: none;
}

.landing-tab .tab-icon {
	font-size: 28px;
	display: inline-block;
}

.landing-tab .tab-info {
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	left: 70px;
	top: 50%;
	margin-top: -12px;
}

.landing-tab .tab-info h3 {
	font-size: 18px;
	line-height: normal;
	margin: 0;
	color: #6a6a6a;
}

.landing-tab .tab-pane h3 {
	margin-top: 0;
	line-height: normal;
}

.landing-tab .tab-pane h3.text-center {
	margin-bottom: 25px;
}

.landing-tab .tab-pane {
	padding-left: 40px;
	text-align: justify;
}

.landing-tab .tab-pane i.big {
	font-size: 130px;
	margin-bottom: 12px;
	display: block;
}

/* Featured Tab */

.featured-tab {
	padding: 30px 0;
}

.featured-tab .nav-tabs {
	border-bottom: 0;
}

.featured-tab .nav-tabs > li.active > a {
	color: var(--white);
}

.featured-tab .nav-tabs > li.active > a:after {
}

.featured-tab .nav-tabs > li > a {
	background: #f2f2f2;
	border-radius: 0;
	padding: 0 15px 0;
	color: #323232;
	position: relative;
	border: 0 !important;
	line-height: 52px;
	height: 52px;
	margin-bottom: 3px;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.featured-tab .nav-tabs > li > a:after {
	left: 100%;
	border: transparent solid;
	content: ' ';
	position: absolute;
	border-width: 25px;
	top: 50%;
	border-left-color: #f2f2f2;
	margin-top: -25px;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.featured-tab .nav-tabs > li > a:hover {
	color: var(--white);
}
.featured-tab .nav-tabs > li > a:hover:after {
}

.featured-tab .nav-tabs > li.active > a,
.featured-tab .nav-tabs > li.active .tab-info h3,
.featured-tab .nav-tabs > li > a:hover .tab-info h3 {
	color: var(--white) !important;
}

.featured-tab .tab-icon {
	font-size: 28px;
	display: inline-block;
}

.featured-tab .tab-info {
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	left: 70px;
	top: 50%;
	margin-top: -12px;
}

.featured-tab .tab-info h3 {
	font-size: 16px;
	line-height: normal;
	margin: 0;
}

.featured-tab .tab-pane img.pull-left {
	margin: 0 30px 10px 0;
}

.featured-tab .tab-pane img.pull-right {
	margin: 0 0 0 15px;
}
.featured-tab .tab-pane h3 {
	margin-top: 0;
	line-height: normal;
	text-align: left;
	font-size: 20px;
}

.featured-tab .tab-pane h3.text-center {
	margin-bottom: 25px;
}

.featured-tab .tab-pane {
	padding-left: 25px;
	text-align: justify;
}

.featured-tab .tab-pane i.big {
	font-size: 230px;
}

/* Portfolio
================================================== */

#main-container.portfolio {
	background: none;
}

/*-- Isotope Portfolio start --*/

#isotope .isotope-item {
	padding: 0;
}

.isotope-nav {
	margin: -80px auto 80px;
	display: inline-block;
	float: right;
	position: relative;
	z-index: 100;
}

.isotope-nav ul {
	list-style: none;
	margin: 0;
}

.isotope-nav ul li {
	float: left;
	margin-right: 10px;
}

.isotope-nav ul li a {
	color: #323232;
	padding: 5px 15px 8px;
	border: 1px solid #ddd;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.isotope-nav ul a.active,
.isotope-nav ul a:hover {
	color: var(--white);
	position: relative;
	border: 1px solid transparent;
}

.isotope-nav ul a.active:after,
.isotope-nav ul a:hover:after {
	position: absolute;
	content: ' ';
	width: auto;
	height: auto;
	bottom: -13px;
	margin-left: -8px;
	left: 50%;
	border-width: 7px;
	border-style: solid;
}

#isotope .isotope-item .grid {
	position: relative;
	margin-bottom: -8px;
}

.grid figure {
	position: relative;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	background: #3085a3;
	text-align: center;
	width: 100%;
	height: 100%;
}
.grid figure figcaption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.grid figure figcaption {
	padding: 2em;
	color: var(--white);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
figure.effect-oscar {
	background: #000;
	background: rgba(0, 0, 0, 0.8);
}

figure.effect-oscar img {
	display: block;
	width: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-oscar figcaption {
	padding: 2.5em;
	background-color: rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.35s;
	transition: background-color 0.35s;
}

figure.effect-oscar figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	content: '';
}

figure.effect-oscar h3 {
	font-size: 18px;
	color: var(--white);
	opacity: 0;
	margin: 25% 0 10px 0;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

figure.effect-oscar a {
	color: var(--white);
	font-size: 18px;
	margin: 20px 5px 0;
	display: inline-block;
	z-index: 1;
	position: relative;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

figure.effect-oscar a.link i {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

figure.effect-oscar figcaption::before,
figure.effect-oscar a {
	opacity: 0;
	-webkit-transition: all 0.35s, -webkit-transform 0.35s;
	transition: all 0.35s, transform 0.35s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

figure.effect-oscar:hover h3 {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover h3,
figure.effect-oscar:hover a {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-oscar:hover figcaption {
	background-color: rgba(0, 0, 0, 0.5);
}

figure.effect-oscar:hover img {
	opacity: 0.4;
}

/* Portfolio box */
.portfolio-box .isotope-nav {
	margin: 0 auto 60px;
	float: none;
}

/* Portfolio details */

.portfolio-static-item {
	padding-bottom: 20px;
}

.portfolio-static-item figure.effect-oscar a {
	margin-top: 70px;
}

.portfolio-static-desc h3 {
	font-size: 16px;
	margin: 5px 0 -5px 0;
	line-height: normal;
}

.portfolio-static-desc a {
	color: #6a6a6a;
}

/* Jobs */

.jobs img {
	width: 100%;
}

/* Team
================================================== */

.img-hexagon span {
	position: absolute;
	display: block;
	float: left;
}

.img-top {
	top: 0;
	border-top: 0px solid transparent;
	border-bottom: 75px solid transparent;
}

.img-bottom {
	bottom: 0px;
	border-bottom: 0px solid transparent;
	border-top: 75px solid transparent;
}

.img-hexagon {
	width: 225px;
	height: 225px;
	position: relative;
	display: inline-block;
}
.img-hexagon img {
	border-radius: 50%;
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	/* filter: grayscale(1); */
}

.team-content h3 {
	margin-bottom: 0;
	font-size: 17px;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 10px;
}

.team-content h3 {
	margin-bottom: 0;
	font-size: 17px;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 10px;
}

.team-content p {
	color: #959595;
	font-size: 17px;
	line-height: 22px;
	min-height: 45px;
}
.pb6 {
	padding-bottom: 40px;
	clear: both;
}

.all-team:hover {
	color: var(--primary);
	border: 2px solid var(--secondary);
	background-color: var(--secondary-trans);
}
.all-team {
	background-color: var(--white);
	color: var(--primary);
	margin-right: 0px;
	margin-top: 12px;
	padding: 10px 30px;
	border-radius: 0px;
	font-size: 18px;
	font-weight: 400;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	border: 1px solid var(--primary);
}

.ad-modal {
	width: unset;
	max-width: 800px;
}

.ad-btn-bio {
	margin-bottom: 25px;
	padding: 12px 12px;
	background: var(--secondary);
	color: white;
	transition: 0.2s;
}

.ad-btn-bio:hover {
	background: var(--secondary-dark);
	color: white;
}

.ad-bio-contact {
	color: var(--primary);
}

.ad-team-modal h2,
.ad-team-modal h3,
.ad-team-modal h4,
.ad-team-modal h5 {
	margin: 40px 0px;
	font-weight: 400;
}

.ad-modal-title {
	padding-left: 15px;
	margin: 0;
}

.ad-modal-image,
.ad-modal-info {
	padding: 0;
}

.ad-modal-info {
	text-align: right;
}

.ad-modal-button {
	font-size: 34px;
	margin-top: -30px !important;
}

.ad-modal-footer {
	text-align: center;
}

.ad-modal-close {
	background-color: var(--primary);
	width: 35%;
	padding: 12px;
	color: white;
	font-size: 16px;
}

.ad-modal-close:hover {
	background-color: var(--primary-light);
	color: white;
}

.ad-modal-image img {
	width: 95%;
	height: auto;
	margin-bottom: 20px;
}

.ad-modal-top {
	height: 300px;
	width: 100%;
}

.ad-modal-para p {
	text-align: justify;
}

/* Team Close*/

/** Overlap Menu **/
.popup-home-menu {
	margin-top: 92px;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}
.button_container {
	cursor: pointer;
	z-index: 100;
	transition: opacity 0.25s ease;
	position: relative;
}
.button_container:hover {
	opacity: 0.7;
}
.button_container.active .top {
	-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: var(--white);
}
.button_container.active .middle {
	opacity: 0;
	background: var(--white);
}
.button_container.active .bottom {
	-webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: var(--white);
}
.button_container span {
	background: var(--primary);
	border: none;
	height: 5px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.35s ease;
	cursor: pointer;
}
.button_container span:nth-of-type(2) {
	top: 11px;
}
.button_container span:nth-of-type(3) {
	top: 22px;
}

.overlay {
	position: fixed;
	background: var(--primary);
	top: 0;
	left: 0;
	max-width: 500px;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s, visibility 0.35s, height 0.35s;
	overflow: hidden;
	overflow-y: auto;
	margin-left: auto;
}
.overlay.open {
	opacity: 1;
	visibility: visible;
	height: 100%;
	max-width: 500px;
	margin-left: auto;
}
.overlay.open li {
	-webkit-animation: fadeInRight 0.5s ease forwards;
	animation: fadeInRight 0.5s ease forwards;
	-webkit-animation-delay: 0.35s;
	animation-delay: 0.35s;
	border-bottom: 1px solid var(--primary-dark);
}
.overlay.open li:nth-of-type(2) {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
	-webkit-animation-delay: 0.45s;
	animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.overlay nav {
	position: relative;
	height: 70%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 50px;
	font-family: 'Vollkorn', serif;
	font-weight: 400;
	text-align: center;
}
.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	height: 100%;
	width: 80%;
}
.overlay ul li {
	display: block;
	height: 25%;
	height: calc(100% / 4);
	min-height: 50px;
	position: relative;
	opacity: 0;
}
.overlay ul li a {
	display: block;
	position: relative;
	color: var(--white);
	text-decoration: none;
	overflow: hidden;
	text-transform: uppercase;
	line-height: 2.5;
	font-size: 22px;
	font-weight: 300;
}
.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
	width: 100%;
}
.overlay ul li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 3px;
	background: var(--white);
	transition: 0.35s;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}

/*** Home Slider **/
.home-scroll {
	z-index: 2;
	width: 100%;
	position: relative;
	text-align: center;
}
.home .fa-angle-down {
	font-size: 40px;
	color: white;
	position: absolute;
	bottom: 35px;
	transition: 1s;
	margin-left: -14px;
}
.pulse {
	transition: 0.5s;
}
.pulse:hover {
	animation: pulse 1s infinite;
	animation-timing-function: linear;
}
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.25);
	}
	100% {
		transform: scale(1);
	}
}
.btn_home {
	border-radius: var(--radius);
	border: 2px solid white;
	padding: 20px 20px;
	min-width: 240px;
	transition: all 0.5s;
	margin: 10px 10px 20px 10px;
	color: var(--white);
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 300;
	background: none;
	display: flex;
	justify-content: center;
}
/*
.btn_left {
  background-color: var(--primary);
}

.btn_right {
  background-color: var(--secondary);
} */

.btn_home span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 1px;
}

.btn_home span:after {
	content: '»';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

.btn_home:hover span {
	padding-right: 25px;
}

.btn_home:hover span:after {
	opacity: 1;
	right: 0;
}

.demo a {
	position: absolute;
	bottom: 50px;
	z-index: 2;
	display: inline-block;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	color: var(--white);
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: opacity 0.3s;
	width: 100%;
	text-align: center;
}
#section10 a {
	padding-top: 60px;
}
#section10 a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 30px;
	height: 50px;
	margin-left: -15px;
	border: 2px solid var(--white);
	border-radius: 50px;
	box-sizing: border-box;
}
#section10 a span::before {
	position: absolute;
	top: 10px;
	left: 50%;
	content: '';
	width: 6px;
	height: 6px;
	margin-left: -3px;
	background-color: var(--white);
	border-radius: 100%;
	-webkit-animation: sdb10 2s infinite;
	animation: sdb10 2s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
	0% {
		-webkit-transform: translate(0, 0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		-webkit-transform: translate(0, 20px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes sdb10 {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: translate(0, 20px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
/* Testimonial Page
================================================== */
.testimonials-page {
	background: var(--medium-grey);
}

#testimonial-page {
	max-width: 760px;
	margin: auto;
	margin-top: 60px;
}
.testimonial_inside_left,
.testimonial_inside_right {
	font-size: 17px;
	line-height: 2.5;
	font-weight: 400;
	letter-spacing: 1px;
	color: #504843;
	background: white;
	padding: 65px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
	font-style: italic;
}
.testimonial_inside_left .fa,
.testimonial_inside_right .fa {
	font-size: 90px;
	color: rgba(0, 0, 0, 0.05);
	position: absolute;
}
.testimonial_inside_right .fa {
	right: 0px;
	transform: translate(35px, -35px);
}
.testimonial_inside_left .fa {
	left: 0px;
	transform: translate(-35px, -35px);
}
.testimonial_right {
	float: right;
	padding: 0 0 10px 20px;
	position: relative;
}

.testimonial_attribution,
.testimonial_attribution_right {
	display: flex;
}
.testimonial_attribution_right {
	justify-content: flex-end;
}
.testimonial_attribution_right .testimonial_name {
	transform: translate(-30px, -22px);
}
.testimonial_attribution .testimonial_name {
	transform: translate(30px, -22px);
}
.testimonial_left {
	float: left;
	padding: 0 20px 10px 0;
	position: relative;
}
.testimonial_name {
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 5px;
	display: flex;
	background: var(--primary);
	padding: 10px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}
.testimonial_title {
	color: var(--charcoal);
	font-size: 16px;
	font-weight: 400;
	line-height: inherit;
}
.testimonial_company {
	color: var(--secondary);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.8px;
}

/* Testimonial Page Close

/* Testimonial
================================================== */

/* .owl-dots .active {
  background-color: var(--secondary) !important;
  width: 40px !important;
  height: 8px !important;
  border: 1px solid var(--charcoal) !important;
}

.owl-dot {
  background-color: transparent !important;
  border: 1px solid #dedede !important;
  width: 40px !important;
  height: 8px !important;
  margin-right: 10px;
} */
.testimonial {
	padding: 20px 0 0;
	text-align: center;
	position: relative;
}
.testimonial:before {
	content: '\f10d';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	position: absolute;
	left: 48.5%;
	font-size: 40px;
	color: var(--white);
	top: 11px;
}
.testimonial .content {
	padding: 45px 35px;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--white);
	position: relative;
	border: 0px solid var(--white);
	border-top: 0px none;
}
.testimonial .content:before {
	content: '';
	border-top: 1px solid #868686;
	position: absolute;
	top: 0;
	left: 0;
	width: 45%;
}
.testimonial .content:after {
	content: '';
	border-top: 1px solid #868686;
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
}
.testimonial .testimonial-title {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: #e74c3c;
}
.testimonial .testimonial-title small {
	display: block;
	color: var(--medium-grey);
	font-size: 12px;
	margin-top: 10px;
}
.testimonial .description {
	font-size: 22px;
}

.testimonial-slide .testimonial-content h3.name {
	font-size: 18px;
	color: var(--white);
	margin: 10px 0;
}

.testimonial-slide .testimonial-content h3 span {
	display: block;
	font-size: 14px;
	color: var(--white);
	font-weight: 400;
	margin-top: 10px;
}

.testimonial-slide .testimonial-text {
	padding-top: 30px;
	display: inline-block;
	position: relative;
	color: var(--white);
	text-transform: initial;
	font-size: 22px;
	font-style: italic;
	font-weight: 300;
}

/* Recent Post
================================================== */

.post-img-wrapper {
	position: relative;
}

.post-img-overlay {
	position: relative;
	display: inline-block;
}

.post-img-overlay::before {
	position: absolute;
	border-radius: 1px;
	background-color: rgba(0, 0, 0, 0);
	content: '';
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.post-img-overlay:hover::before {
	background-color: rgba(0, 0, 0, 0.5);
}

.post-img-overlay a {
	position: absolute;
	right: 0;
	color: var(--white);
	background: #666666;
	padding: 15px 20px;
	opacity: 0;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.post-img-overlay a.link {
	right: 0;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.post-img-overlay:hover a.link {
	left: 0;
	right: auto;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.post-img-overlay a.view {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}
.post-img-overlay:hover a.view {
	bottom: 0;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.recent-post {
	padding: 0 15px;
}
.recent-post .post-body h3 {
	font-size: 18px;
	margin-bottom: 3px;
	font-weight: 700;
}

.recent-post .post-body h3 a {
	color: #323232;
}

.recent-post .post-body .post-meta a {
	font-weight: 400;
	font-size: 13px;
}

.recent-post .post-body .post-meta span,
.recent-post .post-body .post-meta span i {
	padding-right: 5px;
}

.recent-post .post-excerpt {
	padding-top: 10px;
}

.recent-post .post-excerpt a.read-more {
	padding: 6px 18px;
	border-width: 1px;
	font-size: 12px;
	margin-top: 10px;
}
/*** Contact Us V2 **/

.cotactv2_box {
	border: 1px solid #d1d1d1;
	margin-bottom: 20px;
	padding: 0px 10px 0;
	background-color: var(--white);
	box-shadow: 1px 2px 10px #dedede;
}

.cotactv2_box h2 {
	font-size: 26px;
	line-height: 34px;
	font-weight: 300;
	margin-top: 30px;
	text-transform: uppercase;
	border-bottom: 4px solid var(--secondary);
	line-height: 46px;
	margin-bottom: 30px;
}
.contact_heading {
	color: #47354f;
	font-weight: 600;
	font-size: 18px;
}
.cotactv2_box p {
	margin: 7px 0 20px;
}

.cotactv2_box a {
	color: #47354f;
	text-decoration: underline;
}
.contact_us_map_office {
	width: 100%;
	height: 250px;
	margin: 0px;
	padding: 0px;
}

/* Contact
================================================== */

.mt-4 {
	margin-top: 2rem;
}
.contact-us-page {
	padding: 0px;
}
.contact-bg {
	background: var(--primary);
}
.contact-padding {
	display: flex;
	align-items: center;
	min-height: 700px;
}
.contact_block {
}
.contact_block p {
	font-size: 18px;
	color: var(--white);
	text-align: left;
}
.contact_block a[href^='tel'] {
	color: var(--white);
	text-decoration: none;
}
.single-estate-office-details a[href^='tel'] {
	color: var(--white);
	text-decoration: none;
	font-weight: 300;
}
.contact_block h4 {
	color: var(--white);
	margin-bottom: 6px;
}
.contact_block h2 {
	font-size: 32px;
	line-height: 40px;
	font-weight: 400;
}
.contact_line {
	border-width: 6px;
	border-color: #333333;
	width: 6%;
	padding-top: 20px;
	padding-bottom: 0px;
}

#contact-form {
	margin-top: 25px;
}
#contact-form label {
	font-weight: normal;
}

.map-wrapper {
	position: relative;
}

.map {
	height: 400px;
	z-index: 1;
}

.contact-info-inner h3 {
	margin-bottom: 25px;
	font-size: 24px;
	color: var(--white);
}

.contact-info h3 {
	margin-top: 42px;
	font-size: 24px;
}

.contact-info p {
	font-size: 18px;
}

.contact-info i {
	font-size: 18px;
	margin-right: 10px;
}

/* Contact inside Map */
.contact-info-inner {
	position: absolute;
	color: var(--white);
	top: 0;
	bottom: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.7);
	padding: 25px 30px;
	max-width: 400px;
	max-height: 400px;
	text-align: left;
}

.contact-info-inner p {
	overflow: hidden;
	margin-bottom: 25px;
}

.contact-info-inner p strong {
	display: block;
}

.contact-info-inner i {
	margin-right: 20px !important;
	font-size: 24px;
	margin-top: 5px;
}

/* Footer
================================================== */
.valuation_bottom {
	display: none;
}
.footer-sticky {
	display: none;
}
.footer-sticky {
	position: fixed;
	padding: 5px;
	bottom: 0;
	width: 100%;
	background-color: var(--medium-grey);
	z-index: 2;
}
.head_office a {
	color: var(--white);
}

.footer {
	background: #2e2e2e url(../images/footer-bg.jpg) no-repeat center 0;
	background-size: cover;
	color: var(--white);
	font-size: 14px;
}

.footer-menus {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 20px;
}

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

.footer-map {
	padding-bottom: 60px;
}

.footer2 {
	background: rgb(44 25 58);
}

.footer .widget-title {
	color: var(--white);
	height: 20px;
	margin-bottom: 12px;
}

.footer .social-icon {
	padding: 10px 0 20px;
}

.acordion-master h2 {
	border-bottom: 1px solid var(--charcoal);
	padding: 10px 0px;
	cursor: pointer;
	color: #dedede;
	font-size: 15px;
	font-weight: 300;
}
.acordion-master .fa-chevron-down {
	font-size: 18px;
	margin-left: 5px;
	transition: all 1s;
	vertical-align: middle;
}
.acordion-master .active {
	transform: rotate(180deg);
	transition: all 1s;
}

.acordion-master .contenido-mostrar p {
	margin-top: 0px;
}
.acordion-master .hidden-block {
	display: none;
}

.trustpilot {
	margin-top: 20px !important;
}

.trustpilot-mobile {
	display: none;
}

/* Latest Post */

.footer-widget .latest-post-image img {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	border: 4px solid rgba(255, 255, 255, 0.5);
}

.footer-widget .latest-post-content h4 a {
	color: var(--white);
}

.latest-post-items {
	margin-bottom: 10px;
}

.latest-post-image img {
	width: 70px;
	height: 60px;
}

.footer-widget .post-meta,
.footer-widget .post-meta a {
	color: var(--white);
}

.latest-post-content h4 {
	font-size: 18px;
	line-height: normal;
}

/* Image Gallery */

.valuation_bottom {
	display: none;
}
.footer-sticky {
	display: none;
}
.footer-sticky {
	position: fixed;
	padding: 5px;
	bottom: 0;
	width: 100%;
	background-color: var(--medium-grey);
	z-index: 10;
}

.footer-widget .img-gallery {
	margin-top: 5px;
	display: inline-block;
}

.img-gallery a.thumb-holder {
	overflow: hidden;
	position: relative;
}

.img-gallery a.thumb-holder img {
	margin: 0 15px 15px 0;
	display: inline-block;
	width: 95px;
	height: 85px;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.img-gallery a.thumb-holder:hover img {
	opacity: 0.7;
}

.footer2 .img-gallery a.thumb-holder img {
	width: 90px;
	height: 75px;
}

/* Footer about us */

.footer-about-us h4 {
	font-size: 16px;
	margin-bottom: 0;
	line-height: normal;
}

.subscribe {
	margin-top: 20px;
}

.subscribe input.form-control {
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe .input-group-addon {
	background: none;
	border-radius: 0;
	border: 0;
	padding: 0;
}

.subscribe button {
	padding: 13px 20px;
	color: var(--white);
}

.subscribe button:hover {
	background: #222;
	color: var(--white);
}

.subscribe button i {
	font-size: 20px;
}

/* Footer links */

.footer ul {
	padding: 0;
}

.footer ul li {
	list-style: none;
	line-height: 1.5;
}

.footer ul li a,
.footer .textwidget p {
	color: var(--white);
	font-size: 11px;
	opacity: 0.8;
}

.footer ul.arrow li {
	width: 50%;
	float: left;
}

ul.arrow li:before {
	content: '\f105';
	font-family: 'Font Awesome 6 Pro';
	margin-right: 10px;
}

ul.arrow2 li:before {
	content: '\f105';
	font-family: 'Font Awesome 6 Pro';
	margin-right: 10px;
}

/* Copyright
================================================== */

#copyright {
	padding: 30px 0;
	background: var(--charcoal);
	color: var(--white);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.copyright-info {
	font-size: 13px;
	font-weight: 300;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	max-width: 850px;
	margin: 30px auto 0;
	padding-top: 15px;
}

.footer-social {
	position: relative;
	z-index: 10;
}

.footer-social .icon-pentagon i {
	font-size: 16px;
}

/* Footer sytle 2 */

.footer2 .social-icon {
	padding-bottom: 15px;
}

.footer2 .copyright-info {
	color: #323232;
	border-top: 1px solid #e7e7e7;
}

#back-to-top {
	right: 40px;
	top: auto;
	z-index: 10;
	-webkit-backface-visibility: hidden;
}

#back-to-top.affix {
	bottom: 60px;
}

#back-to-top .btn.btn-primary {
	border-radius: 100%;
	padding: 0;
	font-size: 18px;
	width: 36px;
	height: 36px;
	background: rgba(0, 0, 0, 0.3);
	border: 2px solid transparent;
	color: var(--white);
	opacity: 0.5;
}

#back-to-top .btn.btn-primary:hover {
	color: var(--white);
	opacity: 1;
}

/* Sub pages
================================================== */

/* Banner area */

#banner-area {
	position: relative;
}

.banner-title-content {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 100%;
}

.banner-title-content h2 {
	color: var(--white);
	font-size: 36px;
}

.banner-title-content .breadcrumb {
	background: none;
	color: var(--white);
	font-weight: 700;
	font-size: 16px;
}

.banner-title-content .breadcrumb a:hover {
	color: #ccc;
}

/* About Us */

.about-message {
	background: var(--white);
	min-height: 500px;
}

.about-message ul li a {
	color: #6a6a6a;
}
.about-message p {
	font-size: 17px;
	line-height: 32px;
}

/** Blog **/
.container-blog {
	max-width: 970px;
	margin-right: auto;
	margin-left: auto;
}
.blog-home h1 {
	font-size: 38px;
	line-height: 45px;
	text-transform: capitalize;
}
.blog-home h1:after {
	content: '';
	border-bottom: 7px solid #333333;
	display: block;
	width: 75px;
	margin: 0 auto;
	margin-top: 20px;
}
.inner-heading,
.form-category {
	display: inline-block;
	margin-bottom: 40px;
}
.inner-heading {
	font-size: 22px;
	font-weight: 300;
}
.form-category select {
	padding: 0px;
	text-transform: lowercase;
	height: 50px;
	border-bottom: 1px solid #1a1f21;
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	font-size: 22px;
	font-weight: 300;
	width: 170px;
	color: #333;
}
.blog-block {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.blog-box {
	margin-bottom: 30px;
	display: flex;
}
.blog-container {
	box-shadow: 0 0rem 1rem 0rem rgba(52, 49, 47, 0.25);
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	width: 100%;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
}
.blog-container:hover {
	transform: scale(1.015);
	box-shadow: 0 0rem 3.5rem 0.5rem rgba(52, 49, 47, 0.15);
}

.blog-content {
	padding: 12px;
	min-height: 320px;
	display: flex;
	flex-direction: column;
}
.blog-image img {
	min-height: 250px;
	height: 250px;
	width: 100%;
	object-fit: cover;
}
.blog-image-inside img {
	height: 250px;
	width: 100%;
	object-fit: cover;
}
.blog-content h4 {
	font-size: 18px;
	letter-spacing: 1px;
	margin: 16px 0px;
}
.blog-content p {
	font-size: 14px;
	margin-bottom: 0;
	text-align: left;
}
.blog-container a {
	color: #1a1f21;
	font-weight: 700;
}
.blog-container a:hover {
	text-decoration: underline;
}
.blog-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: auto;
}
.home_read_time {
	color: #333;
	font-weight: bolder;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.25px;
}
.home_read_time_text {
	color: #98a5a2;
}
.author_details {
	padding: 1rem 0rem;
}
.author_details_single {
	padding: 1rem 0rem;
	min-height: 60px;
}
.single_content {
	margin: auto;
	margin-top: 10px;
	max-width: 750px;
}
.home_read_more {
	padding-right: 20px;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.post_author_home {
	height: 50px;
	width: 50px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
	border-radius: 50%;
	border: 1px #e5e5e5 solid;
	background-clip: content-box;
	margin-right: 7px;
	float: left;
}
.post_author_name_home {
	font-weight: 700;
	font-size: 12px;
	display: inline-block;
	padding-top: 15px;
	padding-bottom: 0px;
}

.blog-link,
.blog-link a {
	margin-top: 20px;
	font-weight: 600;
	color: var(--text-light);
}

.blog-link a {
	color: var(--primary);
}

.blog-link a:hover {
	color: var(--secondary);
	border-bottom: 1px solid var(--secondary);
}

.single_category {
	font-weight: 800;
}

/** Author **/

.awr.cat {
	box-shadow: 0 0rem 1rem 0rem rgba(52, 49, 47, 0.25);
	background-color: rgb(248, 248, 248);
	float: left;
	width: 100%;
	margin-top: 60px;
	margin-bottom: 60px;
}
.right h4 {
	margin-top: -4px;
	margin-bottom: 10px;
}
.blog-user-info {
	padding: 20px;
	min-height: 220px;
	display: flex;
}
.awr.cat .left {
}
.left {
	float: left;
	width: 16%;
}
.avatar {
	display: block;
}
.alignnone {
	margin: 10px;
}
.awr.cat .right {
	width: 84%;
	padding-left: 15px;
}
.right {
	display: flex;
	flex-direction: column;
}
.awr.cat h6 {
	font-weight: 700;
	margin-top: 0px;
}
.awr.cat p {
	margin-top: 0;
	margin-bottom: 0rem;
	font-size: 14px;
}
.awr.cat a {
	font-weight: 500;
}
.blog-user-read-social {
	background-color: var(--primary);
	display: flex;
	flex-direction: column;
	padding: 15px;
}
.blog-user-read-all {
	display: flex;
	justify-content: space-between;
}

.all_author_post {
	display: flex;
	align-self: center;
}
.all_author_post a {
	color: white;
	border-left: 4px solid white;
	padding-left: 6px;
}

.post_author {
	height: 40px;
	width: 40px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
	border-radius: 50%;
	border: 1px #e5e5e5 solid;
	background-clip: content-box;
	margin-right: 12px;
	float: left;
}
.post_author_name {
	font-weight: 600;
	font-size: 14px;
	display: inline-block;
	padding-top: 12px;
	padding-bottom: 26px;
	float: left;
}
.read_time {
	float: right;
	padding-top: 14px;
}

.post_date {
	color: var(--text-light);
	font-size: 14px;
	font-weight: 600;
}
.end_post {
	border-width: 3px;
	border-color: #333333;
	width: 10%;
	padding-top: 20px;
	padding-bottom: 0px;
}

.author-title {
	font-size: 48px;
	font-weight: 400;
	width: 100%;
}
.author_arrow {
	font-size: 18px;
	padding-right: 0;
	display: flex;
}
.author_arrow a {
	color: var(--white);
}
.mt-10 {
	margin-top: 9rem;
}

.follow-on {
	text-align: right;
	font-size: 14px;
	margin-top: 10px;
}
.follow-on span {
	font-weight: 600;
}

.related_post_block {
	background-color: var(--medium-grey);
}

/*** Sidebar Recent Post Widget **/
.pps {
	margin-bottom: 10px;
}
.left_block {
	float: left;
}
.txt {
	padding-left: 9px;
	padding-top: 9px;
	position: relative;
	width: 81%;
}

.pps a {
	color: #368626;
	display: block;
	font-weight: 700;
	font-size: 1em;
	line-height: 1.4em;
}

.tim .wti {
	border-radius: 50%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	height: 38px;
	width: 38px;
}

.widget-title {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
}

/* Social Sharing Icons Single Post*/
.sidenav-holder {
	position: sticky;
	top: 140px;
}
.share_button_holder {
}
.affix_single {
	top: 130px;
	width: 50px;
}
.share_post {
	display: none;
}
.share_post {
	border-bottom: 1px solid #f1f1f1;
	border-top: 1px solid #f1f1f1;
	padding: 10px 0px 10px 0px;
}
.share_post span {
	vertical-align: super;
	font-weight: 600;
}
.affix-bottom {
	position: absolute;
}
.share {
	text-align: center;
	width: 100%;
	font-weight: bold;
}
#wrapper_social {
	padding-bottom: 0px;
	text-align: center;
}
.sharing-icon {
	padding: 20px 10px;
	font-size: 26px;
	color: var(--primary);
	opacity: 0.5;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
}

.sharing-icon:hover {
	transform: translateY(-5px);
	opacity: 1;
}

.fb_square {
	color: #6788ce;
}
.twitter_square {
	color: #29c5f6;
}
.in_square {
	color: #3a9bdc;
}

/* End Social Sharing Icons Single Post*/

/* Areas We Cover */

.areas-we-cover-image:hover {
	background-color: rgba(0, 0, 0, 0.6) !important;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
}

a.full-block-link {
	font-size: 36px;
	font-weight: 600;
	color: var(--white);
	text-transform: uppercase;
	text-align: center;
	z-index: 3;
	position: absolute;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.title-desc3 {
	padding-top: 30px;
}
.title-desc3 {
	font-family: 'Lato', serif;
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
	text-transform: capitalize;
	display: block;
	color: #6a6a6a;
}

/* Call to Action */

.call-to-action {
	color: var(--white);
	padding: 40px 0;
}

.call-to-action.dark {
	background: #2a2d32;
}

.call-to-action h3 {
	color: var(--white);
	float: left;
	margin: 10px 0 0;
	font-size: 20px;
}

.call-to-action .btn.btn-primary.white:hover {
	background: #000;
}

.call-to-action .btn.btn-primary.solid {
	margin-left: 15px;
}

/* Career */

.panel.panel-default {
	background: var(--medium-grey);
}

h4.panel-title {
	position: relative;
	padding-left: 30px;
}

h4.panel-title a:before,
h4.panel-title a.collapsed:before {
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	z-index: 0;
	font-size: 16px;
	left: 0;
	padding: 0 5px;
	text-align: center;
}

h4.panel-title a:before {
	content: '\f056';
}

h4.panel-title a.collapsed:before {
	content: '\f055';
}

.panel-body ul {
	padding-left: 35px;
}

.panel-body p {
	max-width: 100%;
	text-align: left;
}

.panel-group .btn.btn-primary.solid:hover {
	color: #333;
}

/* Testimonial */

.ts-testimonial-content {
	position: relative;
	padding: 30px 30px 15px 30px;
	border-width: 1px;
	border-style: solid;
	border-color: #e7e7e7;
	margin-bottom: 40px;
}

.ts-testimonial-content:after {
	content: '';
	position: absolute;
	bottom: -40px;
	left: 45px;
	border-style: solid;
	border-width: 40px 0px 0 30px;
	border-color: #e7e7e7 transparent;
	display: block;
	width: 0;
	z-index: 1;
}

.ts-testimonial-content img {
	float: left;
	width: 80px;
	height: 80px;
	border-radius: 100%;
}

.ts-testimonial-text {
	padding-left: 110px;
}

.ts-testimonial-author {
	position: absolute;
	bottom: -60px;
	left: 90px;
}

.ts-testimonial-author h3.name {
	font-size: 14px;
	margin: 10px 0 0;
}

.ts-testimonial-author h3 span {
	display: block;
	font-size: 13px;
	margin-top: -10px;
	text-transform: capitalize;
	color: #555;
}

/* Faq Page */

.faq-box {
	margin-bottom: 45px;
}

.faq-box h4 {
	margin-bottom: 25px;
}

/*** Page Valuation **/

.valuation-page-circle {
	color: var(--primary);
	background: var(--white);
	border-style: solid;
	border-color: var(--secondary);
	border-width: 8px;
	width: 130px;
	height: 130px;
	line-height: 117px;
	border-radius: 500px;
	font-size: 60px;
	display: inline-block;
}
.valuation-box {
	border: 1px solid #d1d1d1;
	margin-bottom: 20px;
	padding: 25px 25px 0;
	background-color: var(--white);
	box-shadow: 1px 2px 10px #dedede;
}

.valuation-box h2 {
	font-size: 26px;
	line-height: 34px;
	font-weight: 300;
	margin-top: 30px;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.valuation-button {
	background-color: var(--secondary);
	color: var(--white);
	margin-bottom: 25px;
	padding: 10px 30px;
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 500;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--primary) inset;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--primary) inset;
	text-transform: uppercase;
}
.valuation-button:hover {
	background-color: var(--secondary-dark);
	color: var(--white);
}
/*** Page Valuation Close**/

/* 404 page */

.error-button {
	background-color: var(--secondary);
	color: var(--white);
	margin-right: 0px;
	padding: 10px 30px;
	border-radius: var(--radius);
	font-size: 18px;
	font-weight: 500;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
}
.error-button:hover {
	background-color: var(--secondary);
}

/* 404 page End */

/* Blog
================================================== */

/* Blog Listing */

.post {
	margin: 0 0 40px;
	padding: 0 0 40px;
	border-bottom: 1px solid var(--medium-grey);
}

.post.post-last {
	border-bottom: 0;
}

.post-image-wrapper {
	margin-bottom: 20px;
	position: relative;
}

.blog-date {
	position: absolute;
	top: 50px;
	left: 0;
	color: var(--white);
	border-radius: 0 25px 25px 0;
	padding: 5px 15px;
	font-weight: 700;
}

.blog-date a {
	color: var(--white);
}

.post-footer .btn.btn-primary {
	font-size: 12px;
	padding: 8px 20px;
	margin-top: 15px;
}

/* Blog Single */

.post-meta {
	color: #959595;
	font-weight: 400;
	font-size: 13px;
}
.post-meta span {
	padding-right: 10px;
}

.post-meta a {
	color: #959595;
}

.post-meta-author a,
.post-meta-cats a {
	color: #323232;
}

.entry-content {
	padding: 20px 0 10px;
}

/* Blog author */

.about-author {
	background: #f2f2f2;
	padding: 15px 20px;
	margin: 20px 0;
}

.author-img img {
	width: 120px;
	height: 120px;
	margin-right: 30px;
	border-radius: 100%;
	margin-top: 20px;
}

.author-url span a {
	color: #959595;
}

.author-info h3 {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: normal;
}

.author-info h3 span {
	font-size: 14px;
	color: #959595;
	border-left: 1px solid #afafaf;
	padding-left: 8px;
	margin-left: 5px;
}

/* Blog post comments */

.comments-counter {
	font-size: 18px;
}
.comments-counter a {
	color: #323232;
}

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

.comments-list .comment {
	border-bottom: 1px solid #cecece;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.comments-list .comment.last {
	border-bottom: 0;
}
.comments-list img.comment-avatar {
	width: 84px;
	height: 84px;
	margin-right: 30px;
	border-radius: 100%;
}

.comments-list .comment-body {
	margin-left: 120px;
}

.comments-list .comment-author {
	margin-bottom: 0;
}

.comments-list .comment-date {
	font-style: italic;
	color: #959595;
	margin-bottom: 20px;
}

.comments-list .comment-reply {
	text-transform: uppercase;
	color: #323232;
}

.comments-reply {
	list-style: none;
	margin: 0 0 0 70px;
}

.comments-form .btn.btn-primary {
	padding: 10px 20px;
}

.comments-form label {
	font-weight: normal;
	color: #959595;
}

/* Sidebar */

.sidebar h3.widget-title {
	font-size: 18px;
	line-height: normal;
	margin-top: 0;
}

.sidebar .widget {
	margin-bottom: 40px;
}

.sidebar-right {
	padding-left: 20px;
}

/* Blog search */

.sidebar #search .input-group-btn .btn.btn-primary {
	padding: 11px 12px;
}

/*-- Blog tab widget --*/

.widget-tab .nav-tabs {
	margin: 0;
	text-align: center;
	border-bottom: 1px solid #e7e7e7;
}

.widget-tab .nav-tabs > li:first-child {
	margin-left: 10px;
}

.widget-tab .nav-tabs > li > a {
	background: #f2f2f2;
	color: #323232;
	font-size: 15px;
	font-weight: 700;
	text-transform: capitalize;
	border-radius: 3px 3px 0 0;
	margin-right: -1px;
	border: 1px solid #e7e7e7;
	border-bottom: 0;
}

.widget-tab .nav-tabs > li.active > a {
	background: var(--white);
	color: #323232;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 0;
}

.widget-tab .tab-content {
	border-top: 0;
	padding: 10px 0 0;
}

.widget-tab .posts-thumb img {
	display: block;
	width: 85px;
	height: 65px;
	margin-right: 20px;
}

.widget-tab .posts-avator img {
	display: block;
	width: 62px;
	height: 62px;
	margin-right: 20px;
	border-radius: 100%;
}

.widget-tab h4.entry-title {
	font-size: 11px;
	line-height: 15px;
	margin-bottom: 5px;
}
.widget-tab h4.entry-title a {
	color: #323232;
}

.widget-tab .post-meta span {
	padding-right: 5px;
}

.widget-tab ul.posts-list li {
	padding-bottom: 10px;
}

/*-- Blog category widget --*/

.widget-categories ul.category-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget-categories ul.category-list li {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #dedede;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.widget-categories ul.category-list li:hover {
	padding-left: 10px;
}

.widget-categories ul.category-list li a {
	color: #323232;
}

.widget-categories ul.category-list li:last-child {
	border-bottom: 0;
}

.widget-categories ul.category-list li .posts-count {
}

/*-- Blog tags widget --*/

.widget-tags ul > li {
	float: left;
	margin: 6px;
}

.widget-tags ul > li a {
	background: #f2f2f2;
	color: #6a6a6a;
	display: block;
	font-size: 14px;
	padding: 5px 15px;
	border-radius: 25px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.widget-tags ul > li a:hover {
	color: var(--white);
}

/* Landing page
================================================== */

/* Header */

.landing-header.header-bgnone {
	background: rgba(0, 0, 0, 0.8);
}

.landing-header.header-bgnone ul.navbar-nav > li:hover > a,
.landing-header.header-bgnone ul.navbar-nav > li.active > a {
}

.hero-section {
	height: 100%;
	background-image: url(../images/landing/main-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	padding-bottom: 0;
	padding-top: 200px;
	overflow: hidden;
}
.hero-section .container {
	height: 100%;
}

.hero-content {
	position: relative;
	display: table;
	height: 100%;
	width: 100%;
}

.hero-text {
	display: table-cell;
	vertical-align: bottom;
	color: var(--white);
	padding-right: 50%;
	width: 100%;
	padding-bottom: 10%;
}

.hero-title {
	font-size: 40px;
	line-height: 50px;
	color: var(--white);
}

.hero-description {
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 30px;
	color: var(--white);
}

.hero-images {
	display: block;
	position: absolute;
	bottom: 80px;
	right: 0;
	width: 50%;
	max-height: 100%;
}

.hero-images img {
	display: block;
	position: relative;
	max-height: 100%;
	width: auto;
}

.hero-buttons a.btn {
	color: var(--white);
	padding: 15px 50px;
}

.hero-buttons a.btn.solid {
	margin-left: 10px;
}

.hero-buttons a i {
	margin-left: 5px;
}

/* Facts */

.landing_facts {
	color: var(--white);
	padding: 50px 0;
}

.landing_facts .facts i {
	font-size: 36px;
}

.landing_facts .facts-num span {
	font-size: 56px;
}

/* Video and video background */

.video-embed {
	position: relative;
	padding-top: 56.25%; /* 16:9 */
	height: 0;
	background-color: #000000;
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-background-container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
}

iframe {
	border: 0;
}

/* Screenshot image */

.app-gallery .grid {
	display: block;
	margin: 0 15px 20px;
	padding: 5px;
}

.app-gallery figure.effect-oscar a {
	margin: 125px 5px 0;
}

.app-gallery figure.effect-oscar figcaption::before {
	border: 0;
}

.client-carousel {
	padding-right: 0px;
	padding-left: 0px;
}
.pd40-footer-bottom {
	padding-bottom: 30px;
}
.pd80-footer {
	padding-top: 40px;
}
.footer_logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_logo ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.footer_logo ul li {
	display: inline-block;
	padding: 10px;
	margin-bottom: 10px;
	filter: grayscale(1);
	opacity: 0.5;
	width: 15%;
}

/* Elements page
================================================== */

.testimonial.elements .testimonial-text,
.testimonial.elements .testimonial-content h3.name,
.testimonial.elements .testimonial-content h3 span {
	color: #323232;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.testimonial.elements .testimonial-slide.owl-theme .owl-controls .owl-page span {
	border: 1px solid #e7e7e7;
}

/* Style Swithcer
================================================== */

.style-switch-wrapper {
	position: fixed;
	top: 100px;
	right: -250px;
	width: 250px;
	height: auto;
	background-color: rgba(0, 0, 0, 0.75);
	border-bottom-right-radius: 4px;
	padding: 20px 20px;
	z-index: 1000;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.style-switch-wrapper h3 {
	color: var(--white);
	margin-top: 0;
	margin-bottom: 20px;
}

.style-switch-wrapper.active {
	right: 0;
}

.style-switch-button {
	position: absolute;
	top: 0;
	right: 250px;
	width: 50px;
	height: 50px;
	background-color: rgba(0, 0, 0, 0.75);
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	z-index: 1000;
	cursor: pointer;
}

.style-switch-button i {
	color: var(--white);
	position: relative;
	line-height: 1;
	top: 15px;
	left: 15px;
	font-size: 20px;
}

.style-switch-wrapper button {
	width: 30px;
	height: 30px;
	border-radius: 100% !important;
	margin-bottom: 5px;
	color: var(--white);
	display: inline-block;
	padding: 0 !important;
	margin-right: 2px;
	border: 0 !important;
}

a.close-styler {
	color: var(--white) !important;
	padding: 7px 20px !important;
	margin-right: 6px;
}

.style-switch-wrapper button:active,
.style-switch-wrapper button:focus {
	border: 2px solid var(--white);
}

.style-switch-wrapper #preset1 {
	background-color: #49a2e7;
}

.style-switch-wrapper #preset2 {
	background-color: #81c83c;
}

.style-switch-wrapper #preset3 {
	background-color: #ee3b24;
}

.style-switch-wrapper #preset4 {
	background-color: #ffc400;
}

.style-switch-wrapper #preset5 {
	background-color: #334f96;
}

.style-switch-wrapper #preset6 {
	background-color: #8c42ba;
}

/*
* 	Owl Carousel Owl Demo Theme
*	v1.3.2
*/

.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div {
	color: var(--white);
	display: inline-block;
	zoom: 1;
	*display: inline; /*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50); /*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	filter: Alpha(Opacity=100); /*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
	*display: inline; /*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 28px;
	height: 8px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50); /*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100); /*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers {
	height: auto;
	width: auto;
	color: var(--white);
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center;
}

/* Owl buttons */
.owl-dots {
	display: flex;
	justify-content: center;
	align-items: center;
}
.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #bda4c1;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 0.2s ease;
	border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span {
	background-color: var(--secondary-dark);
}

/* Global styles
================================================== */

a {
	color: var(--secondary);
}

a.read-more:hover {
	color: var(--primary);
}

/* Typography
================================================== */

.btn.btn-primary {
	border: 2px solid var(--charcoal);
	border-radius: var(--radius);
}

.btn.btn-primary:hover {
	background: var(--primary-trans);
}

.btn.btn-primary.solid {
	background: #49a2e7;
}

ul.circle li:before {
	color: #49a2e7;
}

ul.check-list li i {
	color: #49a2e7;
}

/* Common styles
================================================== */

.heading:hover .title-icon {
	color: #49a2e7;
}

h2.entry-title a:hover {
	color: #49a2e7;
}

/* Icon pentagon */

.icon-pentagon {
	background: none repeat scroll 0 0 var(--secondary);
	border-radius: 50%;
	height: 32px;
	width: 32px;
}

.icon-pentagon:before {
	border-bottom: 10px solid #49a2e7;
}

.icon-pentagon:after {
	border-top: 10px solid #49a2e7;
}

.service-icon:before {
	border-bottom: 30px solid #49a2e7;
}

.service-icon:after {
	border-top: 30px solid #49a2e7;
}

/* Carousel controller */

.ts-carousel-controller .left:hover,
.ts-carousel-controller .right:hover,
.owl-controls .owl-prev:hover,
.owl-controls .owl-next:hover {
	background: #49a2e7;
}

/* Input form */

.form-control:focus {
	border: 1px solid #49a2e7 !important;
}

/* Flex Slider */

.portfolio-slider .flex-direction-nav a:hover,
.second-slider .flex-direction-nav a:hover {
	background: #49a2e7;
}

/* Pagination */

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > li > a:hover {
	background: #49a2e7;
}

/* Header area
================================================== */

/*-- Header --*/
.header_inside {
	background: var(--white);
}
.header {
	position: fixed;
	top: 0;
	z-index: 50;
	width: 100%;
	color: var(--white);
	padding: 11px 27px 11px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	height: 102px;
	display: flex;
}

.header-solid ul.navbar-nav > li:hover > a,
.header-solid ul.navbar-nav > li.active > a {
	color: #49a2e7;
}

.header-search,
.header-phone {
	font-size: 28px;
	color: var(--white);
	margin-right: 20px;
	cursor: pointer;
}

.header-phone-mobile {
	display: none;
}

/*-- Logo --*/

/*-- Main navigation --*/

ul.navbar-nav > li:hover > a,
ul.navbar-nav > li.active > a {
	color: #f05222 !important;
}

.navbar-toggle {
	background: var(--secondary);
}
.dropdown-menu .menu-item {
	margin: 0px;
	width: 100%;
}
.dropdown-menu > ul > li.active > a {
	color: var(--primary);
}

.dropdown-menu > ul > li > a:hover,
.dropdown-menu > ul > li > a:focus {
	color: var(--primary);
}
.mobile-logo {
	display: none;
}
.nav-logo,
.nav-logo a {
	display: flex;
	height: 100%;
	width: auto;
}

.nav-logo a {
	flex-direction: column;
}
.nav-logo img {
	height: 100%;
	width: auto;
	align-self: flex-start;
}
.nav-home {
	display: flex;
	list-style: none;
	align-items: center;
	flex: 5;
	justify-content: flex-end;
}
.nav-icons {
	display: flex;
	list-style: none;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}
.nav-home ul,
.nav-icons ul {
	display: flex;
	list-style: none;
	padding: 0px;
	margin-bottom: 0;
}
.nav-home li,
.nav-icons li {
	display: flex;
	margin-bottom: 0px;
	margin-left: 24px;
	align-items: center;
}
.nav-valuation {
	padding: 12px 16px;
	background: var(--secondary);
	display: flex;
	text-align: center;
	width: 150px;
	border-radius: var(--radius);
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
}
.nav-valuation:hover {
	background: var(--secondary-dark);
	transform: translateY(2px);
}
.nav-icons .nav-valuation a {
	color: white;
}
.header li a {
	color: var(--primary);
	line-height: 1.75;
	display: flex;
	font-size: 14px;
	font-weight: 600;
}
.nav-home-menu li:hover {
	margin-bottom: -2px;
	border-bottom: 2px solid var(--highlight);
}
.nav-home-menu li:visited {
	margin-bottom: -2px;
	border-bottom: 2px solid var(--highlight);
}
.nav-home li ~ li {
	margin-left: 23px;
}
.caret {
	margin-top: 10px;
	margin-left: 4px;
	border-top: 4px solid var(--primary);
}
.header-solid .nav-home {
	/* margin-top: 15px; */
}
.header-solid {
	background: var(--white);
	height: 76px;
}
.book_valuation a {
	font-size: 18px;
	font-weight: 400;
	color: var(--primary);
}
.phone_icon,
.search_icon,
.bars_icon {
	font-size: 22px;
	cursor: pointer;
}

.bars_icon {
	font-size: 28px;
	z-index: 99;
}

.fa-times {
	color: white;
}

/* Header area - 2
================================================== */

/*-- Header bgnone fixed --*/

.header-bgnone {
	background: #000000;
}

.navbar-nav.navbar-center {
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
}

/* Slideshow
================================================== */

/*-- Main slide --*/

#main-slide .carousel-indicators li.active,
#main-slide .carousel-indicators li:hover {
	background-color: #49a2e7;
}

#main-slide .carousel-control i:hover {
	background: #49a2e7;
}

/* Image Block
================================================== */

.image-block-content .feature-icon {
	background: #000000;
}

/* Portfolio
================================================== */

.isotope-nav ul li a {
	border: 1px solid #49a2e7;
}

.isotope-nav ul a.active,
.isotope-nav ul a:hover {
	background: #49a2e7;
}

.isotope-nav ul a.active:after,
.isotope-nav ul a:hover:after {
	border-color: #49a2e7 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

/* Feature box
================================================== */
.feature-icon {
	color: #49a2e7;
}

.feature-center-icon {
	color: #49a2e7;
}

/* About us
================================================== */

/* Featured Tab */

.featured-tab .nav-tabs > li.active > a {
	background: #49a2e7;
}

.featured-tab .nav-tabs > li.active > a:after {
	border-left-color: #49a2e7;
}

.featured-tab .nav-tabs > li > a:hover {
	background: #49a2e7;
	color: var(--white);
}
.featured-tab .nav-tabs > li > a:hover:after {
	border-left-color: #49a2e7;
}

/* Testimonial
================================================== */

.testimonial-slide .testimonial-text:before {
	color: #f05222;
}

.testimonial-slide .testimonial-text:after {
	color: #f05222;
}

.testimonial-slide.owl-theme .owl-controls .owl-page.active span {
	background: #f05222;
}

/* Recent Post
================================================== */

.post-img-overlay a:hover {
	background: #49a2e7;
}

/* Footer
================================================== */
.privacy-terms {
	font-size: 12px;
	padding-top: 12px;
	margin-bottom: -20px;
}

.privacy-terms a {
	color: var(--white);
	font-weight: 300;
}

.copyright-info a:hover {
	color: var(--white);
}

.footer2 .copyright-info a {
	color: #d64f2d;
}

#back-to-top .btn.btn-primary:hover {
	background: #d64f2d;
}

.footer-about-us h4 {
	color: #d64f2d;
}

.footer-widget .latest-post-content h4 a:hover {
	color: #d64f2d;
}

.subscribe button {
	background: #49a2e7;
}

/* Blog Item page
================================================== */

.post-meta a:hover {
	color: #49a2e7;
}

.author-url span a:hover {
	color: #49a2e7;
}

.comments-counter a:hover {
	color: #49a2e7;
}

.comments-list .comment-reply:hover {
	color: #49a2e7;
}

/*-- Blog sidebar --*/

.widget-tab .nav-tabs > li.active > a {
	background: #49a2e7;
}

.widget-tab h4.entry-title a:hover {
	color: #49a2e7;
}

.widget-tags ul > li a:hover {
	background: #49a2e7;
}

/* Landing page
================================================== */

.landing-header.header-bgnone ul.navbar-nav > li:hover > a,
.landing-header.header-bgnone ul.navbar-nav > li.active > a {
	color: #49a2e7;
}

.features-content .features-icon {
	color: #49a2e7;
}

.landing_facts {
	background: #49a2e7;
}

.landing-tab .nav-tabs > li.active {
	border-right: 5px solid #49a2e7;
}

.landing-tab .nav-tabs > li.active > a i {
	color: #49a2e7;
}

.landing-tab .nav-tabs > li > a:hover {
	color: #49a2e7 !important;
}

.landing-tab .tab-pane i.big {
	color: #49a2e7;
}

.app-gallery.owl-theme .owl-controls .owl-page.active span {
	background: #49a2e7;
}

.landing_page_clients {
	background: #49a2e7;
}

/* Misc */

.title-border {
	border-bottom: 2px solid #49a2e7;
}

.post-title a:hover {
	color: #49a2e7;
}

.portfolio-static-desc a:hover {
	color: #49a2e7;
}

.client-carousel .item a:hover {
}

.footer ul li a:hover {
	opacity: 1;
}

.call-to-action {
	background: #49a2e7;
}

.blog-date {
	background: #49a2e7;
}

.widget-categories ul.category-list li a:hover {
	color: #49a2e7;
}

.about-message ul li a:hover {
	color: #49a2e7;
}
/** Content with Sidebar **/
.widget {
	margin-bottom: 40px;
}
.sidebar-nav {
	margin-bottom: 20px;
	position: sticky;
	top: 100px;
	margin-top: 10px;
}
.sidebar-nav ul {
	list-style-type: none;
}
.sidebar-title:after {
	content: '';
	width: 60px;
	height: 2px;
	background: var(--secondary);
	display: block;
	margin-top: 15px;
}
.sidebar-left ul {
	list-style-type: none;
	padding: 10px;
	line-height: 35px;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 25px;
}
.sidebar-left li ::before,
.sidebar-nav .menu li ::before {
	position: absolute;
	margin-top: 11px;
	left: 10px;
	display: inline-block;
	content: '';
	border-top: 2px solid var(--secondary);
	border-left: 2px solid var(--secondary);
	width: 8px;
	height: 8px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.sidebar-left a {
	color: var(--titles);
	text-decoration: underline;
	font-weight: 300;
}
.sidebar-left a:hover {
	text-decoration: none;
	color: var(--secondary);
}
.arrange-viewing-sidebar-left {
	background-color: transparent;
	color: var(--primary);
	margin-right: 0px;
	padding: 15px 0px;
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	border: 0px;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: linear;
	box-shadow: 0px 0 0 var(--secondary) inset;
	width: 100%;
	border: 1px solid var(--primary);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.arrange-viewing-sidebar-left:hover {
	background-color: var(--secondary-trans);
	border: 1px solid var(--secondary);
}
.sidebar-banner {
	margin-bottom: 20px;
}
.sidebar-banner p {
	text-align: left;
}
.centered {
	padding: 10px 20px;
	background: rgb(239, 82, 34, 0.9);
	width: 100%;
	color: var(--white);
	text-align: center;
	font-size: 18px;
	font-weight: 300;
}
.socials .facebook {
	background: #3c5a99;
}
.socials .twitter {
	background: #5fa9dd;
}
.socials .linkedin {
	background: #3a9bdc;
}
.socials .googleplus {
	background: #de4b43;
}
.socials a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--white);
	font-size: 2em;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
	font-size: 20px;
	line-height: 20px;
	margin-right: 10px;
}
.socials a:hover {
	text-decoration: none;
}
.socials li {
	display: flex;
	text-indent: 0;
}
.socials ul {
	list-style: none;
	padding: 0px;
}
/** Content with Sidebar Close **/

/** Responsiveness **/

@media (min-width: 1201px) and (max-width: 1430px) {
	.navbar-nav.navbar-center {
		left: 42%;
	}

	.about-message-home h3 {
		line-height: initial;
	}
	.about-wrapper-top {
		margin-right: 0px;
		margin-left: 0px;
	}
}
@media (min-width: 993px) and (max-width: 1200px) {
	.btn-3 {
	}
	.btn-2,
	.btn-3 {
		padding: 20px 32px;
		font-size: 16px;
	}
	.single-estate-office-details {
		font-size: 13px;
		margin-bottom: 51px;
	}
	.page-estate-agent {
		font-size: 25px;
	}
	.page-info-title {
		font-size: 32px;
	}
	.share_post {
		display: block;
	}
	.sidenav {
		display: none;
	}
	.btn-4,
	.btn-5 {
		font-size: 18px;
		padding: 11px 10px;
	}
	.mt-4 {
		margin-top: 2.5rem;
	}
	.arrange-viewing {
		padding: 10px 11px;
	}
	.nav > li > a {
		padding: 10px 7px;
	}
	ul.navbar-nav > li > a {
		padding-top: 23px;
		font-size: 15px;
	}
	.nav-tabs-local > li > a {
		font-size: 16px;
		padding: 17px 33px;
	}
	.nav-tabs > li > a {
		padding: 22px 35px;
	}
	.list-tools span {
		margin-left: 1px;
		letter-spacing: 0em;
		font-size: 13px;
	}
	.about-message-home h3 {
		line-height: initial;
	}
	.about-wrapper-top {
		margin-right: 0px;
		margin-left: 0px;
	}
	.page-info-agent h1 {
		font-size: 34px;
	}
	.single_property_block:before {
		left: calc(-1 * (100vw - 97rem) / 2);
	}
	.agent_photo {
		width: 70px;
	}
	.prop-details-tabs .nav-item .nav-link {
		padding: 0 10px;
		font-size: 14px;
	}
	.navbar-nav.navbar-center {
		left: 43%;
	}
}
@media (max-width: 1023px) {
	.property-search-form {
		display: block;
	}
	.property-search-form .control {
		display: block;
		margin-bottom: 20px;
	}
	.page-info-agent h1 {
		font-size: 34px;
	}
}

@media (min-width: 480px) and (max-width: 992px) {
	#main-slide .slider-content {
		top: 25%;
	}
}

@media (max-width: 992px) {
	body {
		margin-top: 100px;
	}
	.nav-home {
		display: none;
	}
	.overlay ul li a {
		font-size: 22px;
	}
	.sidebar-nav {
		position: relative;
		top: 0;
	}
	.home-page h1 {
		font-size: 45px;
	}
	.home_video {
		height: 100%;
	}
	.demo {
		display: none;
	}
	#show-hidden-menu {
		display: block;
		background: var(--medium-grey);
		padding: 1px;
	}
	.ea-padding {
		padding: 100px 0px 60px 0px;
	}
	.footer ul.arrow li {
		width: 100%;
		float: none;
	}
	.sidebar-title:after {
		margin-top: 10px;
	}
	.contact-us-map {
		height: 450px;
	}
	.col-custom-8,
	.col-custom-4 {
		width: 100%;
	}
	.nav-tabs > li > a {
		padding: 22px 31px;
	}
	.navbar-nav.navbar-center {
		left: 32%;
		transform: translatex(-22%);
	}
	.page-inner-sales-section {
		padding: 40px 0px 40px 0px;
	}
	.propertyhive-result-count {
		width: 100%;
		float: left;
		font-size: 16px;
		margin-top: 15px;
		font-weight: 600;
		text-align: center;
		margin-bottom: 0;
	}
	.propertyhive-views {
		width: 40%;
		float: left;
		text-align: left;
	}
	.propertyhive-views ul {
		padding: 0px;
	}
	.propertyhive-ordering {
		width: 60%;
		text-align: right;
		padding-right: 0px;
	}
	.title-price {
		line-height: 32px;
	}
	.page-inner-section {
		padding: 50px 0;
	}
	#logo {
	}
	.insideheader_breadcrumbs {
		font-size: 12px;
	}
	.navbar-brand img {
		padding: 0 0px;
	}
	.list-tools {
		text-align: center;
	}
	.list-tools span {
		display: none;
	}
	#container {
		padding: 0 15px;
	}
	.properties-block,
	.search-properties {
		padding-right: 6px;
		padding-left: 6px;
	}
	.grid-box {
		padding: 10px 0px 0;
	}
	.grid-img {
		max-height: initial;
	}
	.ribbon {
		top: 6.9px;
	}
	.slide-single-property img {
		height: auto !important;
	}

	form.property-search-form-122 div.control {
		width: 100%;
		float: none;
	}
	form.property-search-form-122 .control-department {
		float: none;
	}
	.about-message-home h3 {
		line-height: initial;
		font-size: 28px;
	}
	.about-home {
		padding-top: 0px;
	}
	.pd50-home {
		padding: 40px 0px 40px 0px;
	}
	.about-wrapper-top {
		margin-right: 0px;
		margin-left: 0px;
	}
	#search_keyword_holder {
		max-width: 94%;
		margin: 60px auto 0;
	}
	#search_keyword_value {
		font-size: 16px;
	}
	.slider.btn {
		padding: 0px 22px;
		font-size: 16px;
	}
	#search_keyword_holder_agents {
		max-width: 100%;
	}
	.cta-buttons {
		text-align: center;
		margin-top: 56px;
	}
	.line {
		margin-left: 12px;
		margin-right: 12px;
	}
	.single-estate-office-details {
		text-align: left;
	}
	.btn-2,
	.btn-3 {
		width: 50%;
	}
	.page-inner-agent-section {
	}
	#agent {
		/* margin-top: -140px; */
		margin-bottom: 160px;
	}
	.agent_photo {
		width: 60px;
	}
	.agent_point.ag-name,
	.agent_point.ag-office {
		font-size: 15px;
	}
	.agent_point.ag-phone {
		font-size: 14px;
	}
	.single_property_block:before {
		left: calc(-1 * (100vw - 75rem) / 2);
		max-height: 190px;
	}
	.expert_agent {
		margin-top: 0px;
	}
	.property_name {
		height: auto;
		padding: 0px;
	}

	.trustpilot {
		padding-left: 15px;
	}

	.footer .widget-title {
		height: unset;
	}
	.content-button {
		margin-bottom: 40px;
	}
	.pull-right {
		margin-bottom: 0px;
	}
}

@media (min-width: 768px) {
	/** New Tab **/
	.panel-heading {
		display: none;
	}
	.panel {
		border: none;
		box-shadow: none;
	}
	.panel.panel-default {
		padding: 0px 40px;
	}
	.panel-collapse {
		height: auto;
	}
	.panel-collapse.collapse {
		display: block;
	}

	.video-section {
		padding: 100px 0;
	}
	.navbar-collapse .navbar-nav.navbar-right:last-child {
		margin-top: 11px;
	}
	.form-inline .form-group {
		margin-right: 50px;
	}
}

@media only screen and (max-width: 990px) {
	.testimonial .content:before,
	.testimonial .content:after {
		width: 43%;
	}
}
@media only screen and (max-width: 640px) {
	.gform_wrapper ul.gfield_checkbox li label,
	.gform_wrapper ul.gfield_radio li label {
		width: auto !important;
	}
	.custom_register_form ul.gfield_checkbox li,
	.gform_wrapper ul.gfield_radio li {
		width: 100%;
		display: inline-block;
	}
	.custom_styleform_one ul > li > div input,
	.custom_styleform_one ul > li > div textarea {
		margin-bottom: 0px;
	}
	.testimonial:before {
		left: 46%;
	}
	.testimonial .content {
		padding: 30px 35px;
	}
	.testimonial .description {
		font-size: 14px;
	}
	.prop-details-tabs {
		background-color: rgba(35, 40, 45, 0.7);
	}
	.no-padding-mb {
		padding-left: 0px;
		padding-right: 0px;
	}
	.latest-details-tabs.prop-details-tabs {
	}
	.prop-details-tabs .nav-item .nav-link {
		border-left: 0px solid var(--secondary);
		padding: 0 15px;
	}
	.single-property-types li span {
		margin: 0px 0px 0 0px;
		font-size: 14px;
	}
	.nav-tabs > li > a {
		padding: 13px 9px;
	}
	.nav-tabs > li > a {
		font-size: 12px;
	}
}

@media (min-width: 1200px) {
	/* Dropdown animation */
	.navbar-nav .dropdown-menu,
	.navbar-nav .dropdown.megamenu div.dropdown-menu {
		background: none;
		border: 0;
		box-shadow: none;
		display: block;
		opacity: 0;
		z-index: 1;
		visibility: hidden;
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		-o-transform: scale(0.8);
		transform: scale(0.8);
		-webkit-transition: visibility 500ms, opacity 500ms,
			-webkit-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
		-moz-transition: visibility 500ms, opacity 500ms,
			-moz-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
		-o-transition: visibility 500ms, opacity 500ms,
			-o-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
		-ms-transition: visibility 500ms, opacity 500ms,
			-ms-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
		transition: visibility 500ms, opacity 500ms,
			transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
	}

	.navbar-nav .dropdown:hover div.dropdown-menu,
	.navbar-nav .dropdown.megamenu:hover div.dropdown-menu {
		opacity: 1;
		visibility: visible;
		color: #777;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	.navbar-nav .dropdown-backdrop {
		visibility: hidden;
	}
}

/* Medium Devices, Desktops */
@media (min-width: 992px) {
	.video-section {
		padding: 120px 0;
	}

	.flexslider .slides img,
	.ts-flex-slider .flexSlideshow {
		/**	height: 100vh;
		overflow: hidden;
	**/
	}

	.dropdown i {
		display: none;
	}
}
@media all and (device-width: 768px) and (device-height: 1024px) {
	.parallax {
		background-attachment: scroll !important;
		-webkit-overflow-scrolling: touch;
	}
}

/* Small Devices, Tablets */
@media (min-width: 768px) and (max-width: 991px) {
	.share_post {
		display: block;
	}
	.sidenav {
		display: none;
	}
	.nav-tabs-local > li > a {
		font-size: 14px;
	}
	/**.demo,.hidden-valuation{display: none !important;}**/
	.header,
	.header-solid {
		padding: 12px 21px 12px;
	}
	.header-solid .nav {
		margin-top: 18px;
	}
	.blog-image-inside img {
		min-height: 300px;
	}
	.header-search,
	.header-phone {
		display: none;
	}
	#search_keyword_holder {
		display: none;
	}
	.nav-tabs > li > a {
		padding: 22px 25px;
	}
	.nav-tabs > li > a {
		font-size: 14px;
	}
	/* Dropdown animation */
	.navbar-nav .dropdown-menu,
	.navbar-nav .dropdown.megamenu div.dropdown-menu {
		background: none;
		border: 0;
		box-shadow: none;
		display: block;
		opacity: 0;
		z-index: 1;
		visibility: hidden;
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		-o-transform: scale(0.8);
		transform: scale(0.8);
		-webkit-transition: visibility 500ms, opacity 500ms,
			-webkit-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
		-moz-transition: visibility 500ms, opacity 500ms,
			-moz-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
		-o-transition: visibility 500ms, opacity 500ms,
			-o-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
		-ms-transition: visibility 500ms, opacity 500ms,
			-ms-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
		transition: visibility 500ms, opacity 500ms,
			transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
	}

	.navbar-nav .dropdown:hover div.dropdown-menu,
	.navbar-nav .dropdown.megamenu:hover div.dropdown-menu {
		opacity: 1;
		visibility: visible;
		color: #777;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	.navbar-nav .dropdown-backdrop {
		visibility: hidden;
	}

	/* Common */
	.parallax {
		padding: 60px 0;
	}

	/* Logo */
	.navbar-brand.navbar-bg {
		width: 25%;
	}

	.header2 .navbar-brand,
	.header3 .navbar-brand,
	.header4 .navbar-brand {
		padding-right: 0;
		padding-left: 0;
		margin-top: 7px;
	}

	/* Navigation */
	ul.navbar-nav > li > a {
		padding: 21px 8px;
		font-size: 13px;
	}

	ul.navbar-nav > li:last-child a {
		padding-right: 8px;
	}

	/* Slideshow */

	#main-slide .slider-content h2 {
		font-size: 36px;
	}
	#main-slide .slider-content h3 {
		font-size: 22px;
		margin: 20px 0;
	}

	.slider.btn {
		padding: 5px 25px;
		margin-top: 5px;
		font-size: 16px;
	}

	#main-slide .carousel-indicators {
		bottom: 20px;
	}

	/* Cd Hero Slider */

	.cd-hero-slider .cd-btn {
		margin-top: 15px !important;
		font-size: 12px !important;
	}
	.cd-slider-nav ul li.video {
		display: none;
	}

	.cd-slider-nav {
		bottom: 40px !important;
	}

	/* Portfolio */

	.isotope-nav {
		margin: 0 auto 40px;
	}

	figure.effect-oscar figcaption {
		padding: 1.5em;
	}
	figure.effect-oscar figcaption::before {
		top: 15px;
		right: 15px;
		bottom: 15px;
		left: 15px;
	}
	figure.effect-oscar h3 {
		margin-top: 0;
		font-size: 16px;
	}

	/* Feature */

	.feature-content h3,
	.feature-center-content h3 {
		font-size: 14px;
		line-height: normal;
	}

	/* Featured tab */
	.featured-tab .tab-pane img {
		width: 45%;
	}

	.featured-tab .tab-pane i.big {
		font-size: 150px;
	}

	.featured-tab .tab-pane,
	.landing-tab .tab-pane {
		text-align: left;
	}

	/* Team */

	.team {
		padding-bottom: 50px;
	}

	/* Pricing */

	.plan {
		margin-bottom: 60px;
	}

	/* Testimonial */

	.testimonial-content {
		padding: 0 30px;
	}

	/* Recent post */
	.recent-post {
		padding-bottom: 40px;
	}

	/* Back to top */

	#back-to-top.affix {
		bottom: 35px;
	}

	/* Video block */

	.video-block-head {
		margin-top: 30px;
	}

	/* Call to action */

	.call-to-action .btn.btn-primary {
		font-size: 12px;
	}

	/*-- Landing ---*/

	.hero-text {
		width: 95%;
	}
	.hero-title {
		font-size: 36px;
	}
	.hero-buttons a.btn {
		padding: 10px 20px;
	}

	.app-gallery figure.effect-oscar a {
		margin-top: 105px;
	}

	/* Blog single */
	.blog-post {
		padding-bottom: 40px;
	}
}

/* Small Devices Potrait */
@media (max-width: 767px) {
	body {
		margin-top: 100px;
	}
	.full-logo {
		display: none;
	}
	.mobile-logo {
		display: block;
	}
	h3 {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	p,
	li,
	blockquote p {
		font-size: 15px;
	}
	/** New Tab **/
	.pdb40-tablet {
		padding-bottom: 30px;
	}
	.tab-content-local .tab-pane-local {
		display: block;
	}
	.nav-tabs-local {
		display: none;
	}
	.panel-title a {
		display: block;
		color: var(--white);
		font-weight: 300;
		text-decoration: none;
	}
	.panel-title a:hover {
		text-decoration: none !important;
	}
	.panel-default > .panel-heading {
		color: #333;
		background-color: var(--primary);
		border-color: var(--primary);
	}
	.local {
		margin-top: 0px !important;
	}
	.panel-heading {
		border-bottom: 0px solid transparent;
		border-top-right-radius: 0px;
		border-top-left-radius: 0px;
	}
	.panel {
		margin: 0;
		box-shadow: none;
		border-radius: 0;
		margin-top: -2px;
	}
	.tab-pane:first-child .panel {
		border-radius: 5px 5px 0 0;
	}
	.tab-pane:last-child .panel {
		border-radius: 0 0 5px 5px;
	}
	/** New Tab Close **/

	.blog-home h1:after {
		margin-top: 3px;
	}
	/** developments **/
	.btn-dev {
		margin-bottom: 20px;
	}
	.dev-text h2,
	.dev-text p {
		text-align: center;
	}
	/** developments close **/
	.page-info-title {
		font-size: 32px;
	}
	.blog-image img {
		height: auto;
	}
	.single_block li {
		background-size: 3%;
	}
	.wrapper-inside {
		max-height: 100%;
		background-color: unset;
	}
	.grid-img img {
		height: 400px;
	}
	.slide-single-property img {
		height: 480px !important;
	}
	.single-property-mobile,
	.property-description-mobile {
		display: block;
	}
	.single-property-full,
	.property-description-full {
		display: none;
	}
	.property-label {
		display: inherit;
		margin: 10px auto;
	}
	.view-all-properties {
		margin-top: 10px;
		margin-bottom: 18px;
	}
	.home_read_more {
		bottom: 12px;
	}
	.home-page h1 {
		font-size: 32px;
	}
	.footer_logo ul li {
		width: 170px;
		display: block;
		margin-bottom: 20px;
	}
	.footer {
		padding-top: 30px;
	}
	.acordion-master {
		margin: 0px;
	}
	.home_video {
		height: inherit;
		object-fit: cover;
		min-height: 640px;
	}
	.btn_home {
		min-width: 180px;
		margin: 20px 10px;
	}
	.popup-home-menu {
		top: 10%;
	}
	.overlay ul {
		width: 100%;
	}
	.blog-container {
		min-height: auto;
	}
	.author_details {
		position: relative;
	}
	.demo,
	.hidden-valuation {
		display: none !important;
	}
	.header-solid .nav {
		margin-top: 18px;
	}
	.read_time {
		font-size: 12px;
	}
	/**#show-hidden-menu{display: block;background: var(--medium-grey);padding: 1px;}**/
	.refine-results h3 {
		font-size: 15px;
		margin: 6px;
	}
	.hidden-menu {
		display: none;
	}
	#copyright {
		padding: 80px 0;
	}
	.header-phone-mobile {
		font-size: 23px;
		color: var(--white);
		margin-right: 0px;
		cursor: pointer;
		display: inline-block;
		margin-left: 7px;
	}
	.footer-sticky {
		display: block;
	}
	#myLocalArea {
		display: block;
	}
	.estate-map {
		width: 100%;
	}
	#meet-the-team,
	#services,
	#about-block,
	#extra-content,
	#local-area {
	}
	.contact-padding {
		padding-left: 0px;
	}
	.fees_apply a {
		float: none;
	}
	.single_propery_type {
		padding: 0px;
	}
	.navbar-right {
		text-align: center;
	}
	.header-search,
	.header-phone {
		display: none;
	}
	.nav-tabs-local > li > a {
		font-size: 13px;
		padding: 16px 11px;
	}
	.text-xs-center {
		text-align: center;
	}
	.nav-tabs > li > a {
		padding: 22px 25px;
	}
	.nav-tabs > li > a {
		font-size: 14px;
	}
	.footer_logo {
		margin-right: 0px;
	}
	.acordion-master h2 {
		font-size: 14px;
		margin: 0;
	}

	.header2 .navbar-brand {
		padding-left: 15px;
		margin-top: 11px;
	}
	.navbar-brand {
		/* background-image: url(../images/mobile-logo.png); */
		width: 50px;
	}

	.navbar-toggle {
		margin-right: 14px;
		margin-top: 16px;
	}
	.navbar-collapse {
		max-height: initial;
	}
	.navbar-search {
		display: block;
		margin-top: 16px;
	}

	.slider.btn {
		display: inline-block !important;
	}
	#search_keyword_holder {
		display: none;
	}
	.angle:before {
		height: auto;
	}
	.slider.btn {
		padding: 0px 10px;
		font-size: 15px;
	}
	.single_propery_type {
		margin-top: 16px;
		border-top: 1px solid rgb(255 255 255 / 50%);
		padding-top: 14px;
	}
	.single_property_block:before {
		left: auto;
	}
	.single_wrapper {
		min-height: auto;
	}
	.mobile-details-wrapper {
		text-align: right;
	}
	.title-single-box,
	.price-qualifier,
	.title-price {
		margin-bottom: 0px;
	}
	.title-single-box {
		margin-top: 6px;
	}
	.title-single {
		color: var(--titles);
		margin: 30px 0px 0px;
	}
	.title-single-sub {
		margin-top: 8px;
		font-weight: 500;
		margin-bottom: 8px;
		font-size: 20px;
	}
	.title-single-description {
		color: #848484;
		margin-bottom: 16px;
		font-weight: 300;
	}
	.property-label {
		margin: 0;
		align-self: flex-end;
	}
	.mobile-property-title-price {
		display: flex;
		justify-content: space-between;
	}
	.latest-details-tabs.prop-details-tabs {
		position: relative;
		height: unset;
		overflow: auto;
		display: flex;
		flex-direction: column;
	}
	.prop-details-tabs {
		background-color: white;
	}

	.prop-details-tabs .nav-item .nav-link {
		color: var(--titles);
		padding-left: 12px;
		font-size: 14px;
	}
	.prop-details-tabs .nav-item .nav-link i {
		font-size: 15px;
	}
	.prop-details-tabs .nav-item .nav-link {
		height: 36px;
		padding-left: 0;
		background: #f5f5f5;
		margin-bottom: 6px;
		padding-left: 12px;
	}
	.latest-details-tabs .nav-item:hover,
	.latest-details-tabs .nav-item:visited .latest-details-tabs .nav-item:active,
	.nav-item .active,
	.nav-tabs > li.active > a,
	.nav-tabs > li.active > a:hover,
	.nav-tabs > li.active > a:focus {
		background-color: white;
		background: white;
		color: var(--titles);
	}
	.latest-details-tabs .nav-item:hover a {
		text-decoration: underline;
	}
	.price-qualifier {
		margin-top: 12px;
		font-size: 16px;
		margin-bottom: 2px;
	}
	.title-price {
		margin-top: 2px;
	}
	.single_property_block:before {
		max-height: 285px;
	}
	hr {
		border-top: 1px solid var(--white);
	}
	.gallery-count {
		position: absolute;
		color: white;
		font-size: 13px;
		width: 100%;
		text-align: center;
		bottom: 0;
		font-weight: 400;
		background: rgba(0, 0, 0, 0.35);
	}
	.single-property .owl-nav {
		color: #ffffff;
		width: 100%;
		margin-bottom: -16px;
		height: 22px;
		display: flex;
		justify-content: space-between;
		transform: translateY(-22px);
	}
	.single-property .owl-nav span {
		font-size: 20px;
		background: none;
		backdrop-filter: unset;
		color: white;
		padding: 0;
		margin: 0;
	}
	.single-property .owl-nav button {
		position: relative;
		background-color: none;
		color: var(--white);
		margin: 0;
		transition: all 0.3s ease-in-out;
		top: unset;
		margin-top: -4px;
	}
	.single-property .owl-nav button.owl-prev {
		margin-left: 30px;
	}
	.single-property .owl-nav button.owl-next {
		margin-right: 30px;
	}
	.property-mobile-list-item:hover {
		cursor: pointer;
	}
	/* Common */
	.parallax {
		padding: 60px 0;
	}
	.style-switch-button {
		display: none;
	}

	.heading {
		text-align: center;
	}

	.heading .title-icon {
		float: none !important;
		margin: 0 0 20px;
		display: inline-block;
	}

	h2.title {
		font-size: 28px;
		border-left: 0;
	}

	.title-desc {
		line-height: normal;
		padding: 6px 55px 0;
	}

	.btn.btn-primary {
		padding: 8px 22px;
	}

	.areas-heading h3 {
		font-size: 28px;
	}
	.areas-heading h2 {
		font-size: 28px;
	}

	/* Logo */
	.navbar-brand.navbar-bg {
		height: 50px;
		line-height: 50px;
		width: auto;
	}
	.navbar-brand.navbar-bg img {
		background-size: contain;
		width: 160px;
	}

	/* Navigation */
	ul.navbar-nav > li > a {
		padding: 21px 10px;
	}

	.navbar-collapse {
		background: #000;
	}

	.navbar-collapse ul.navbar-nav > li > a {
		color: var(--white);
	}

	.navbar-collapse ul.navbar-nav > li.active > a,
	.navbar-collapse ul.navbar-nav > li:hover > a {
		color: #ee3b24;
	}
	.navbar-nav.navbar-center {
		position: relative;
		left: 0;
		transform: unset;
		margin: auto 0;
	}

	/* Slideshow */

	#main-slide .slider-content {
	}

	#main-slide .slider-content h2 {
		font-size: 18px;
		line-height: normal;
	}
	#main-slide .slider-content h3 {
		font-size: 22px;
		line-height: normal;
	}

	.slider.btn {
		display: none;
	}

	#main-slide .carousel-control {
		display: none;
	}

	#main-slide .carousel-indicators {
		bottom: 0;
	}

	.about {
		padding-top: 40px;
	}

	.about.angle:before {
		position: relative;
	}

	.service-content {
		display: inline-block;
		margin-bottom: 30px;
	}

	.isotope-nav {
		margin: 0 auto 40px;
	}

	.isotope-nav ul li a {
		padding: 5px 10px;
		margin-bottom: 10px;
		display: inline-block;
	}

	figure.effect-oscar h3 {
		margin-top: 25%;
	}

	#isotope .isotope-item .grid {
		padding-left: 10px;
		padding-right: 10px;
	}

	.img-block-right {
		padding-right: 50px;
	}

	.img-block-head h2 {
		font-size: 16px;
	}

	.img-block-head h3 {
		font-size: 28px;
	}

	.image-block-content {
		padding: 0;
	}

	.featured-tab {
		padding: 0 30px;
	}

	.featured-tab .tab-pane i.big {
		font-size: 150px;
	}

	.featured-tab .tab-pane,
	.landing-tab .tab-pane {
		text-align: left;
		padding-left: 0;
		padding-top: 30px;
	}

	.facts {
		padding-bottom: 20px;
	}

	.facts-num span {
		font-size: 48px;
		margin-top: 20px;
	}

	.facts i {
		font-size: 32px;
	}

	.team {
		padding-bottom: 50px;
	}

	.plan {
		margin-bottom: 60px;
	}

	.testimonial-content {
		padding: 0 30px;
	}

	.recent-post {
		padding-bottom: 40px;
	}

	.footer-widget {
		min-width: 50%;
	}

	.copyright-info {
		font-size: 13px;
	}

	#back-to-top {
		right: 20px;
	}
	#back-to-top.affix {
		bottom: 20px;
	}
	.call-to-action .btn.btn-primary {
		float: none !important;
		margin-top: 20px;
	}

	.hero-section {
		padding-top: 90px;
	}

	.hero-text {
		width: 100%;
		padding-right: 0;
	}
	.hero-title {
		font-size: 36px;
	}
	.hero-buttons a.btn {
		padding: 10px 20px;
	}

	.app-gallery figure.effect-oscar a {
		margin-top: 105px;
	}

	.hero-images img {
		display: none;
	}

	.landing_facts .facts-num span {
		font-size: 48px;
		margin-top: 20px;
	}

	.landing_facts .facts i {
		font-size: 30px;
	}

	/* Blog single */
	.blog-post {
		padding-bottom: 40px;
	}
	/*hero module */
	.hero-module-actions {
		flex-direction: column;
	}
	.hero-module-btn1,
	.hero-module-btn2 {
		min-width: 80%;
	}
	.content-text p {
		text-align: center;
	}
	.content-button {
		margin: auto;
		margin-bottom: 40px;
	}
	.ad-modal-image,
	.ad-modal-info,
	.ad-modal-title,
	.ad-modal-para {
		text-align: center;
	}
	.ad-modal-info {
		margin-top: 40px;
	}
	.ad-modal-image img {
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 640px) {
	.slide-single-property img {
		height: 410px !important;
	}
}

@media screen and (max-height: 450px) {
	.overlay {
		overflow-y: auto;
	}
	.overlay a {
		font-size: 20px;
	}
	.overlay .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
	}
}

@media only screen and (max-width: 480px) {
	body {
		margin-top: 84px;
	}
	.pull-right {
		width: 100%;
	}
	/** Footer Valuation **/
	.valuation_bottom {
		display: none;
		padding: 5px;
		margin: 0 auto;
		position: fixed;
		bottom: 0px;
		left: 0;
		height: auto;
		background-color: var(--medium-grey);
		width: 100%;
		z-index: 20;
	}
	.btn-2,
	.btn-3 {
		margin-bottom: 20px;
		width: 100%;
	}
	.page-info-title {
		font-size: 24px;
	}
	.page-estate-agent {
		font-size: 22px;
	}
	/** developments **/
	.hidden-mobile {
		display: none;
	}
	.hidden-desktop {
		display: block;
	}
	.dev2-content ul {
		padding: 0px;
	}
	.btn-dev {
		width: 80%;
		margin-bottom: 20px;
		padding: 11px 30px;
	}
	/** developments close **/
	.page-inner-sales-section {
		padding: 20px 0px 20px 0px;
	}
	.overlay-content {
		top: 14%;
	}
	.single_block li {
		background-size: 6%;
	}
	.overlay ul li a {
		font-size: 18px;
	}
	.page-inner-default-section {
		padding-top: 20px;
	}
	.share_post {
		display: block;
	}
	.sidenav {
		display: none;
	}
	.ribbon {
		top: 26.9px;
	}
	.propertyhive-views {
		width: 100%;
		margin-top: 14px;
		text-align: center;
	}
	.propertyhive-result-count {
		margin-top: 5px;
		font-size: 14px;
		width: 100%;
		float: left;
		text-align: center;
		font-weight: 600;
		padding-left: 0px;
		margin-bottom: 0px;
	}
	.propertyhive-ordering {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 0px;
		text-align: center;
		margin-top: 15px;
	}
	.propertyhive-views ul {
		padding: 0px;
	}
	.pd50-home {
		padding: 0px 0px 0px 0px;
	}
	.footer_logo ul li {
		width: 120px;
	}
	.pd40-footer-bottom {
		padding-bottom: 0px;
	}
	.btn_home {
		min-width: 120px;
		margin: 10px 7px;
		padding: 14px;
		font-size: 15px;
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.slider-buttons a {
		width: 100%;
		display: flex;
	}
	#logo {
		width: 60px;
	}
	.nav-home {
		margin-top: 20px;
	}
	.header-solid .nav-home {
		margin-top: 2px;
	}
	.nav {
		margin-top: 2px !important;
	}
	.header,
	.header-solid {
		padding: 10px 21px 10px;
	}
	.read_time {
		float: none;
	}
	.inner-heading {
		font-size: 22px;
		margin-bottom: 0px;
	}
	.author-title {
		font-size: 22px;
	}
	.btn-5,
	.btn-4 {
		padding: 11px 20px;
		font-size: 18px;
		width: 100%;
	}
	.contact_block {
		padding-left: 0px;
	}
	.contact-padding {
		padding-left: 20px;
		padding-bottom: 39px;
	}
	.estate-map {
		width: 100%;
	}
	.blog-image img {
		min-height: auto;
	}
	.navbar-toggle {
		margin-right: 0px;
	}
	.header2 .navbar-brand {
		padding-left: 0px;
	}
	.slide-single-property img {
		height: 320px !important;
	}
	.single_propery_type {
		text-align: left;
		font-size: 14px;
	}
	.fa-home {
		font-size: 14px;
	}
	.single-property-types {
		text-align: right;
		margin-bottom: 0px;
	}
	.single_property_block:before {
		max-height: 330px !important;
	}
	.sub-title-property {
		font-size: 16px;
	}
	.title-single,
	.title-price {
		font-size: 30px;
	}
	.testimonial:before {
		font-size: 30px;
		top: 0;
	}
	.header2 {
	}
	.insideheader_breadcrumbs {
		padding: 5px 0px;
	}
	.acordion-master h2 {
		font-size: 10px;
	}
	.footer {
		padding-top: 30px;
	}
	.acordion-master {
		margin: 0px;
	}
	#search_keyword_holder {
		display: none;
	}
	.angle:before {
		position: relative;
	}
	#main-slide .slider-content {
		top: 20% !important;
	}
	.slider.btn {
		margin-top: 11px;
	}
	.about-message-home {
		padding-left: 15px;
		padding-right: 15px;
	}
	.title-desc {
		padding: 0px 0px 0 !important;
	}
	section {
		padding: 0px 0;
	}
	.development-block h2 {
		font-size: 32px;
	}
	.pd80 {
		padding-top: 0px;
	}
	.blog-block {
		padding-top: 0px;
	}
	.service-row {
		margin-left: 0px;
		margin-right: 0px;
	}
	.ts-padding {
		padding: 0px;
	}
	.grid-img {
		max-height: 400px;
	}
	.grid-content .feature-info h4 {
		font-size: 22px;
		height: 55px;
	}
	.grid-content-inner {
		display: flex;
		flex-direction: column;
		min-height: 160px;
	}
	.grid-content h5 {
		font-size: 19px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	/* Slideshow */
	.line {
		display: none;
	}
	.ea_number {
		display: block;
	}
	.ea-padding {
		padding: 110px 0px 30px 0px;
	}
	.btn-2,
	.btn-3 {
		margin-bottom: 20px;
		width: 100%;
	}
	.padding_m {
		padding-left: 15px;
		padding-right: 15px;
	}
	.single-estate-office-details {
		font-size: 12px;
		text-align: left;
	}
	#search_keyword_holder_agents {
		display: none;
	}
	.estate-agents-block {
		margin-top: 22px;
	}
	.cta-buttons {
		margin-top: 30px;
	}
	.office-details h5 {
		font-size: 20px;
	}
	.office-details p {
		font-size: 16px;
	}
	.office-details {
		padding: 20px;
	}
	.nav-tabs-local > li > a {
		border-bottom: 1px solid #e8d5d5;
		border-right: 0px solid #e8d5d5;
	}
	.nav-tabs-local > li {
		float: none;
	}
	h1 {
		font-size: 24px;
		line-height: inherit;
	}
	.col-centered h2 {
		margin-bottom: 0;
		margin-top: 0;
		font-size: 17px;
		line-height: 20px;
	}
	.blog-home h1:after {
		margin-top: 3px;
	}
	.blog-home h1 {
		font-size: 24px;
		line-height: inherit;
	}
	.form-control {
		height: 43px;
		font-size: 18px;
	}
	.grid-box {
		padding: 30px 0px 0;
	}
	.hidden-btn-desktop {
		display: block;
	}
	.hidden-btn-mobile {
		display: none;
	}
	.valuation-button {
		width: 100%;
	}
	.hero-module-content h1 {
		font-size: 36px;
	}
}

.fade-in {
	animation: fadeIn ease 1.5s;
}
@keyframes fadeIn {
	100% {
		opacity: 1;
	}
}
@media (min-width: 993px) {
	.property-sidebar.minus-margin {
		margin-top: -275px;
	}
}

/* Cookie Bar */
.art-cookie {
	position: fixed;
	top: 0;
	height: 0;
	display: none;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	width: 100%;
	z-index: 99;
	background: var(--charcoal);
	visibility: hidden;
	overflow: hidden;
}
.home .art-cookie {
	position: -webkit-sticky;
	position: sticky;
}
.art-cookie.cookie-grow {
	height: 75px;
	visibility: visible;
}
.art-cookie-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	overflow: hidden;
	padding: 15px;
}
.art-cookie p {
	margin-top: 0;
	margin-bottom: 0;
	margin-right: 20px;
	font-size: 12px;
	color: white;
	line-height: 1.4;
}
.art-cookie a {
	color: var(--highlight);
	text-decoration: underline;
}
.art-cookie-button {
	outline: none;
	border: none;
	background: var(--secondary);
	color: white;
	font-size: 13px;
	padding: 8px 22px;
	border-radius: var(--radius);
}
/* End Cookie Bar */

#menu-location-we-cover {
	columns: 2;
}

/* Custom Form */
.custom-form-title {
	display: flex;
	justify-content: center;
	align-items: center;
}
.custom-form .gfield_validation_message {
	background: none !important;
	border: none !important;
	padding: 0 !important;
}
.custom-form .gform_required_legend {
	display: none;
}
.custom-form .custom_styleform_one input {
	border: none;
	height: 52px;
}
.custom-form .custom_styleform_one input[type='submit'] {
	border: none;
	width: 100%;
	background: var(--secondary);
	color: white;
	padding: 12px 16px;
	text-transform: capitalize;
	line-height: 1.75;
	font-size: 16px;
	font-weight: 600;
	transition: 0.5s;
	cursor: pointer;
}
.custom-form .custom_styleform_one input[type='submit']:hover {
	background: var(--secondary-dark);
}
.custom-form .gform_wrapper.gravity-theme #field_submit {
	display: block;
}
.custom-form .gform_ajax_spinner {
	display: none;
}
p.form-privacy-statement {
	font-size: 14px;
	margin-bottom: 0;
}

.video-homepage {
	aspect-ratio: 16/9;
	width: 100%;
	max-width: 560px;
	height: 100%;
}
@media (max-width: 992px) {
	#client-carousel .owl-dots {
		display: none;
	}
	#main-slide {
		height: 100%;
	}
	.ts-flex-slider .flexSlideshow {
		height: 100%;
	}
	.home-scroll {
		display: none;
	}
}
:is(.single-post) .container-blog .single_content :is(h2, h3, h4, h5, h6) {
	margin-top: 45px;
	margin-bottom: 10px;
}
.single-post figure {
	margin-top: 25px;
	margin-bottom: 25px;
}
.contact_us_map_office.map-iframe {
	height: 450px;
	margin-bottom: 15px;
}
.map-iframe iframe {
	width: 100%;
}

.contact_us_map_office iframe {
	width: 100%;
	height: 800px;
	min-height: 400px;
}
.contact_us_map_office {
	height: 600px;
}
@media (min-width: 992px) {
	.contact_us_map_office {
		min-height: 700px;
	}
}
.about-wrapper-top iframe {
	width: 100%;
	max-width: 560px;
}
/* 
* Gravity Forms - Hide Anti-Spam Honeypot Field 
*/
.gfield.gfield--type-honeypot {
	display: none !important;
}
/* FAQ Accordion */
.schema-faq.wp-block-yoast-faq-block {
	margin: 20px 0;
}
.schema-faq.wp-block-yoast-faq-block .schema-faq-section {
  margin-top: 15px; 
  background: #fcfcfc;  
}

.schema-faq.wp-block-yoast-faq-block .schema-faq-question {
  display: block;
  cursor: pointer;
  padding: 1em;
  background: var(--medium-grey); 
  position: relative;
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  padding-right: 4em;
}

.schema-faq.wp-block-yoast-faq-block .schema-faq-question::after {
  content: "+";
  position: absolute;
  right: 1em;
  transition: transform 0.3s;
    color: var(--primary);
    font-weight: 600;
    font-size: 38px;
    line-height: 38px;
    position: absolute;
    top: 14px;   
}
.schema-faq.wp-block-yoast-faq-block .schema-faq-section.active .schema-faq-question::after {
  content: "-";
}
.schema-faq.wp-block-yoast-faq-block .schema-faq-section.active .schema-faq-answer {
    background: var(--medium-grey);
}
.schema-faq.wp-block-yoast-faq-block .schema-faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease, padding 0.4s ease;
  padding: 5px 15px 5px 15px;  
  background: white;
  margin-bottom: 0;
}
/* Blockquote */
.single-post blockquote p {
	font-style: italic;
	font-weight: 600;
	font-size: 18px;
}
.single-post blockquote {
	position: relative;
  max-width: 530px;
  margin: 40px auto;
  border: none;	
}
.single-post blockquote:before {
  background-color: var(--primary);
  -webkit-mask: url(/wp-content/themes/art-division2/assets/images/quote.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(/wp-content/themes/art-division2/assets/images/quote.svg) no-repeat center;
  mask-size: contain;  background-repeat: no-repeat;
  content: '';
  width: 100px;
  height: 70px;
  display: block;
  position: absolute;
  z-index: -1;
  background-size: contain;
  top: -20px;
  bottom: 0;
  left: -15px;
  opacity: 0.2;
}