/*
 Theme Name:   Art Division Child theme
 Theme URI:    https://artdivision.co.uk
 Description:  A child theme for the Art Division Parent Theme
 Author:       Art Division
 Author URI:   https://artdivision.co.uk
 Template:     art-division2
 Version:      1.0.0
*/

/* Add your custom CSS below */
/* nunito-300 - latin */
@font-face {
	font-display: swap;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 300;
	src: url('./assets/fonts/nunito/nunito-v26-latin-300.woff2') format('woff2');
}
/* nunito-regular - latin */
@font-face {
	font-display: swap;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/nunito/nunito-v26-latin-regular.woff2') format('woff2');
}
/* nunito-italic - latin */
@font-face {
	font-display: swap;
	font-family: 'Nunito';
	font-style: italic;
	font-weight: 400;
	src: url('./assets/fonts/nunito/nunito-v26-latin-italic.woff2') format('woff2');
}
/* nunito-500 - latin */
@font-face {
	font-display: swap;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 500;
	src: url('./assets/fonts/nunito/nunito-v26-latin-500.woff2') format('woff2');
}
/* nunito-600 - latin */
@font-face {
	font-display: swap;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 600;
	src: url('./assets/fonts/nunito/nunito-v26-latin-600.woff2') format('woff2');
}
/* nunito-700 - latin */
@font-face {
	font-display: swap;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 700;
	src: url('./assets/fonts/nunito/nunito-v26-latin-700.woff2') format('woff2');
}
/* nunito-800 - latin */
@font-face {
	font-display: swap;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 800;
	src: url('./assets/fonts/nunito/nunito-v26-latin-800.woff2') format('woff2');
}
/* nunito-900 - latin */
@font-face {
	font-display: swap;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 900;
	src: url('./assets/fonts/nunito/nunito-v26-latin-900.woff2') format('woff2');
}
/* montserrat-regular - latin */
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/montserrat/montserrat-v26-latin-regular.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	src: url('./assets/fonts/montserrat/montserrat-v26-latin-500.woff2') format('woff2');
}

/* BEGIN STYLES */
/* ============================================================= */

/* Defaults */
html {
	scroll-behavior: smooth;
	max-width: unset !important;
}
.top-nav {
	max-width: unset !important;
}

:root {
	--green-grad-btn: linear-gradient(360deg, #3a501d, #79b342);
	--blue-grad-btn: linear-gradient(360deg, #001d3f, #002858);
	--red-grad-btn: linear-gradient(360deg, #a50c38, #db0c41);
	--transition: 0.4s ease;
	--br: 6px;
	--border-green: 1px solid #42601e;
	--border-blue: 1px solid #00132b;
	--border-red: 1px solid #8d0e37;
	--border-main: 1px solid #c6c9cd;
	--medium-grey: #edf2f7;
	--text: #292f36;
	--titles: #002858;
	--footer-text: white;
	--footer-titles: white;
	--shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
	--hover-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

body {
	font-family: 'Nunito', sans-serif;
	font-size: 18px;
	color: var(--text);
}

/* Typography */
/* ============================================================= */
h1,
.is-h1,
h2,
.is-h2,
h3,
.is-h3,
h4,
.is-h4,
h5,
.is-h5,
h6,
.is-h6 {
	font-family: 'Montserrat', sans-serif;
	text-transform: none;
	color: var(--primary);
	letter-spacing: -0.4px;
	text-wrap-style: pretty;
}

h2,
.is-h2 {
	font-size: 32px;
	font-weight: 600;
}
@media (min-width: 992px) {
	h2,
	.is-h2 {
		font-size: 42px;
	}
}

p {
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0px;
}

li {
	letter-spacing: 0px;
}

/* Globals (Buttons etc.) */
.art-btn.art-btn {
	text-transform: capitalize;
	font-size: 18px;
	letter-spacing: 0px;
	min-width: 180px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 2px solid transparent !important;
	border-radius: var(--br);
	z-index: 0;
}

.art-btn.art-btn:hover {
	box-shadow: var(--hover-shadow) !important;
}
.art-btn.art-btn:nth-child(odd) {
	background: var(--blue-grad-btn);
	border: var(--border-blue) !important;
}
.art-btn.art-btn:nth-child(even) {
	background: var(--green-grad-btn);
	border: var(--border-green) !important;
}
.art-btn.art-btn:nth-child(odd):hover,
.art-btn.art-btn:nth-child(even):hover {
	border: 1px solid #4d4d4d !important;
	transition: var(--transition);
}
.art-btn.art-btn:before {
	background: #a9a9a9 !important;
}
.hero-module-actions,
#home .art-btn-group {
	width: 100%;
}
@media (min-width: 768px) and (max-width: 992px) {
	.hero-module-actions,
	#home .art-btn-group {
		width: max-content;
	}
}
@media (min-width: 992px) {
	.hero-module-actions,
	#home .art-btn-group {
		width: max-content;
	}
}

/* Homepage 4 buttons */
.slider-content-wrap .art-btn-group a:nth-child(4) {
	background: var(--blue-grad-btn) !important;
	border: var(--border-blue) !important;
}

/* Owl Carousel - Global */
.owl-nav button,
.owl-nav button .fa-chevron-left,
.owl-nav button .fa-chevron-right {
	background: var(--blue-grad-btn) !important;
	border: var(--border-blue);
	color: white !important;
	font-weight: 900 !important;
	font-size: 22px;
	border-radius: var(--br);
	transition: var(--transition);
}
.owl-nav button:hover,
.owl-nav button .fa-chevron-left:hover,
.owl-nav button .fa-chevron-right:hover {
	background: #a9a9a9 !important;
	color: white !important;
	transition: var(--transition);
}
#clients .owl-nav button,
#clients .owl-nav button .fa-chevron-left,
#clients .owl-nav button .fa-chevron-right {
	background: transparent !important;
	border: unset !important;
	color: var(--titles) !important;
}
#clients .owl-nav button:hover,
#clients .owl-nav button .fa-chevron-left:hover,
#clients .owl-nav button .fa-chevron-right:hover {
	color: #79b342 !important;
}

/* Navbar & Header */
.nav-menu {
	margin-right: 2rem;
}
.nav-ul .nav-link {
	font-size: 18px;
	letter-spacing: 0px;
	padding: 0 0 0 1rem;
}
#nav-top-menu li.current-menu-item > a {
	border-bottom: solid 4px white;
	padding: 12px 0;
	transition: var(--transition) !important;
}
.top-nav i.nav-link:is(:hover, :focus) {
	color: var(--highlight);
}
.top-nav #nav-top-menu li.current-menu-item:hover > a {
	color: white;
}
.top-nav.top-nav-scrolled #nav-top-menu li.current-menu-item > a {
	border-bottom: solid 4px var(--highlight);
	padding: 12px 0;
	color: var(--highlight);
	transition: var(--transition) !important;
}
a.nav-link:is(:hover, :focus) {
	color: var(--highlight);
}
.top-nav.top-nav-scrolled .nav-link:is(:hover, :focus) {
	color: var(--highlight);
}
.header-two.header-two .sub-menu .nav-li a.nav-link:is(:hover, :focus) {
	color: var(--highlight);
}
.header-two .sub-menu {
	background: rgb(255 255 255 / 85%);
	box-shadow: rgba(38, 57, 77, 0.5) 0px 20px 30px -10px;
	border-radius: var(--br);
	backdrop-filter: blur(4px);
}
.header-two .sub-menu li {
	border-radius: var(--br);
	transition: var(--transition);
}
.header-two .sub-menu li:hover {
	background: rgba(0, 40, 88, 0.1);
	transition: var(--transition);
}
.sub-menu .menu-item:after {
	content: '' !important;
}
.header-two .sub-menu .nav-link {
	color: var(--primary);
}
.header-two .sub-menu .nav-link:is(:hover, :focus) {
	color: var(--highlight) !important;
}
.header-two .sub-menu .nav-li {
	margin-bottom: 6px;
}
.header-two .sub-menu .current-menu-item {
	background: linear-gradient(360deg, #5c7f2fc0, #79b342c0) !important;
	border: var(--border-green);
	border-bottom: unset !important;
	border-radius: var(--br);
}
.header-two .sub-menu .current-menu-item a {
	border-bottom: 0px solid #00132b !important;
	color: white !important;
}
.header-two .sub-menu .current-menu-item:hover a {
	color: white !important;
}
.top-nav .art-btn,
.top-nav.top-nav-scrolled .art-btn {
	background: var(--green-grad-btn) !important;
	border: var(--border-green) !important;
}

/* Magnifying Glass Menu */
.property-search-popup {
	height: 0;
	width: 100vw;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	z-index: 99;
	background: #00285899 !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	-o-backdrop-filter: blur(12px);
	transition: 0.75s;
	top: 0;
	max-width: 100%;
}

/* Hamburger Menu */
.hamburger-search-popup.hamburger-search-open {
	height: 100% !important;
}
.hamburger-search-close,
.property-search-close {
	border-radius: var(--br);
	border: 1px solid #4d4d4d !important;
	font-size: 32px !important;
	background: white !important;
	border: 2px solid transparent;
	color: var(--titles) !important;
}
/* Desktop */
@media (min-width: 992px) {
	.hamburger-search-close,
	.property-search-close {
		margin: 40px;
	}
}

.hamburger-search-close-btn-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	height: 50px;
	justify-content: center;
}
.hamburger-search-content-nav .nav-link {
	justify-content: flex-start !important;
	font-size: 20px !important;
}
ul.sub-menu.sub-menu-open {
	margin-bottom: 10%;
}
#nav-hamburger-menu a.nav-link:is(:hover, :focus, :focus-visible, :active) {
	color: var(--btn-secondary-bg-colour);
}
/* LOGO */
.menu-hamburger-menu-container:before {
	content: '';
	background-image: url(/dacres_commercial_logo-raw-scaled/);
	background-repeat: no-repeat;
	background-size: 100%;
	display: block;
	background-position: center;
	width: 100% !important;
	height: 150px !important;
	margin-bottom: 40px;
}
@media (min-width: 992px) {
	.menu-hamburger-menu-two-container:before {
		content: '';
		background-image: url(/dacres_commercial_logo-raw-scaled/);
		background-repeat: no-repeat;
		background-size: 100%;
		display: block;
		background-position: center;
		width: 100% !important;
		height: 150px !important;
		margin-bottom: 10px;
	}
	/* Hide mobile hamburger menu company logo */
	.menu-hamburger-menu-container:before {
		display: none;
	}
}

@media (min-width: 992px) {
	#nav-hamburger-menu-two .art_ham-phone a.nav-link {
		padding-top: 0;
	}
}

#nav-hamburger-menu-two {
	display: flex;
	flex-direction: column;
}
@media (min-width: 992px) {
	#nav-hamburger-menu-two {
		display: block;
	}
}

li#menu-item-16098 {
	order: 2;
}
li#menu-item-16099 {
	order: 3;
}
@media (min-width: 992px) {
	li#menu-item-16098 {
		order: unset;
	}
	li#menu-item-16099 {
		order: unset;
	}
}

#nav-hamburger-menu-two .art_ham-phone a.nav-link:before {
	content: '\f095';
	font-family: 'Font Awesome 6 Pro';
	font-weight: 600;
	color: white;
	padding-right: 20px;
	transition: var(--transition);
}
#nav-hamburger-menu-two .art_ham-email a.nav-link:before {
	content: '\f0e0';
	font-family: 'Font Awesome 6 Pro';
	font-weight: 600;
	color: white;
	padding-right: 20px;
	transition: var(--transition);
}
#nav-hamburger-menu-two .art_ham-phone a.nav-link:hover:before,
#nav-hamburger-menu-two .art_ham-phone a.nav-link:hover,
#nav-hamburger-menu-two .art_ham-email a.nav-link:hover:before,
#nav-hamburger-menu-two .art_ham-email a.nav-link:hover {
	color: var(--highlight);
	transition: var(--transition);
}
#nav-hamburger-menu-two .art_ham-cta-residential-site {
	background: var(--green-grad-btn) !important;
	border: var(--border-green);
	border-radius: var(--br);
	transition: var(--transition);
	margin-top: 20px;
}
#nav-hamburger-menu-two .art_ham-cta-residential-site:hover {
	background: #a9a9a9 !important;
	border: 1px solid #4d4d4d;
	transition: var(--transition);
}
#nav-hamburger-menu-two .art_ham-cta-residential-site a.nav-link {
	padding: 10px;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Homepage Hero Section */
.home-page .is-h1 {
	font-size: 36px;
	font-weight: 600;
	color: white;
	text-align: center;
	width: 100%;
	text-shadow: 2px 2px 6px rgb(0 0 0 / 36%);
	text-wrap-style: balance;
}
@media (min-width: 992px) {
	.home-page .is-h1 {
		font-size: 60px;
	}
}

.home-page .art-btn-group {
	margin-top: 40px;
}
#main-slide .art-btn-group a:nth-child(2) {
	order: 3;
}
.overlay2::before {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 36, 81, 0.3) 80%, rgba(0, 0, 0, 0.4) 100%);
}

/* Hero Module (Inner Pages) */
.hero-module-content .container {
	max-width: 1540px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	width: 100%;
	position: relative;
}
.hero-module-content .container h1,
.hero-module-content .container p {
	text-align: left;
	letter-spacing: 0px;
	margin-left: 0;
	text-shadow: 2px 2px 6px rgb(0 0 0 / 66%);
}
.hero-module-content h1 {
	font-size: 46px;
	font-weight: 600;
}
@media (min-width: 992px) {
	.hero-module-content h1 {
		font-size: 60px;
	}
}

.hero-module-content .container p {
	font-size: 18px;
}
@media (min-width: 992px) {
	.hero-module-content .container p {
		font-size: 25px;
	}
}

.hero-module-content .container .art-btn-group {
	margin: 0;
}
.hero-module-image img {
	max-height: 900px;
}
.hero-module-image picture {
	display: block;
	position: relative;
	overflow: hidden;
	height: 100vh;
	max-height: 900px;
}
.art-fixed-header .hero-module-image picture {
	height: calc(100vh - 130px);
}
.hero-module-image img {
	object-fit: cover;
	max-height: 900px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transform: translateZ(0);
	will-change: transform;
}
.hero-module-image::after {
	height: 100vh;
	max-height: 900px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 36, 81, 0.3) 80%, rgba(0, 0, 0, 0.4) 100%);
}
.art-fixed-header .hero-module-image::after {
	height: calc(100vh - 130px);
}

/* Centered Content Module */
.content-module #extra-content .col-md-12 {
	padding: 0;
}
.content-module #extra-content .col-md-12 h2,
.content-module #extra-content .col-md-12 p {
	text-align: left;
}
@media (min-width: 992px) {
	.content-module #extra-content .col-md-12 h2,
	.content-module #extra-content .col-md-12 p {
		text-align: center;
	}
}

.content-module #extra-content .col-md-12 .art-btn-group {
	margin: 0;
}
@media (min-width: 992px) {
	.content-module #extra-content .col-md-12 .art-btn-group {
		margin: 0 auto;
	}
}

/* Image Text Modules */
.content-image-text .content-text {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.content-images.content-image-right.fade-right {
	display: flex;
	justify-content: flex-end;
}
.content-images.content-image-left.fade-left {
	display: flex;
	justify-content: flex-start;
}
.content-image-left img,
.content-image-right img {
	border-radius: var(--br);
	width: 100%;
	height: 250px;
	box-shadow: var(--shadow);
}
@media (min-width: 768px) and (max-width: 992px) {
	.content-image-left img,
	.content-image-right img {
		width: 100%;
		height: 400px;
	}
}
@media (min-width: 992px) {
	.content-image-left img,
	.content-image-right img {
		width: 700px;
		height: 500px;
	}
}
.content-image-text .content-text h2,
.content-image-text .content-text p {
	text-align: left;
}
.content-image-text .content-button a {
	width: 180px;
	min-width: 180px;
}
@media (min-width: 992px) {
	.content-image-text .content-button a {
		min-width: unset;
	}
}
.content-image-text li {
	padding-left: 8px;
}
.content-image-text li::marker {
	font-family: 'Font Awesome 6 Pro';
	color: var(--primary);
	content: '\f0a9';
	font-weight: 900;
	padding-right: 10px;
}

/* Services We Offer */
#services .col-md-12 {
	padding: 0;
}
#services .col-md-12 h2 {
	text-align: left;
}
@media (min-width: 992px) {
	#services .col-md-12 h2 {
		text-align: center;
	}
}

.service-heading-item h3 {
	text-align: left;
	text-transform: capitalize;
	font-size: 24px;
	font-weight: 500;
	padding: 35px 30px;
	text-shadow: 2px 2px 6px rgb(0 0 0 / 66%);
}
@media (min-width: 992px) {
	.service-heading-item h3 {
		font-size: 26px;
		font-weight: 500;
		padding: 40px 55px;
		text-shadow: 2px 2px 6px rgb(0 0 0 / 66%);
	}
}
.services-item {
	border-radius: var(--br);
	border: 2px solid white;
}
.services-item:hover {
	background-color: rgba(0, 29, 63, 0.6) !important;
	background-blend-mode: color-dodge;
	filter: unset !important;
	-webkit-filter: unset !important;
}
.services-item:before {
	border-radius: var(--br);
}
.row.service-row.no-margin a:nth-child(1) div.lozad.services-item,
.row.service-row.no-margin a:nth-child(2) div.lozad.services-item,
.row.service-row.no-margin a:nth-child(3) div.lozad.services-item,
.row.service-row.no-margin a:nth-child(4) div.lozad.services-item,
.row.service-row.no-margin a:nth-child(5) div.lozad.services-item {
	width: 100%;
	height: 200px;
}
@media (min-width: 992px) {
	.row.service-row.no-margin a:nth-child(1) div.lozad.services-item,
	.row.service-row.no-margin a:nth-child(2) div.lozad.services-item,
	.row.service-row.no-margin a:nth-child(3) div.lozad.services-item {
		width: 50%;
		height: 350px;
	}
	.row.service-row.no-margin a:nth-child(4) div.lozad.services-item,
	.row.service-row.no-margin a:nth-child(5) div.lozad.services-item {
		width: 25%;
		height: 350px;
	}
}

/* Services - Slider Over Multi */
.art-module-multi--img-hover .art-module-multi-content {
	border-radius: var(--br);
	height: 280px;
	transition: var(--transition);
}
@media (min-width: 992px) {
	.art-module-multi--img-hover .art-module-multi-content {
		height: 350px;
	}
}
.art-module-multi--img-hover .art-module-multi-content:hover {
	box-shadow: var(--hover-shadow);
	transition: var(--transition);
}
.art-module-multi-content-img,
.art-module-multi-content-img img {
	height: 100%;
	object-fit: cover;
}
.art-module-multi--img-hover .art-module-multi-content-txt {
	padding: 0 30px 30px 30px !important;
	width: 100% !important;
	left: 0 !important;
	top: 0;
	text-align: left;
	transition: var(--transition);
}
.art-module-multi--img-hover .art-module-multi-content .art-module-multi-content-txt {
	transform: translate(0, -60%);
	justify-content: unset;
}
@media (min-width: 992px) {
	.art-module-multi--img-hover .art-module-multi-content .art-module-multi-content-txt {
		transform: translate(0, 0%);
		justify-content: unset;
	}
}

.art-module-multi--img-hover .art-module-multi-content:hover .art-module-multi-content-txt {
	justify-content: unset !important;
	transition: var(--transition);
}
.art-module-multi--img-hover .art-module-multi-content-txt p {
	font-size: clamp(13.5px, 1em, 2vw);
}
@media (min-width: 992px) {
	.art-module-multi--img-hover .art-module-multi-content-txt p {
		font-size: 16px;
		margin-left: 0;
		margin-right: 0;
	}
}
.art-module-multi--img-hover .art-module-multi-content:hover .art-module-multi-content-txt p {
	font-size: clamp(13.5px, 1em, 2vw) !important;
	text-align: left !important;
}
@media (min-width: 992px) {
	.art-module-multi--img-hover .art-module-multi-content:hover .art-module-multi-content-txt p {
		font-size: 16px !important;
	}
}

.art-module-multi--img-hover .art-module-multi-content:before {
	background: rgba(0, 29, 63, 0.6) !important;
	mix-blend-mode: hard-light !important;
}
@media (min-width: 992px) {
	.art-module-multi--img-hover .art-module-multi-content:before {
		background: linear-gradient(0deg, rgba(0, 29, 63, 0.802) 20%, rgba(0, 0, 0, 0) 100%) !important;
	}
}
.art-module-multi--img-hover .art-module-multi-content:hover:before {
	opacity: 1 !important;
	transition: var(--transition) !important;
	background: rgba(0, 29, 63, 0.402) !important;
}
@media (min-width: 992px) {
	.art-module-multi--img-hover .art-module-multi-content:hover:before {
		backdrop-filter: blur(4px);
		background: rgba(0, 29, 63, 0.802) !important;
	}
}
.art-module-multi--img-hover .art-module-multi-content-txt {
	top: 83% !important;
	left: 0px !important;
}
@media (min-width: 992px) {
	.art-module-multi--img-hover .art-module-multi-content-txt {
		top: 86% !important;
	}
}

.art-module-multi--img-hover .art-module-multi-content-txt h2 {
	color: #fff !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	letter-spacing: -0.4px !important;
	text-transform: capitalize !important;
	transition: var(--transition);
	filter: drop-shadow(0px 0px 8px #000000f0);
}
@media (min-width: 992px) and (max-width: 1456px) {
	.art-module-multi--img-hover .art-module-multi-content-txt h2 {
		font-size: clamp(15px, 20px, 1em) !important;
	}
}

.art-module-multi--img-hover .art-module-multi-header-content p {
	text-align: left;
}
@media (min-width: 992px) {
	.art-module-multi--img-hover .art-module-multi-header-content p {
		text-align: center;
	}
}

/* Team Members carousel */
.team-member-module .meet-the-team.no-padding h2 {
	text-align: left;
}
@media (min-width: 992px) {
	.team-member-module .meet-the-team.no-padding h2 {
		text-align: center;
	}
}

.team-member-module .owl-carousel-team-members .team-content {
	padding: 0;
}
@media (min-width: 992px) {
	.team-member-module .owl-carousel-team-members .team-content {
		padding: 30px 15px;
	}
}

.team-member-module .img-hexagon {
	height: 500px !important;
	border-radius: var(--br);
}
.team-member-module .team .img-hexagon img {
	border-radius: var(--br);
	overflow: hidden;
	height: 100%;
}
.team-member-module .team .team-content h3 {
	text-align: left;
	border-bottom: 2px solid rgba(0, 40, 88, 0.1);
	padding: 10px 0;
}
.team-member-module .team .team-content p {
	margin-right: auto;
	margin-left: unset;
	margin-top: 0;
	text-align: left;
	text-transform: capitalize;
	letter-spacing: 0px;
	padding: 10px 0;
	font-size: 18px;
}
@media (min-width: 992px) {
	.team-member-module .team .team-content p {
		margin-right: auto;
		margin-left: unset;
		margin-top: auto;
	}
}

.team-member-item {
	max-width: 100%;
}
@media (min-width: 992px) {
	.team-member-item {
		max-width: 347.5px;
	}
}

.meet-team-flex p {
	text-align: left !important;
}
@media (min-width: 992px) {
	.meet-team-flex p {
		text-align: center !important;
	}
}

.meet-the-team.team-member-module .art-btn-group {
	padding: 0 15px;
	margin: 0;
}
@media (min-width: 768px) and (max-width: 992px) {
	.meet-the-team.team-member-module .art-btn-group {
		margin: 0 auto;
	}
}
@media (min-width: 992px) {
	.meet-the-team.team-member-module .art-btn-group {
		margin: 0 auto;
	}
}

.team-member-module .owl-nav {
	position: relative;
	top: -500px;
	display: block !important;
}
.text-center.team-member-container.owl-carousel-team-members.owl-carousel.owl-theme.owl-loaded.owl-drag {
	height: 650px;
}
@media (min-width: 992px) {
	.text-center.team-member-container.owl-carousel-team-members.owl-carousel.owl-theme.owl-loaded.owl-drag {
		height: auto;
	}
}

/* Multi Section (2 columns text) */
.art-module-multi-content-container {
	gap: 20px;
}
@media (min-width: 992px) {
	.art-module-multi-content-container {
		gap: 60px;
	}
}
.art-module-multi .art-module-multi-content h2 {
	font-size: 34px;
}
.art-module-multi .art-module-multi-content .art-btn-group .art-btn {
	margin-top: 30px;
}
.art-module-multi .art-module-multi-content:nth-child(even) .art-btn-group .art-btn {
	background: var(--green-grad-btn);
	border: var(--border-green);
}
.art-module-multi-content-img img {
	border-radius: var(--br);
}

/* Multi - Mini cards */
.art-multi-cards .art-module-multi-header {
	width: 100%;
}
.art-multi-cards .art-module-multi-header h2,
.art-multi-cards .art-module-multi-header .art-module-multi-header-content p {
	text-align: left;
}
@media (min-width: 992px) {
	.art-multi-cards .art-module-multi-header h2,
	.art-multi-cards .art-module-multi-header .art-module-multi-header-content p {
		text-align: center;
	}
}

.art-multi-cards .art-module-multi-content-container {
	margin: unset;
	justify-content: unset;
	align-items: unset;
	width: 100%;
}
@media (min-width: 992px) {
	.art-multi-cards .art-module-multi-content-container {
		margin: 20px auto 0 auto;
		justify-content: center;
		align-items: flex-start;
	}
}

.art-multi-cards .art-module-multi-content {
	height: clamp(100%, 2em, 2vh);
	padding: 20px;
	background: white;
	border: var(--border-main);
	border-radius: var(--br);
	box-shadow: var(--shadow);
}
.art-multi-cards .art-module-multi-content:nth-child(odd) .art-module-multi-content-icon i {
	background: var(--blue-grad-btn);
	border: var(--border-blue);
}
.art-multi-cards .art-module-multi-content:nth-child(even) .art-module-multi-content-icon i {
	background: var(--green-grad-btn);
	border: var(--border-green);
}
.art-multi-cards .art-module-multi-content-icon i {
	font-size: 28px;
	font-weight: 900;
	color: white;
	padding: 10px;
	border-radius: var(--br);
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.art-multi-cards .art-module-multi-content-txt h2 {
	font-size: 28px;
	margin-bottom: 16px;
}
.art-multi-cards .art-module-multi-content-txt h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
}

/* Multi - Mini Cards - Centered Icons */
.art-multi-cards.centered-icons .art-module-multi-content-icon i {
	font-size: 28px;
	font-weight: 900;
	color: white;
	padding: 10px;
	border-radius: var(--br);
	width: 50px;
	display: flex;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	align-content: center;
}

/* FAQs */
.faqs-splittable h3 {
	font-weight: 600 !important;
}
.faqs-splittable .ac .ac-trigger {
	font-weight: 500 !important;
	letter-spacing: 0px !important;
	color: var(--text) !important;
}
.ac .ac-trigger::after {
	color: var(--btn-secondary-bg-colour);
}
.faqs-splittable .ac-main-text p {
	font-size: 18px;
	letter-spacing: normal;
	color: white !important;
}
.ac.is-active > .ac-header .ac-trigger::after {
	color: var(--highlight);
}
.faqs-splittable .ac-main-container {
	background: var(--blue-grad-btn);
	border: var(--border-blue);
	padding: 10px 28px;
	border-radius: var(--br);
	margin-bottom: 10px;
}
.faqs-splittable .ac-main-container ul li {
	color: white !important;
}
.faqs-splittable.faqs-splittable .ac .ac-trigger {
	letter-spacing: normal;
}

/* Areas We Cover Module */
#areas-modern-carousel .owl-item.active {
	transition: var(--transition);
}
#areas-modern-carousel .owl-item.active:hover {
	transition: var(--transition);
	box-shadow: var(--hover-shadow);
}
#areas-modern-carousel.client-carousel img,
#areas-modern-carousel .areas-modern-overlay,
#areas-modern-carousel .area-modern-button {
	border-radius: var(--br);
}
.areas-we-cover-image:hover .areas-modern-overlay {
	background-color: rgba(0, 29, 63, 0.6) !important;
	background-blend-mode: screen;
	filter: unset !important;
	-webkit-filter: unset !important;
}
#areas-modern-carousel .area-modern-button {
	font-size: 16px;
	text-transform: capitalize;
	letter-spacing: 0px;
	padding: 12px 16px;
	margin-top: 64px;
	color: white;
	background: var(--green-grad-btn);
	border: var(--border-green);
	transition: var(--transition);
	border-radius: var(--br);
}
#areas-modern-carousel .area-modern-button:hover,
#areas-modern-carousel .area-modern-button:before {
	color: var(--white) !important;
	font-weight: 600;
	border-radius: var(--br);
	transition: var(--transition);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
#areas-modern-carousel .client_logo h3 {
	text-transform: capitalize;
	font-weight: 500;
}
#areas-modern-carousel .owl-nav {
	position: relative;
	top: 0;
	margin: 0 auto;
}
#areas-modern-carousel .owl-item {
	cursor: pointer;
}
#areas-modern-carousel .owl-nav {
	position: unset;
	top: unset;
	margin: unset;
}
#areas-modern-carousel .owl-nav button {
	top: 440px;
}
@media (min-width: 992px) {
	#areas-modern-carousel .owl-nav button {
		top: -100px;
	}
}

#areas-modern-carousel .owl-nav button.owl-prev {
	right: 315px !important;
}
@media (min-width: 475px) and (max-width: 767px) {
	#areas-modern-carousel .owl-nav button.owl-prev {
		right: calc(100vw - 5em) !important;
	}
}
@media (min-width: 767px) and (max-width: 846px) {
	#areas-modern-carousel .owl-nav button.owl-prev {
		right: calc(100vw - 9.5em) !important;
	}
}
@media (min-width: 846px) and (max-width: 992px) {
	#areas-modern-carousel .owl-nav button.owl-prev {
		right: calc(100vw - 11em) !important;
	}
}
@media (min-width: 992px) {
	#areas-modern-carousel .owl-nav button.owl-prev {
		right: 65px !important;
	}
}

#areas-modern-carousel .owl-nav button.owl-next {
	right: 0px !important;
}

.areas-modern-title {
	margin-bottom: 20px;
}
@media (min-width: 992px) {
	.areas-modern-title {
		margin-bottom: 55px;
	}
}

.areas-we-cover-modern {
	padding-bottom: 60px;
}
@media (min-width: 992px) {
	.areas-we-cover-modern {
		padding-bottom: unset;
	}
}

/* Areas We Cover Page */
.page-id-15317 .estate-agents-areas-we-cover-content h1 {
	text-align: center;
	letter-spacing: 0px;
	font-weight: 600;
	font-size: 38px;
}
@media (min-width: 992px) {
	.page-id-15317 .estate-agents-areas-we-cover-content h1 {
		font-size: 48px;
	}
}

.page-id-15317 .estate-agents-areas-we-cover-area,
.page-id-15317 .estate-agents-areas-we-cover-area img {
	border-radius: var(--br);
	transition: var(--transition);
}
.page-id-15317 .estate-agents-areas-we-cover-area img {
	height: 250px;
	min-height: unset !important;
}
@media (min-width: 992px) {
	.page-id-15317 .estate-agents-areas-we-cover-area img {
		height: 350px;
	}
}

.page-id-15317 .estate-agents-areas-we-cover a {
	z-index: 9;
}
.page-id-15317 .estate-agents-areas-we-cover-area:before {
	content: '';
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	transition: var(--transition);
	background: rgba(0, 29, 63, 0.6) !important;
	mix-blend-mode: hard-light;
}
@media (min-width: 992px) {
	.page-id-15317 .estate-agents-areas-we-cover-area:before {
		height: 350px;
		width: 100%;
	}
}

.page-id-15317 .estate-agents-areas-we-cover-area:hover:before {
	content: '';
	display: block;
	opacity: 1;
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	transition: var(--transition);
	background: rgba(0, 29, 63, 0.8) !important;
	mix-blend-mode: hard-light;
}
@media (min-width: 992px) {
	.page-id-15317 .estate-agents-areas-we-cover-area:hover:before {
		height: 350px;
		width: 100%;
	}
}

.page-id-15317 .estate-agents-areas-we-cover span {
	font-family: 'Montserrat', sans-serif;
	text-transform: capitalize;
	font-weight: 500;
	text-shadow: 2px 2px 6px rgb(0 0 0 / 66%);
	color: white !important;
	z-index: 9;
}

/* Property Slider */
.properties-for-sale .col-md-12.text-center {
	padding: 0;
}
.properties-for-sale .col-md-12.text-center h2 {
	text-align: left;
}
@media (min-width: 992px) {
	.properties-for-sale .col-md-12.text-center h2 {
		text-align: center;
	}
}

.owl-carousel-property-list .grid-img-home {
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
.owl-carousel-property-list .grid-content-home {
	background-color: var(--primary);
	padding-top: 16px;
	padding-right: 25px;
	padding-left: 25px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}
.owl-carousel-property-list .feature-info-home h5 {
	color: var(--highlight);
}
.owl-carousel-property-list .property-archive-title h4 {
	color: white;
}
.owl-carousel-property-list .icons-list {
	display: none;
}
.owl-carousel-property-list .icons-list li {
	color: white;
}
.owl-carousel-property-list .grid-img-home {
	max-height: 300px;
	height: 300px;
}
.owl-carousel-property-list .grid-content-home h5 {
	font-size: 30px;
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 0;
}
.owl-carousel-property-list .grid-content-home .feature-info-home h4 {
	font-family: 'Nunito', sans-serif;
	font-size: 20px;
	font-weight: 700;
}
.grid-content-home .feature-info-home h4 {
	height: 50px;
}
.property-label.label-archive {
	bottom: 0;
	right: 0;
	left: unset;
	top: unset;
	margin: 0;
	padding: 10px 12px 10px 22px;
	border-top-left-radius: 20px;
	font-size: 16px;
	letter-spacing: 0px;
	font-weight: 600;
	text-transform: uppercase;
	font-weight: normal;
	line-height: normal;
	background: var(--green-grad-btn);
}
.property-label.label-archive.property-label-to-let,
.property-label.label-archive.property-label-available {
	background: linear-gradient(#7ca7c7 0%, #364856 100%);
	border: 1px solid #26323b8c;
}
/* .property-label.label-archive.property-label-sold-stc,
.property-label.label-archive.property-label-under-offer {
	background: var(--green-grad-btn);
	border: var(--border-green);
} */
.property-label.label-archive.property-label-sold,
.property-label.label-archive.property-label-sold-stc,
.property-label.label-archive.property-label-under-offer {
	background: var(--red-grad-btn);
	border: var(--border-red);
}
.properties-for-sale .art-btn-group .art-btn {
	display: none;
}
.properties-for-sale .owl-nav {
	position: relative;
	top: -250px;
}

/* Property Archive */
.control.control-commercial_minimum_rent,
.control.control-commercial_maximum_rent {
	display: none;
}
.btn-shortlisted-property-form.art-modal-23 {
	display: none;
}
.page-inner-sales-section h1.page-info-title {
	font-size: 29px;
	font-weight: 700;
	color: var(--titles);
	letter-spacing: 0px;
}
@media (min-width: 992px) {
	.page-inner-sales-section h1.page-info-title {
		font-size: 32px;
	}
}

.control-commercial_minimum_price,
.control-commercial_maximum_price,
.control-commercial_minimum_rent,
.control-commercial_maximum_rent {
	width: 500px !important;
}
@media (min-width: 992px) {
	.control-commercial_minimum_price,
	.control-commercial_maximum_price,
	.control-commercial_minimum_rent,
	.control-commercial_maximum_rent {
		width: max-content !important;
	}
}

.control-commercial_minimum_price,
.control-commercial_minimum_rent {
	padding: 0 5px 20px 0 !important;
}
@media (min-width: 992px) {
	.control-commercial_minimum_price,
	.control-commercial_minimum_rent {
		padding: 0 10px 0 0 !important;
	}
}

.control-commercial_maximum_price,
.control-commercial_maximum_rent {
	padding: 0 0 20px 5px !important;
}
@media (min-width: 992px) {
	.control-commercial_maximum_price,
	.control-commercial_maximum_rent {
		padding: 0 10px 0 0 !important;
	}
}

.page-inner-sales-section .container .col-md-12.text-center {
	padding: unset !important;
}
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,
.propertyhive-ordering select {
	border-radius: var(--br) !important;
	color: var(--titles) !important;
	border: var(--border-main);
}
button.art-btn.art-property-search {
	height: 40px;
	width: 100%;
	min-width: 80px !important;
}
select#orderby {
	background: unset;
}
.art-orderby-filter {
	padding: 8px 12px;
	background: var(--medium-grey);
	border-radius: var(--br);
	border: var(--border-main);
	font-family: 'Nunito';
	font-size: 13px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	height: 45px;
}
.switch-view {
	color: var(--titles);
	border-radius: var(--br);
	border: var(--border-main);
}
.switch-view i {
	color: var(--highlight) !important;
}
.switch-view.list-btn.active i,
.switch-view.grid-btn.active i,
.switch-view.map-btn.active i {
	color: white !important;
}
.view-buttons .active {
	font-weight: 700;
}
.property-archive-container .view-buttons {
	gap: 4px;
}
.shortlist-search-buttons {
	gap: 4px;
}
.shortlist-search-buttons form select {
	border-radius: var(--br);
	border: var(--border-main);
}
.control-include {
	display: none !important;
}
#search_block .grid-box-card {
	border-radius: var(--br);
	box-shadow: var(--shadow);
	border: var(--border-main);
	transition: var(--transition);
}
#search_block .grid-box-card:hover {
	box-shadow: var(--hover-shadow);
	transition: var(--transition);
}
#search_block .grid-img {
	border-radius: var(--br) var(--br) 0 0;
}
#search_block .grid-content .feature-info h4 {
	font-size: 20px;
	color: var(--titles);
	font-weight: 700;
	margin-bottom: 8px;
	height: max-content;
	padding-bottom: 15px;
}
@media (min-width: 992px) {
	#search_block .grid-content .feature-info h4 {
		font-size: 22px;
	}
}

.grid-content-inner .property-single-description {
	color: var(--titles);
}
.property-excerpt p {
	font-size: 14px !important;
}
#search_block .feature-info {
	display: flex;
	flex-direction: column;
}
#search_block .property-archive-title {
	display: flex;
	justify-content: space-between;
	order: 1;
}
#search_block .grid-content-inner .property-single-description {
	order: -1;
	display: flex;
	background: var(--medium-grey);
	border-radius: var(--br);
	padding: 4px 10px;
	width: max-content;
	text-transform: capitalize;
	margin-bottom: 10px;
	text-overflow: ellipsis;
	max-width: 320px;
}
@media (min-width: 992px) {
	#search_block .grid-content-inner .property-single-description {
		max-width: unset;
	}
}

#search_block .property-archive-price {
	margin-bottom: 10px;
}
.property-archive-price {
	font-size: 24px;
	margin: 6px 0 6px;
	color: var(--primary);
}
.grid-view .grid-shortlist-heart .button {
	color: var(--highlight);
}
.propertyhive-pagination ul li a {
	background: rgb(175 176 179);
	transition: var(--transition);
}
.filter-properties-container {
	display: none;
}
#search_block .grid-img img {
	height: 250px;
}
@media (min-width: 992px) {
	#search_block .grid-img img {
		height: 275px;
	}
}

#search_block .property-excerpt p {
	overflow: unset;
}
.propertyhive-pagination ul li a {
	background: var(--blue-grad-btn);
	border: var(--border-blue);
	transition: var(--transition);
}
.page-numbers.current {
	background: var(--green-grad-btn);
	border: var(--border-green);
}
.propertyhive-pagination ul li a:hover {
	background: #a9a9a9 !important;
	transition: var(--transition);
}

/* Single Property Page */
.top-section-media-list {
	gap: 2px;
}
.top-section-media-list li,
#view-more {
	background: var(--blue-grad-btn) !important;
	border: 1px solid transparent !important;
	border-radius: var(--br);
	transition: var(--transition);
}
.top-section-media-list li:hover,
#view-more:hover {
	background: #a9a9a9 !important;
	border: 1px solid #4d4d4d !important;
	transition: var(--transition);
}
.top-section-media-list li a,
#view-more a {
	font-size: 16px;
	color: white;
	text-transform: capitalize;
}
.top-section-media-list li i,
#view-more a i {
	font-weight: 900;
}
.slide-single-property img {
	border-radius: var(--br);
}
.slides.slide-single-property .owl-item img,
.expert_agent,
.shortlist-container,
.narrow-modern-valuation,
.property-sidebar-map,
.material-info > div,
.narrow-modern-cta,
.narrow-modern-calculator {
	border-radius: var(--br);
}
.property-description-full {
	padding-top: 10px;
	flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 992px) {
	.property-description-full {
		padding-top: 10px;
		flex-wrap: nowrap;
	}
}
@media (min-width: 992px) {
	.property-description-full {
		padding-top: 10px;
		flex-wrap: nowrap;
	}
}

.agent_details {
	margin: 0 auto;
}
.agent_details i {
	font-weight: 900 !important;
}
h3.price-qualifier {
	margin-top: 0px;
	margin-bottom: 0;
}
h2.title-price {
	margin-top: 10px;
}
.property-description-price {
	margin-top: -12px;
}
.single_propery_type {
	background: var(--medium-grey);
	border-radius: var(--br);
	padding: 6px 10px;
}
.single_propery_type.property-description-type i {
	font-weight: 900 !important;
}
.single_propery_type .property-label.property-label-for-sale {
	background: var(--green-grad-btn) !important;
	border: var(--border-green) !important;
	border-radius: var(--br);
	padding: 4px 12px;
}
.single_propery_type .property-label.property-label-to-let,
.single_propery_type .property-label.property-label-available {
	background: linear-gradient(#7ca7c7 0%, #364856 100%) !important;
	border: 1px solid #26323b8c !important;
	border-radius: var(--br);
	padding: 4px 12px;
}
.single_propery_type .property-label.property-label-sold,
.single_propery_type .property-label.property-label-sold-stc,
.single_propery_type .property-label.property-label-under-offer {
	background: var(--red-grad-btn) !important;
	border: var(--border-red) !important;
	border-radius: var(--br);
	padding: 4px 12px;
}
.expert_agent .art-btn-group.agent-details-actions .art-btn.art-btn-secondary.art-modal-14 {
	background: transparent;
	border: 1px solid white !important;
	transition: var(--transition);
}
.expert_agent .art-btn-group.agent-details-actions .art-btn.art-btn-secondary.art-modal-14:hover {
	border: 1px solid #4d4d4d !important;
	transition: var(--transition);
}
.narrow-modern-valuation-content .art-btn {
	background: var(--green-grad-btn) !important;
	border: var(--border-green) !important;
}
.contact-sidebar {
	align-items: center;
	justify-content: center !important;
}
.single-property-double-features li,
.unstyled.arrow.arrow_single.now_here li {
	letter-spacing: 0px;
	font-size: 18px;
}
.single_property_block .title-single-box h1,
span.bed,
span.reception,
span.bathrooms,
.single-property-types.icons-list span,
.single_propery_type.property-description-type i,
.single_propery_type.property-description-type span:nth-of-type(2) {
	color: var(--titles) !important;
}
.title-box-d h3,
.property-description h3,
.material-info h4,
.expert_agent h4,
.narrow-modern-valuation-content h2 {
	font-size: 22px !important;
	font-weight: 600;
	letter-spacing: 0px;
}
.single_property_block h1.title-single {
	font-weight: 600;
	text-wrap-style: balance;
	line-height: 1.2;
}
.property-sidebar .expert_agent h4 {
	text-align: center;
}
.property-sidebar .art-btn-group.agent-details-actions {
	margin: 0 auto;
}
.property-sidebar .exp_agent {
	justify-content: center;
}
.narrow-modern-cta-content h2 {
	font-size: 26px;
	letter-spacing: 0px;
	color: white;
}
@media (min-width: 992px) {
	.narrow-modern-cta-content h2 {
		font-size: 30px;
	}
}

.narrow-modern-cta-content .single-property-content-cta.art-btn-group.art-btn-group .art-btn.art-btn-icon {
	font-size: 18px;
	border: unset !important;
	transition: var(--transition);
	color: white;
}
@media (min-width: 992px) {
	.narrow-modern-cta-content .single-property-content-cta.art-btn-group.art-btn-group .art-btn.art-btn-icon {
		font-size: 24px;
		border: unset !important;
		transition: var(--transition);
		color: white;
	}
}

.narrow-modern-cta-content .single-property-content-cta.art-btn-group.art-btn-group .art-btn.art-btn-icon:hover {
	color: var(--highlight);
	transition: var(--transition);
}
.narrow-modern-cta-content .single-property-content-cta.art-btn-group.art-btn-group .art-btn.art-btn-icon::before {
	font-weight: 900 !important;
	background: unset !important;
}
.single-property-content-cta.art-btn-group.art-btn-group .art-btn.art-btn-icon:is(:hover, :focus) {
	box-shadow: unset !important;
}
.narrow-modern-calculator {
	background: white;
	border: var(--border-main);
	box-shadow: var(--shadow);
}
.narrow-modern-calculator h4,
.narrow-modern-calculator label {
	color: var(--titles);
}
.narrow-modern-calculator label {
	letter-spacing: 0px;
}
.agent_point.ag-office {
	font-size: 18px;
}
.agent_photo {
	display: flex;
	align-items: center;
}
.agent_photo img,
.contact-sidebar img {
	border-radius: var(--br);
	width: 240px !important;
	height: 100% !important;
	max-height: unset !important;
	max-width: unset !important;
}
@media (min-width: 620px) and (max-width: 992px) {
	.agent_photo img,
	.contact-sidebar img {
		width: 240px !important;
		height: 64% !important;
	}
}
@media (min-width: 992px) {
	.agent_photo img,
	.contact-sidebar img {
		width: 222px !important;
		height: 50% !important;
	}
}
@media (min-width: 1200px) and (max-width: 1400px) {
	.agent_photo img,
	.contact-sidebar img {
		width: 180px !important;
		height: 35% !important;
	}
}

.agent_point i {
	font-weight: 900 !important;
}
.single_contact_now {
	color: white !important;
	text-transform: capitalize !important;
}
.single-property-types.icons-list i,
.property-types i {
	font-weight: 900 !important;
}
.property_name {
	width: 800px;
}
.material-info-item dd {
	text-transform: capitalize;
}
.art-btn-group.single-property-content-cta {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (min-width: 992px) {
	.art-btn-group.single-property-content-cta {
		flex-direction: row;
		gap: 60px;
	}
}

.narrow-modern-cta-content {
	background: var(--blue-grad-btn);
	border: var(--border-blue);
	border-radius: var(--br);
}
.property-template-default .mobile-property-title-price .property-label {
	order: 2;
}
.property-template-default .mobile-details-wrapper .price-qualifier {
	text-align: left;
}
.property-template-default .property-mobile-price-container {
	padding: 20px 15px !important;
}
.property-template-default .single_propery_type {
	padding: 15px 0 0 0;
}
@media (min-width: 992px) {
	.property-template-default .single_propery_type {
		padding: 6px 10px;
	}
}

.property-template-default .mobile-property-title-price .property-label {
	align-self: center;
	padding: 4px 12px;
}
@media (min-width: 992px) {
	.property-template-default .mobile-property-title-price .property-label {
		align-self: flex-end;
		padding: 0 1rem;
	}
}
.property-template-default .mobile-property-title-price .property-label.property-label-for-sale,
.property-template-default .mobile-property-title-price .property-label.property-label-under-offer,
.property-template-default .mobile-property-title-price .property-label.property-label-sold-stc {
	background: var(--green-grad-btn) !important;
	border: var(--border-green) !important;
	border-radius: var(--br);
}
.property-template-default .mobile-property-title-price .property-label.property-label-sold {
	background: var(--red-grad-btn) !important;
	border: var(--border-red) !important;
	border-radius: var(--br);
}
.property-template-default .mobile-property-title-price .property-label.property-label-to-let {
	background: linear-gradient(#7ca7c7 0%, #364856 100%);
	border: 1px solid #26323b8c;
	border-radius: var(--br);
}

.property-template-default .property-mobile-details .single_propery_type {
	font-size: 14px;
	font-weight: 500;
	color: var(--titles);
}
.property-template-default .property-mobile-details .single_propery_type i {
	font-weight: 900 !important;
	color: var(--titles) !important;
}
.property-template-default .title-single-box.property-mobile-title h1 {
	font-weight: 600;
	font-size: 30px;
	text-wrap-style: balance;
	max-width: 100%;
	width: 100vw;
	padding: 0 15px 0 0;
}
ul.arrow li:before {
	content: '\f054' !important;
}
.single_property_content ul.arrow .single-property-double-features li:before {
	margin-left: 0 !important;
}
.single-property-mobile,
.property-description-mobile {
	overflow: hidden;
}
.property-description-mobile .title-single-description {
	display: none;
}
.latest-details-tabs.prop-details-tabs .nav-link {
	border: var(--border-main);
	border-radius: var(--br);
}
.latest-details-tabs.prop-details-tabs .nav-link i {
	font-weight: 900 !important;
}
.material-info dl {
	flex-direction: column;
}
@media (min-width: 992px) {
	.material-info dl {
		flex-direction: row;
	}
}

.slide-single-property .owl-nav button.owl-next {
	margin-right: 20px !important;
}
.slide-single-property .owl-nav button.owl-prev {
	margin-left: 20px !important;
}
.slide-single-property .owl-nav span {
	color: white !important;
	padding: 0px 4px 0 4px;
	font-weight: 400;
	font-size: 48px;
	top: -17px !important;
	left: 15px !important;
}
.slide-single-property .owl-nav button.owl-next,
.slide-single-property .owl-nav button.owl-prev {
	background: var(--blue-grad-btn) !important;
	background-color: unset;
	border-radius: var(--br) !important;
}
.gallery-count {
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	--webkit-backdrop-filter: blur(4px);
}
.shortlist-container div a {
	font-size: 16px;
}
@media (min-width: 992px) {
	.shortlist-container div a {
		font-size: 18px;
	}
}

/* CTA */
.rep-cta-img-txt-module--s2 {
	overflow: hidden;
	align-items: unset !important;
}
@media (min-width: 992px) {
	.rep-cta-img-txt-module--s2 {
		overflow: hidden;
		align-items: center !important;
	}
}

.art-cta-with-logo .art-btn-group .art-btn.art-btn {
	color: white;
}
.art-cta-with-logo .art-btn-group .art-btn.art-btn:nth-child(even) {
	background: var(--blue-grad-btn);
	border: var(--border-blue);
}
.art-cta-with-logo .art-btn-group .art-btn.art-btn:nth-child(odd) {
	background: var(--green-grad-btn);
	border: var(--border-green);
}
.art-cta-with-logo h2,
.art-cta-with-logo p {
	color: white;
}
.art-cta-with-logo .rep-cta-img-txt__image img {
	height: 250px;
}
@media (min-width: 992px) {
	.art-cta-with-logo .rep-cta-img-txt__image img {
		height: 600px;
	}
}

.rep-cta-img-txt__content-container {
	padding: 0 15px;
}
.rep-cta-img-txt-module--s2 .rep-cta-img-txt__content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 0 !important;
}
.art-custom-contact-cta {
	display: none;
	grid-gap: 10px;
	grid-template-columns: 1fr 1fr;
	width: max-content;
	order: 2;
}
@media (min-width: 992px) and (max-width: 1240px) {
	.art-custom-contact-cta {
		display: none;
	}
}
@media (min-width: 1240px) {
	.art-custom-contact-cta {
		display: grid;
	}
}

.art-custom-contact-cta .art-btn {
	padding: 10px 20px;
	margin-top: 10px;
	display: block;
	text-align: center;
	height: max-content;
}
.rep-cta-img-txt__btn-group.art-btn-group {
	display: inline-block;
	margin: 10px 10px 0 0;
}

/* Contact Us Cards */
.contact-five-module .contact-five-container {
	display: grid;
	align-items: stretch;
	justify-content: center;
	margin: 0 auto;
}
.contact-five-container {
	grid-template-columns: 1fr !important;
}
@media (min-width: 800px) and (max-width: 992px) {
	.contact-five-container {
		grid-template-columns: 1fr 1fr !important;
	}
}
@media (min-width: 992px) {
	.contact-five-container {
		grid-template-columns: 1fr 1fr 1fr !important;
	}
}

.contact-five {
	border: unset !important;
	padding: unset !important;
}
.contact-five-module .contact-five.list-item {
	background: var(--medium-grey);
	max-width: 437px;
}
.contact-five-module .contact-five.list-item .contact-five-office-card-content {
	padding: 0 30px 30px;
	border: 1px solid var(--primary);
	border-radius: var(--br);
}
@media (min-width: 992px) {
	.contact-five-module .contact-five.list-item {
		flex-basis: 33%;
		max-width: 435px;
		display: flex;
		flex-direction: column;
	}
}
.contact-five-module .contact-five h3 {
	text-align: left;
	font-size: 24px;
	margin-bottom: 20px;
}
.contact-five-module .contact-five p {
	text-align: left;
	font-size: 18px;
}
.contact-five-contact.art-btn-group {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	max-width: 435px;
}
.contact-five-module .contact-five p:nth-last-child(2) {
	flex: 1;
}
p.contact-five-info a {
	font-size: 20px;
	word-break: break-word;
}
.contact-five-contact.art-btn-group button {
	min-width: auto;
}

/* Blog Module */
.news-section .owl-nav {
	position: relative;
	top: -450px;
}
.news-section .text-center h2 {
	text-align: left;
	padding-left: 15px;
	padding-right: 15px;
}
@media (min-width: 992px) {
	.news-section .text-center h2 {
		text-align: center;
	}
}

.blog-container {
	border-radius: var(--br);
	box-shadow: var(--shadow);
	border: var(--border-main);
	transition: var(--transition);
}
.blog-container:hover {
	transition: 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
	box-shadow: var(--hover-shadow);
}
.blog-container .home_read_time :is(a, span) {
	font-weight: 400 !important;
}
.home_read_time {
	padding: 10px;
	background: var(--medium-grey);
	border-radius: var(--br);
	border: var(--border-main);
	width: max-content;
}
.home_read_more {
	padding-right: unset;
}
.home_read_more a {
	padding: 10px;
	background: var(--green-grad-btn);
	border-radius: var(--br);
	border: var(--border-green);
	color: white;
	transition: var(--transition);
}
.home_read_more a:hover {
	text-decoration: none;
	border: 1px solid #4d4d4d;
	background: #a9a9a9;
	transition: var(--transition);
}
.blog-image {
	border-radius: var(--br) var(--br) 0 0;
}
.blog-content {
	padding: 20px;
}
.blog-content h3 {
	height: 60px;
}
.blog-container h3 a {
	color: var(--primary);
	font-weight: 700;
}
.blog-bottom .home_read_more {
	padding-right: 0;
}
.blog-bottom .home_read_more a {
	text-transform: capitalize;
	text-decoration: none;
}

/* Single Blog Pages */
.container-blog h1 {
	font-weight: 700;
}
#wrapper_social i:hover {
	color: var(--highlight);
}
.blog-guide-container img {
	border-radius: var(--br);
}
.blog-content h4 {
	height: 60px;
	margin: 20px 0px 30px;
}
.blog-content h4 a {
	font-weight: 700 !important;
	color: var(--titles) !important;
}
.blog-image-inside img {
	border-radius: var(--br) var(--br) 0 0;
}

/* Single Estate Agent Pages */
.page-inner-agent-section.single-estate-hero-1:before {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 36, 81, 0.4) 80%, rgba(0, 0, 0, 0.4) 100%);
}
.single-estate-hero .property-search-bar-one,
.property-search-mob.col-md-6 {
	display: none !important;
}
.single-estate-hero .page-info-agent {
	border-radius: var(--br);
	border: 1px solid rgb(0 0 0 / 40%);
	backdrop-filter: blur(4px);
	--webkit-backdrop-filter: blur(4px);
	box-shadow: var(--hover-shadow);
}
.single-estate-hero .col-lg-12.estate-agents-block {
	width: 100%;
}
.page-estate-agent {
	display: none;
}
.page-estate-title {
	font-size: 36px !important;
	font-weight: 600;
}
@media (min-width: 992px) {
	.page-estate-title {
		font-size: 48px !important;
	}
}

.single-estate-hero-1 .art-btn-group {
	margin: 0 auto;
	width: 100%;
	gap: 0;
}
@media (min-width: 992px) {
	.single-estate-hero-1 .art-btn-group {
		margin-left: 0;
		width: max-content;
		gap: 20px;
	}
}

.single-estate-hero-1 .art-btn-group .art-btn:first-child {
	margin-top: 10px !important;
}

.single-estate-hero-1 .art-btn-group .art-btn {
	width: 100%;
	min-width: 100%;
}
@media (min-width: 992px) {
	.single-estate-hero-1 .art-btn-group .art-btn {
		width: max-content;
		min-width: 180px;
	}
}

.art-estate-agents-h1-module h1 {
	font-size: 34px;
	font-weight: 600 !important;
	line-height: 1.25;
	letter-spacing: -0.4px;
	text-wrap-style: pretty;
	text-align: left;
}
@media (min-width: 992px) {
	.art-estate-agents-h1-module h1 {
		font-size: 42px;
		text-align: center;
	}
}

.art-estate-agents-h1-module p {
	text-align: left;
}
@media (min-width: 992px) {
	.art-estate-agents-h1-module p {
		text-align: center;
	}
}

.art-module-multi.fade-up.art-estate-agents-h1-module {
	align-items: flex-start;
}
@media (min-width: 992px) {
	.art-module-multi.fade-up.art-estate-agents-h1-module {
		align-items: center;
	}
}

.art-module-multi.fade-up.art-estate-agents-h1-module .art-module-cta-btns {
	padding: 0 15px;
}
@media (min-width: 992px) {
	.art-module-multi.fade-up.art-estate-agents-h1-module .art-module-cta-btns {
		padding: unset;
	}
}

#local-area .col-md-12 h2,
#local-area .col-md-12 .container .row p {
	text-align: left;
}
@media (min-width: 992px) {
	#local-area .col-md-12 h2,
	#local-area .col-md-12 .container .row p {
		text-align: center;
	}
}

.local-area-tab-mobile .ac {
	border-radius: var(--br) !important;
	margin-bottom: 2px !important;
	border-bottom: unset !important;
}
.local-area-tab-mobile .ac-panel {
	border-radius: 0 0 var(--br) var(--br);
}
.local-area-tab-mobile .ac-outer.is-active {
	margin-bottom: 6px !important;
}
.local-area-tab-mobile .ac .ac-trigger {
	text-transform: capitalize !important;
	letter-spacing: 0px !important;
}
.local-area-tab-mobile .ac-panel p {
	line-height: 1.75;
}

/* Meet The Team Page */
.iso-team-member {
	width: calc(100% / 1) !important;
}
@media (min-width: 768px) and (max-width: 992px) {
	.iso-team-member {
		width: calc(100% / 3) !important;
	}
}
@media (min-width: 992px) {
	.iso-team-member {
		width: calc(100% / 5) !important;
	}
}
.team-container-inner,
.team-container-inner .img-hexagon {
	border-radius: var(--br);
}
.team-container-inner {
	box-shadow: var(--shadow);
	border: var(--border-main);
}
.team-container-inner:hover {
	box-shadow: var(--hover-shadow);
}
.team-content-contact {
	width: max-content;
	margin: 0 auto;
	background: var(--medium-grey);
	padding: 10px 20px;
	border-radius: var(--br);
}
.team-content-contact i {
	margin: unset !important;
	font-weight: 900 !important;
}
.team-content h3 {
	font-weight: 600;
}
.team-content-job-title {
	letter-spacing: 0.5px !important;
	font-weight: 400 !important;
	text-transform: capitalize !important;
}
.page-id-992 .img-hexagon img {
	height: 500px;
}

/* ALL Forms */
.gform_validation_errors {
	display: none;
}
[data-id='art-modal-form'] {
	align-items: flex-start !important;
	overflow-y: auto;
}
.gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 0 !important;
}
.gform_wrapper.gravity-theme input[type='color'],
.gform_wrapper.gravity-theme input[type='date'],
.gform_wrapper.gravity-theme input[type='datetime-local'],
.gform_wrapper.gravity-theme input[type='datetime'],
.gform_wrapper.gravity-theme input[type='email'],
.gform_wrapper.gravity-theme input[type='month'],
.gform_wrapper.gravity-theme input[type='number'],
.gform_wrapper.gravity-theme input[type='password'],
.gform_wrapper.gravity-theme input[type='search'],
.gform_wrapper.gravity-theme input[type='tel'],
.gform_wrapper.gravity-theme input[type='text'],
.gform_wrapper.gravity-theme input[type='time'],
.gform_wrapper.gravity-theme input[type='url'],
.gform_wrapper.gravity-theme input[type='week'],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
	font-size: 14px !important;
	padding: 12px !important;
	margin-top: 10px !important;
	font-weight: 400 !important;
	border: 1px solid #a6a6a6 !important;
	border-radius: var(--br);
	color: #828282;
}
.gform_wrapper.gravity-theme input[type='color']:is(:focus),
.gform_wrapper.gravity-theme input[type='date']:is(:focus),
.gform_wrapper.gravity-theme input[type='datetime-local']:is(:focus),
.gform_wrapper.gravity-theme input[type='datetime']:is(:focus),
.gform_wrapper.gravity-theme input[type='email']:is(:focus),
.gform_wrapper.gravity-theme input[type='month']:is(:focus),
.gform_wrapper.gravity-theme input[type='number']:is(:focus),
.gform_wrapper.gravity-theme input[type='password']:is(:focus),
.gform_wrapper.gravity-theme input[type='search']:is(:focus),
.gform_wrapper.gravity-theme input[type='tel']:is(:focus),
.gform_wrapper.gravity-theme input[type='text']:is(:focus),
.gform_wrapper.gravity-theme input[type='time']:is(:focus),
.gform_wrapper.gravity-theme input[type='url']:is(:focus),
.gform_wrapper.gravity-theme input[type='week']:is(:focus),
.gform_wrapper.gravity-theme select:is(:focus),
.gform_wrapper.gravity-theme textarea:is(:focus) {
	border: 1px solid var(--highlight) !important;
	transition: var(--transition);
}
.art-form-two input:focus:not(input[type='submit']):not(input[type='checkbox']),
.art-form-two textarea:focus {
	border: 1px solid var(--highlight) !important;
}
.gform_wrapper.gravity-theme input[type='submit'] {
	font-weight: 700;
	border-radius: var(--br);
	background: var(--green-grad-btn);
	border: var(--border-green) !important;
}
.gform_wrapper.gravity-theme input[type='submit']:hover {
	background: #a9a9a9 !important;
	border: 1px solid #4d4d4d !important;
	transition: var(--transition);
}
fieldset#field_10_1000 {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 400 !important;
	padding: 5px 4px;
}
.ginput_container.ginput_container_consent {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	margin: 0;
}
label.gform-field-label.gform-field-label--type-inline.gfield_consent_label {
	font-size: 14px;
}
.art-form-two {
	border-radius: var(--br);
}
.art-form-two .art-modal-form-close-btn {
	background: var(--blue-grad-btn);
	border: var(--border-blue);
	border-radius: var(--br);
	margin: 10px;
	transition: var(--transition);
}
.art-form-two .art-modal-form-close-btn:hover {
	background: #a9a9a9;
	border: 1px solid #4d4d4d;
	transition: var(--transition);
}
.art-form-two label a {
	font-size: 14px;
}
.art-form-two .gform_title {
	text-transform: capitalize !important;
	text-decoration: none !important;
	letter-spacing: 0px;
	color: var(--titles);
	font-weight: 600;
}
.gform_wrapper.gravity-theme .gfield_label {
	border-bottom: unset !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	letter-spacing: -0.4px !important;
	color: var(--titles);
	padding-top: 20px !important;
	display: flex !important;
	justify-content: left !important;
	align-content: center !important;
}
@media (min-width: 992px) {
	.gform_wrapper.gravity-theme .gfield_label {
		justify-content: left !important;
		padding-top: 40px !important;
		margin: 0;
	}
}
.art-form-two-right {
	overflow: auto;
	padding-top: 180px;
	padding-bottom: 80px;
}
@media (min-width: 992px) {
	.art-form-two-right {
		overflow: unset;
		padding-top: unset;
		padding-bottom: unset;
	}
}
.gform-field-label {
	color: #828282;
}

/* Contact Us Page */
.page-id-307 .pd-top {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}
div#contact_v2\ container h2 {
	text-align: left;
}
@media (min-width: 992px) {
	div#contact_v2\ container h2 {
		text-align: center;
	}
}

div#contact_v2\ container .narrow p {
	text-align: left;
}
@media (min-width: 992px) {
	div#contact_v2\ container .narrow p {
		text-align: center;
	}
}

.contact-six-contact.art-btn-group {
	margin: 16px 0 0 0;
}
@media (min-width: 992px) {
	.contact-six-contact.art-btn-group {
		margin: 0;
	}
}
.contact-six-contact.art-btn-group,
.contact-six .art-btn-group button.art-btn {
	width: 100%;
}
@media (min-width: 992px) {
	.contact-six-contact.art-btn-group,
	.contact-six .art-btn-group button.art-btn {
		width: max-content;
	}
}

/* Valuation Page */
.valuation-box {
	border-radius: var(--br);
	border: var(--border-main) !important;
}
.page-id-334 .page-image-sidebar-content h1 {
	font-size: 31px;
}
@media (min-width: 992px) {
	.page-id-334 .page-image-sidebar-content h1 {
		font-size: 42px;
	}
}

.page-id-334 .page-image-sidebar-content h1,
.page-id-334 .page-image-side-content-subheading p {
	text-align: left;
}
.page-id-334 .page-image-sidebar-content {
	padding: 20px 0 0 0;
}

/* Site Footer */
.footer2 {
	background: var(--color-footer-top-bar);
	border-top: 6px solid var(--highlight);
}
#footer .widget-title {
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--footer-text);
}
#footer .footer-middle ul li a {
	font-size: 17px !important;
	font-weight: 300;
	color: var(--footer-text) !important;
	letter-spacing: 0px;
}
#footer .footer-middle ul li a:hover {
	color: var(--highlight) !important;
}
#footer .footer-middle h3.widget-title {
	height: unset;
}
@media (min-width: 992px) {
	#footer .footer-middle h3.widget-title {
		height: 0;
	}
}

#footer .art-block-office-address dt,
#footer .art-block-office-email dt,
#footer .art-block-office-phone-general dt,
#footer .art-block-office-opening-hours dt,
#footer .art-block-office-address dd,
#footer .art-block-office-email dd,
#footer .art-block-office-phone-general dd,
#footer .art-block-office-opening-hours dd {
	font-weight: 300;
	letter-spacing: 0px;
	color: var(--footer-text);
	font-size: 17px;
}
#footer .art-block-office-address dd a,
#footer .art-block-office-email dd a,
#footer .art-block-office-phone-general dd a,
#footer .art-block-office-opening-hours dd a {
	color: var(--footer-text);
	font-weight: 300 !important;
}
#footer .art-block-office-address dd a:hover,
#footer .art-block-office-email dd a:hover,
#footer .art-block-office-phone-general dd a:hover,
#footer .art-block-office-opening-hours dd a:hover {
	color: var(--highlight);
}
#footer .icon-pentagon:hover {
	color: var(--highlight);
}
#footer .privacy-terms p,
#footer .footer-nav ul li a.nav-link,
#footer .copyright-info p {
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0px;
	text-transform: capitalize;
	color: var(--text);
}
#footer .copyright-info p span a {
	text-transform: capitalize !important;
}
#footer .art-block-office-email dd a:before,
#footer .art-block-office-phone-general dd a:before,
#footer .art-block-office-opening-hours dd a:before {
	font-weight: 900 !important;
}

.footer-area.footer-area-four .art-custom-reg-office.widget-title {
	margin-bottom: 0 !important;
}
@media (min-width: 768px) and (max-width: 992px) {
	.footer-area.footer-area-four .art-custom-reg-office.widget-title {
		margin-bottom: 0 !important;
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
	.footer-area.footer-area-four .art-custom-reg-office.widget-title {
		margin-bottom: 60px !important;
	}
}
@media (min-width: 1200px) {
	.footer-area.footer-area-four .art-custom-reg-office.widget-title {
		margin-bottom: 40px !important;
	}
}
.footer-area.footer-area-four p {
	margin-top: 0 !important;
}
/* 
* Gravity Forms - Hide Anti-Spam Honeypot Field 
*/
.gfield.gfield--type-honeypot {
	display: none !important;
}

.wp-block-group.all-dacre-logos {
    padding: 60px 15px 0 15px;
}
.all-dacre-logos > div {
	border: 2px solid white;
	padding: 15px;
    margin: 0 auto;
    max-width: 1475px;
	border-radius: 2px;
}
.all-dacre-images-container > div {
    display: flex;
    flex-wrap: wrap;
	gap: 40px;
	align-items: center;
    margin: 0 auto;
    max-width: 1043px;	
}
.all-dacre-logos p {
	width: 100%;
	max-width: 100%;
    color: white;
    text-align: left;
	margin-left: 0;
	margin-bottom: 30px;
}
@media(min-width:857px) {
	.all-dacre-logos p {
		margin-bottom: 10px;
	}
	.all-dacre-images-container > div {
		justify-content: center;	
	}
}