/*
Theme Name: Healthy Pixels
Author: Healthy Pixels
Description: Healthy Pixels stylesheet
Version: 1.0.0
Text Domain: Healthy Pixels
*/

* {scroll-padding-top: 3rem;}
html {scroll-behavior: smooth}
html, body {height: 100%;}
body, .editor-styles-wrapper.block-editor-writing-flow {
	--font: "PT Sans", -apple-system, system-ui, BlinkMacSystemFont, “Segoe UI”, Helvetica, Arial, sans-serif, “Apple Color Emoji”, “Segoe UI Emoji”, “Segoe UI Symbol”, sans-serif;
	--accent-font: quincy-cf, var(--font);
	--light: 200;
	--regular: 300;
	--bold: 700;
	
	--black: #333333;
	--dark-grey: #666A70;
	--grey: #83878D;
	--bright: #F5F5F5;
	--white: #FFFFFF;
	--dark-blue: #1B7F9E;
	--darker-blue: #05566F;
	--shaded-blue: #30B6E3;
	--bright-blue: #E5EFF3;
	--blue: #29BCEB;
	--accent: #FFB43C;
	
	--error: #9E1B20;

	--br-sm: 2px;
	--br-md: 5px;
	--br-lg: 15px;
	--border-w: 2px;
	
	--moz-box-shadow: 0 2px 5px -1px rgba(26,26,26,.3);
	--webkit-box-shadow: 0 2px 5px -1px rgb(26 26 26 / 30%);
	--box-shadow: 0 2px 5px -1px rgb(26 26 26 / 30%);
	
	--transition: all .3s ease;
	
	margin: 0;
	font-family: var(--font);
	font-size: 1rem;
	font-weight: var(--regular);
	text-align: left;
	line-height: 1.5;
	word-spacing: .5px;
	letter-spacing: .3px;
	background: var(--white);
	color: var(--black);
	width: 100%;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}
@media only screen and (max-width:767px) {
	body {
		--br-sm: 3px;
		--br-md: 10px;
		--br-lg: 20px;
	}
}
#main {
	flex: 1 0 auto;
	width: 100%;
	overflow: clip;
}

/* Accessibility */
.screenreader-desktop {
	position: fixed;
	left: -999px;
	width: 1px;
	height: 1px;
	top: 0;
}
.screenreader-desktop:focus {
	color: var(--white);
	text-decoration: none;
	background: var(--black);
	display: inline-block;
	height: auto;
	width: auto;
	position: fixed;
	margin: auto;
	z-index: 99999999999;
	top: 15px;
	left: 15px;
	padding: 8px 16px;
	border-radius: 25px;
	-moz-box-shadow: var(--moz-box-shadow);
	-webkit-box-shadow: var(--webkit-box-shadow);
	box-shadow: var(--box-shadow);
}

/* Text handling */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {line-height: 1.35;}
h1, h2, h3, h4 {font-weight: var(--regular);}
h1 {font-size: 3.1rem;}
h2 {font-size: 3.75rem;}
.hero h2, h2.small-h2 {font-size: 2.5rem;}
h3 {font-size: 1.9rem;}
h2:not(:is(.flipper *)), h3:not(:is(.flipper *)) {color: var(--dark-grey);}
h4 {font-size: 1.2rem;}

.post-content h2 {
    font-size: 1.7rem;
    padding-top: 2.5rem;
}
.post-content h2:first-child {padding-top: 0;}
.post-content h3 {
    font-size: 1.3rem;
    padding-top: 1.5rem;
}

b, strong, .sub {font-weight: var(--bold);}

.lead {font-size: 1.25rem;}
.caveat {font-size: .85rem;}
.badge {
	padding: .5rem;
	font-size: .9rem;
	color: var(--bright-blue);
	background: var(--dark-blue);
}
.flipper .badge {
	color: var(--dark-blue);
	background: var(--bright-blue);
}
.badge p:last-child {margin-bottom: 0;}

@media only screen and (max-width:767px) {
	h1 {
		font-size: 2.4rem;
		margin-bottom: 1rem;
	}
	h2, .hero h2, h2.small-h2 {font-size: 1.7rem;}
	h3 {font-size: 1.3rem;}
	h4 {font-size: 1.1rem;}
}
@media only screen and (min-width:1600px) {
	.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {line-height: 1.2;}
	body {font-size: 1.1rem;}
	h1 {font-size: 5rem;}
	h2 {font-size: 4rem;}
	h3 {font-size: 1.6rem;}
	h4 {font-size: 1.3rem;}
}

/* Spacing */
body {
	--sm-spacer: 2rem;
	--md-spacer: 3.5rem;
	--lg-spacer: 5rem;
}
@media only screen and (min-width:768px) {
	body {
		--max: 5vw;
	}
}
@media only screen and (min-width:1600px) {
	body {
		--sm-spacer: 3rem;
		--md-spacer: 6rem;
		--lg-spacer: 9rem;
		--max: 10vw;
	}
}
@media only screen and (max-width:767px) {
	body {
		--sm-spacer: 1.5rem;
		--md-spacer: 2rem;
		--lg-spacer: 3rem;
	}
}
.sm-spacer, .sm-spacer-top {padding-top: var(--sm-spacer);}
.sm-spacer, .sm-spacer-btm {padding-bottom: var(--sm-spacer);}
.md-spacer, .md-spacer-top {padding-top: var(--md-spacer);}
.md-spacer, .md-spacer-btm {padding-bottom: var(--md-spacer);}
.lg-spacer, .lg-spacer-top {padding-top: var(--lg-spacer);}
.lg-spacer, .lg-spacer-btm {padding-bottom: var(--lg-spacer);}
.mt-30 {margin-top: 30px;}
.mb-30 {margin-bottom: 30px;}

.wp-block-columns {padding: 15px;}
#main :where(.wp-block-columns) {margin-bottom: 0;}

/* Images and video files */
.wp-block-image img {width: 100% !important;}
img.rounded, .wp-block-gallery img, .rounded {border-radius: var(--br-md) !important;}

.svg-icon + h2, .svg-icon + h3 {padding-top: 0;}
img.icon, .icons svg {
	width: 80px;
	height: 80px;
	margin: 1rem 0;
}
.svg-icon {
	max-width: 60px;
	max-height: 60px;
	margin: .5rem 0;
	display: block;
}
p.icon-title {font-weight: var(--bold);}
@media only screen and (max-width:576px) {
	img.icon, .icons svg {
		width: 50px;
		height: 50px;
	}
}

/* Lists */
ul.checklist, ul.crosslist, .checklist ul, ul.case-list {
	padding-inline-start: 0;
	list-style: none;
}
ul {padding-inline-start: 15px;}
ol {padding-inline-start: 20px;}
li:not(.menu-item) {padding-bottom:1rem}
li:last-child {padding-bottom:0}
ul.checklist li:before, .checklist ul li:before, ul.crosslist li:before, .crosslist ul li:before, ul.case-list li:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    margin-right: 4px;
    width: 20px;
    height: 20px;
	background-color: var(--black);
}
ul.checklist li:before, .checklist ul li:before {
	-webkit-mask: url('/wp-content/uploads/2025/02/check.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/02/check.svg') center / contain no-repeat;
}
ul.crosslist li:before, .crosslist ul li:before {
	-webkit-mask: url('/wp-content/uploads/2025/02/cross.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/02/cross.svg') center / contain no-repeat;
}

.flipper ul.checklist li:before, .flipper .checklist ul li:before, .flipper ul.crosslist li:before, .flipper .crosslist ul li:before, .flipper ul.case-list li:before {background-color: var(--white);}

/* Navigation */
.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .8);
    right: 15px;
    top: 30px;
    position: absolute;
}
.navbar {
	z-index: 9999999;
	display: flex;
	right: 0;
	margin-right: var(--max);
    justify-content: end;
	position: absolute;
	padding: 0;
    margin-top: 15px;
}
.navbar li a {
	color: var(--white);
	border-bottom: 1px solid transparent;
}
.navbar li a:hover, .navbar li a:focus {color: var(--cta);}
.navbar li.current-menu-item > a {
    color: var(--white);
	border-color: var(--cta);
	pointer-events: none;
}
.navbar li.current-menu-ancestor > a {
    border-bottom: none;
	font-style: italic;
}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
}
.navbar-brand {
    z-index: 99999999;
    position: absolute;
}
.navbar-nav li {
	margin: 0 1rem;
	margin-top: .25rem;
}
.navbar-nav li:last-child {padding-bottom: inherit;}
#menu-toggle, .hamburger-icon {display: none;}
@media only screen and (max-width: 767px) {
	.navbar {margin-top: 5px;}
	.hide-mob, .navbar .current_page_item {display: none;}
	.navbar-brand {max-width: 55%;}
}
@media only screen and (min-width: 768px) {
	.navbar-nav {flex-direction: unset !important;}
	.navbar-nav .menu-item-has-children .dropdown-menu {position: absolute;}
	.dropdown-item {
		padding: .5rem;
		color: inherit;
	}
	.dropdown-menu {
		top: 60px;
		padding: .5rem 0;
		font-size: inherit;
		color: inherit;
		text-align: left;
		list-style: none;
		background-color: var(--bright);
		border: none;
		border-radius: var(--br-sm);
		-moz-box-shadow: var(--moz-box-shadow);
		-webkit-box-shadow: var(--webkit-box-shadow);
		box-shadow: var(--box-shadow);
	}
	.dropdown-menu-right {
		right: 0;
		left: auto !important;
	}
	.dropdown-item:focus, .dropdown-item:hover {
		background-color: transparent;
		color: var(--grey);
	}
	.dropdown-menu li a:hover, .dropdown-menu li a:focus, .dropdown-menu li.current-menu-item a {
		color: var(--grey);
		font-style: italic;
	}
}

/* Breadcrumbs */
.breadcrumb, nav.rank-math-breadcrumb {
	background-color: transparent;
	display: block;
	padding-left: 0;
}
.breadcrumb li a, .rank-math-breadcrumb p {font-size: .8rem !important}
.breadcrumb li a, .rank-math-breadcrumb p a, a.author {color: var(--white)}
.breadcrumb li a:hover, .rank-math-breadcrumb p a:hover, a.author:hover {color: var(--bright)}
.rank-math-breadcrumb p .last {
	color: var(--black);
}

/* WhatsApp */
.whatsapp, .whatsapp a {
	position: fixed;
    bottom: 15px;
    left: 15px;
	width: 55px;
    height: 55px;
}
.whatsapp:before {
	content: "";
	position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: green;
    transition: all 0.3s ease-out;
    z-index: 99999;
}
.whatsapp:before:hover, .whatsapp:before:focus {background-color: var(--black);}
.whatsapp:after {
	content: "";
	position: absolute;
	width: 45px;
    height: 45px;
    top: 5px;
    left: 5px;
	background-color: var(--white);
	z-index: 999999;
	-webkit-mask: url('/wp-content/uploads/2025/09/whatsapp.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/09/whatsapp.svg') center / contain no-repeat;
}
.whatsapp a:hover, .whatsapp a:focus {cursor: pointer;}

/* Buttons and links */
.overlay-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.clean-link a, a.clean-link {
	color: inherit;
	text-decoration: none !important;
}

a.read-more, p.read-more {
	color: var(--blue) !important;
	width: fit-content;
	display: block;
	position: relative;
	margin-bottom: 1rem;
	font-weight: var(--bold);
	padding: 0 5px;
	-webkit-transition: var(--transition);
}
a.read-more::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background-color: var(--blue);
	transform: translateX(-50%) scaleX(1);
	transform-origin: center;
	transition: var(--transition);
}
a.read-more:hover::before, a.read-more:focus::before {transform: translateX(-50%) scaleX(.5);}

p.read-more {cursor: pointer;}
a.read-more:hover, a.read-more:focus, p.read-more:hover, p.read-more:focus {
	color: var(--dark-blue) !important;
	text-decoration: none !important;
	border-color: var(--dark-blue);
}
a.read-more:after, p.read-more:after {
	content: "";
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
	margin-top: 2px;
    width: 20px;
    height: 20px;
	background-color: var(--blue);
	-webkit-transition: var(--transition);
	-webkit-mask: url('/wp-content/uploads/2025/02/arrow-right.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/02/arrow-right.svg') center / contain no-repeat;
}
a.read-more:hover:after, a.read-more:focus:after, p.read-more:hover:after, p.read-more:focus:after {
	background-color: var(--dark-blue) !important;
	transform: rotate(-45deg);
}

.flipper a.read-more, .flipper p.read-more {
	color: var(--white) !important;
	border-color: var(--white);
}
.flipper a.read-more:after, .flipper p.read-more:after, .flipper a.read-more:hover:after, .flipper a.read-more:focus:after, .flipper p.read-more:hover:after, .flipper p.read-more:focus:after {background-color: var(--white) !important;}
.flipper a.read-more::before {background-color: var(--white);}

p a, li a, a {color: var(--dark-blue);}
p a:hover, p a:focus, li a:hover, li a:focus, a:hover, a:focus {color: var(--shaded-blue);}

.btn, a.cky-banner-element, #main .forminator-ui.forminator-design--material .forminator-button-submit {
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: var(--bold);
	padding: 12px 30px;
	margin: 1rem 0;
	-webkit-transition: var(--transition);
	width: fit-content;
}

.primary-btn, :where(.editor-styles-wrapper) .btn.primary-btn, .btn.next-btn {
	background: var(--accent);
	color: var(--black);
	position: relative;
}
.primary-btn:hover, .primary-btn:focus, .btn.next-btn:hover, .btn.next-btn:focus {
	background: var(--dark-blue);
	color: var(--white);
	transform: scale(1.05);
}

.flipper .primary-btn {
	background: var(--accent);
	color: var(--black);
}
.flipper .primary-btn:hover, .flipper .primary-btn:focus {color: var(--black);}

.primary-btn.arrow:after {
	content: "";
	position: absolute;
	right: 0;
	margin-right: -150px;
	margin-top: -70px;
	width: 60px;
	height: 85px;
	background-color: var(--white);
	-webkit-mask: url('/wp-content/uploads/2025/11/marshfield-arrow.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/11/marshfield-arrow.svg') center / contain no-repeat;
}
@media only screen and (max-width:576px) {
	.primary-btn.arrow:after {
		transform: rotate(-30deg);
		margin-right: 15px;
		margin-top: -110px;
		width: 50px;
		height: 70px;
	}
}
@media only screen and (max-width:400px) {
	.primary-btn.arrow:after {content: none;}
}

.secondary-btn, :where(.editor-styles-wrapper) .btn.secondary-btn, .cky-banner-element, .btn.back-btn {
	border: 2px solid var(--blue);
	color: var(--blue);
	padding: 11px 30px;
}
.secondary-btn:hover, .secondary-btn:focus, .cky-banner-element:hover, .cky-banner-element:focus, .btn.back-btn:hover, .btn.back-btn:focus {
	border: 2px solid var(--dark-blue);
	color: var(--dark-blue);
}
.flipper .secondary-btn, .flipper .cky-banner-element {
	border-color: var(--white);
	color: var(--white);
}
.flipper .secondary-btn:hover, .flipper .secondary-btn:focus, .flipper .cky-banner-element:hover, .flipper .cky-banner-element:focus {
	transform: scale(1.05);
}

@media only screen and (max-width:576px) {
	.btn, #main .forminator-ui.forminator-design--material .forminator-button-submit {
		padding: 12px;
		width: 100%;
	}
}

.black-bg {background: var(--black);}
.white-bg {background: var(--white);}
.bright-bg {background: var(--bright);}
.grey-bg {background: var(--grey);}
.dark-grey-bg {background: var(--dark-grey);}
.dark-blue-bg {background: var(--dark-blue);}
.shaded-blue-bg {background: var(--shaded-blue);}
.blue-bg {background: var(--blue);}
.flipper {color: var(--white);}

.bright-text-bg {
    background: var(--bright-blue);
	border-radius: var(--br-md);
	text-align: center;
	padding: 1.5rem;
	color: var(--black);
}
.bright-text-bg h3 {color: var(--dark-blue);}

/* HERO */
.hero-pad {
	padding-top: 6rem;
	padding-bottom: 3rem;
}
.hero-pad-sm {
	padding-top: 5rem;
	padding-bottom: 1rem;
}
.hero-bg {
	color: var(--white);
	background: var(--dark-blue);
	background: 
		url('/wp-content/themes/healthypixels/images/marshfield-hero-graphic.svg'),
		radial-gradient(circle at top left, var(--dark-blue) 0%, #0A6581 100%);
}
.hero-bg, .step-bg {
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}
@media only screen and (max-width:576px) {
	.hero-pad {
		padding-top: 5rem;
		padding-bottom: 2rem;
	}
}
@media only screen and (min-width:992px) {
	.hero-square-graphic {
		width: 100vw;
		aspect-ratio: 1200 / 187;
		position: absolute;
		background: url('/wp-content/themes/healthypixels/images/marshfield-hero-square.svg');
		background-size: cover;
		background-position: center bottom;
		background-repeat: no-repeat;
	}
}

/* Tables */
.wp-block-table table {
    overflow: hidden;
	text-align: left !important;
}
.wp-block-table tfoot {border-bottom: 1px solid var(--white);}
.wp-block-table thead {
    border-bottom: none !important;
    background: var(--black) !important;
    color: var(--bright);
}
.wp-block-table td, .wp-block-table th {
	border: none !important;
}
.wp-block-table tbody tr:nth-child(even) {background-color: rgba(0,0,0, .3);}

.flipper .wp-block-table thead {
    background: var(--bright) !important;
	color: var(--black);
}
.full-black-bg .wp-block-table tbody tr:nth-child(even) {background-color: rgba(255,255,255, .15);}
.bright-bg .wp-block-table tfoot {border-color: var(--grey);}

.highlight-content {
	background: var(--bright);
	padding: 1rem;
	border-radius: var(--br-md);
	margin-bottom: 1rem;
}
.highlight-content p:last-child, .highlight-content ul:last-child {margin-bottom: 0;}

/* Stats */
.fig-stats {text-align: left;}
.fig-stat-box display {
	font-size: 1.8rem;
	margin-bottom: .5rem;
	display: inline-block;
}
.fig-stat-box p {font-size: .95rem;}
.fig-stat-box p:last-child {margin-bottom: 0;}
@media only screen and (min-width:600px) {
	.fig-stats {
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		gap: 1rem;
	}
	.fig-stat-box {
		flex: 1;
		position: relative;
	}
}
@media only screen and (max-width:599px) {
	.fig-stats {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
	}
	.fig-stat-box {
		width: calc(50% - .5rem);
		box-sizing: border-box;
		padding-bottom: 1.5rem;
	}
	.fig-stat-box display {
		font-size: 1.4rem;
		margin-bottom: 0;
	}
	.fig-stat-box:last-child {padding-bottom: 0;}
}

/* Logo slideshow */
.client-slideshow {
	overflow: hidden;
	width: 100%;
	padding: 1rem 0;
	position: relative;
}
.client-slideshow:before, .client-slideshow:after {
	content: "";
	position: absolute;
	width: 100px;
	height: 100%;
	z-index: 9;
}
.client-slideshow:before {background: linear-gradient(270deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);}
.client-slideshow:after {
	top: 0;
	right: 0;
	background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
.client-logos {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.logo-row {
	display: flex;
	flex-wrap: nowrap;
	gap: 3rem;
	white-space: nowrap;
	will-change: transform;
}
.logo-row img, :where(.editor-styles-wrapper) .logo-row img {
	height: 80px;
	flex: 0 0 auto;
	object-fit: contain;
}
.add-bg .logo-row img, .add-bg :where(.editor-styles-wrapper) .logo-row img {
	padding: 0 1rem;
	background: var(--white);
	border-radius: var(--br-sm);
}

.black-bg .client-slideshow:before {background: linear-gradient(270deg,rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 1) 100%);}
.bright-bg .client-slideshow:before {background: linear-gradient(270deg,rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 1) 100%);}
.grey-bg .client-slideshow:before {background: linear-gradient(270deg,rgba(131, 135, 141, 0) 0%, rgba(131, 135, 141, 1) 100%);}
.dark-grey-bg .client-slideshow:before {background: linear-gradient(270deg,rgba(102, 106, 112, 0) 0%, rgba(102, 106, 112, 1) 100%);}
.dark-blue-bg .client-slideshow:before {background: linear-gradient(270deg,rgba(27, 127, 158, 0) 0%, rgba(27, 127, 158, 1) 100%);}
.shaded-blue-bg .client-slideshow:before {background: linear-gradient(270deg,rgba(48, 182, 227, 0) 0%, rgba(48, 182, 227, 1) 100%);}
.blue-bg .client-slideshow:before {background: linear-gradient(270deg,rgba(41, 188, 235, 0) 0%, rgba(41, 188, 235, 1) 100%);}

.black-bg .client-slideshow:after {background: linear-gradient(90deg,rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 1) 100%);}
.bright-bg .client-slideshow:after {background: linear-gradient(90deg,rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 1) 100%);}
.grey-bg .client-slideshow:after {background: linear-gradient(90deg,rgba(131, 135, 141, 0) 0%, rgba(131, 135, 141, 1) 100%);}
.dark-grey-bg .client-slideshow:after {background: linear-gradient(90deg,rgba(102, 106, 112, 0) 0%, rgba(102, 106, 112, 1) 100%);}
.dark-blue-bg .client-slideshow:after {background: linear-gradient(90deg,rgba(27, 127, 158, 0) 0%, rgba(27, 127, 158, 1) 100%);}
.shaded-blue-bg .client-slideshow:after {background: linear-gradient(90deg,rgba(48, 182, 227, 0) 0%, rgba(48, 182, 227, 1) 100%);}
.blue-bg .client-slideshow:after {background: linear-gradient(90deg,rgba(41, 188, 235, 0) 0%, rgba(41, 188, 235, 1) 100%);}

@media only screen and (max-width:576px) {
	.logo-row {gap: 1.5rem;}
	.logo-row img, :where(.editor-styles-wrapper) .logo-row img {height: 50px;}
}

/* Contact banner */
.contact-banner {
	background: var(--dark-blue);
	color: var(--white);
	border-radius: var(--br-md);
	padding-top: 4rem;
	padding-bottom: 5rem;
}
.contact-banner a.read-more {margin: 0 auto;}
.merge-footer {
	position: relative;
	z-index: 1;
}
@media only screen and (max-width:576px) {
	.contact-banner {
		padding-top: 2rem;
		padding-bottom: 3rem;
	}
}

/* Misc */
.rounded-bg {border-radius: var(--br-md);}
.boxes {display: flex;}
.same-h {
	display: flex;
    flex-direction: column;
	height: 100%;
	flex: 1;
}
.push-down {margin-top: auto;}
.justify-h {justify-content: center;}
.placeholder, .img-placeholder {
	min-height: 100px;
	width: 100%;
	background: var(--grey);
}
.fill-img img {
	border-radius: var(--br-md);
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.left-radius img {border-radius: var(--br-md) 0 0 var(--br-md);}
@media only screen and (min-width:992px) {
	.left-lg-radius img {border-radius: var(--br-md) 0 0 var(--br-md);}
	.right-lg-radius img {border-radius: 0 var(--br-md) var(--br-md) 0;}
}

/* Steps Process */
.steps-container .boxes {flex-direction: column;}
.step-infos:after {
	content: "";
	position: absolute;
	aspect-ratio: 36 / 28;
	width: 50px;
	margin-left: -23px;
	bottom: 0;
	margin-bottom: -40px;
	background-color: var(--blue);
	-webkit-mask: url('/wp-content/uploads/2025/10/marshfield-arrow.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/10/marshfield-arrow.svg') center / contain no-repeat;
}
.step-info {
	display: flex;
	flex-direction: row;
	align-items: center; 
	margin-bottom: 1.5rem;
}
.steps-container h3 {
	font-size: 1.2rem;
	margin-bottom: 0;
	font-weight: var(--bold);
}
.step-icon {
	flex-shrink: 0;
	width: 60px;
	margin-right: 1rem;
	display: flex;
	padding: .5rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--white);
	border-radius: var(--br-md);
}
.active .step-icon {
	background: var(--blue);
	border-color: transparent;
}
.step-icon img {
	max-width: 100%;
	height: auto;
	display: block;
}
.step-text {flex: 1;}
.steps-img {position: relative;}
.steps-img:before {
	content: "";
	aspect-ratio: 100 / 90;
	width: 30%;
	position: absolute;
	background-color: var(--blue);
	-webkit-mask: url('/wp-content/uploads/2025/10/marshfield-corner.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/10/marshfield-corner.svg') center / contain no-repeat;
}
@media only screen and (min-width:992px) {
	.step-info {margin-left: 1.5rem;}
	.step-infos:before {
		content: "";
		position: absolute;
		width: 5px;
		height: calc(100% + 30px);
		background: var(--blue);
	}
}
@media only screen and (max-width:991px) {
	.step-infos:after {
		left: 50%;
		margin-left: -25px;
	}
}

.step-container, .contact-banner {
	position: relative;
	overflow: hidden;
}
.step-bg, .contact-bg {
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 0;
}
.step-bg {
	aspect-ratio: 12 / 8;
    background: url(/wp-content/themes/healthypixels/images/marshfield-steps-graphic.svg) center / cover no-repeat;
	top: 0;
}
.contact-bg {
	aspect-ratio: 1200 / 775;
    background: url(/wp-content/themes/healthypixels/images/marshfield-banner-graphic.svg) top right / cover no-repeat;
    margin-left: calc(-5vw - 15px);
	bottom: 0;
}
@media only screen and (max-width:576px) {
	.step-bg {left: -15px;}
}

/* Img cols */
.two-images {position: relative;}
.two-images .main-img {
	height: 100%;
	overflow: hidden;
}
.two-images .main-img img {
	object-fit: cover;
	height: 100%;
}
@media only screen and (min-width:992px) {
	.two-images .main-img {max-width: 80%;}
	.two-images .sm-img {
		position: absolute;
		width: 40%;
		border: 10px solid var(--white);
		background: var(--blue);
		border-radius: var(--br-md);
		bottom: 2rem;
		right: 0;
	}
	.two-images.imgs-right .main-img {margin-left: 20%;}
	.two-images.imgs-right .sm-img {
		left: 0;
	}
}

/* Accordions */
.accordions {
	margin-bottom: 30px;
	border-bottom: 1px solid var(--blue);
	padding-bottom: 1rem;
}
.flipper .accordions {border-color: var(--white);}
.accordions button {
	color: var(--black);
	position: relative;
	display: block;
 	width: 100%;
	background: transparent;
	border: none;
	text-align: left;
	font-weight: var(--bold);
	padding: 1rem 1rem 1rem 0;
}
.flipper .accordions button {color: var(--white);}
.accordions button.collapsed {font-weight: var(--regular);}
.accordions button:after {
    content: "";
    float: right;
	width: 20px;
	height: 20px;
	right: 0;
    position: absolute;
    transform: rotate(-90deg);
    -webkit-transition: var(--transition);
	background-color: var(--blue);
	-webkit-mask: url('/wp-content/uploads/2025/02/caret-right.svg') center / contain no-repeat;
}
.flipper .accordions button:after {background-color: var(--white);}
.accordions button.collapsed:after {transform: rotate(90deg);}
.accordions button:focus {outline: none;}
p.accordions-title {margin-bottom: 0;}
.accordions-button:not(.collapsed) {pointer-events: none;}
.accordions-content p:last-child {margin-bottom: 0;}
.accordions {margin-bottom: 30px;}

/* Google maps */
.map {
    position: relative;
    width: 100%;
    padding-top: 30%;
    overflow: hidden;
}
@media only screen and (max-width:767px) {
	.map {padding-top: 70%;}
}

/* Social media */
@media only screen and (min-width:767px) {
	.socials .row {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
	}
	.socials .col-md-3 {flex: 1 1 22%;}
}
a.social-link {color: var(--cta);}
a.social-link:hover, a.social-link:focus {text-decoration: none;}
.socials p {padding-top: 1rem;}
.social-icon {padding-bottom: 1rem;}
.social-icon:last-child {margin-right: 0;}
.social-icon:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 30px;
    height: 30px;
	background-color: var(--blue);
}
.social-icon:hover:before {background-color: var(--dark-blue);}

.social-icon.li:before {-webkit-mask: url('/wp-content/uploads/2024/12/linkedin.svg') center / contain no-repeat;}
.social-icon.ig:before {-webkit-mask: url('/wp-content/uploads/2024/12/instagram.svg') center / contain no-repeat;}
.social-icon.fb:before {-webkit-mask: url('/wp-content/uploads/2024/12/facebook.svg') center / contain no-repeat;}
.social-icon.yt:before {-webkit-mask: url('/wp-content/uploads/2024/12/youtube.svg') center / contain no-repeat;}
.social-icon.tt:before {-webkit-mask: url('/wp-content/uploads/2024/12/tiktok.svg') center / contain no-repeat;}
.social-icon.x:before {-webkit-mask: url('/wp-content/uploads/2024/12/twitter-x.svg') center / contain no-repeat;}
.social-icon.wa:before {-webkit-mask: url('/wp-content/uploads/2025/09/whatsapp.svg') center / contain no-repeat;}

/* FOOTER */
footer {
	background: var(--black);
	color: var(--white);
	padding-top: 3rem;
	padding-bottom: 2rem;
	margin-top: var(--md-spacer);
}
footer.merged {
	margin-top: 0;
	padding-top: 12rem;
	margin-top: -6rem;
}
footer hr {border-color: var(--white);}
footer .caveat {font-size: 90%;}
footer ul {
	list-style: none;
	padding-inline-start: 0;
}
footer ul li {margin-bottom: 1rem;}
footer ul li.menu-spacer {padding-top: 1rem;}
footer ul a {color: var(--white);}
footer ul a:hover, footer ul a:focus {color: var(--bright);}
footer .policies ul li {font-size: 95%;}
footer .current-menu-item a {
	opacity: .5;
	pointer-events: none;
}
img.footer-logo {
    max-height: 50px;
    width: auto;
}
@media only screen and (min-width: 992px) {
	footer .policies ul li {
		display: inline;
		margin-right: 1rem;
	}
	footer ul li.left-line {
		border-left: 1px solid var(--grey);
		padding-left: 1rem;
	}
}
@media only screen and (max-width: 991px) {
	footer ul li.left-line {
		padding-top: 1rem;
	}
}

/* XXL breakpoint */
@media only screen and (max-width: 767px) {
	.py-sm-15 {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.wp-block-columns, .px-15 {
		padding-left: 15px;
		padding-right: 15px;
	}
	.container-fluid .container-fluid .fluid-xxl-max, .container-fluid .container-fluid .fluid-max {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}
@media only screen and (min-width: 768px) {
	.py-15 {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.fluid-xxl-max, .fluid-max, .wp-block-columns {
		margin-left: var(--max);
		margin-right: var(--max);
	}
	.container-fluid .container-fluid .fluid-xxl-max, .container-fluid .container-fluid .fluid-max {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.px-md-15 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}
@media only screen and (min-width: 992px) {
	.px-lg-15 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}
@media only screen and (min-width: 1600px) {
	.container.container-xxl-fluid {
		width: 100%;
		max-width: 100%;
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
	.container-fluid .container-fluid .fluid-xxl-max, .container-fluid .container-fluid .fluid-max {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.text-xxl-center {text-align: center;}
	.pt-xxl-3, .py-xxl-3 {padding-top: 5rem !important;}
	.pb-xxl-3, .py-xxl-3 {padding-bottom: 5rem !important;}
	.pt-xxl-5, .py-xxl-5 {padding-top: 10rem !important;}
	.pb-xxl-5, .py-xxl-5 {padding-bottom: 10rem !important;}
	.mt-xxl-3, .my-xxl-3 {margin-top: 5rem;}
	.mb-xxl-3, .my-xxl-3 {margin-bottom: 5rem;}
	.mt-xxl-5, .my-xxl-5 {margin-top: 10rem;}
	.mb-xxl-5, .my-xxl-5 {margin-bottom: 10rem;}
	.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
		position: relative;
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}
	.col-xxl-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-xxl-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
  .col-xxl-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-xxl-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;	
	}
	.col-xxl-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-xxl-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.offset-xxl-1 {margin-left: 8.333333%;}
}