*,
*:before,
*:after {
	box-sizing: border-box;
}

.hidden-fields-container,
.screen-reader-response,
.screen-reader-text,
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}

@font-face {
	font-family: 'Cloudy Aurora Serif';
	src: url('fonts/Cloudy-Aurora-Serif.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

body {
	--black: #1f2021;
	--bg-grey: hsl(40deg, 13%, 96%);

	--primary: rgb(19, 37, 54);
	--secondary: rgb(122, 141, 129); /*rgb(94, 116, 101);*/

	margin: 0;
	font-family: 'Libre Franklin', sans-serif;
	font-size: 16px;
	line-height: 1.75;

	font-feature-settings: "lnum";

	background: var(--bg-grey);
	color: var(--primary);
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
	margin: 0 0 20px;
}

h1, h2, h3, h4 {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
}

h1, h2 {
	font-size: 36px;
	line-height: 1.2;
	margin-top: -0.25em;
	margin-bottom: 30px;
}

h3 {
	font-size: 24px;
	line-height: 1.25;
}

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

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

svg {
	vertical-align: top;
}

hr {
	margin: 30px 0;
	border: none;
	border-top: 1px solid rgb(122, 141, 129, 0.333);
}

table {
	width: 100%;
	margin-bottom: 40px;
	font-size: 16px;
}

th,
td {
	text-align: left;
	border-bottom: 1px solid rgb(122, 141, 129, 0.333);
	padding: 0.5em 0;
}

tr:last-child td {
	border: none;
	padding-bottom: 0;
}

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

.estate-card {
	padding-bottom: 40px;
}

.estate-card h4 {
	margin-bottom: 50px;
}

@media (max-width: 567px) {

	.hide-on-mobile,
	.hidden-mobile {
		display: none !important;
	}

	.center-on-mobile {
		text-align: center;
	}

	h1 br,
	h2 br {
		display: none;
	}

	.estate-card {
		border-bottom: 1px solid rgb(122, 141, 129, 0.333);
	}

	.col:last-child .estate-card {
		border: none;
		padding-bottom: 0;
	}

	.unit-card {
		padding-bottom: 30px;
	}

}

@media (min-width: 568px) {

	.show-on-mobile {
		display: none !important;
	}

	body {
		/*line-height: 2;*/
		border-top: 10px solid var(--secondary);
	}

	.line-height-lg {
		line-height: 2;
	}

	h3 {
		font-size: 30px;
	}

	hr {
		margin: 40px 0;
	}

	.estate-card h4 {
		min-height: 4.5em;
	}

}

@media (min-width: 568px) and (max-width: 1199px) {

	.hide-on-tablet {
		display: none !important;
	}

}

@media (min-width: 1024px) {

	.heading-lg,
	.heading-xl {
		line-height: 1;
		font-weight: 500;
	}

	.heading-xl {
		font-size: 56px;
		
	}

}


@media (min-width: 1200px) {

	h1, h2 {
		font-size: 45px;
	}

	.heading-lg {
		font-size: 64px;
	}

}

@media (min-width: 1400px) {

	.heading-xl {
		font-size: 72px;
	}

}

@media (min-width: 1500px) {

	body {
		font-size: 17px;
	}

}

.pre-heading {
	font-family: 'Readex Pro';
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;

	white-space: nowrap;

	letter-spacing: -0.01em;
	color: var(--secondary);
	margin-bottom: 15px;
}

@media (max-width: 567px) {

	.pre-heading {
		font-size: 14px;
		letter-spacing: 0.1em;
		font-weight: 300;
	}

}
 

h2.pre-heading {
	margin-bottom: 40px;
}

.underline:after {
	content: "";
	display: block;
	width: 1.5em;
	border-top: 1px solid var(--secondary);
	opacity: 0.5;
	margin: 40px 0 30px;
}

.line-right {
	display: inline-flex;
	align-items: center;
	margin-bottom: 25px;
	padding-right: 0 !important;
	min-width: 196px;
}

.line-right:after {
	content: "";
	display: inline-block;
	min-width: 5em;
	border-top: 1px solid;
	opacity: 0.4;
	margin-left: 2em;
	flex-grow: 1;
}

.bg-dark .line-right:after {
	border-top: 1px solid;
}

.section-padded {
	padding-top: max(7.5vw, 60px);
	padding-bottom: max(7.5vw, 60px);
}

.container {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
}

.row {
	display: flex;
	margin: 0 -15px -30px;
	flex-wrap: wrap;
}

.col {
	padding: 0 15px 30px;
	flex: 1 0 0;
}

.row.no-gutter {
	margin: 0;
}

.row.no-gutter > .col {
	padding: 0;
}

.row.small-gutter {
	margin: 0 -15px -30px;
}

.row.small-gutter > .col {
	padding: 0 15px 30px;
}

.col-33,
.col-100 {
	flex: 0 0 100%;
}

.col-auto {
	flex: 0 0 auto;
	min-width: 0;
}

@media (max-width: 567px) {

	.col {
		min-width: 280px;
	}

	#about .col {
		min-width: 0;
		flex-basis: 50%;
	}

}

@media (min-width: 568px) {

	.row {
		margin: 0 -20px -40px;
	}

	.col {
		padding: 0 20px 40px;
	}

	/* */

	.col-10 {
		flex: 0 0 10%;
	}

	.col-25,
	.col-50 {
		flex: 0 0 50%;
	}

}

@media (max-width: 1023px) {

	.col .col-50 {
		flex: 0 0 100%;
	}

}

@media (min-width: 568px) and (max-width: 1023px) {

	.col .col-33 {
		flex: 0 0 50%;
	}

}

@media (min-width: 1024px) {

	.col-33 {
		flex: 0 0 33.333%;
	}

	.col-40 {
		flex: 0 0 40%;
	}

	.col-60 {
		flex: 0 0 60%;
	}

}

@media (min-width: 1024px) and (max-width: 1199px) {

	.col .col-33 {
		flex: 1 0 33.333%;
	}

}

@media (min-width: 1200px) {

	.row {
		margin: 0 -40px -80px;
	}

	.col {
		padding: 0 40px 80px;
	}

	.row.row-sep {
		margin-bottom: 0;
	}

	.row.row-sep > .col {
		padding-bottom: 0;
	}

	.row.row-sep > .col ~ .col {
		border-left: 1px dashed rgb(122, 141, 129, 0.333);
	}

	/* */

	.row.wide-gutter:not(.row-sep) {
		margin: 0 -50px -100px;
	}

	.row.wide-gutter:not(.row-sep) > .col {
		padding: 0 50px 100px;
	}


	.col {
		min-width: 0;
	}

	.col-25 {
		flex: 0 0 25%;
	}


}

a {
	color: inherit;
	text-decoration: none;	
}

.menu-btn > a,
.btn {
	font-family: inherit;
	font-size: 16px;
	display: inline-block;

	line-height: 50px;
	padding: 0 24px;

	background-color: var(--secondary);
	color: var(--bg-grey);

	transition: 0.3s;
	text-align: center;

	border: none;
	white-space: nowrap;
}

.bg-dark .btn {
	color: var(--primary);
}

.menu-btn > a:hover,
.btn:not(.btn-link):hover {
	transform: translateY(-6px);
	box-shadow: 
		0 30px 40px rgba(0,0,0,0.15), 
		0 15px 20px rgba(122, 141, 129, 0.1);
}

@media (min-width: 568px) {

	.btn {
		padding-left: 30px;
		padding-right: 30px;
	}

	.btn-lg {
		width: 100%;
		font-size: 18px;
		padding-top: 5px;
		padding-bottom: 5px;
	}

}

.btn-white {
	background: var(--bg-grey);
	color: var(--secondary);
}

.btn-link {
	background: none;
	color: var(--secondary);
}

p + .btn {
	margin-top: 5px;
}

.bg-dark {
	background: var(--primary);
	color: var(--bg-grey);
}

.site-header {
	padding-top: 40px;
}

.logo {
	text-transform: uppercase;
	font-family: 'Cloudy Aurora Serif';
	letter-spacing: 0.1em;
	font-size: 28px;
	line-height: 1.2;
	vertical-align: top;
	text-align: center;

	display: inline-block;
	white-space: nowrap;
}

.logo small {
	display: block;
	font-size: 0.5em;
	font-family: 'Readex Pro';
	font-weight: 300;
	color: var(--secondary);
}

.logo svg {
	height: 24px;
	width: auto;
}

.site-footer .logo {
	font-size: 32px;
}

.site-footer .logo,
.site-footer nav:not(:last-child) {
	margin-bottom: 30px;
}

/* */

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

nav li {
	position: relative;
}

.site-header nav {
	line-height: 50px;
}

.site-header nav a {
	display: block;
}


li:hover > .sub-menu {
	display: block;
}


/* */

@media (max-width: 567px) {

	.dropdown-toggle {
		display: none;
	}

	.site-header .logo img {
		margin-top: 12px;
	}

	.site-header .btn:after {
		display: none;
	}

	.site-header nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 5;
		background: var(--bg-grey);
		
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		transition: opacity 0.3s;

		display: flex;
		align-items: center;
		padding: 15vw;

	}

	.site-header .menu > li:not(.menu-btn) > a {
		font-size: 20px;
	}

	.sub-menu {
		line-height: 40px;
		margin: 10px 0;
		border-left: 1px solid var(--secondary);
		padding-left: 7.5vw;
		color: var(--secondary);
		font-weight: 450;
	}

	.menu-btn {
		margin-top: 10px;
	}

	body.main-nav-active .site-header nav {
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
	}

}

@media (min-width: 568px) {

	.btn-burger {
		display: none !important;
	}

	.site-header {
		padding-top: 50px;
	}

	nav ul {
		display: flex;
	}

	.site-header ul.menu > li {
		display: flex;
	}

	.site-header ul.menu > li + li {
		margin-left: 40px;
	}

	.dropdown-toggle {
		appearance: none;
		background: none;
		border: none;
		padding: 0;
		margin-left: 6px;
		vertical-align: 3px;
		color: var(--secondary);
	}

	.sub-menu {
		position: absolute;
		top: 100%;
		left: 50%;
		z-index: 5;
		transform: translateX(-50%);

		display: none;

		background: var(--bg-grey);
		text-align: center;

		white-space: nowrap;
		padding: 20px 0;

		font-size: 16px;
	}

	.sub-menu > li > a {
		display: block;
		line-height: 50px;
		padding: 0 60px;

	}

}

@media (hover: hover) and (min-width: 568px) {

	.site-header ul.menu > li > a:not(.menu-btn a):hover {
		color: var(--secondary);
	}

	.sub-menu > li > a:hover {
		background: rgba(235, 230, 224, 0.75);
	}

}

/* */

.btn-burger {
    transition: 0s;

    /*transition-delay: 0.3s;

    opacity: 1 !important;*/

    position: fixed;
	z-index: 30;
	background: var(--secondary);
	box-shadow: 0 2px 6px rgba(0,0,0,0.075);
	color: var(--bg-grey);
	border: none;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	padding: 0;

	top: 38px;
	right: 20px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;

	align-self: center;

	transition: 0.2s;

	touch-action: manipulation;
}

.burger-bar {
    display: block;
    width: 22px;
    border-top: 2px solid;
    transition: transform 0.3s;
}

.btn-burger .state-inactive .burger-bar + .burger-bar {
    margin-top: 4px;
}

.btn-burger .state-inactive {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-burger .state-inactive,
.btn-burger .state-active {
    width: 22px;
    height: 22px;
    position: relative;
    overflow: hidden;
}

.btn-burger .state-active {
    position: absolute;
}

.btn-burger .state-inactive .burger-bar:nth-child(1) {
    transition-delay: 0.3s;
}

.btn-burger .state-inactive .burger-bar:nth-child(2) {
    transition-delay: 0.35s;
}

.btn-burger .state-inactive .burger-bar:nth-child(3) {
    transition-delay: 0.4s;
    /*width: 16px;*/
}

.btn-burger .state-active .burger-bar {
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 11px);
}

.btn-burger .state-active .burger-bar:nth-child(1) {
    transform: rotate(-45deg) translateX(-27px);

    transition-delay: 0.1s;
}

.btn-burger .state-active .burger-bar:nth-child(2) {
    transform: rotate(45deg) translateX(27px);
}

/* */

body.main-nav-active .btn-burger {
    transition-delay: 0s;
}

body.main-nav-active .btn-burger .state-inactive .burger-bar {
    transform: translateX(22px);
}

body.main-nav-active .btn-burger .state-inactive .burger-bar:nth-child(1) {
    transition-delay: 0s;
}

body.main-nav-active .btn-burger .state-inactive .burger-bar:nth-child(2) {
    transition-delay: 0.05s;
}

body.main-nav-active .btn-burger .state-inactive .burger-bar:nth-child(3) {
    transition-delay: 0.1s;
}

/* */

@keyframes cross_1 {
    0% {
        transform: rotate(-45deg) translateX(27px);
    }
    100% {
        transform: rotate(-45deg);
    }
}

@keyframes cross_2 {
    0% {
        transform: rotate(45deg) translateX(-27px);
    }
    100% {
        transform: rotate(45deg);
    }
}

body.main-nav-active .btn-burger .state-active .burger-bar:nth-child(1) {
    transform: rotate(-45deg);
    transition: 0s;
    transition-delay: 0s;

    animation-name: cross_1;
    animation-duration: 0.3s;
    animation-fill-mode: backwards;
    animation-delay: 0.5s;
}

body.main-nav-active .btn-burger .state-active .burger-bar:nth-child(2) {
    transform: rotate(45deg);
    transition: 0s;
    transition-delay: 0s;

    animation-name: cross_2;
    animation-duration: 0.3s;
    animation-fill-mode: backwards;
    animation-delay: 0.4s;
}

/* */

.card {
	display: block;

	transition: transform 0.3s;
}

.card.hovered {
	transform: translateY(-20px);
}

.image {
	padding-top: 50%;
	background-size: cover;
	background-position: center;
	margin-bottom: 40px;
	/*box-shadow: 0 40px 30px -30px rgba(0,0,0,0.2);*/
}

.unit-card .image {
	padding-top: 66.666%;
}

/* */

.stat {
	border-left: 1px solid rgba(255,255,255,0.2);
	padding-left: 40px;
}

.process-step h3 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.process-step h3:after {
	content: "";
	width: 2.4em;
	border-top: 1px solid;
}

.col:last-child .process-step h3:after {
	display: none;
}

/* */


@media (max-width: 1199px) {

	.cta-box {
		background: var(--secondary);
		color: var(--bg-grey);
		padding: 40px;
		line-height: 1.6;
	}

}

@media (min-width: 1200px) {

	.col-cta-box {
		background: var(--secondary);
		color: var(--bg-grey);
		padding: 40px !important;
		line-height: 1.6;
		border: none;

		margin-left: 15px;
		margin-right: 50px;
	}

	.col-cta-box h3 {
		margin-bottom: 30px;
	}

}

@media (min-width: 840px) and (max-width: 1199px) {

	#about .col {
		flex: 1 0 25%;
		min-width: 0;
	}

	.cta-box h3 {
		margin-bottom: 0;
	}

	.cta-box {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

}

/* */

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

.site-footer .col-nav {
	display: flex; 
}

@media (max-width: 567px) {

	.site-footer .col-nav > div {
		flex-basis: 50%;
	}

	.site-footer a[href^="mailto"] {
		font-size: 15px;
	}

}

@media (min-width: 568px) {

	.site-footer .col-nav {
		flex-direction: column; 
		align-items: flex-start;
		justify-content: space-between;
	}

	.site-footer nav ul {
		display: flex;
		flex-wrap: wrap;
		white-space: nowrap;

		margin-right: -20px;
	}

	.site-footer nav li {
		margin-right: 20px;
	}

}

@media (min-width: 1600px) {

	.site-footer .col:nth-child(2) {
		flex: 0 0 33.333%;
	}

}

.bg-image {
	background-size: cover;
	background-position: center;
}

/* */

.bi {
	vertical-align: top;
	width: 32px;
	height: 32px;
	color: var(--secondary);
	flex-shrink: 0;
}

.bi-arrow-right {
	vertical-align: -7px;
	margin-left: 0.5em;
	width: 24px;
	height: 24px;
	color: inherit;
}

/* */

.feature-row {
	font-size: 16px; 
	line-height: 1.5; 
	margin-top: 40px !important;
}

.feature-row p {
	margin-bottom: 0;
}

.feature-small {
	display: flex;
	align-items: center;
	line-height: 1.5;
	font-size: 15px;
}

.feature-small svg {
	margin-right: 16px;
}

.feature {
	font-size: 16px;
	line-height: 1.75;
}

.feature h3 {
	font-size: 20px;
}

.feature p {
	max-width: 15em;
}

@media (max-width: 567px) {

	.feature-small {
		align-items: flex-start;
		font-size: 14px;
	}

	.feature-small svg {
		width: 24px;
		height: 24px;
		margin-right: 12px;
	}

	.feature-row br {
		display: none;
	}

	.col-unit {
		flex: 1 0 50%;
		min-width: 0;
	}

}

@media (min-width: 568px) {

	.section-hero .feature-row {
		/*margin-right: -120%;*/
		margin-right: -80px;
	}

}

/*@media (min-width: 1400px) {

	.section-hero .feature-row {
		margin-right: -75%;
	}

}*/

@media (max-width: 1023px) {

	.feature-row .col {
		flex: 0 0 50%;
		min-width: 0;
	}

}

@media (min-width: 1024px) {

	.feature {
		padding-top: 40px;
	}

}

.icon-wrapper {
	display: flex;
	align-items: center;
	color: var(--secondary);
}

.bg-dark .icon-wrapper {
	color: inherit;
}

.icon-wrapper svg {
	width: 24px;
	height: 24px;
	margin-right: 0.5em;
	color: var(--secondary);
}

/* */

a,
a u {
	color: inherit;
	text-decoration: none;
}

@keyframes underline {
	0% {
		transform-origin: right;
		transform: scaleX(1);
	}
	40% {
		transform-origin: right;
		transform: scaleX(0);
		/*border-top-width: 1px;*/
	}
	60% {
		transform: scaleX(0);
		transform-origin: left;
		/*border-top-width: 2px;*/
	}
	100% {
		transform-origin: left;
		transform: scaleX(1);
		/*border-top-width: 2px;*/
	}
}

a u {
	display: inline-block;
	position: relative;
}

a u:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	border-top: 1px solid;
	transform-origin: right;
}

a:hover u:after {
	animation-name: underline;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}

/* */

.link-contact {
	color: inherit;
	display: inline-flex;

	align-items: center;
	vertical-align: top;
}

.link-contact svg {
	width: 24px;
	height: 24px;
	vertical-align: top;
	color: inherit;
	margin-right: 16px;
}

/* */

.gallery {
	display: grid;
	grid-template-columns: 100px auto;
	grid-auto-flow: dense;
	gap: 30px;
}

.gallery img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.gallery img.active {
	grid-column: 2;
	grid-row: 1 / span 3;
}




/* */

.col-content .entry-content p {
	margin-bottom: 15px;
	padding-right: 6.666%;
}

/* Modal */

.modal-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s;
    transition-delay: 0.2s;

    overflow: hidden;
}
 
    /*@media (min-width: $screen-sm) {
    	padding: 10px;
    }*/

.modal-container.modal-container-fixed {
	position: fixed;
	padding-top: 0 !important;
	align-items: center;
	justify-content: flex-start;
}

.modal-container-fixed .modal {
	border-radius: 0;
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.modal-container-fixed:not(.modal-active) .modal {
	transform: translateX(-20px);
}

.modal-container:not(.modal-active) .modal-header {
	display: none !important;
}

.modal-container-fixed .modal-close {

	
}

.modal-container.modal-active {
	opacity: 1;
	pointer-events: auto; 
	visibility: visible;
	z-index: 9999999; /* Override review solicitors */
	transition-delay: 0s;
}

.modal-container.modal-active .modal {
	opacity: 1;
	transform: none;
	transition-delay: 0.2s;
}

.modal-close {
	position: absolute;
	top: 0; 
	right: 0;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	cursor: pointer;
	border-bottom-left-radius: 16px;
}

@media (max-width: 567px) {
	.modal-close {
		width: 60px;
		height: 60px;
	}
}

.modal {
	background: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	width: 100%;
	max-width: 740px;
	transform: translateY(20px);
	opacity: 0;
	transition: 0.2s;
	position: relative;
	
	overflow: hidden; 

	font-size: 16px;
	border-radius: 16px;

	line-height: 1.6;
}

@media (min-width: 1200px) {

	.modal {
		max-width: 780px;
	}
}

.modal .pre-heading {
	padding-right: 20px;
}

.modal .pad {
	padding: 30px;
}

@media (min-width: 1200px) {

	.modal .pad {
		padding: 50px;
	}
}

/*.modal-title,
.modal-header h2 {
	font-size: 30px;
}*/

.modal blockquote {
	border: none;
	margin: 0;
	padding: 0;
}

.modal .btn,
.sidebar .btn {
	margin-top: 0;
}

/*.modal .col {
	min-width: 0;
}*/

.modal p,
.modal input[type="submit"],
.modal .btn-lg,
.sidebar .btn {
	width: 100%;
	max-width: 100%;
}


.modal .wpcf7-form.sent .hide-on-sent {
	display: none;
}

/* */

.modal-header {
	background-color: var(--bg-grey);
	background-size: cover;
	background-position: 50% 40%;
	position: relative;
}

@media (max-width: 567px) {

	.modal-header {
		font-size: 15px;
	}

}

/*.modal-header:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top right, var(--secondary) 10%, hsla(215deg, 50%, 20%, 0));
}*/

.modal-header h2,
.modal-header p {
	position: relative;
}

.modal-header a {
	color: inherit !important;
}

.modal-header p:last-child {
	margin-bottom: 0;
}

/* Infield labels */

@keyframes animateLabel {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: none;
    }
}

.infield-label label.gfield_label {
    margin-left: 15px !important;
}

.infield-label label.gfield_label,
label.infield {
    position: absolute;
    top: 18px;
    left: 21px;
    z-index: 5;
    pointer-events: none;
    margin: 0;
    color: #aaa;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
}

.infield-label label.gfield_label.active,
.infield-label label.gfield_label.stay-active,
label.infield.active,
label.infield.stay-active {
    font-size: 10px;
    left: 10px;
    top: 5px;
    padding-left: 6px;
    padding-right: 6px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    animation-name: animateLabel;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    font-style: normal;
}

.infield-label input,
label.infield + .form-control,
label.infield + span .form-control,
label.infield + div .form-control {
    padding: 15px 15px 0 !important;
}

/* Forms */

label {
    display: block;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

@media (max-width: 567px) {
    .form-group {
        margin-bottom: 20px;
    }

    .wpcf7 .col-100 h4 {
    	margin-top: 10px;
    }
}

::placeholder {
    color: #aaa;
}

input[type="search"] {
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

select,
input[type="text"],
input[type="email"],
textarea,
.form-control {
    height: 54px;
    border: 1px solid #dee2e6;
    font-size: inherit;
    font-family: inherit;
    line-height: 20px;
    padding: 16px 20px;
    font-size: 16px;
    display: block;
    width: 100%;
    outline: none;
    background: #fff;
    /*box-shadow: inset 0 5px 3px -3px rgba(0, 0, 0, 0.05);*/
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
    transition: 0.2s;
    letter-spacing: 0;
}

@media (hover: hover) {

	select:hover,
	input[type="text"]:hover,
	input[type="email"]:hover,
	textarea:hover,
	.form-control:hover {
	    border-color: rgba(0, 123, 255, 0.5);
	}

}

select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 5px rgba(0, 123, 255, 0.2), 0 30px 40px rgba(0, 0, 0, 0.05), 0 15px 20px rgba(0, 123, 255, 0.1);
}

textarea,
textarea.form-control {
    resize: vertical;
    min-height: 108px;
}

select,
select.form-control {
    color: inherit;
    background-image: url("img/angle-down.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) 50%;
    background-size: 24px;
}

.input-group {
    position: relative;
    display: flex;
}

.input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.input-group .btn {
    width: auto;
    min-width: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
}

input[type="radio"],
input[type="checkbox"] {
    vertical-align: -1px;
    margin: 0 10px 0 0;
}

/* Contact Form 7 overrides */

.grecaptcha-badge {
    visibility: hidden;
}

.gfield_error input,
.form-control.wpcf7-not-valid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2), 0 30px 40px rgba(0, 0, 0, 0.05), 0 15px 20px rgba(220, 53, 69, 0.1) !important;
}

.wpcf7-checkbox,
.wpcf7-radio {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
}

.wpcf7-checkbox label,
.wpcf7-radio label {
    margin: 0 0 10px;
    cursor: pointer;
}

.wpcf7-checkbox .last .wpcf7-list-item-label,
.wpcf7-radio .last .wpcf7-list-item-label {
    padding-right: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item-label {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    line-height: 1.25;
    padding-right: 30px;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:before {
    content: "";
    width: 2em;
    height: 2em;
    border-radius: 20%;
    border: 1px solid #dee2e6;
    margin-right: 0.75em;
    flex-shrink: 0;
    box-shadow: inset 0 5px 3px -3px rgba(0, 0, 0, 0.05);
}

.wpcf7-checkbox input:checked ~ .wpcf7-list-item-label:after,
.wpcf7-checkbox input:checked ~ span:after,
.wpcf7-radio input:checked ~ .wpcf7-list-item-label:after,
.wpcf7-radio input:checked ~ span:after {
    opacity: 1;
    visibility: visible;
}

.wpcf7-checkbox input:focus ~ .wpcf7-list-item-label:before,
.wpcf7-checkbox input:focus ~ span:before,
.wpcf7-radio input:focus ~ .wpcf7-list-item-label:before,
.wpcf7-radio input:focus ~ span:before {
    border-color: #0f4c94;
    box-shadow: 0 0 0 4px rgba(15, 76, 148, 0.2);
}

.wpcf7-radio .wpcf7-list-item-label:before {
    border-radius: 50%;
}

.wpcf7-radio .wpcf7-list-item-label:after {
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: #0f4c94;
    position: absolute;
    top: calc(50% - 0.5em);
    left: 0.5em;
    visibility: hidden;
}

.wpcf7-checkbox .wpcf7-list-item-label:before {
    border-radius: 8px;
}

.wpcf7-checkbox .wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    left: 1em;
    top: 50%;
    width: 0.5em;
    height: 1em;
    border: solid #0f4c94;
    border-width: 0 3px 3px 0;
    transform: translate(-40%, -60%) rotate(45deg);
    visibility: hidden;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
    opacity: 0;
}

.wpcf7-display-none {
    display: none;
}

@keyframes spin {
    0% {
        transform: none;
    }
    100% {
        transform: rotate(360deg);
    }
}

.wpcf7 form.submitting button[type="submit"]:after {
    content: "";
    display: inline-block;
    vertical-align: top;
    border: 2px solid transparent;
    border-left: 2px solid;
    animation: spin 1s infinite linear;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    margin-right: -10px;

    transform-origin: center;
    position: static;
}

.wpcf7 form.submitting button[type="submit"] svg {
    display: none;
}

.validation_message,
.wpcf7-not-valid-tip {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
    padding-left: 16px;
    font-style: italic;
    display: none;
}

.wpcf7-response-output:empty {
    display: none;
}

.validation_error,
.wpcf7-response-output {
    color: #dc3545;
    background-color: hsla(330deg, 75%, 90%, 0.4);
    background-image: url('img/alert-red.svg');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: 20px 50%;
    border-radius: 8px;
    padding: 20px;
    padding-left: 60px;
    line-height: 20px;
    font-size: 15px;
    margin-top: 20px;
}

.wpcf7-form.sent .validation_error,
.validation_error.wpcf7-mail-sent-ok,
.wpcf7-form.sent .wpcf7-response-output,
.wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
    background-image: url('img/check-green.svg');
}

.wpcf7 .row {
	margin-bottom: 0;
	margin-left: -15px;
	margin-right: -15px;
	clear: both;
}

.wpcf7 .row > .col {
	padding-bottom: 0;
	padding-left: 15px;
	padding-right: 15px;
}

.wpcf7 p {
	max-width: 40em;
}

.form-group p {
	max-width: 100%;
}

/* */

.map-label {
	position: absolute;
	transform: translate(-50%, -50%);
	text-align: center;
	line-height: 1;
}

.map-pin svg {
	width: 32px;
	height: 32px;
	color: var(--secondary);
	position: absolute;
	transform: translate(-50%, -100%);

	transition: 0.3s;
}

.map-pin:hover svg {
	color: var(--primary);
}
