/* grid breakers */
.wp-block-source-container { /* reset from parent theme */
	position: relative;
	left: 0;
	transform: none;
	width: auto;
	max-width: none !important;
}



/* text rotator */
.is-style-text-rotator,
.is-style-text-rotator-pre {
	display: inline-block;
	margin: 0;
	/*overflow: hidden;*/
	padding: 0;
	position: relative;
	text-align: initial;
	white-space: nowrap;
	height: 1.5em;
	vertical-align: middle;
}
.is-style-text-rotator-pre {
	line-height: 1.3em;
}
	.is-style-text-rotator > li {
		-webkit-animation: text-rotate 7s infinite forwards;
		animation: text-rotate 7s infinite forwards;
		
		/*border-bottom: 1px solid #2e2d2c;*/
		display: table;
		height: 1.5em; line-height: 1.3em;
		position: relative; left: 0;
	}
	.is-style-text-rotator > li:not(:first-of-type) {
		display: block;
		width: 0;
	}
		/*.is-style-text-rotator > li::after {
			border-bottom: 1px solid #2e2d2c;
			content: '';
			position: absolute; right: 0; bottom: .1em; left: 0;
			width: 100%; height: 0;
		}*/
	/*.is-style-text-rotator:hover > li {
		animation: emptyanim;
	}*/

@-webkit-keyframes text-rotate {
0% { transform: translateY(0); }
30% { transform: translateY(0); }
100% { transform: translateY(-12em); } /* 1.5em per line. Needs changing manually if list length changes, but no js required. -13.5em */
}
@keyframes text-rotate {
0% { transform: translateY(0); }
30% { transform: translateY(0); }
100% { transform: translateY(-12em); } /* " " " */
}
@-webkit-keyframes emptyanim {}
@keyframes emptyanim {}



/* --------------------- COLOURS --------------------- */
html .has-white-color {
   
}
	html .has-white-color a,
	html .has-white-color .highlight {
	    color: inherit;
	    text-decoration: underline;
	}
	html .has-white-color hr,
	html .has-white-color .is-style-accordion {
	    border-color: #FFFFFF;
	}
	.has-white-color .wp-block-button .wp-block-button__link:not(:hover),
	.has-white-color .wp-block-button .wp-block-button__link:not(:focus) {
		border-color: #FFFFFF;
	}
	.has-white-color .wp-block-image.is-style-arrow-horizontal,
	.has-white-color .wp-block-button.is-style-arrow-horizontal {
		filter: brightness(0) invert(1);
	}


/* partial background colours */
[class*="is-style-background-color-"],
[class*="is-style-background-left-color-"]/*,
[class*="-color-20pc"],
[class*="-color-50pc"],
[class*="-color-60pc"],
[class*="-color-70pc"],
[class*="-color-85pc"]*/ {
	position: relative;
}
	[class*="is-style-background-color-"] > *,
	[class*="is-style-background-left-color-"] > */*,
	[class*="-color-20pc"] > div,
	[class*="-color-50pc"] > div,
	[class*="-color-60pc"] > div,
	[class*="-color-70pc"] > div,
	[class*="-color-85pc"] > div*/ {
		position: relative;
		z-index: 1;
	}
	[class*="is-style-background-color-"]::after,
	[class*="is-style-background-left-color-"]::after/*
	[class*="-color-20pc"]::after,
	[class*="-color-50pc"]::after,
	[class*="-color-60pc"]::after,
	[class*="-color-70pc"]::after,
	[class*="-color-85pc"]::after*/ {
		background-color: #f6f6f6;
		content: '';
		display: block;
		pointer-events: none;
		position: absolute; top: -1px; right: 0; bottom: -1px;
		width: 50%; height: calc(100% + 2px);
		z-index: 0;
	}
	
	/* legacy */
	.has-light-grey-background-color-60pc::after {
		width: 60%;
	}
	.has-pale-blue-background-color-50pc::after {
		background-color: #ebf6f6;
	}
	.has-pale-red-background-color-50pc::after {
		background-color: #F1D3D5;/*fdeaeb*/
	}
	.has-fop-dark-green-background-color-50pc::after {
		background-color: #004d40;
	}
	.has-sfhc-pale-blue-background-color-50pc::after {
		background-color: #92c2e4;
	}
	.has-san-pale-green-background-color-50pc::after {
		background-color: #e4e9d9;
	}

/* General solution, does it the opposite way to the presets. Only works on white. */

	html [class*="is-style-background-color-"]::after,
	html [class*="is-style-background-left-color-"]::after/*,
	html .is-style-background-color-20pc::after,
	html .is-style-background-left-color-20pc::after,
	html .is-style-background-color-50pc::after,
	html .is-style-background-left-color-50pc::after,
	html .is-style-background-color-60pc::after,
	html .is-style-background-left-color-60pc::after,
	html .is-style-background-color-70pc::after,
	html .is-style-background-left-color-70pc::after,
	html .is-style-background-color-85pc::after,
	html .is-style-background-left-color-85pc::after*/ {
		background-color: #FFFFFF;
		right: auto; left: 0;
	}
	html .is-style-background-color-20pc::after,
	html .is-style-background-left-color-20pc::after {
		width: 80%;
	}
	html .is-style-background-color-30pc::after,
	html .is-style-background-left-color-30pc::after {
		width: 70%;
	}
	html .is-style-background-color-40pc::after,
	html .is-style-background-left-color-40pc::after {
		width: 60%;
	}
	html .is-style-background-color-60pc::after,
	html .is-style-background-left-color-60pc::after {
		width: 40%;
	}
	html .is-style-background-color-70pc::after,
	html .is-style-background-left-color-70pc::after {
		width: 30%;
	}
	html .is-style-background-color-80pc::after,
	html .is-style-background-left-color-80pc::after {
		width: 20%;
	}
	html .is-style-background-color-85pc::after,
	html .is-style-background-left-color-85pc::after {
		width: 15%;
	}
	
	html [class*="is-style-background-left-color-"]::after/*
	html [class*="-left-color-20pc"]::after,
	html [class*="-left-color-50pc"]::after,
	html [class*="-left-color-60pc"]::after,
	html [class*="-left-color-70pc"]::after,
	html [class*="-left-color-85pc"]::after*/ {
		right: 0; left: auto;
	}




/* --------------------- HEADING --------------------- */

/* accordion */
.is-style-accordion {
	border-top: 1px solid #333333;
	margin: 0;
}
	.is-style-accordion a {
		display: block;
		padding: 1rem 2em 1rem 0;
		position: relative;
	}
		.is-style-accordion a::after,
		.block-editor .is-style-accordion::after {
			content: '+';
			display: block;
			font-size: 1em;
			position: absolute; right: 0; top: 50%; 
			transform: translateY(-50%);
		}
		.is-style-accordion.open a::after {
			content: '-';
		}
.accordion-content {
	padding: .5rem 0 1.5rem;
}
.accordion-content.hidden {
	display: none;
}



/* --------------------- HORIZONTAL RULE --------------------- */
hr,
.wp-block-separator { 
	border: 0;
	border-bottom: 1px solid currentColor;
	margin: 3rem 0;
	max-width: none !important;
}



/* --------------------- FONT SIZE --------------------- */
html .has-small-font-size,
html .has-medium-font-size,
html .has-large-font-size,
html .has-huge-font-size {
	
}
html .has-small-font-size {
	
}
html .has-medium-font-size,
.is-style-featured-thumb:not(.is-style-case-study) h2,
.menu-service-menu-container,
.wp-block-quote {
	font-size: 1.2rem !important;
	font-weight: 300;
}
html .has-large-font-size,
.is-style-featured-thumb:not(.is-style-case-study) strong,
.is-style-numbered {
	font-size: 1.5rem !important;
	font-weight: 300;
	line-height: 1.3em;
	margin-bottom: 1rem;
}
html .has-huge-font-size {
	font-size: 2.5rem !important;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 1rem;
}
html .has-colossal-font-size {
	font-size: 3rem !important;
	line-height: 1em;
	margin-bottom: 1rem;
}

.is-style-serif {
	font-family: 'alverata', 'Georgia', serif;
	font-weight: 300;
	font-style: normal;
	letter-spacing: -.055em;
}

.is-style-sans-serif {
	font-family: 'europa', 'Arial', sans-serif;
	
}
h1.is-style-sans-serif, h2.is-style-sans-serif, h3.is-style-sans-serif, h4.is-style-sans-serif, h5.is-style-sans-serif, h6.is-style-sans-serif {
	letter-spacing: -.035em !important;
}

.is-style-text-width {
	max-width: 52rem !important;
}

.is-style-numbered {
	align-items: center;
	aspect-ratio: 1/1;
	border: 1px solid currentColor;
	border-radius: 50%;
	display: flex;
	font-family: 'alverata', 'Georgia', serif;
	justify-content: center;
	text-align: center;
	padding-right: 2%; padding-bottom: 3%;
	width: 100%;
}
.has-pale-red-background-color .is-style-numbered.has-pale-red-color {
	color: inherit !important;
}


/* --------------------- QUOTE --------------------- */
.wp-block-quote {
	font-family: 'alverata', 'Georgia', serif;
	font-weight: 300;
	margin: 0;
	text-align: initial;
}
.wp-block-quote:not(:first-child) {
	margin-top: 2rem;
}
	.wp-block-quote p:last-of-type {
		margin-bottom: 0;
	}
	.wp-block-quote cite {
		font-family: 'europa', 'Arial', sans-serif;
		font-size: 1rem;
		font-style: normal;
		font-weight: normal;
	}



/* --------------------- BUTTON --------------------- */
.wp-block-buttons {
	
}
.wp-block-buttons:where(.is-layout-flex) {
	gap: 0;
}

.wp-block-button {
	color: inherit;
	display: inline-block;
	margin: 0 0 1em;
}

.wp-block-buttons .wp-block-button {
	margin-bottom: 0;
}
.wp-block-buttons .wp-block-button:last-child {
	margin-right: 0;
}

.wp-block-button + .wp-block-button {
	margin-left: 0;
}
	html .wp-block-button .wp-block-button__link,
	html .frontend input[type="submit"],
	html .frontend input[type="button"],
	html .frontend button[type="submit"],
	html .frontend form button {
		background: transparent;
		border: 0;
		border-radius: 0;
		color: inherit;
		cursor: pointer;
		display: inline-block;
		font-size: 1em;
		/*line-height: 1.5em;*/
		padding: 0 0; /*padding: calc(.5em + 2px) 1em;*/
		position: relative;
		text-decoration: none !important;
		text-transform: none;
		transition: all .3s ease; transform: none !important;
		width: auto;
		z-index: 2;
	}
		html .wp-block-button:not([class*="is-style-"]) .wp-block-button__link::before,
		html .wp-block-button:not([class*="is-style-"]) .wp-block-button__link::after {
			border-bottom: 1px solid currentColor;
			content: '';
			display: block;
			position: absolute; top: 100%; right: 0;
			width: 100%; height: 0;
		}
		html .wp-block-button:not([class*="is-style-"]) .wp-block-button__link::after {
			transition: all .3s ease;
			transition-delay: .2s;
			width: 0;
		}
		html .wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover::before,
		html .wp-block-button:not([class*="is-style-"]) .wp-block-button__link:focus::before {
			transition: all .3s ease;
			width: 0;
		}
		html .wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover::after,
		html .wp-block-button:not([class*="is-style-"]) .wp-block-button__link:focus::after {
			right: auto; left: 0;
			width: 100%;
		}

/*	html .wp-block-button .wp-block-button__link:hover,
	html .wp-block-button .wp-block-button__linkfocus,
	html .frontend input[type="submit"]:hover,
	html .frontend input[type="submit"]:focus,
	html .frontend input[type="button"]:hover,
	html .frontend input[type="button"]:focus,
	html .frontend button[type="submit"]:hover,
	html .frontend button[type="submit"]:focus,
	html .frontend form button:hover,
	html .frontend form button:focus {
		
	}*/

		/*html .wp-block-button .wp-block-button__link:hover,
		html .wp-block-button .wp-block-button__link:focus,
		html .frontend input[type="submit"]:hover, 
		html .frontend input[type="submit"]:focus, 
		html .frontend input[type="button"]:hover,
		html .frontend input[type="button"]:focus,
		html .frontend button[type="submit"]:hover,
		html .frontend button[type="submit"]:focus,
		html .frontend form button:hover,
		html .frontend form button:focus {
			color: #2e2d2c;
			transform: none;
		}*/

	/* default button hover effect */
	/*html .frontend .wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover,
	html .frontend .wp-block-button:not([class*="is-style-"]) .wp-block-button__link:focus {
		border-color: #2e2d2c;
		color: #FFFFFF;
	}
		html .frontend .wp-block-button:not([class*="is-style-"]) .wp-block-button__link::after {
			background: #2e2d2c;
			content: '';
			position: absolute; top: 0; bottom: 0; right: 0;
			transition: all .3s ease;
			width: 0; height: 100%;
			z-index: -1;
		}
		html .frontend .wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover::after,
		html .frontend .wp-block-button:not([class*="is-style-"]) .wp-block-button__link:focus::after {
			right: auto; left: 0;
			width: 100%;
		}*/

	/* arrow for submits, buttons etc */
	html .frontend input[type="submit"],
	html .frontend input[type="button"],
	html .frontend button[type="submit"],
	html .frontend form button {
		background: url('images/arrow-right.svg') center right 1em/4rem auto no-repeat transparent;
		padding-right: calc(2em + 4rem);
	}


/* arrow style */
html .wp-block-button.is-style-arrow-horizontal {
	
}
	html .wp-block-button.is-style-arrow-horizontal-block {
		border-bottom: 1px solid currentColor;
	}
	html .wp-block-button.is-style-arrow-horizontal .wp-block-button__link,
	html .wp-block-button.is-style-arrow-horizontal-block .wp-block-button__link,
	.menu-service-menu-container li a {
		border: none;
		display: block;
		padding: 0;
		position: relative;
		text-align: initial;
		text-transform: none;
	}
	html .is-style-featured-thumb .wp-block-button.is-style-arrow-horizontal .wp-block-button__link {
		text-align: right;
	}
		html .wp-block-button.is-style-arrow-horizontal .wp-block-button__link::after,
		html .wp-block-button.is-style-arrow-horizontal-block .wp-block-button__link::after,
		.menu-service-menu-container li a::after {
			background: url('images/arrow-right.svg') right bottom/4rem auto no-repeat transparent;
			content: '';
			display: inline-block;
			
			vertical-align: middle;
			width: 4rem; height: 1.1rem;
		}
		html .wp-block-button.is-style-arrow-horizontal .wp-block-button__link:not(:empty)::after,
		html .wp-block-button.is-style-arrow-horizontal-block .wp-block-button__link:not(:empty)::after,
		.menu-service-menu-container li a::after {
			margin-left: 1rem;
		}
		html .wp-block-button.is-style-arrow-horizontal .wp-block-button__link:empty::after {
			margin-left: 0;
		}
		html .wp-block-button.is-style-arrow-horizontal .wp-block-button__link:hover::after,
		html .wp-block-button.is-style-arrow-horizontal .wp-block-button__link:focus::after,
		a:hover .wp-block-button.is-style-arrow-horizontal .wp-block-button__link::after,
		a:focus .wp-block-button.is-style-arrow-horizontal .wp-block-button__link::after {
			-webkit-animation: arrow-bounce-horizontal 1s infinite;
			animation: arrow-bounce-horizontal 1s infinite;
		}

/* arrow style (block) */
html .wp-block-button.is-style-arrow-horizontal-block {
	display: block;
	font-size: 1.2rem;
	margin: 0 !important;
	width: 100%;
}
	html .wp-block-button.is-style-arrow-horizontal-block .wp-block-button__link {
		display: block;
		padding-top: .5rem; padding-bottom: .5rem;
		width: 100%;
	}
		html .wp-block-button.is-style-arrow-horizontal-block .wp-block-button__link::after,
		.menu-service-menu-container li a::after {
			position: absolute; right: 0; top: 50%;
			transform: translateY(-50%);
			transition: all .3s ease;
			width: 1.8rem;
		}
		.menu-service-menu-container li a::after {
			opacity: 0;
		}
		html .wp-block-button.is-style-arrow-horizontal-block .wp-block-button__link:hover::after,
		html .wp-block-button.is-style-arrow-horizontal-block .wp-block-button__link:focus::after,
		.menu-service-menu-container li a:hover::after,
		.menu-service-menu-container li a:focus::after {
			opacity: 1;
			width: 4rem;
		}

	.wp-block-buttons .wp-block.block-editor-block-list__block[data-type="core/button"] {
		display: block;
	}


.wp-block-buttons.is-style-two-column {
	
}



/* special */
.heading-link {
	display: block;
}
	.heading-link h3 {
		display: table;
		/*margin-right: auto; margin-left: auto;*/
		margin-left: -.1em; margin-right: -.1em;
		padding-left: .1em; padding-right: .1em;
		position: relative;
	}
		.heading-link h3::after {
			background-color: #F1D3D5;/*#F1D3D5;*/
			content: '';
			display: block;
			position: absolute; top: 0; right: 0; bottom: 0;
			transition: width .3s ease;
			width: 0; height: 100%;
			z-index: -1;
		}
		a.heading-link:hover h3::after,
		a.heading-link:focus h3::after {
			right: auto; left: 0;
			width: 100%;
		}



/* --------------------- IMAGE --------------------- */
.wp-block-image {
	margin: 0;
	position: relative;
}
	.wp-block-image a,
	.wp-block-image img {
		
	}
	.wp-block-image img {
		
	}
	.wp-block-image video {
		display: block;
		width: 100%; height: auto;
	}
	.wp-block-image figcaption {
		
	}


.size-banner img,
.col .size-banner video, [class*="col-"] .size-banner video { /* only crop videos in columns */
	aspect-ratio: 1 / .78;
	object-fit: cover !important;
	/*max-height: calc(100vh - 7em) !important;*/
}

.is-style-square img {
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}


.is-style-featured-thumb {
	color: #FFFFFF;
	overflow: hidden;
	position: relative;
}
.featured-thumb-grid .is-style-featured-thumb {
	margin-bottom: 30px;
}
	.is-style-featured-thumb > img,
	.is-style-featured-thumb > a > img,
	.is-style-featured-thumb > video,
	.is-style-featured-thumb > a > video {
		object-fit: cover;
		font-family: 'object-fit: cover;';
		position: relative;
		transform: scale(1);
		transition: transform 2s ease;
		max-height: calc(100vh - 150px);
		z-index: 1;
	}
	.is-style-featured-thumb > a,
	.is-style-featured-thumb > video,
	.is-style-featured-thumb > a > video {
		display: block;
		overflow: hidden;
		width: 100%;
	}
	.is-style-featured-thumb > a {
		
		position: relative;
	}
	.is-style-featured-thumb > a:hover > img,
	.is-style-featured-thumb > a:focus > img {
		transition: transform 4s ease;
		transform: scale(1.05);
	}
		.is-style-featured-thumb > a::before {
			/*background-color: rgba(60,60,59,.6); /* .75, changed 20210628 */
			content: '';
			display: block;
			/*opacity: 0;*/
			pointer-events: none;
			position: absolute; top: -1px; right: -1px; bottom: -1px; left: -1px;
			transition: opacity .3s ease;
			z-index: 2;
		}
		.is-style-featured-thumb > a:hover::before,
		.is-style-featured-thumb > a:focus::before,
		.is-style-featured-thumb.dark > a::before/*,
		.col-md-1 .is-style-featured-thumb > a::before,
		.col-md-2 .is-style-featured-thumb > a::before,
		.col-md-3 .is-style-featured-thumb > a::before,
		.col-md-4 .is-style-featured-thumb > a::before,
		.col-md-5 .is-style-featured-thumb > a::before,
		.col-md-6 .is-style-featured-thumb > a::before*/ {
			opacity: 1;
		}
		.is-style-featured-thumb.dark > a:hover::before,
		.is-style-featured-thumb.dark > a:focus::before {
			/*opacity: 0;*/
		}
		.is-style-featured-thumb .featured-thumb-title {
			background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,0) 100%);
			color: rgba(0,0,0,0);
			font-family: 'alverata', 'Georgia', serif;
			font-size: 3rem;
			font-weight: 300;
			letter-spacing: -.055em;
			line-height: 1;
			margin-bottom: -.11em;
			text-stroke: 1px #2E2D2C;
			-webkit-text-stroke: 1px #FFFFFF;
			position: absolute; bottom: 0; right: 0; left: 0;
			z-index: 2;
		}

	.is-style-featured-thumb figcaption {
		background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,0) 100%);
		
		margin: 0;
		padding: 5%;
		
		position: absolute; right: 0; bottom: 0; left: 0;
		text-align: initial;
		transition: background .6s ease;
		z-index: 3;
	}
	.frontend .is-style-featured-thumb figcaption {
		pointer-events: none;
	}
	.is-style-featured-thumb > a:hover + figcaption,
	.is-style-featured-thumb > a:focus + figcaption,
	.is-style-featured-thumb.dark figcaption {
		/*background: rgba(0,0,0,0);*/
	}
		.is-style-featured-thumb > figcaption > :last-child {
			margin-bottom: 0;
		}
		.is-style-featured-thumb > figcaption strong {
			font-weight: 300;
		}

/* new style for 2024 */
.is-style-featured-thumb.is-style-caption-outside {
	color: inherit !important;
	overflow: visible;
}
	.is-style-featured-thumb.is-style-caption-outside figcaption {
		background: transparent !important;
		padding: 1rem 0 2rem;
		pointer-events: initial;
		position: static; right: auto; bottom: auto; left: auto;
	}

/* new style for 2024 */
.is-style-featured-thumb.is-style-case-study {
	color: inherit !important;
	overflow: visible;
}
	.is-style-featured-thumb.is-style-case-study figcaption {
		background: transparent !important;
		padding: 1rem 0 2rem;
		pointer-events: initial;
		position: static; right: auto; bottom: auto; left: auto;
	}
		.is-style-featured-thumb.is-style-case-study figcaption h2 {
			font-size: inherit !important;
			letter-spacing: normal !important;
			line-height: normal !important;
		}


.nomaxheight img {
	max-height: none !important;
}


.wp-block-image.is-style-header-logo {
	margin: 0;
	position: relative;
	transition: all .3s ease;
	z-index: 1004;
}
	.wp-block-image.is-style-header-logo img {
		display: block;
		width: auto; height: 1.5rem;
	}
body.show-menu .wp-block-image.is-style-header-logo {
	filter: brightness(0) invert(1);
}


.wp-block-image.is-style-arrow-horizontal {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	text-align: left;
}
	.wp-block-image.is-style-arrow-horizontal > img,
	.wp-block-image.is-style-arrow-horizontal > a > img {
		width: 4rem; height: auto;
	}
	.wp-block-image.is-style-arrow-horizontal.animated,
	.wp-block-image.is-style-arrow-horizontal > a:hover,
	.wp-block-image.is-style-arrow-horizontal > a:focus,
	a:hover + figcaption .wp-block-image.is-style-arrow-horizontal,
	a:focus + figcaption .wp-block-image.is-style-arrow-horizontal,
	a:hover + figcaption .wp-block-button.is-style-arrow-horizontal .wp-block-button__link::after,
	a:focus + figcaption .wp-block-button.is-style-arrow-horizontal .wp-block-button__link::after {
		-webkit-animation: arrow-bounce-horizontal 1s infinite;
		animation: arrow-bounce-horizontal 1s infinite;
	}
	
	/*.is-style-arrow-horizontal a.wp-block-button__link > span,
	a:hover + figcaption .wp-block-button.is-style-arrow-horizontal .wp-block-button__link > span {
		opacity: 0;
		transition: opacity .3s ease;
	}
	.is-style-arrow-horizontal a.wp-block-button__link:hover > span,
	.is-style-arrow-horizontal a.wp-block-button__link:focus > span,
	a:hover + figcaption .wp-block-button.is-style-arrow-horizontal .wp-block-button__link > span,
	a:focus + figcaption .wp-block-button.is-style-arrow-horizontal .wp-block-button__link > span {
		opacity: 1;
	}
	.col .is-style-arrow-horizontal a.wp-block-button__link > span,
	[class*="col-"] .is-style-arrow-horizontal a.wp-block-button__link > span {
		display: none !important;
	}*/


.wp-block-image.is-style-arrow-vertical {
	display: inline-block;
	vertical-align: middle;
}
	.wp-block-image.is-style-arrow-vertical > img,
	.wp-block-image.is-style-arrow-vertical > a > img {
		width: auto; height: 2rem;
	}
	.wp-block-image.is-style-arrow-vertical.animated,
	.wp-block-image.is-style-arrow-vertical:not(.animated) > a:hover,
	.wp-block-image.is-style-arrow-vertical:not(.animated) > a:focus {
		-webkit-animation: arrow-bounce-vertical 1s infinite;
		animation: arrow-bounce-vertical 1s infinite;
	}



@-webkit-keyframes arrow-bounce-horizontal {
0% { transform: translateX(0); }
50% { transform: translateX(.5rem); }
100% { transform: translateX(0); }
}
@keyframes arrow-bounce-horizontal {
0% { transform: translateX(0); }
50% { transform: translateX(.5rem); }
100% { transform: translateX(0); }
}
@-webkit-keyframes arrow-bounce-vertical {
0% { transform: translateY(0); }
50% { transform: translateY(.5rem); }
100% { transform: translateY(0); }
}
@keyframes arrow-bounce-vertical {
0% { transform: translateY(0); }
50% { transform: translateY(.5rem); }
100% { transform: translateY(0); }
}



.wp-block-image.is-style-footer-logo {
	display: inline-block;
	max-width: 7rem;
}



/* --------------------- GALLERY --------------------- */
.wp-block-gallery {
	
}



/* --------------------- SOCIAL LINKS --------------------- */
.wp-block-social-links {
	display: inline-block;
	margin: 0 -.5rem;
}
	.wp-block-social-links .wp-social-link {
		background: transparent !important;
		display: inline-block;
		filter: invert(.84); /* turns white dark grey */
		margin: .3rem;
		width: auto; height: auto;
	}
	.has-white-color .wp-block-social-links .wp-social-link {
		filter: brightness(0) invert(1); /* white */
	}
		.wp-block-social-links .wp-social-link a {
			padding: 0;
		}
			.wp-block-social-links .wp-social-link a svg {
				width: auto; height: 3rem;
			}



/* --------------------- COLUMNS --------------------- */
.wp-block-columns {
	margin: 0 -15px;
	text-align: initial;
}
	.wp-block-columns .wp-block-column {
		margin: 0 15px;
	}
	.wp-block-columns.nogutters .wp-block-column {
		margin: 0;
	}


/* --------------------- SOURCE COLUMNS --------------------- */
.wp-block-source-columns {
	
}

html [class*="is-style-no-gutters"] {
	margin-right: 0;
	margin-left: 0;
}
	html [class*="is-style-no-gutters"] > .col,
	html [class*="is-style-no-gutters"] > [class*="col-"] {
		padding-right: 0;
		padding-left: 0;
	}


.wp-block-source-column {
	background-size: cover;
}
	.wp-block-source-column .wp-block-image,
	.wp-block-column .wp-block-image {
		margin-bottom: 0;
	}

/* style for a box of padded text, with option for arrow inset */
html .is-style-text-column {
	/*align-items: center;*/
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
}
html .is-style-text-column,
.wp-block-media-text__content {
	padding-top: 2rem; padding-bottom: 2rem;
	padding-right: 6vw !important; padding-left: 6vw !important;
	position: relative;
}
html .container .is-style-text-column,
.container .wp-block-media-text__content {
	padding-right: 2rem; padding-left: 2rem;
}
	html .is-style-text-column > div {
		position: relative;
		width: 100%;
		z-index: 4;
	}


/* row styles */
.row.is-style-gutters-large,
.row.is-style-gutters-lines {
	margin-right: -4rem; margin-left: -4rem;
}
	.row.is-style-gutters-large > div,
	.row.is-style-gutters-lines > div,
	.is-style-gutters-large > div > div > .wp-block,
	.is-style-gutters-lines > div > div > .wp-block {
		padding-left: 4rem;
	}
	.row.is-style-gutters-large > div,
	.row.is-style-gutters-lines > div,
	.is-style-gutters-large > div > div > .wp-block,
	.is-style-gutters-lines > div > div > .wp-block  {
		padding-right: 4rem;
	}

	.row.is-style-gutters-lines > div,
	.is-style-gutters-lines > div > div > .wp-block {
		position: relative;
	}
		.row.is-style-gutters-lines > div:not(:last-child)::after,
		.is-style-gutters-lines > div > div > .wp-block:not(:last-child)::after {
			border-left: 1px solid #CCCCCC;
			content: '';
			display: block;
			position: absolute; top: 0; right: 0; bottom: 0;
			width: 0; height: 100%;
		}



/* --------------------- LIST --------------------- */
.frontend ul.is-style-breadcrumb {
	display: flex;
	column-gap: 1rem;
}
ul.is-style-breadcrumb {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
	ul.is-style-breadcrumb > li {
		white-space: nowrap;
	}
		.frontend ul.is-style-breadcrumb > li:not(:last-child)::after {
			border-top: 1px solid currentColor;
			content: '';
			display: inline-block;
			margin-left: 1rem;
			width: 2rem; height: .3em;
		}
		ul.is-style-breadcrumb a {
			text-decoration: none;
		}



/* --------------------- TABLE --------------------- */
a.is-style-hide-links,
.is-style-hide-links a {
	color: inherit !important;
	text-decoration: none !important;
}



/* --------------------- TABLE --------------------- */
/*.wp-block-table {
	border: 1px solid #f2f2f2;
	border-collapse: collapse;
	margin: 0 0 1em;
}
	.wp-block-table tr {
		
	}
		.wp-block-table th,
		.wp-block-table td {
			padding: .2em .4em;
			text-align: left;
		}
		.wp-block-table th {
			background: rgba(255,255,255,.5);
			color: #FFFFFF;
			border: 1px solid #FFFFFF;
			font-weight: inherit;
		}
		.wp-block-table td {
			border: 1px solid #cccccc;
		}*/



/* --------------------- SPACER --------------------- */
.wp-block-spacer.is-style-small {
	height: 1rem !important;
}
.wp-block-spacer.is-style-medium {
	height: 2rem !important;
}
.wp-block-spacer.is-style-large {
	height: 2rem !important;
}



/* --------------------- CONTAINER --------------------- */
.wp-block-source-container {
	
}

/* near-full page content */
.is-style-fullpage {
	min-height: 0;/*min-height: 100vh;*/
}

.page-footer .is-style-fullpage {
	min-height: calc(100vh - 8em); /* adjusted for header and footer bottom text bar */
}
body:not(.home) .page-footer .is-style-fullpage {
	min-height: auto;
}

/* vertical spacing */
html .is-style-padded,
.is-style-fullpage {
	margin: 0;
	padding-top: 2rem; padding-bottom: 2rem;
}

html .is-style-padded-more {
	padding-top: 2rem; padding-bottom: 2rem;
}

html .is-style-padded-less {
	padding-top: 1rem; padding-bottom: 1rem;
}

html .is-style-padded.yield + .is-style-padded {
	padding-top: 0;
}

.remove-inner-padding .is-style-padded,
.remove-inner-padding .is-style-padded-more,
.remove-inner-padding .is-style-padded-less {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}


.is-style-dark-background {
	position: relative;
}
	.is-style-dark-background > * {
		position: relative;
		z-index: 2;
	}
	.is-style-dark-background::before {
		background: rgba(0,0,0,.5);
		content: '';
		pointer-events: none;
		position: absolute; top: 0; right: 0; bottom: 0; left: 0;
		width: 100%; height: 100%;
		z-index: 1;
	}



/* --------------------- LIST --------------------- */
.is-style-sibling-nav {
	
}




/* --------------------- ALIGNMENT --------------------- */
/*.alignleft {
	float: left;
	margin: 0 2em 0 0;
}
.aligncenter {
	display: block !important;
	margin-right: auto !important; margin-left: auto !important;
	text-align: center;
}
.alignright {
	float: right;
	margin: 0 0 0 2em;
}*/


/* --------------------- VIDEO --------------------- */
.wp-block-cover .wp-block-cover__image-background, .wp-block-cover video.wp-block-cover__video-background, .wp-block-cover-image .wp-block-cover__image-background, .wp-block-cover-image video.wp-block-cover__video-background {
	height: auto;
}
.wp-block-video {
	
}

.wp-block-video.is-style-fullheight {
	
}
	.wp-block-video.is-style-fullheight video {
		display: block;
		margin-right: auto; margin-left: auto;
		object-fit: contain;
		width: auto; max-width: 100%; max-height: 90vh;
	}
	.frontend .wp-block-video.is-style-fullheight figcaption {
		font-size: 0;
		position: absolute; top: 0; right: 0; bottom: 0; left: 0;
		z-index: 10;
	}
		.frontend .wp-block-video.is-style-fullheight figcaption a {
			font-size: 0;
			position: absolute; top: 0; right: 0; bottom: 0; left: 0;
			z-index: 10;
		}



/* --------------------- CAROUSEL --------------------- */
.frontend .wp-block-source-carousel.is-style-multi {
	margin-right: -.5rem; margin-left: -.5rem; 
}
	.frontend .wp-block-source-carousel.is-style-multi .slick-slide {
		padding-right: .5rem; padding-left: .5rem;
	}
	.block-editor .wp-block-source-carousel.is-style-multi .block-editor-block-list__layout {
		display: flex;
		flex-wrap: wrap;
		gap: 2rem;
	}
		.block-editor .wp-block-source-carousel.is-style-multi .block-editor-block-list__layout > .wp-block {
			width: calc(33.33% - 2rem);
		}

.frontend .wp-block-source-carousel.is-style-testimonials {
	
}
	.frontend .wp-block-source-carousel.is-style-testimonials .slick-slide {
		
	}
		.frontend .wp-block-source-carousel.is-style-testimonials .slick-slide [class*="col-"]:first-child {
			
		}
			.frontend .wp-block-source-carousel.is-style-testimonials .slick-slide .column__content {
				display: flex;
				flex-direction: column;
				height: 100%;
				justify-content: flex-end;
				
				width: 100%;
			}
			.frontend .wp-block-source-carousel.is-style-testimonials .slick-slide .wp-block-source-column:first-child .column__content {
				padding-bottom: 5rem;
			}
				.frontend .wp-block-source-carousel.is-style-testimonials .slick-slide .column__content .is-style-logo {
					margin-bottom: auto;
					padding-bottom: 1rem;
				}
				.frontend .wp-block-source-carousel.is-style-testimonials .slick-slide .column__content :last-child {
					margin: 0 !important;
				}

	.frontend .wp-block-source-carousel.is-style-testimonials .slick-arrow {
		top: auto; bottom: 0; right: auto !important;
		transform: none !important;
	}
	.frontend .wp-block-source-carousel.is-style-testimonials .slick-arrow.slick-prev {
		left: 0 !important; 
	}
	.frontend .wp-block-source-carousel.is-style-testimonials .slick-arrow.slick-next {
		left: 5rem !important;
	}

.frontend .wp-block-source-carousel.is-style-text {
	padding-bottom: 2rem;
}
	.frontend .wp-block-source-carousel.is-style-text .slick-arrow {
		top: auto; bottom: 0; right: auto !important;
		transform: none !important;
	}
	.frontend .wp-block-source-carousel.is-style-text .slick-arrow.slick-prev {
		left: 0 !important; 
	}
	.frontend .wp-block-source-carousel.is-style-text .slick-arrow.slick-next {
		left: 5rem !important;
	}
	


/* --------------------- OTHER STYLES --------------------- */
.is-style-fullwidth {
	position: relative; left: 50%;
	transform: translateX(-50%);
	width: 100vw; max-width: none !important;
}
	.is-style-fullwidth iframe {
		width: 100%;
	}
	.is-style-fullwidth.wp-embed-aspect-4-3 iframe {
		height: 75vw;
	}
	.is-style-fullwidth.wp-embed-aspect-16-9 iframe {
		height: 56.3vw;
	}



/* wordpress embed */
.wp-block-embed-wordpress {
	margin: 0;
}
	.wp-block-embed-wordpress .wp-block-embed__wrapper {
		
	}
	.wp-block-embed-wordpress .wp-block-embed__wrapper > blockquote {
		display: none;
	}
		.wp-block-embed-wordpress iframe.wp-embedded-content {
			position: relative !important;
			width: 100%; height: 50vw; max-height: 60vh;
		}



/* video links */
.wp-block-image a[href*="youtu"],
.wp-block-image a[href*="vimeo"],
a.video-link {
	display: block;
	overflow: hidden;
	position: relative;
}
	.wp-block-image a[href*="youtu"] img,
	.wp-block-image a[href*="vimeo"] img,
	a.video-link img {
		
	}
	.wp-block-image a[href*="youtu"]::after,
	.wp-block-image a[href*="vimeo"]::after,
	a.video-link::after {
		background: url('images/play.svg') center/100% auto no-repeat transparent;
		content: '';
		display: block;
		position: absolute; top: 0; left: 50%;
		transform: translateX(-50%);
		transition: all .3s ease;
		width: 20%; max-width: 8em; height: 100%;
		z-index: 2;
	}
	.wp-block-image a[href*="youtu"]:hover::after,
	.wp-block-image a[href*="youtu"]:focus::after,
	.wp-block-image a[href*="vimeo"]:hover::after,
	.wp-block-image a[href*="vimeo"]:focus::after,
	a.video-link:hover::after,
	a.video-link:focus::after {
		transform: translateX(-50%) scale(1.1);
	}



/* centered lists */
/*ul.text-center,
ol.text-center,
.text-center ul,
.text-center ol {
	list-style-type: none;
	list-style-position: inside;
	padding-left: 0;
}*/


/* narrow */
.is-style-narrow > div,
p.is-style-narrow {
	margin-right: auto; margin-left: auto;
	max-width: 800px;
}



/* custom/bespoke for creds */
.frontend .custom_fop_beetroot {
	background-size: 50% auto !important;
	background-position: bottom right !important;
	background-repeat: no-repeat;
}

.frontend .primel-icon-2 {
	display: block;
	position: absolute; bottom: 0; right: 0;
	width: 33.33%; height: auto;
	z-index: 10;
}

.frontend .barbers-cheese-1 {
	pointer-events: none;
	position: absolute; top: 80%; right: 75%;
	width: 35%; height: auto;
	z-index: 10;
}
.frontend .barbers-cheese-2 {
	pointer-events: none;
	position: absolute; top: -2rem; right: 3rem;
	width: 6rem; height: auto;
	z-index: 1;
}





/* ----------------------------------------------------------------------
   --------------------------- BREAKPOINTS ------------------------------ 
   ---------------------------------------------------------------------- */

/* smartphones, touchscreens (devices with no hover state and 'coarse' i.e. finger-based cursor position) */
@media (hover: none) and (pointer: coarse) {

		.menu-service-menu-container li a::after {
			opacity: 1;
		}

}

/* xs and sm only */
@media only screen and (max-width: 767.98px) {

	html .wp-block-button.is-style-arrow-horizontal .wp-block-button__link::after,
	html .wp-block-button.is-style-arrow-horizontal-block .wp-block-button__link::after,
	.wp-block-image.is-style-arrow-horizontal > img,
	.wp-block-image.is-style-arrow-horizontal > a > img {
		width: 2.5rem;
	}

	.is-style-wide-container {
		padding-right: 0; padding-left: 0;
		/*padding-right: 15px; padding-left: 15px;*/
	}
	.is-style-wide-container > .container {
		
	}

.heading-link {
	margin-bottom: 2rem;
}

.is-style-fullpage.desktop-only {
	height: auto; min-height: 0;
}

		/* grey bg always on mobile 20210224 */
		.is-style-featured-thumb > a::before {
			opacity: 1;
		}


	html .is-style-background-color-50pc::after,
	html .is-style-background-left-color-50pc::after,
	html .is-style-background-color-60pc::after,
	html .is-style-background-left-color-60pc::after,
	html .is-style-background-color-85pc::after,
	html .is-style-background-left-color-85pc::after {
		width: 0;
	}


	html .is-style-background-color-sm-none::after {
		/*display: none;*/
		width: 100% !important;
	}


}


/* sm (small) + */
@media only screen and (min-width: 575.98px) {

/* row styles */
.row.is-style-gutters-sm-large,
.row.is-style-gutters-sm-lines {
	margin-right: -4rem; margin-left: -4rem;
}
	.row.is-style-gutters-sm-large > div,
	.row.is-style-gutters-sm-lines > div,
	.is-style-gutters-sm-large > div > div > .wp-block,
	.is-style-gutters-sm-lines > div > div > .wp-block {
		padding-left: 4rem;
	}
	.row.is-style-gutters-sm-large > div,
	.row.is-style-gutters-sm-lines > div,
	.is-style-gutters-sm-large > div > div > .wp-block,
	.is-style-gutters-sm-lines > div > div > .wp-block  {
		padding-right: 4rem;
	}

	.row.is-style-gutters-sm-lines > div,
	.is-style-gutters-sm-lines > div > div > .wp-block {
		position: relative;
	}
		.row.is-style-gutters-sm-lines > div:not(:last-child)::after,
		.is-style-gutters-sm-lines > div > div > .wp-block:not(:last-child)::after {
			border-left: 1px solid #CCCCCC;
			content: '';
			display: block;
			position: absolute; top: 0; right: 0; bottom: 0;
			width: 0; height: 100%;
		}


}


/* md (medium) + */
@media only screen and (min-width: 767.98px) {


.wp-block-image.is-style-arrow-vertical {
	
}
	.wp-block-image.is-style-arrow-vertical > img,
	.wp-block-image.is-style-arrow-vertical > a > img {
		height: 4rem;
	}



/* --------------------- SPACER --------------------- */
.wp-block-spacer.is-style-small {
	height: 2rem !important;
}
.wp-block-spacer.is-style-medium {
	height: 4rem !important;
}
.wp-block-spacer.is-style-large {
	height: 7rem !important;
}

/* row styles */
.row.is-style-gutters-md-large,
.row.is-style-gutters-md-lines {
	margin-right: -4rem; margin-left: -4rem;
}
	.row.is-style-gutters-md-large > div,
	.row.is-style-gutters-md-lines > div,
	.is-style-gutters-md-large > div > div > .wp-block,
	.is-style-gutters-md-lines > div > div > .wp-block {
		padding-left: 4rem;
	}
	.row.is-style-gutters-md-large > div,
	.row.is-style-gutters-md-lines > div,
	.is-style-gutters-md-large > div > div > .wp-block,
	.is-style-gutters-md-lines > div > div > .wp-block  {
		padding-right: 4rem;
	}

	.row.is-style-gutters-md-lines > div,
	.is-style-gutters-md-lines > div > div > .wp-block {
		position: relative;
	}
		.row.is-style-gutters-md-lines > div:not(:last-child)::after,
		.is-style-gutters-md-lines > div > div > .wp-block:not(:last-child)::after {
			border-left: 1px solid #CCCCCC;
			content: '';
			display: block;
			position: absolute; top: 0; right: 0; bottom: 0;
			width: 0; height: 100%;
		}

/* vertical spacing */
html .is-style-padded,
.is-style-fullpage {
	padding-top: 4rem; padding-bottom: 4rem;
}
.is-style-fullpage {
	min-height: 100vh;
}

html .is-style-padded-more {
	padding-top: 7rem; padding-bottom: 7rem;
}

html .is-style-padded-less {
	padding-top: 2rem; padding-bottom: 2rem;
}


html .is-style-text-column,
.wp-block-media-text__content {
	padding-top: 3rem; padding-bottom: 3rem;
}


/* */
html .has-small-font-size,
html .has-medium-font-size,
html .has-large-font-size,
html .has-huge-font-size {
	
}
html .has-small-font-size {
	
}
html .has-default-plus-font-size,
.is-style-featured-thumb:not(.is-style-case-study) h2,
ul.is-style-breadcrumb {
	font-size: 1.25rem !important;
}
html .has-medium-font-size,
.menu-service-menu-container,
.wp-block-quote {
	font-size: 2rem !important;
}
html .has-large-font-size,
.is-style-featured-thumb:not(.is-style-case-study) strong,
.is-style-numbered {
	font-size: 2rem !important;
}
html .has-huge-font-size {
	font-size: 3rem !important;
}
html .has-colossal-font-size {
	font-size: 4rem !important;
}


/* smaller featured thumbs */
.col-md-4 .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-5 .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-6 .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-4 .is-style-featured-thumb strong,
.col-md-5 .is-style-featured-thumb strong,
.col-md-6 .is-style-featured-thumb strong {
	/*font-size: 2rem !important;*/
}
.col-md-1 .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-2 .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-3 .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-4 .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-4 [class*="col-md"] .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-5 [class*="col-md"] .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-6 [class*="col-md"] .is-style-featured-thumb:not(.is-style-case-study) h2,
.col-md-1 .is-style-featured-thumb:not(.is-style-case-study) strong,
.col-md-2 .is-style-featured-thumb:not(.is-style-case-study) strong,
.col-md-3 .is-style-featured-thumb:not(.is-style-case-study) strong,
.col-md-4 .is-style-featured-thumb:not(.is-style-case-study) strong,
.col-md-4 [class*="col-md"] .is-style-featured-thumb:not(.is-style-case-study) strong,
.col-md-5 [class*="col-md"] .is-style-featured-thumb:not(.is-style-case-study) strong,
.col-md-6 [class*="col-md"] .is-style-featured-thumb:not(.is-style-case-study) strong {
	/*font-size: 1.5rem !important;*/
	/*font-weight: normal;*/
}

		.is-style-featured-thumb .featured-thumb-title {
			font-size: 6rem;
		}



	/*html .wp-block-button.is-style-arrow-horizontal:last-child,
	html .wp-block-button.is-style-arrow-horizontal-block:last-child {
		border-bottom: 0;
	}*/

.frontend .wp-block-buttons.is-style-two-column {
	justify-content: space-between;
}
	.frontend .wp-block-buttons.is-style-two-column .is-style-arrow-horizontal,
	.frontend .wp-block-buttons.is-style-two-column .is-style-arrow-horizontal-block {
		width: calc(50% - 20px);
	}


/* */
.is-style-wide-container {
	margin-right: auto !important; margin-left: auto !important;
	max-width: 1800px !important;
}
	.is-style-wide-container > .container {
		padding-right: 0; padding-left: 0;
		max-width: 1800px !important;
	}
/*.wp-block-source-columns,
.wp-block-source-container > .container {
	margin-right: auto; margin-left: auto;
	padding-right: 0 !important; padding-left: 0 !important;
	max-width: 1800px !important;
}*/


/* --------------------- CAROUSEL --------------------- */
.frontend .wp-block-source-carousel.is-style-multi {
	margin-right: -35vw; margin-left: -35vw; 
}


	.frontend .wp-block-source-carousel.is-style-testimonials .slick-arrow {
		
	}
	.frontend .wp-block-source-carousel.is-style-testimonials .slick-arrow.slick-prev {
		right: calc(50% + 20px + 5rem);
	}
	.frontend .wp-block-source-carousel.is-style-testimonials .slick-arrow.slick-next {
		right: calc(50% + 20px);
	}



		.frontend ul.is-style-breadcrumb > li:not(:last-child)::after {
			width: 4rem;
		}


}


/* lg (large) + */
@media only screen and (min-width: 991.98px) {

/* row styles */
.row.is-style-gutters-lg-large,
.row.is-style-gutters-lg-lines {
	margin-right: -4rem; margin-left: -4rem;
}
	.row.is-style-gutters-lg-large > div,
	.row.is-style-gutters-lg-lines > div,
	.is-style-gutters-lg-large > div > div > .wp-block,
	.is-style-gutters-lg-lines > div > div > .wp-block {
		padding-left: 4rem;
	}
	.row.is-style-gutters-lg-large > div,
	.row.is-style-gutters-lg-lines > div,
	.is-style-gutters-lg-large > div > div > .wp-block,
	.is-style-gutters-lg-lines > div > div > .wp-block  {
		padding-right: 4rem;
	}

	.row.is-style-gutters-lg-lines > div,
	.is-style-gutters-lg-lines > div > div > .wp-block {
		position: relative;
	}
		.row.is-style-gutters-lg-lines > div:not(:last-child)::after,
		.is-style-gutters-lg-lines > div > div > .wp-block:not(:last-child)::after {
			border-left: 1px solid #CCCCCC;
			content: '';
			display: block;
			position: absolute; top: 0; right: 0; bottom: 0;
			width: 0; height: 100%;
		}


html .has-huge-font-size {
	font-size: 3.5rem !important;
}
html .has-colossal-font-size {
	font-size: 4.5rem !important;
}

		.is-style-featured-thumb .featured-thumb-title {
			font-size: 8rem;
		}


}


/* xl (extra large) + */
@media only screen and (min-width: 1199.98px) {

/* row styles */
.row.is-style-gutters-xl-large,
.row.is-style-gutters-xl-lines {
	margin-right: -4rem; margin-left: -4rem;
}
	.row.is-style-gutters-xl-large > div,
	.row.is-style-gutters-xl-lines > div,
	.is-style-gutters-xl-large > div > div > .wp-block,
	.is-style-gutters-xl-lines > div > div > .wp-block {
		padding-left: 4rem;
	}
	.row.is-style-gutters-xl-large > div,
	.row.is-style-gutters-xl-lines > div,
	.is-style-gutters-xl-large > div > div > .wp-block,
	.is-style-gutters-xl-lines > div > div > .wp-block  {
		padding-right: 4rem;
	}

	.row.is-style-gutters-xl-lines > div,
	.is-style-gutters-xl-lines > div > div > .wp-block {
		position: relative;
	}
		.row.is-style-gutters-xl-lines > div:not(:last-child)::after,
		.is-style-gutters-xl-lines > div > div > .wp-block:not(:last-child)::after {
			border-left: 1px solid #CCCCCC;
			content: '';
			display: block;
			position: absolute; top: 0; right: 0; bottom: 0;
			width: 0; height: 100%;
		}

.is-style-featured-thumb:not(.is-style-case-study) h2 {
	font-size: 2rem !important;
}

html .has-large-font-size,
.is-style-featured-thumb:not(.is-style-case-study) strong,
.is-style-numbered {
	font-size: 3rem !important;
}
html .has-huge-font-size {
	font-size: 5rem !important;
}
html .has-colossal-font-size {
	font-size: 6rem !important;
}


.frontend h1,
html .has-huge-font-size,
html .has-colossal-font-size {
	transform: translateY(-.5rem);
}


		.is-style-featured-thumb .featured-thumb-title {
			font-size: 9rem;
		}


}


/* 'xxl' (custom large size) + */
@media only screen and (min-width: 1599.98px) {


.is-style-numbered {
	font-size: 5rem !important;
}


		.is-style-featured-thumb .featured-thumb-title {
			font-size: 12rem;
		}


}


/* --------------------- EDITOR STYLES --------------------- */
.block-editor {
	
}
	.edit-post-visual-editor {
		/*overflow-x: hidden;*/
	}

.block-editor .wp-block:not([data-align=full]) {
	max-width: 1200px;
}

.wp-block h1, .wp-block h2, .wp-block h3, .wp-block h4, .wp-block h5, .wp-block h6, .editor-post-title__block .editor-post-title__input {
	font-family: 'alverata', 'Georgia', serif;
	font-weight: 300;
	letter-spacing: -.055em;
}
html .editor-styles-wrapper {
	font-family: 'europa', 'Arial', sans-serif;
}

.wp-block {
	background-color: rgba(100,100,100,.03);
}
.block-editor .wp-block-source-container,
.block-editor .wp-block-source-carousel {
	padding-right: 3em; padding-left: 3em;
}
.block-editor .wp-block-source-carousel-slide {
	padding-right: 1em; padding-left: 1em;
}

.block-editor [class*="is-style-gutters-"] > div > div > .wp-block {
	padding-right: 1rem !important; padding-left: 1rem !important;
}


.block-editor .wp-block.is-selected > .editor-block-list__block-edit {
	background-color: none;
}
.block-editor .wp-block-shortcode {
	color: initial;
}

.editor-block-list__insertion-point { /* fix editor button z-index issue in certain situations, such as images in columns that have horizontal padding */
	margin-bottom: 20px;
}
html .editor-styles-wrapper .block-editor-block-list__block { /* fix 5.4 spacing issue */
	margin-top: 10px; margin-bottom: 10px;
}
html .editor-styles-wrapper p {
	margin-top: 0; margin-bottom: 0;
}

