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

* {scroll-padding-top: 6rem;}
html {scroll-behavior: smooth}
html, body {height: 100%;}
@font-face {
	font-family: 'HelveticaNeue';
	src: url('assets/fonts/HelveticaNeueRoman.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'HelveticaNeue';
	src: url('assets/fonts/HelveticaNeueItalic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'HelveticaNeue';
	src: url('assets/fonts/HelveticaNeueBold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Dosis';
	src: url('assets/fonts/Dosis-Medium.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Dosis';
	src: url('assets/fonts/Dosis-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
body, .editor-styles-wrapper.block-editor-writing-flow {
	--font: 'HelveticaNeue', -apple-system, system-ui, BlinkMacSystemFont, “Segoe UI”, Helvetica, Arial, sans-serif, “Apple Color Emoji”, “Segoe UI Emoji”, “Segoe UI Symbol”, sans-serif;
	--accent-font: 'Dosis', var(--font);
	--regular: 400;
	--bold: 700;
	
	--black: #004050;
	--blue: #156FBF;
	--blue-md: #A0DAEC;
	--bright: #E5F3F8;
	--white: #fff;
	--bg: #F0FBFF;
	--orange: #FF7F46;
	--grey: #919191;

	--br-sm: 5px;
	--br-md: 20px;
	--br-lg: 50px;
	--border-w: 2px;
	
	--moz-box-shadow: 0 0px 30px 0 rgba(21,111,191,.2);
	--webkit-box-shadow: 0 0px 30px 0 rgb(21 111 191 / 20%);
	--box-shadow: 0 0px 30px 0 rgb(21 111 191 / 20%);
	
	--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(--bg);
	
	color: var(--black);
	width: 100%;
	overflow-x: hidden;
	
	display: flex;
	flex-direction: column;
}
.flipper {color: var(--white);}
@media only screen and (max-width:767px) {
	body {
		--br-sm: 3px;
		--br-md: 10px;
		--br-lg: 20px;
	}
}
@media only screen and (min-width:768px) {
	body {--max: 5vw;}
}
@media only screen and (min-width:1600px) {
	body {--max: 10vw;}
}
#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(--blue);
	display: inline-block;
	height: auto;
	width: auto;
	position: fixed;
	margin: auto;
	z-index: 999999999;
	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;
	hyphenate-limit-chars: 10 4 4;
    margin-block-start: 0;
    margin-block-end: 0;
}
h1, h2, .btn, .screenreader-desktop:focus {font-family: var(--accent-font);}
h1 {
	font-size: 3.1rem;
	margin-bottom: 1.5rem;
}
h1 span[style*="text-decoration: underline"] {
	text-decoration: none !important;
	color: var(--white);
	font-size: 5rem;
	line-height: 1;
}
h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	font-weight: var(--regular);
}
h3 {
	font-size: 1.4rem;
	margin-bottom: .8rem;
}
h4 {font-size: 1.1rem;}

.post-content h2 {
    font-size: 1.7rem;
    padding-top: 2.5rem;
}
.post-content h2:first-of-type {padding-top: 0;}
.post-content h3 {
    font-size: 1.3rem;
    font-weight: var(--regular);
    padding-top: 1.5rem;
}

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

.lead {font-size: 1.1rem;}
.caveat {font-size: .85rem;}
.display {
	font-family: var(--accent-font);
	font-weight: var(--bold);
	color: var(--blue-md);
	font-size: 5rem;
}

hr {border-top: 1px solid var(--blue-md);}

/*.quote {
	margin: 1rem 0;
	padding: .5rem 0 .5rem 1rem;
}
p + .quote {margin-top: 0;}
.quote p {font-size: 1.1rem;}
.quote p:last-child {margin-bottom: 0;}
*/
.badge {
	background: rgba(21,111,191, .1);
	border-radius: var(--br-md);
	padding: .5rem 1rem;
	margin-bottom: 1rem;
	display: block;
	width: fit-content;
}
.badge p {margin-bottom: 0;}

@media only screen and (max-width:767px) {
	h1 {font-size: 2.4rem;}
	h1 span[style*="text-decoration: underline"], .display {font-size: 3rem;}
	h2 {font-size: 1.7rem;}
	h3 {font-size: 1.3rem;}
	h4 {font-size: 1.1rem;}
}
@media only screen and (min-width:1600px) {
	body {font-size: 1.1rem;}
	h1 {font-size: 5rem;}
	h2 {font-size: 2.5rem;}
	h3 {font-size: 1.6rem;}
	h4 {font-size: 1.3rem;}
}
@media only screen and (min-width:1200px) {
	h1 span[style*="text-decoration: underline"] {display: block;}
}

/* Spacing */
.create-para .para {display: block;}
.container-fluid .bg-pad .container-fluid {
	padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}
body {
	--sm-spacer: 2rem;
	--md-spacer: 3.5rem;
	--lg-spacer: 5rem;
}
@media only screen and (min-width:1600px) {
	body {
		--sm-spacer: 3rem;
		--md-spacer: 6rem;
		--lg-spacer: 9rem;
	}
}
@media only screen and (max-width:767px) {
	body {
		--sm-spacer: 1.5rem;
		--md-spacer: 2rem;
		--lg-spacer: 3rem;
	}
	.hide-mob {display: none;}
}
@media only screen and (max-width:1200px) {
	.hide-sm {display: none;}
}
.fluid-max-left {margin-left: var(--max);}
.fluid-max-right {margin-right: var(--max);}
.mx-15 {
	margin-left: 15px;
	margin-right: 15px;
}
.px-15 {
	padding-left: 15px;
	padding-right: 15px;
}
.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);}
.mb-30 {margin-bottom: 30px;}
.wp-block-columns {
	padding-top: var(--md-spacer) !important;
	padding-bottom: var(--md-spacer) !important;
}
.intro-m.has-content {padding-bottom: var(--sm-spacer);}
.outro-m.has-content {padding-top: var(--sm-spacer);}

.rg-30 {row-gap: 30px;}
.rg-15 {row-gap: 15px;}

.top-l {border-top-left-radius: var(--br-md);}
.top-r {border-top-right-radius: var(--br-md);}
.btm-l {border-bottom-left-radius: var(--br-md);}
.btm-r {border-bottom-right-radius: var(--br-md);}

.wp-block-columns {padding: 15px;}
@media only screen and (min-width:1200px) {
	.width-50, .width-60, .width-70, .width-80, .width-90 {
		display: inline-block;
		vertical-align: top;
	}
	.width-50 {max-width: 50%;}
	.width-60 {max-width: 60%;}
	.width-70 {max-width: 70%;}
	.width-80 {max-width: 80%;}
	.width-90 {max-width: 90%;}
	.width-50 + *, .width-60 + *, .width-70 + *, .width-80 + *, .width-90 + * {
		display: block;
		clear: both;
	}
}

/* Backgrounds */
.bg-black, .black-bg {background: var(--black);}
.bg-white, .white-bg {background: var(--white);}
.bg-bright, .bright-bg {background: var(--bright);}

.rounded-bg {border-radius: var(--br-lg);}

/* 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;
	}
}

iframe.youtube {
    aspect-ratio: 16 / 9;
    width: 100%;
}

/* Image mask shapes */
.flip-mask {transform: scaleX(-1);}
.flip-mask img {transform: scaleX(-1);}
.mask-container {
	display: inline-block;
	aspect-ratio: 40 / 34;

	-webkit-mask-image: url("/wp-content/themes/healthypixels/assets/shapes/dblo-img-shape1.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-position: center;

	mask-image: url("/wp-content/themes/healthypixels/assets/shapes/dblo-img-shape1.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center;
}
.mask-70 {max-width: 70%;}
.mask-container.mask2 {
	aspect-ratio: 43 / 30;
	-webkit-mask-image: url("/wp-content/themes/healthypixels/assets/shapes/dblo-img-shape2.svg");
	mask-image: url("/wp-content/themes/healthypixels/assets/shapes/dblo-img-shape2.svg");
}
.mask-container.mask3 {
	aspect-ratio: 40 / 33;
	-webkit-mask-image: url("/wp-content/themes/healthypixels/assets/shapes/dblo-img-shape3.svg");
	mask-image: url("/wp-content/themes/healthypixels/assets/shapes/dblo-img-shape3.svg");
}

.mask-container img {
	width: 102%;
	height: 102%;
	object-fit: cover;
}

.mask-shapes:before, .mask-shapes:after {
    content: "";
	background: var(--blue-md);
    position: absolute;
    border-radius: 50px;
}
.mask-shapes:before {
    width: 24px;
    height: 24px;
    margin-top: -40px;
    margin-left: 135px;
}
.mask-shapes:after {
    width: 16px;
    height: 16px;
    margin-top: -15px;
    margin-left: 120px;
}
.flip-shapes.mask-shapes:before {
	right: 0;
	margin-top: -40px;
    margin-right: 135px;
}
.flip-shapes.mask-shapes:after {
	right: 0;
	margin-top: -15px;
    margin-right: 120px;
}

/* Lists */
ul.checklist, ul.crosslist, .checklist ul, .dropdown ul {
	padding-inline-start: 0;
	list-style: none;
}
ul {padding-inline-start: 12px;}
ol {padding-inline-start: 24px;}
ul li, ol li {padding-bottom:1rem}
li:last-child {padding-bottom:0}
ol li {padding-left: 10px;}
ol li::marker {
	font-family: var(--accent-font);
	font-weight: var(--bold);
	color: var(--blue);
}
ol li::before {
	content: "";
	background: var(--blue-md);
	left: 16px;
	width: 25px;
	height: 25px;
	margin-top: -2px;
	position: absolute;
	border-radius: 50px;
	z-index: -1;
}
ul.checklist li:before, ul.crosslist li:before, ul.checklist p:before, p.checkmark:before, ul.crosslist p:before, p.crossmark:before, .checklist ul li:before, .checklist ul p:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    margin-right: 4px;
    width: 20px;
    height: 20px;
	background-color: var(--blue);
}
ul.checklist li:before, ul.checklist p:before, ul.highlights li:before, p.checkmark:before, .checklist ul li:before, .checklist ul p: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, ul.crosslist p:before, p.crossmark: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;
}

.icon-list {
	text-align: left;
	padding-bottom: 1rem;
}
.split-list {
	display: grid;
    gap: 1rem 2rem;
}
.split-list.split-mob-2 {grid-template-columns: repeat(2, 1fr);}
.icon-list-item {
	gap: 1rem;
    display: flex;
    align-items: center;
	font-size: 1.12rem;
	font-family: var(--accent-font);
}
.icon-list-item .icon {margin: 0;}
.icon-list-item p:last-child {margin-bottom: 0;}
@media only screen and (min-width:767px) {
	.split-list.split-2 {grid-template-columns: repeat(2, 1fr);}
	.split-list.split-3 {grid-template-columns: repeat(3, 1fr);}
	.split-list.split-4 {grid-template-columns: repeat(4, 1fr);}
}

/* Navigation */
nav.main-nav {
	background: var(--white);
	border-bottom: 5px solid var(--black);
	position: fixed;
	width: 100vw;
	height: 70px;
	z-index: 998;
}
.navbar {
	display: flex;
	right: var(--max);
    justify-content: end;
	padding: 0;
    margin-top: 15px;
}
.navbar-brand {
	position: absolute;
	z-index: 999;
}
.navbar li a {
	color: var(--black);
	text-decoration: none;
}
.navbar li a:hover, .navbar li a:focus {color: var(--blue);}
.dropdown-toggle::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background: currentColor;
	-webkit-mask: url('/wp-content/uploads/2026/07/caret-down.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2026/07/caret-down.svg') center / contain no-repeat;
}
.navbar li.current-menu-item > a {
    opacity: .7;
	pointer-events: none;
}
.navbar li.current-menu-ancestor > a {font-style: italic;}
@media only screen and (min-width: 992px) {
	#menu-toggle, .hamburger-icon {display: none;}
	.navbar-brand {width: 30%;}
	.navbar-brand img {margin-top: 15px;}
	.navbar-nav .menu-item-has-children .dropdown-menu {position: absolute;}
	.dropdown-menu {
		padding: 1rem;
		position: relative;
		background-color: var(--white);
		border-radius: var(--br-md);
		-moz-box-shadow: var(--moz-box-shadow);
		-webkit-box-shadow: var(--webkit-box-shadow);
		box-shadow: var(--box-shadow);
	}
	.menu-item-has-children {padding-right: 1rem;}
}
@media only screen and (max-width: 991px) {
	.navbar, input#menu-toggle {display: none;}
	.navbar-brand {
		max-width: 70%;
		margin-top: .5rem;
	}
	.hamburger-icon {display: inline-block;}
	#menu-toggle:checked ~ .navbar {display: block;}
	#menu-toggle:checked ~ .navbar {
		position: fixed;
		overflow-y: auto;
		width: 100vw;
		height: 100vh;
		left: 0;
		top: 0;
		z-index: 999999999;
		border-radius: 0;
		background: var(--black);
		padding: 8rem 1rem 0 1rem;
		margin-top: 0;
		text-align: center;
	}
	.hamburger-icon {
        border-radius: 50px;
        z-index: 9999999999;
        display: inline-block;
        cursor: pointer;
        width: 50px;
        height: 50px;
        position: fixed;
        top: 8px;
        right: 5%;
        background: var(--blue);
    }
	.hamburger-icon span:nth-child(1) {margin-top: 14px;}
	.hamburger-icon span {
		background: var(--white);
        display: block;
        height: 2.5px;
        width: 25px;
        margin: 6px 11.5px;
        transition: var(--transition);
        border-radius: 2px;
	}
	#menu-toggle:checked + .hamburger-icon span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
		transform-origin: center;
	}
	#menu-toggle:checked + .hamburger-icon span:nth-child(2) {opacity: 0;}
	#menu-toggle:checked + .hamburger-icon span:nth-child(3) {
    	transform: rotate(-45deg) translate(6px, -6px);
    	transform-origin: center;
	}
	.navbar li a {color: var(--white);}
	.navbar li.current-menu-item > a {opacity: .5;}
	.navbar li a:hover, .navbar li a:focus {color: var(--blue-md);}
	.navbar li.menu-item-has-children a:hover, .navbar li.menu-item-has-children a:focus {font-style: italic;}
	.navbar ul.dropdown-menu {
        position: relative;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
	.navbar ul.dropdown-menu:before, .navbar ul.dropdown-menu:after {
		content: "";
		width: 40px;
		height: 1px;
		background: var(--blue-md);
		position: absolute;
		left: 0;
        margin-left: calc(50% - 20px);
	}
	.navbar ul.dropdown-menu:before {top: 5px;}
	.navbar ul.dropdown-menu:after {bottom: 5px;}
}
/*
.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .8);
    right: 15px;
    top: 30px;
    position: absolute;
}
.navbar-nav {
    max-width: 100%;
	position: relative;
	padding: .25rem 1rem;
	border-radius: 50px;
}
.navbar li a:hover, .navbar li a:focus {color: var(--cta-focus);}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
}
.navbar-nav li {
	margin: 0 1rem;
	margin-top: .25rem;
}
.navbar-nav li:last-child {padding-bottom: inherit;}

@media only screen and (min-width: 992px) {
	.navbar-nav {flex-direction: unset !important;}
	.dropdown-item {
		padding: .5rem;
		color: inherit;
	}
	.dropdown-menu {
		top: 60px;
		padding: .5rem 0;
		font-size: inherit;
		color: inherit;
		text-align: left;
		list-style: none;
		border: none;
	}
	.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;
	}
	.navbar li a {font-weight: var(--bold);}
}
@media only screen and (max-width: 991px) {
	.navbar-brand {position: absolute;}
	.navbar-nav {
		background: transparent;
		padding: 0;
	}
	.nav-link {display: inline-block;}
	.navbar-nav li {margin: 1rem 0;}
	.navbar li a {
		width: 100%;
		font-size: 1.15rem;
		color: var(--white);
	}
	.navbar li a:hover, .navbar li a:focus {color: var(--cta-focus);}
	.navbar li.current-menu-item > a {color: var(--cta);}
	.navbar li a.dropdown-toggle {width: 80%;}
	.navbar-nav .menu-item-has-children:hover .dropdown-menu {font-style: italic;}
	.dropdown-toggle::after {
		content: "";
		position: absolute;
		top: 1rem;
		border-top: .45em solid;
		border-right: .45em solid transparent;
		border-bottom: 0;
		border-left: .45em solid transparent;
	}
	.dropdown-menu {
		font-size: inherit;
		color: inherit;
		background-color: transparent;
		border: none;
		text-align: center;
	}
}
@media only screen and (max-width: 767px) {
	.hamburger-icon {right: 15px;}
	
}
.navbar-nav li {position: relative;}
.navbar-nav .menu-item-has-children .dropdown-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    left: 0;
    z-index: 1000;
}
.navbar-nav .menu-item-has-children:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
	transition: var(--transition);
}*/

/* Breadcrumbs */
.breadcrumb, nav.rank-math-breadcrumb {
	background-color: var(--bright);
	display: inline-block;
	border-radius: 50px;
	padding: .5rem .75rem .25rem .75rem;
	margin-bottom: 1rem;
	-moz-box-shadow: var(--moz-box-shadow);
	-webkit-box-shadow: var(--webkit-box-shadow);
	box-shadow: var(--box-shadow);
}
.breadcrumb li a, .rank-math-breadcrumb p {
	font-size: .8rem !important;
	margin-bottom: 0;
}
.breadcrumb li a, .rank-math-breadcrumb p a, a.author, .rank-math-breadcrumb .separator {
	color: var(--blue);
	text-decoration: none;
}
.rank-math-breadcrumb p .last {color: var(--black)}

/* WhatsApp */
.whatsapp {
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #25d366;
    transition: all 0.3s ease-out;
    z-index: 99999;
}
.wa-icon {
    width: 40px;
    margin-top: 7px;
    margin-left: 8px;
}
.whatsapp:hover, .whatsapp:focus {background-color: var(--black);}
.whatsapp a:hover, .whatsapp a:focus {cursor: pointer;}

/* Buttons and links */
.overlay-link {
	width: calc(100% - 30px);
	height: 100%;
	position: absolute;
	top: 0;
	left: 15px;
}

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

p a, li a {
	color: var(--blue);
	text-decoration: underline;
}
p a:hover, p a:focus, li a:hover, li a:focus {color: var(--black);}

.btn, a.read-more, p.read-more, #main [type="submit"].gform_button {
	font-weight: var(--bold);
	width: fit-content;
	display: inline-block;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.btn, #main [type="submit"].gform_button {
	font-family: var(--accent-font);
	text-transform: uppercase;
	letter-spacing: 4px;
	padding: .75rem 1.5rem;
	border-radius: 50px;
	margin: 1rem 0;
}
#main [type="submit"].gform_button {padding: .75rem 1.5rem !important;}
.btn:hover, .btn:focus, .cmplz-show-banner {text-decoration: none;}

.primary-btn, #main [type="submit"].gform_button {
	position: relative;
	color: var(--white);
}
.primary-btn, .primary-btn:before, .primary-btn:after, #main [type="submit"].gform_button {background: var(--blue);}
.primary-btn:before, .primary-btn:after {
	content: "";
	left: 0;
	bottom: 0;
	border-radius: 50px;
	position: absolute;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.primary-btn:before {
	width: 9px;
	height: 9px;
	margin-left: -16px;
	margin-bottom: -16px;
}
.primary-btn:hover:before, .primary-btn:focus:before {
	margin-left: -6px;
	margin-bottom: -6px;
}
.primary-btn:after {
	width: 15px;
	height: 15px;
	margin-left: -8px;
	margin-bottom: -8px;
}
.primary-btn:hover, .primary-btn:focus, .primary-btn:hover:before, .primary-btn:focus:before, .primary-btn:hover:after, .primary-btn:focus:after {background: var(--black);}

.secondary-btn, .cmplz-show-banner {
	border: 2px solid var(--blue);
	color: var(--blue);
}
.secondary-btn:hover, .secondary-btn:focus, .cmplz-show-banner:hover, .cmplz-show-banner:focus {
	border-color: var(--black);
	color: var(--black);
}

a.read-more, p.read-more {
	color: var(--blue);
	margin-bottom: 1rem;
	position: relative;
}
a.read-more:hover, a.read-more:focus, p.read-more:hover, p.read-more:focus {
	color: var(--black);
	text-decoration: none;
}
.read-more:before, .read-more:after {
	content: "";
	border-radius: 50px;
	background: var(--blue);
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.read-more:after {
	left: 0;
    width: 8px;
    height: 8px;
    position: absolute;
    margin-left: 10px;
    margin-top: -3px;
}
.read-more:hover:after, .read-more:focus:after {
	margin-left: 3px;
	margin-top: 5px;
}
.read-more:before {
	display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    margin-top: -3px;
	margin-right: 10px;
}
.read-more:hover:before, .read-more:focus:before, .read-more:hover:after, .read-more:focus:after {background: var(--black);}

/*a.read-more, p.read-more {
	color: var(--cta) !important;
	border-bottom: 2px solid var(--cta);
	display: block;
	margin-bottom: 1rem;
	-webkit-transition: var(--transition);
}
p.read-more {cursor: pointer;}
a.read-more:hover, a.read-more:focus, p.read-more:hover, p.read-more:focus {
	color: var(--cta-focus) !important;
	text-decoration: none !important;
	border-color: var(--cta-focus);
}
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(--cta);
	-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(--cta-focus) !important;}

p a, li a, a {color: var(--cta-focus);}
p a:hover, p a:focus, li a:hover, li a:focus, a:hover, a:focus {color: var(--teal);}

.btn, a.cky-banner-element {
	border-radius: var(--br-sm);
	padding: 12px 30px;
	margin: 1rem 0;
}

.primary-btn, :where(.editor-styles-wrapper) .btn.primary-btn {
	background: var(--cta);
	color: var(--cta-opp);
	position: relative;
}
.primary-btn:hover, .primary-btn:focus {
	background: var(--cta-focus);
	color: var(--white-focus-opp);
}

.secondary-btn, :where(.editor-styles-wrapper) .btn.secondary-btn, .cky-banner-element {
	border: 2px solid var(--cta);
	color: var(--cta);
}
.secondary-btn:hover, .secondary-btn:focus, .cky-banner-element:hover, .cky-banner-element:focus {
	border: 2px solid var(--cta-focus);
	color: var(--cta-focus);
}*/

@media only screen and (max-width:576px) {
	.btn {
		padding: 12px;
		width: 100%;
	}
}

/* HERO */
.hero-pad {padding-top: 9rem;}
.hero-bg {
	background: var(--blue-md);
}
.hero-push {padding-bottom: calc(102vw * 5 / 46);}
.hero-index {
    z-index: 1;
    position: relative;
}
.hero-shape {pointer-events: none;}
.hero-shape-content {position: relative;}
.hero-star {
	position: absolute;
	width: 125px;
    max-width: 8vw;
    aspect-ratio: 7 / 6;
	top: 5rem;
	margin-left: 4rem;
    background: url('/wp-content/themes/healthypixels/assets/shapes/dblo-star.svg') center / contain no-repeat;
}
.hero-star.shooting-star {
	animation: star-enter 0.9s cubic-bezier(.2, .9, .25, 1.2) forwards;
	will-change: transform, opacity;
}
@keyframes star-enter {
	0% {
		transform: translate(180px, -120px) scale(0.5) rotate(20deg);
		opacity: 0;
	}
	70% {
		transform: translate(-8px, 4px) scale(1.06) rotate(-3deg);
		opacity: 1;
	}
	100% {
		transform: translate(0, 0) scale(1) rotate(0);
		opacity: 1;
	}
}
.hero-moon {
	position: absolute;
	width: 200px;
    max-width: 16vw;
    aspect-ratio: 17.14 / 13;
	bottom: 2rem;
	right: 0;
	margin-right: 1rem;
    background: url('/wp-content/themes/healthypixels/assets/shapes/dblo-sleeping-moon.svg') center / contain no-repeat;
	animation: moon-float 5s ease-in-out infinite;
	will-change: transform;
}
@keyframes moon-float {
	0%, 100% {
		transform: translateY(0) rotate(-1deg);
	}
	25% {
		transform: translateY(-4px) rotate(0deg);
	}
	50% {
		transform: translateY(-8px) rotate(1deg);
	}
	75% {
		transform: translateY(-4px) rotate(0deg);
	}
}
.hero-mask:before {
	content: "";
    right: -1px;
    display: block;
    width: 102vw;
    position: absolute;
    aspect-ratio: 42.52 / 5;
	margin-top: calc(-102vw * 5 / 42.52);
    background-color: var(--bg);
    -webkit-mask: url(/wp-content/themes/healthypixels/assets/shapes/dblo-hero-shape-lg-btm.svg) center / contain no-repeat;
    mask: url(/wp-content/themes/healthypixels/assets/shapes/dblo-hero-shape-lg-btm.svg) center / contain no-repeat;
}

.rotate-1 {transform: rotate(-4deg);}
.rotate-2 {transform: rotate(4deg);}

.gallery-wrap {
    z-index: 1;
    position: relative;
}
@media only screen and (max-width: 991px) {
	.gallery-slideshow {
		position: relative;
		display: block;
	}
	.gallery-slideshow .gallery-slide {
		display: none;
		width: 100%;
		max-width: 100%;
		aspect-ratio: 4 / 3;
	}
	.gallery-slideshow .gallery-slide.is-active {display: block;}
	.gallery-slideshow .same-h {transform: none;}
	.gallery-slideshow .gallery-slide img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
	.hero-star {
		top: -2rem;
		margin-left: auto;
		right: var(--max);
	}
}
@media only screen and (max-width: 767px) {
	.hero-mask:before {right: 0;}
	.hero-star {
		max-width: 15vw;
		right: 1rem;
	}
	.hero-moon {display: none;}
}

@media only screen and (min-width: 1600px) {
	.rotate-1 {transform: rotate(-2deg);}
	.rotate-2 {transform: rotate(2deg);}
}
/* Full height 
.full-height-hero {
    position: relative;
    background-color: var(--black);
    color: var(--white);
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.full-height-hero.hero {
	margin-bottom: 0px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}
.full-height-hero.hero video, .full-height-hero.hero img {
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.full-hero-content {
	position: relative;
	padding-top: 3rem;
	padding-bottom: 3rem;
}*/

/* Testimonial slider */
.testimonial-btn button.prev:hover, .testimonial-btn button.next:hover {cursor: pointer;}
.testimonial-btn {
	display: flex;
	justify-content: flex-end;
	gap: 0.75rem;
}
.testimonial-btn button {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	flex: 0 0 45px;
	background: transparent;
	border: none;
	transition: var(--transition);
	-webkit-transition: var(--transition);
}
.testimonial-btn button.prev {transform: scale(.8);}
.testimonial-btn button.next {margin-left: 0;}
.testimonial-btn button::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--blue);
}
.testimonial-btn button:hover::before, .testimonial-btn button:focus::before {background: var(--black);}
.testimonial-btn button::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 28px;
	background-color: var(--white);
	transform: translate(-50%, -50%);
	-webkit-mask: url('/wp-content/uploads/2025/02/caret-right.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/02/caret-right.svg') center / contain no-repeat;
}
.testimonial-btn button.prev::after {transform: translate(-50%, -50%) rotate(180deg);}

.testimonial-content p:first-child::before, .testimonial-content p:last-child::after {
    content: '"';
}

.testimonial-star {
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimonial-star-inner {
	width: 100%;
	padding: 1.5rem;
	max-width: 160px;
	aspect-ratio: 1;
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	border-radius: var(--br-lg);
}

.bright-testimonial, .dark-testimonial {
	padding: 1.5rem;
	border-radius: var(--br-md);
}
.bright-testimonial {background: var(--blue-md);}
.dark-testimonial {background: var(--black);}

/* Blog */
.post-hero-img, .blog-listing-img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--br-lg);
	margin-bottom: 2rem;
}
.post-hero-img {margin-bottom: 2rem;}
.blog-listing-img {margin-bottom: 1rem;}
.post-hero-img img, .blog-listing-img img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
@media only screen and (min-width:1200px) {
	.blog-width {padding: 0 5rem;}
	.post-hero-img {
		margin-right: -5rem;
		margin-left: -5rem;
	}
}
/*.blog-img-h, .blog-listing-img {height: 400px;}
.blog-img-h img, .blog-listing-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--br-sm);
}
.blog-badge {
    position: absolute;
    margin: 1rem 0 0 1rem;
    background: var(--black);
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    padding: .75rem;
	font-size: .8rem;
}*/

.nowrap-row .row, .row.nowrap-row {
	flex-wrap: nowrap;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}
.nowrap-row .row img, .row.nowrap-row img {pointer-events: none;}
.nowrap-row.has-overflow {cursor: grab;}
.nowrap-row.is-dragging {
	cursor: grabbing;
	user-select: none;
	scroll-behavior: auto;
}
.nowrap-row {overflow-y: auto;}

.nowrap-row::-webkit-scrollbar {height: 10px;}
.nowrap-row::-webkit-scrollbar-track {
	background-color: var(--white);
	border-radius: 15px;
	max-width: 60% !important;
	margin-top: 3rem;
	margin-left: 25vw;
	margin-right: 25vw;
}
.nowrap-row::-webkit-scrollbar-thumb {
	background-color: var(--blue);
	border-radius: var(--br-lg);
}

.hide-scroll {
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.hide-scroll::-webkit-scrollbar {display: none;}
@-moz-document url-prefix() {
	.nowrap-row {
		scrollbar-width: thin;
		scrollbar-color: var(--blue) var(--white);
		margin: 1rem;
	}
}

/* Tables 
.wp-block-table table {
	border-radius: var(--br-md);
    overflow: hidden;
	text-align: left !important;
}
.wp-block-table thead {
    border-bottom: 3px solid;
    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(odd) {background-color: var(--bright);}
.wp-block-table tbody tr:nth-child(even) {background-color: var(--grey);}

.bg-quote {
	background: var(--grey);
	color: var(--white);
	padding: 1rem;
	margin: 1rem 0;
	border-radius: var(--br-md);
}
.simple-quote {
	border-left: 4px solid var(--grey);
	padding-left: calc(1rem - 4px);
	font-weight: var(--light);
	font-size: 1.1rem;
	margin: 2.5rem 0;
}
.bg-quote p:last-child, .simple-quote p:last-child {margin-bottom: 0;}*/

.highlight-content {
	background: var(--blue-md);
	padding: 1rem;
	border-radius: var(--br-md);
	margin: 1.5rem 0 2rem 1.5rem;
	position: relative;
}
.highlight-content > ul:first-child {margin-block-start: 0;}
.highlight-content p:last-child, .highlight-content ul:last-child {margin-bottom: 0;}
.highlight-content:before, .highlight-content:after {
	content: "";
	position: absolute;
	border-radius: 50px;
}
.highlight-content:before {
	left: 0;
	top: 0;
	width: 15px;
	height: 15px;
	z-index: 1;
	margin-left: -1.5rem;
	background: var(--blue-md);
}
.highlight-content:after {
	left: 3px;
	top: 3px;
	width: 18px;
	height: 18px;
	z-index: 0;
	margin-left: -1.5rem;
	background: var(--black);
}

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

/* Tabs */
.tab-buttons {margin-bottom: 1rem;}
.btm-btns.tab-buttons {
	margin-top: 1rem;
	margin-bottom: 0;
}
.tab-buttons button, button.tab-btn {
	border: 1px solid var(--blue);
	padding: .75rem 1rem .5rem 1rem;
	border-radius: var(--br-md) var(--br-md) var(--br-md) 0;
	background: transparent;
	margin-bottom: 5px;
}
.btm-btns.tab-buttons button {border-radius: 0 var(--br-md) var(--br-md) var(--br-md);}
.tabs-block .tab-buttons button {margin-right: 5px;}
.tab-buttons button:hover, .tab-buttons button:focus {background: var(--white);}
.tab-buttons button.active {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.tab-info {
	border-radius: 0 var(--br-md) var(--br-md);
	background: var(--white);
	padding: 1rem;
	-moz-box-shadow: var(--moz-box-shadow);
	-webkit-box-shadow: var(--webkit-box-shadow);
	box-shadow: var(--box-shadow);
}
.tab-info.tab-info-bg {background: var(--bg);}
	
.tab-content {display: none;}
.tab-content.active, .block-editor .tab-content, .editor-styles-wrapper .tab-content, .tab-content.is-editor {display: block;}

.tab-info .row {align-items: stretch;}
.tab-info .headshot-col {display: flex;}

.tab-img {
	width: 100%;
	height: 100%;
}
.headshot {
	aspect-ratio: 9 / 12;
	max-height: 620px;
}
.sq-img {
	aspect-ratio: 10 / 9;
	/*max-height: 500px;*/
}
.tab-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border: 1px solid var(--blue-md);
}

@media only screen and (min-width:768px) {
	.tab-text {padding: 1rem 1.5rem;}
}
@media only screen and (max-width:767px) {
	.tab-buttons button {padding: .5rem;}
}

/* BANNERS */
.usps {
	padding: 26px 0;
	font-family: var(--accent-font);
	font-weight: var(--bold);
	text-transform: uppercase;
	color: var(--blue);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 6rem;
	transform: rotate(-1deg);
}
.usps p {
	margin: 0;
	font-size: 1.25rem;
}
@media only screen and (max-width:767px) {
	.usps {display: grid;}
}

/* Gallery */
.acf-gallery-masonry {column-gap: 15px;}
.masonry-item {
	break-inside: avoid;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
	border-radius: var(--br-sm);
}
.masonry-item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: inherit;
	transition: transform 0.3s ease;
}
.masonry-item:hover img {transform: scale(1.05);}

.acf-gallery-masonry.square img, .grid-img.square img { aspect-ratio: 1 / 1; object-fit: cover; }
.acf-gallery-masonry.portrait img, .grid-img.portrait img { aspect-ratio: 3 / 4; object-fit: cover; }
.acf-gallery-masonry.landscape img, .grid-img.landscape img { aspect-ratio: 4 / 3; object-fit: cover; }
.acf-gallery-masonry.original img, .grid-img.original img { aspect-ratio: auto; object-fit: contain; }

.acf-gallery-masonry.cols-1 { column-count: 1; }
.acf-gallery-masonry.cols-1 .masonry-item {
	max-width: 50%;
	margin: 0 auto 15px;
}
.minigal .acf-gallery-masonry.cols-1 .masonry-item {max-width: 100%;}
.acf-gallery-masonry.cols-2 { column-count: 2; }
.acf-gallery-masonry.cols-3 { column-count: 3; }
.acf-gallery-masonry.cols-4 { column-count: 4; }
.acf-gallery-masonry.cols-5 { column-count: 5; }

@media (max-width: 992px) { .acf-gallery-masonry { column-count: 2 !important; } }
@media (max-width: 600px) { .acf-gallery-masonry { column-count: 1 !important; } }

@media (min-width: 1200px) {
    .card-columns {column-count: 5;}
	.card-columns.narrow {column-count: 3;}
}
@media (min-width: 576px) {
	.card-columns.half-col {column-count: 2;}
}

/* Misc */
.boxes {display: flex;}
.same-h {
	display: flex;
    flex-direction: column;
	height: 100%;
	flex: 1;
}
.same-h .h-img {
	height: 100%;
	object-fit: cover;
}
.push-down {margin-top: auto;}
.placeholder, .img-placeholder {
	min-height: 100px;
	height: 100%;
	width: 100%;
	background: var(--grey);
}

.contact-banner {
	border-radius: var(--br-lg);
	background: var(--white);
	/*padding: 4rem;*/
	-moz-box-shadow: var(--moz-box-shadow);
	-webkit-box-shadow: var(--webkit-box-shadow);
	box-shadow: var(--box-shadow);
}
.contact-pad {padding: 4rem 0;}

@media only screen and (min-width: 992px) {
    .offset-img {
        height: calc(100% + 3rem);
		position: absolute;
		width: 100%;
    }
	 .offset-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
	.offset-pad:has(.offset-img) {margin-bottom: 3rem;}
}
@media only screen and (max-width: 992px) {
	.contact-pad {padding: 2rem 1rem;}
}
@media only screen and (max-width: 767px) {
	.contact-pad {padding: 1rem 0;}
}

.card-box {
	border-radius: var(--br-md);
	background: var(--white);
	border: 1px solid var(--blue-md);
}
.box-pad {padding: 1rem;}

/*.contact-details {padding-left: 1rem;}

.team-box {
	background: var(--bright);
	border-radius: var(--br-sm);
	padding: 1rem;
}
.headshot {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-bottom: 1rem;
}
.headshot img {
	height: 100%;
    width: 100%;
    object-fit: cover;
}*/

/* Accordions */
.accordions {
	margin-bottom: 30px;
	border-bottom: 2px solid var(--blue-md);
	padding-bottom: 1rem;
}
.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;
}
.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(--orange);
	-webkit-mask: url('/wp-content/uploads/2025/02/caret-right.svg') center / contain no-repeat;
}
.accordions button.collapsed:after {
	transform: rotate(90deg);
	background-color: var(--blue);
}
.accordions button:focus {outline: none;}
p.accordions-title {margin-bottom: 0;}
.accordions-content p:last-child {margin-bottom: 0;}
.accordions {margin-bottom: 30px;}

/* 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 {
	width: 34px;
    display: inline-flex;
    margin-right: .5rem;
}
a.social-link:last-child {margin-right: 0;}
a.social-link:hover, a.social-link:focus {text-decoration: none;}
.socials p {padding-top: 1rem;}
.social-icon {
	padding-bottom: 1rem;
	position: relative;
}
.social-icon:last-child {margin-right: 0;}
.social-icon:before {
	content: "";
	width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--blue-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    text-decoration: none;
}
.social-icon:hover:before, .social-icon:focus:before {border-color: var(--blue);}
.social-icon:after {
    content: "";
	position: absolute;
	top: 4.5px;
	left: 4.5px;
    width: 25px;
    height: 25px;
	background-color: var(--blue);
}
.social-icon:hover:after {transform: scale(1.1);}

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

/* Gravity */
#main .gform-theme--foundation .gform_fields {
	row-gap: 20px;
}
#main .gform-field-label {
	font-size: .8rem;
	font-weight: var(--bold);
	color: var(--black);
	margin-bottom: 2px;
}
#main .gform-theme--framework:where(:not(.gform_editor)) .gfield--type-section {
	padding-block-end: 0;
    border-color: var(--blue-md);
	max-width: 100px;
	margin-bottom: .5rem;
}
#main .ginput_container_date input {
    width: 100%;
}
#main .ginput_container input, #main .ginput_container textarea {
	border-radius: var(--br-md);
	border-color: var(--blue);
	background: var(--white);
}
#main .ginput_container input:hover, #main .ginput_container input:focus, #main .ginput_container textarea:hover, #main .ginput_container textarea:focus {
	-moz-box-shadow: var(--moz-box-shadow);
	-webkit-box-shadow: var(--webkit-box-shadow);
	box-shadow: var(--box-shadow);
	outline-color: var(--blue);
}
p.gform_required_legend {
    font-size: 0;
    margin-bottom: 0;
}
/* #main .gform-theme--foundation .gform_fields {row-gap: 30px;}
#main .gfield_required .gfield_required_text {font-size: 0;}
#main .gfield_required .gfield_required_text:before {
    content: "*";
    font-size: 1rem;
	color: var(--black);
}

.floating-labels input::placeholder, .floating-labels textarea::placeholder, #main .gfield_description {font-size: 0;}

.floating-labels .gfield {position: relative;}

.floating-labels .gfield.gfield--type-text .gfield_label,
.floating-labels .gfield.gfield--type-email .gfield_label,
.floating-labels .gfield.gfield--type-phone .gfield_label,
.floating-labels .gfield.gfield--type-textarea .gfield_label,
.floating-labels .gfield.gfield--type-select .gfield_label,
.floating-labels .gfield.gfield--type-name .gfield_label {
	position: absolute;
	top: 8px;
	left: 8px;
	margin: 0;
	pointer-events: none;
	transition: var(--transition);
	font-weight: var(--regular);
	background: #fff;
	padding: 0 6px;
	z-index: 2;
	font-size: 1rem;
	line-height: 1;
}
.floating-labels .gfield.gfield--type-phone .gfield_label {top: 11px;}
.floating-labels .gfield.gfield--type-textarea .gfield_label {top: 20px;}

.floating-labels input[type="text"],
.floating-labels input[type="email"],
.floating-labels input[type="tel"],
.floating-labels input[type="number"],
.floating-labels input[type="password"],
.floating-labels textarea,
.floating-labels select {
	padding: 22px 14px 10px;
}

/* Float on focus and has content 
.floating-labels .gfield:focus-within .gfield_label,
.floating-labels .gfield:focus-within .gform-field-label, 
.floating-labels .gfield.gfield--has-value .gfield_label,
.floating-labels .gfield.gfield--has-value .gform-field-label {
	top: -14px;
	font-size: .8rem;
}

.floating-labels .gfield.gfield--type-phone:focus-within .gfield_label, .floating-labels .gfield.gfield--type-phone.gfield--has-value .gfield_label {top: -10px;}
.floating-labels .gfield.gfield--type-textarea:focus-within .gfield_label, .floating-labels .gfield.gfield--type-textarea.gfield--has-value .gfield_label {top: -5px;}*/

@media only screen and (min-width:992px) {
	.merge-footer .contact-banner {
		padding-bottom: 4rem;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	main:has(.merge-footer) + .footer-mask {
		margin-top: -9rem;
		z-index: 1;
	}
	.contact-banner .same-h {
		height: calc(100% + 4rem);
		width: 100%;
	}
	.contact-banner .same-h img {
		object-fit: cover;
		height: 100%;
		width: 100%;
		border-bottom-left-radius: 0 !important;
		border-bottom-right-radius: 0 !important;
	}
}
@media only screen and (min-width:1300px) {
	main:has(.merge-footer) + .footer-mask {margin-top: -12rem;}
}
@media only screen and (min-width:1800px) {
	main:has(.merge-footer) + .footer-mask {margin-top: -16.5rem;}
}
@media only screen and (max-width:991px) {
	.merge-footer:has(.contact-banner) {margin-bottom: var(--md-spacer);}
}

/* FOOTER */
.footer-mask:before {
    content: "";
    right: 0;
    z-index: -1;
    display: block;
    width: 102vw;
	margin-left: -2vw;
	position: relative;
    aspect-ratio: 21.81 / 3;
    background: url('/wp-content/themes/healthypixels/assets/shapes/dblo-footer-shape.svg') center / contain no-repeat;
}
footer {
	font-size: .95rem;
	background: var(--bright);
	padding-bottom: 2.5rem;
}
footer.create-para .para {padding-bottom: 1rem;}
img.footer-logo {
	width: 160px;
	max-width: 95%;
}
footer hr {
	border-top: 1px solid var(--blue-md);
	margin: 2rem 0;
}
footer .lead {
	font-weight: var(--bold);
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-family: var(--accent-font);
}
footer .policies ul {
	padding-inline-start: 0;
	list-style: none;
}
footer a {
	text-decoration: none;
	color: var(--black);
}
footer .current-menu-item a {
	opacity: .5;
	pointer-events: none;
}
@media only screen and (min-width:1600px) {
	footer {
		padding-bottom: 4rem;
		font-size: 1rem;
	}
	img.footer-logo {width: 200px;}
}
/*
footer {
	margin-top: 5rem;
	margin-bottom: 15px;
}
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(--cta);}
footer ul a:hover, footer ul a:focus {color: var(--cta-focus);}
footer .policies ul li {font-size: 95%;}

.footer-logo {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.footer-logo img, img.footer-icon {
    max-height: 100px;
    width: auto;
}
@media only screen and (min-width: 992px) {
	footer .policies ul li {
		display: inline;
		margin-right: 1rem;
	}
}
@media only screen and (max-width: 767px) {
	.footer-container {padding-top: 1rem;}
	footer p.lead {padding-top: 2rem;}
}*/