@charset "UTF-8";
@font-face {
	font-family: "Outfit";
	src: url("../dist/Outfit-VariableFont_wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in-up {
	0% {
		opacity: 0;
		transform: translateY(50%);
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in-left {
	0% {
		opacity: 0;
		transform: translateX(-50%);
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in-right {
	0% {
		opacity: 0;
		transform: translateX(50%);
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-out {
	0% {
		opacity: 1;
		visibility: visible;
	}
	100% {
		opacity: 0;
	}
}
@keyframes fade-out-left {
	0% {
		opacity: 1;
		visibility: visible;
	}
	100% {
		opacity: 0;
		transform: translateX(-50%);
	}
}
@keyframes fade-out-right {
	0% {
		opacity: 1;
		visibility: visible;
	}
	100% {
		opacity: 0;
		transform: translateX(50%);
	}
}
:root {
	--x2: 1.125em;
	--x3: 1.125em;
	--x4: 1.25em;
	--x5: 1.375em;
	--x6: 1.5em;
	--x7: 1.5em;
	--xx: 1.5rem;
	--speed: 400ms;
	--spacing: 2em;
	--shadows: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
	--border-radius: calc(1px * var(--radius));
	--theme-color: #00b180;
	--darkest-color: #19202c;
	--darker-color: #27323c;
	--dark-color: #4a5568;
	--mid-color: #718096;
	--light-color: #cad5e0;
	--lighter-color: #edf2f7;
	--lightest-color: #f7fafc;
	--white-color: #ffffff;
	--body-bg: var(--white-color);
	--body-color: var(--darker-color);
	--header-bg: var(--white-color);
	--header-color: var(--darker-color);
	--footer-bg: var(--body-color);
	--footer-color: var(--body-bg);
}

* {
	box-sizing: border-box;
}

*::before,
*::after {
	speak: none;
	box-sizing: inherit;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
}

body {
	font-family: Outfit;
	font-weight: var(--body-weight);
	line-height: var(--body-line);
	margin: 0;
	background: var(--body-bg);
	color: var(--body-color);
	line-height: var(--body-line);
	font-size: calc(6.25% * var(--body-size));
}

input[type=submit],
input[type=button],
button,
a {
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	transition: var(--speed);
	transition-property: background, color, fill, border, opacity;
	cursor: pointer;
}

*:disabled {
	cursor: default;
}

pre {
	overflow: auto;
}

img,
svg {
	-webkit-user-drag: none;
	-moz-user-drag: none;
	-ms-user-drag: none;
	user-drag: none;
}

svg {
	fill: currentColor;
	vertical-align: middle;
}

embed,
iframe,
img,
object {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

article,
aside,
figure,
footer,
header,
main,
nav {
	display: block;
}

.wp-block-quote,
.wp-block-pullquote,
blockquote,
embed,
fieldset,
figure,
iframe,
img,
legend,
object {
	padding: 0;
	border: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	--bold-weight: var(--title-bold-weight);
	font-family: Outfit;
	font-weight: var(--title-weight);
	line-height: var(--title-line);
	font-size: 1em;
	margin: 0;
	color: inherit;
}
h1 + *,
h2 + *,
h3 + *,
h4 + *,
h5 + *,
h6 + * {
	--spacing-top: calc(var(--spacing) * 5/8);
}

h1 {
	font-size: var(--x6);
}

h2 {
	font-size: var(--x5);
}

h3 {
	font-size: var(--x4);
}

h4 {
	font-size: var(--x3);
}

h5 {
	font-size: var(--x2);
}

ul,
ol,
p {
	margin: var(--spacing-top, var(--spacing)) 0 var(--spacing-bottom, var(--spacing));
}

li {
	margin: calc(var(--spacing-top, var(--spacing)) / 2) 0 calc(var(--spacing-bottom, var(--spacing)) / 2);
}

ul,
ol {
	padding: 0 0 0 1.25em;
}

a {
	color: var(--link-color, inherit);
	-webkit-text-decoration: var(--link-decoration, underline);
	        text-decoration: var(--link-decoration, underline);
}
a:hover {
	--link-color: var(--link-hover, inherit);
	text-decoration: none;
}
a[href^="tel:"], a[href^="mailto:"] {
	text-decoration: none;
}

table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

td,
th {
	padding: 1em 0.5em;
	text-align: inherit;
}

thead tr {
	border-bottom: 1px solid;
}
input[type=search]::-webkit-search-cancel-button {
	display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	        appearance: none;
}

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

label {
	cursor: pointer;
	vertical-align: middle;
}

button {
	-webkit-appearance: none;
	        appearance: none;
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	color: inherit;
	font: inherit;
}

textarea {
	overflow: auto;
	display: block;
	resize: vertical;
}

.wp-block-button__link, .button {
	--bold-weight: var(--title-bold-weight);
	font-family: Outfit;
	font-weight: var(--title-weight);
	line-height: var(--title-line);
	padding: var(--button-pad, 1em 2em);
	min-width: var(--button-min, 10em);
	font-size: var(--button-size, 1em);
	text-transform: var(--button-text, uppercase);
	line-height: 1.067;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
	border-radius: var(--border-radius);
	vertical-align: middle;
	background: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.15) 50%) no-repeat 0 0;
	background-size: 200%;
	background-color: var(--button-bg, var(--theme-color));
	color: var(--button-color, #fff);
}
.wp-block-button__link:hover, .button:hover {
	background-position: 100% 0;
}

.contain::before, .contain::after, .contain-after::after, .contain-before::before {
	content: " ";
	display: table;
	clear: both;
}

.fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: inherit;
	   object-fit: inherit;
	-o-object-position: inherit;
	   object-position: inherit;
}

.has-body-font {
	font-family: Outfit;
	font-weight: var(--body-weight);
	line-height: var(--body-line);
}

.is-style-heading,
.is-style-title, .title, .has-title-font, blockquote p, .schema-faq-question, .menu\:inline > li > a, .gfield_label {
	--bold-weight: var(--title-bold-weight);
	font-family: Outfit;
	font-weight: var(--title-weight);
	line-height: var(--title-line);
}

.has-bold-font, .card .meta a, th,
strong,
b {
	font-weight: var(--bold-weight);
}

.media {
	display: flex;
	align-items: center;
	justify-content: center;
}
.media::before {
	content: " ";
	width: 1px;
	margin-left: -1px;
	padding-bottom: calc(100% / (var(--ratio, 4/3)));
}

.hug > * {
	margin: 0;
}
.hug > * + * {
	margin-top: var(--spacing);
}

input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
textarea,
select {
	font: inherit;
	line-height: normal;
	-webkit-appearance: none;
	        appearance: none;
	box-shadow: none;
	border: 1px solid var(--color, var(--light-color));
	border-radius: var(--border-radius);
	width: 100%;
	padding: 0.75em 1em;
	background: var(--bg, transparent);
	color: var(--color, initial);
	transition: var(--speed);
	transition-property: color, border-color, background-color;
}
input[type=date]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
	border-color: inherit;
}
.input-button > input {
	border: 0;
	padding: 0;
	border-radius: 0;
}

.site-footer-links, .menu,
.menu ul, .gform_fields {
	--spacing: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.slides {
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}
.slides::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.screen-reader-text, .ginput_complex label, .hidden_label > .gfield_label, .dialog[role=dialog] {
	border: 0;
	box-shadow: none;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.ginput_container_select {
	position: relative;
}
.ginput_container_select::before {
	content: " ";
	font-size: 0.625em;
	position: absolute;
	z-index: -1;
	top: 50%;
	right: 1.5em;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	border-style: solid;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	transform-origin: 65% 65%;
	transition: transform var(--speed);
}

.wp-block-media-text__content > :first-child, .wp-block-cover__inner-container > :first-child, .wp-block-column > :first-child, .textwidget > :first-child, .header > :first-child {
	margin-top: 0;
}
.wp-block-media-text__content > :last-child, .wp-block-cover__inner-container > :last-child, .wp-block-column > :last-child, .textwidget > :last-child, .header > :last-child {
	margin-bottom: 0;
}

.wrap {
	box-sizing: content-box;
	max-width: var(--wrap, 75rem);
	margin-left: auto;
	margin-right: auto;
	padding-left: 5%;
	padding-right: 5%;
}

.header__bar__accessibility {
	position: relative;
	float: right;
	margin-right: 1rem;
	margin-top: 1px;
}
.header__bar__accessibility__button, .header__bar__accessibility__button--cp {
	padding: 0.5rem 1rem;
	background: #718096;
	color: #fff;
	border: none;
	border-radius: 1.125rem;
	cursor: pointer;
	font-size: 0.8125rem;
	line-height: 1;
	font-weight: 700;
	display: flex;
	align-items: center;
}
.header__bar__accessibility__button--active ~ .header__bar__accessibility__dropdown, .header__bar__accessibility__button--cp--active ~ .header__bar__accessibility__dropdown {
	pointer-events: all;
}
.header__bar__accessibility__button svg:last-of-type, .header__bar__accessibility__button--cp svg:last-of-type {
	max-width: 0.75rem;
	margin-left: 0.5rem;
}
.header__bar__accessibility__button svg:first-of-type, .header__bar__accessibility__button--cp svg:first-of-type {
	max-width: 1.375rem;
	margin-right: 0.5rem;
}
.header__bar__accessibility__dropdown, .header__bar__accessibility__dropdown--cp {
	display: none;
	position: absolute;
	list-style-type: none;
	padding: 0;
	margin: 0;
	background: #fff;
	border: 0.0625rem solid #e2e8f0;
	box-shadow: 0 0.625rem 6.25rem 0 #e2e8f0;
	border-radius: 1.25rem;
	padding: 0.5rem 0.6875rem;
	z-index: 2;
	top: calc(100% + 0.5rem);
	width: 13.75rem;
	left: auto;
	right: 0;
	transform: none;
	font-size: 0.8125rem;
}
.header__bar__accessibility__dropdown li, .header__bar__accessibility__dropdown--cp li {
	cursor: pointer;
	color: #A0AEC0;
	font-weight: 700;
	line-height: 1;
	padding: 0.5rem 0.75rem;
	margin: 0.1rem;
	border-radius: 1.5rem;
	display: flex;
	align-items: center;
}
.header__bar__accessibility__dropdown li:hover, .header__bar__accessibility__dropdown--cp li:hover {
	background: #EDF2F7;
}
.header__bar__accessibility__dropdown li.font-size__2, .header__bar__accessibility__dropdown--cp li.font-size__2 {
	font-size: 1.125rem;
}
.header__bar__accessibility__dropdown li.font-size__3, .header__bar__accessibility__dropdown--cp li.font-size__3 {
	font-size: 1.25rem;
}
.header__bar__accessibility__dropdown li.font-size svg, .header__bar__accessibility__dropdown--cp li.font-size svg {
	max-width: 1.375rem;
}
.header__bar__accessibility__dropdown li svg, .header__bar__accessibility__dropdown--cp li svg {
	max-width: 1rem;
	margin-right: 0.5rem;
}
.header__bar__accessibility__dropdown li.high-contrast, .header__bar__accessibility__dropdown--cp li.high-contrast {
	color: #ffc701;
}
.header__bar__accessibility__dropdown li.high-contrast svg, .header__bar__accessibility__dropdown--cp li.high-contrast svg {
	fill: #FFC700;
}
.header__bar__accessibility__dropdown li.high-contrast:hover, .header__bar__accessibility__dropdown--cp li.high-contrast:hover {
	background: #ffc701;
	color: #000;
}
.header__bar__accessibility__dropdown li.high-contrast:hover svg, .header__bar__accessibility__dropdown--cp li.high-contrast:hover svg {
	fill: #000;
}

.Displaythis {
	display: block;
}

.accordion__header.active .chevron {
	transform: rotate(45deg) !important;
}

.accordion {
	border-bottom: 1px solid black;
	font-size: 26px;
	font-weight: 700;
	padding-bottom: 1.5rem;
}
.accordion__header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: transparent;
	color: #19202c;
	cursor: pointer;
	padding-top: 1rem;
	width: 100%;
	text-align: left;
	transition: 0.4s;
}
.accordion__header p {
	max-width: 95%;
}
.accordion__header .chevron {
	position: absolute;
	right: 0;
	min-height: 1.25rem;
	min-width: 1.25rem;
	border-right: 2px solid black;
	border-bottom: 2px solid black;
	transform: rotate(-45deg);
	transition: all 0.3s;
}
.accordion__content {
	padding: 0 18px;
	color: #19202c;
	background-color: transparent;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	margin: 0 !important;
}
.accordion__content h1 {
	font-size: 24px;
}
.accordion__content h2 {
	font-size: 22px;
}
.accordion__content h3 {
	font-size: 20px;
}
.accordion__content h4 {
	font-size: 18px;
}
.accordion__content h5 {
	font-size: 16px;
}
.accordion__content h6 {
	font-size: 14px;
}
.accordion__content ul, .accordion__content ol {
	margin: 1rem 0;
}
.accordion__content p, .accordion__content li {
	font-size: 18px;
	font-weight: normal;
}
.accordion__content p {
	margin: 1rem 0;
}

.max-w-container {
	max-width: 55rem;
	margin: 0 auto !important;
	padding: 0 5%;
}

.site-footer-accreditations {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	position: absolute;
	bottom: 80px;
	right: 50px;
	z-index: 3;
}
.site-footer-accreditations img {
	max-width: 150px;
}

.site-footer-widgets-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
}

.has-background .card {
	background: #fff;
}

.card {
	--spacing: 1.25em;
	--link-decoration: none;
	border-radius: var(--border-radius);
	background: var(--lightest-color);
	color: #fff;
	text-align: center;
}
.card:nth-child(1) {
	background-color: #51c9da;
}
.card:nth-child(2) {
	background-color: #4cbed0;
}
.card:nth-child(3) {
	background-color: #3c95a3;
}
.card:nth-child(4) {
	background-color: #34828e;
}
.card:nth-child(5) {
	background-color: #3a3a3a;
}
.card:nth-child(6) {
	background-color: #000000;
}
.card:nth-child(7) {
	background-color: #3c95a3;
}
.card:nth-child(8) {
	background-color: #51c9da;
}
.card:nth-child(9) {
	background-color: #34828e;
}
.card .media {
	justify-content: flex-start;
	margin-left: 2.5rem;
}
.card .media .fill {
	width: unset !important;
}
.card.is-style-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.card.is-style-blog {
	text-align: left;
	box-shadow: var(--shadows);
	background: #fff;
}
.card .title {
	max-width: 80% !important;
	font-size: 1.4rem !important;
}
.card.is-style-link {
	transition: var(--speed);
	transition-property: background, color, opacity;
}
.card.is-style-link a {
	transition: none;
	color: #1f2a54;
	font-size: 18px;
}
.card.is-style-link .media > * {
	transition: transform var(--speed);
}
.card.is-style-link:hover {
	background: var(--theme-color);
	color: #1f2a54;
}
.card.is-style-link:hover .media > * {
	transform: scale(1.1);
}
.card > a {
	display: block;
	height: 100%;
}
.card .icon {
	font-size: var(--x7);
}
.card .chevron {
	position: absolute;
	right: 2rem;
	bottom: 2rem;
}
.card .chevron span {
	display: block;
	width: 1rem;
	height: 0.2rem;
	background-color: transparent;
	width: 0.8rem;
	height: 0.8rem;
	transform: rotate(45deg);
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	border-radius: 5%;
}
.card .content {
	margin: 7.5%;
	font-size: 0.875em;
	line-height: 1.5;
}
.card .title {
	font-size: var(--x3);
	text-align: left;
	margin-top: 1rem !important;
}
.card .meta {
	font-size: 0.8571428571em;
	margin: 0 0 1em;
}
.card .button {
	width: 100%;
	margin-top: var(--spacing);
}

div.service-grid {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
div.service-grid:not(.our-products-categories) {
	background-color: #e6e6e6 !important;
}
div.service-grid:not(.our-products-categories)::after {
	content: "";
	display: block;
	background-image: url(../../../uploads/2024/09/waves.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100vw;
	height: 60%;
	z-index: -1;
}
div.service-grid h2 {
	color: #fff;
}
div.service-grid .wp-block-group__inner-container {
	max-width: unset !important;
}
div.service-grid article.card:hover:nth-child(1) {
	background-color: #51c9da;
}
div.service-grid article.card:hover:nth-child(2) {
	background-color: #4cbed0;
}
div.service-grid article.card:hover:nth-child(3) {
	background-color: #3c95a3;
}
div.service-grid article.card:hover:nth-child(4) {
	background-color: #34828e;
}
div.service-grid article.card:hover:nth-child(5) {
	background-color: #3a3a3a;
}
div.service-grid article.card:hover:nth-child(6) {
	background-color: #000000;
}
div.service-grid .card .media {
	max-height: 9rem;
	margin-left: 0 !important;
}
div.service-grid .card .media img {
	-o-object-fit: contain !important;
	   object-fit: contain !important;
	max-width: 50%;
	max-height: 50%;
	margin-top: 15%;
}
.popular-products .card {
	background-color: #fff;
	color: #000;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.popular-products .card .content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin: 3%;
	height: 100%;
}
.popular-products .card figure {
	margin-left: 0 !important;
	overflow: visible !important;
}
.popular-products .card figure img {
	height: 12.5rem;
	-o-object-fit: contain;
	   object-fit: contain;
}
.popular-products .card figure img.fill {
	position: unset !important;
	min-height: 5rem;
	min-width: 5rem;
}
.popular-products .card .title {
	text-align: center !important;
	margin-right: 0 !important;
	color: #34828e;
}
.popular-products .card .chevron {
	display: none;
}

.wp-block-group__inner-container p {
	margin-top: 0 !important;
}

.home-page-services article figure img {
	margin-left: 1.5rem;
}

.content {
	--wrap: 60rem;
}

.about-columns img {
	-o-object-fit: cover !important;
	   object-fit: cover !important;
}

.cookie-panel {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: #fff;
	z-index: 5000;
}
.cookie-panel__accordions {
	padding: 3rem;
	background-color: #fff;
	transform: translateY(-100%);
	transition: all 0.3s ease-in-out;
}
.cookie-panel__accordions__buttons {
	position: relative;
	padding-top: 3rem;
	padding-bottom: 2rem;
	z-index: 1;
}
.cookie-panel__accordions__buttons__button {
	padding: 1rem 0.9375rem;
	background-color: #8b004f;
	color: #fff;
	text-decoration: none;
}
.cookie-panel__accordions--active {
	transform: none;
}
.cookie-panel .cookie-panel__banner__content__buttons__button {
	text-decoration: none !important;
}
.cookie-panel__background {
	position: fixed;
	inset: 0px;
	background-color: #fff;
	opacity: 0.9;
	width: 100%;
	height: 100%;
}
.cookie-panel__banner {
	padding: 3rem;
	position: relative;
	background: #8b004f;
	z-index: 2;
}
.cookie-panel__banner__content__copy a {
	color: #fff;
	text-decoration: underline;
}
.cookie-panel__banner__content__buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-size: 0.8rem;
}
.cookie-panel__banner__content__buttons__button {
	padding: 1rem 0.9375rem;
	background: #fff;
	color: #000;
}
.cookie-panel__banner__content__buttons__button--dropdown {
	position: relative;
	padding: 1rem 2rem 0.9375rem 0.9375rem;
}
.cookie-panel__banner__content__buttons__button--dropdown .cookie-panel__banner__content__buttons__link__icon {
	position: absolute;
	top: 50%;
	right: 0.5rem;
	transform: translateY(-50%);
	max-width: 1rem;
	width: 100%;
	padding-bottom: 1rem;
	pointer-events: none;
}
.cookie-panel__banner__content__buttons__button--dropdown .cookie-panel__banner__content__buttons__link__icon span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	height: 0.0625rem;
	width: 1rem;
	border-radius: 0.0625rem;
	background-color: #000;
	transition: transform 0.15s ease-in-out;
}
.cookie-panel__banner__content__buttons__button--dropdown .cookie-panel__banner__content__buttons__link__icon span:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.cookie-panel__banner__content__buttons__button--dropdown .cookie-panel__banner__content__buttons__link__icon--active span:last-child {
	transform: translateX(-50%) translateY(-50%);
}
.cookie-panel__banner__content__buttons--link {
	justify-content: flex-end;
}
.cookie-panel--active {
	position: absolute;
}
.cookie-panel--remove {
	display: none;
}
.cookie-panel--add {
	display: block;
}

.accordions {
	width: 100%;
	padding-top: 3rem;
	padding-bottom: 3rem;
	text-align: left !important;
}
.accordions span {
	text-align: left !important;
}
.accordions td:first-of-type {
	min-width: 250px !important;
}
.accordions tr {
	margin-bottom: 1rem !important;
}
.accordions__accordion {
	margin-bottom: 1.5rem;
	border: 0.0625rem solid #e2e8f0;
}
.accordions__accordion__label {
	display: block;
	position: relative;
	width: 100%;
	padding: 1.25rem 4.125rem 1.25rem 1.25rem;
	margin: 0;
	background: transparent;
	border: 0;
	text-align: left;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	color: #4797d5;
	cursor: pointer;
}
.accordions__accordion__label:hover {
	outline: none;
}
.accordions__accordion__label--active .accordions__accordion__icon span:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(0);
}
.accordions__accordion__label--active + .accordions__accordion__reveal {
	max-height: 22rem;
}
.accordions__accordion__icon {
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	max-width: 1rem;
	width: 100%;
	padding-bottom: 1rem;
	pointer-events: none;
}
.accordions__accordion__icon span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	height: 0.1875rem;
	width: 1rem;
	border-radius: 0.0625rem;
	background-color: #1184c6;
	transition: transform 0.15s ease-in-out;
}
.accordions__accordion__icon span:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.accordions__accordion__reveal {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.15s ease-in-out;
}
.accordions__accordion__reveal__inner {
	padding: 0 4.375rem 1.25rem 1.25rem;
}
.accordions__accordion__reveal__text {
	margin: 0;
	color: white;
}
.accordions__accordion:last-child {
	margin: 0;
}
.accordions--cookie {
	z-index: 1;
	position: relative;
	background-color: #fff;
}
.accordions--cookie .accordions__accordion {
	border: none;
}
.accordions--cookie .accordions__accordion__label {
	display: flex;
	justify-content: space-between;
	border-radius: 1rem;
	background: #8b004f;
	color: #fff;
}
.accordions--cookie .accordions__accordion__label__text span {
	padding-right: 1rem;
}
.accordions--cookie .accordions__accordion__label--active + .accordions__accordion__reveal {
	max-height: 100%;
}
.accordions--cookie .accordions__accordion__icon span {
	background-color: #fff;
}
.accordions--cookie .accordions__accordion__reveal {
	color: #000;
}
.accordions--cookie .accordions__accordion__reveal__inner {
	padding: 2rem 1.5rem;
}
.accordions--cookie .accordions__accordion__reveal__text {
	padding-bottom: 2rem;
	color: #000;
}
.table {
	display: table;
	width: 100%;
	border: none;
	border-collapse: collapse;
}
.table__description {
	display: flex;
	width: 100% !important;
	padding: 0;
	margin: 0;
}
.table thead {
	display: none;
}
.table tbody tr {
	display: flex;
	flex-direction: column;
}
.table tbody tr:nth-child(even) {
	background-color: rgba(139, 0, 79, 0.1254901961);
	color: grey;
}
.table th {
	padding: 0.9375rem 1.25rem;
}
.table td {
	padding: 0;
}
.table td span {
	display: inline-block;
	width: 6.875rem;
	padding-right: 1rem;
	text-align: right;
	font-weight: 700;
}
.table td:last-child {
	column-span: all;
}
.switch {
	cursor: pointer;
	height: 26px;
}
.switch__label {
	position: relative;
	display: inline-block;
	width: 46px;
	height: 26px;
	border: 3px solid #fff;
	background-color: rgba(139, 0, 79, 0.5647058824);
	border-radius: 20px;
	cursor: pointer;
	z-index: 3;
}
.switch__label::after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #fff;
	top: 3px;
	left: 3px;
	transition: all 0.3s;
	cursor: pointer;
}
.switch__checkbox {
	display: none;
}
.switch__checkbox:checked + .switch__label {
	background-color: #02a502;
}
.switch__checkbox:checked + .switch__label::after {
	left: 22px;
}

.all-cookies {
	margin-right: 0.75rem;
}

.details .title {
	font-size: var(--x3);
	float: left;
	clear: left;
	width: 7.5em;
}
.details dd {
	overflow: hidden;
	margin: 1em 0;
}

.dialog {
	--spacing: 1em;
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.05), 0 0 100px rgba(0, 0, 0, 0.3);
	background: var(--body-bg);
	color: var(--body-color);
	padding: var(--x6);
}
.dialog.alignwide {
	--wrap: point(md);
}
.dialog .alignwide,
.dialog .alignfull {
	width: calc(100% + var(--padding) * 2);
	margin-left: calc(var(--padding) * -1);
}
.dialog > .alignfull:first-child,
.dialog > .alignwide:first-child {
	margin-top: calc(var(--padding) * -1);
}
.dialog > .alignfull:last-child,
.dialog > .alignwide:last-child {
	margin-bottom: calc(var(--padding) * -1);
}
.dialog[role=document] {
	--padding: var(--x6);
	width: 100%;
	max-width: 37.5rem;
}

.entry {
	margin: 10% 0;
}
.entry .media {
	max-height: 25em;
}
.entry .content {
	--spacing: 0.75em;
	margin: 2.6666666667% 0;
}
.entry .content :not(a):not(.title) {
	opacity: 0.75;
}

.flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flex\:cols > * + * {
	margin-left: var(--x7);
}
.flex\:left {
	justify-content: flex-start;
}
.flex\:right {
	justify-content: flex-end;
}
.flex\:center {
	justify-content: center;
}
.flex\:justify > :first-child:last-child {
	margin-left: auto;
	margin-right: auto;
}

.font-size__2 {
	font-size: 115%;
}
.font-size__3 {
	font-size: 122.5%;
}

.gform_wrapper {
	--gap: calc(var(--s1) * 2 / 3);
}
.gform_wrapper *:-ms-input-placeholder {
	text-decoration: underline;
}
.gform_wrapper *::placeholder,
.gform_wrapper .is-placeholder {
	text-decoration: underline;
}

.gform_confirmation_message,
.validation_error {
	margin: 0 0 1.5em;
	padding: 1em;
	border-radius: 0;
	border: 1px solid #c6f6d5;
	background: #effff4;
	color: #2f855a;
}

.validation_error {
	border-color: #fed7d8;
	background: #fff5f5;
	color: #c53030;
}

.validation_message {
	color: #c53030;
}

.gfield {
	margin: 0 0 0.75em;
}
.gfield.is-type-consent {
	margin: var(--gap) 0 calc(var(--gap) * 2);
}
.gfield.is-type-hidden {
	display: none;
}

.gfield_error {
	color: #c53030;
}
.gfield_error input,
.gfield_error select,
.gfield_error textarea {
	border-color: #c53030;
}

.gfield_label {
	display: block;
	opacity: 0.8;
	margin: 0.5em 0 0.375em;
	text-transform: uppercase;
}

.gfield_description {
	margin: 0.25em 0 1.5em;
}

.ginput_complex {
	display: flex;
}

.gform-body input,
.gform-body textarea,
.gform-body select {
	border-radius: 0 !important;
	background-color: #dfdfdf !important;
	border: none !important;
}
.gform-body input.search-input,
.gform-body textarea.search-input,
.gform-body select.search-input {
	background-color: transparent !important;
}

select {
	background-color: transparent !important;
	border: 1px solid #dfdfdf !important;
}

.gform_required_legend {
	display: none;
}

label {
	color: #3c95a3 !important;
	opacity: 1 !important;
}

.grid {
	display: grid;
	grid-gap: 2em 1.5em;
	grid-template-columns: repeat(var(--columns, 4), 1fr);
}

.header {
	margin: 5% 0;
	font-size: 1.25em;
}

li.home a {
	font-size: 1px !important;
	position: relative;
	visibility: hidden;
}
li.home a::before {
	visibility: visible;
	position: absolute;
	top: 0;
	display: block !important;
	font: var(--fa-font-solid);
	transform: translateY(-50%);
	font-weight: 400;
	font-size: 1.4rem !important;
	content: "\f015" !important;
	color: #3c95a3;
	margin-right: 2rem;
}

ul.menu > li {
	display: flex;
	align-items: center;
	height: auto;
}
ul.menu > li > a {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	color: #000;
}

.home-banner .wp-block-cover__inner-container {
	max-width: 27rem;
}

.wp-block-search__button svg {
	min-width: 35px;
	min-height: 35px;
}

li.is-parent {
	height: -webkit-fit-content !important;
	height: -moz-fit-content !important;
	height: fit-content !important;
	width: -webkit-fit-content !important;
	width: -moz-fit-content !important;
	width: fit-content !important;
	flex-direction: column;
}

.high-contrast div::before {
	opacity: 0.75 !important;
	color: #ffc701;
}
.high-contrast div.wrap.content:first-child > div {
	border-bottom: 0.5rem solid #fff;
}
.high-contrast body {
	background-color: #000;
}
.high-contrast main {
	background-color: #000;
}
.high-contrast .site-topbar {
	background-color: #000;
	color: #ffc701;
}
.high-contrast .site-header {
	background-color: #000;
	color: #ffc701;
}
.high-contrast .site-header .sub-menu {
	background: #000;
	border: 1px solid #fefefe;
}
.high-contrast button {
	color: #ffc701;
}
.high-contrast a.button {
	color: #ffc701;
	background-color: #000;
	border: 1px solid #fefefe;
}
.high-contrast a.wp-block-button__link {
	color: #ffc701;
	background-color: #000;
	border: 1px solid #fefefe;
}
.high-contrast div {
	color: #ffc701;
}
.high-contrast .site-footer-widgets {
	background-color: #000;
}
.high-contrast .site-footerbar {
	background-color: #000;
}
.high-contrast .site-footer {
	background-color: #000;
}
.high-contrast .site-navbar {
	background-color: #000;
}
.high-contrast .card {
	background-color: #000;
	border: 1px solid #fefefe;
}
.high-contrast article.thumbnail {
	border: 1px solid #fefefe;
}
.high-contrast .card.is-style-link:hover {
	background: #2b2b2b;
}
.high-contrast .has-lighter-background-color {
	background-color: #000 !important;
}
.high-contrast .has-darkest-background-color {
	background-color: #000 !important;
}
.high-contrast .has-lightest-background-color {
	background-color: #000 !important;
}
.high-contrast .has-white-background-color {
	background-color: #000 !important;
}
.high-contrast .res {
	border: 1px solid #fefefe;
}
.high-contrast .wp-block-cover__inner-container {
	font-weight: bold;
}
.high-contrast input, .high-contrast textarea {
	color: #FFF5F5;
}
.high-contrast .input-button {
	background-color: #000000;
	color: #fff;
}
.high-contrast .input-button input {
	color: #fff;
}
.high-contrast button.button {
	background-color: #000000;
	border: 1px solid #fefefe;
}
.high-contrast .has-mid-color {
	color: #ffc701;
}
.high-contrast .has-title-font-size h1, .high-contrast .has-title-font-size h2, .high-contrast .has-title-font-size h3, .high-contrast .has-title-font-size h4, .high-contrast .has-title-font-size h5, .high-contrast .has-title-font-size h6 {
	color: #ffc701;
}
.high-contrast select {
	color: #fff;
	background-color: #000;
}
.high-contrast select option {
	background-color: #000;
}
.high-contrast .wp-block-spacer {
	border: none !important;
}
.high-contrast .cookie-panel__banner {
	background-color: #000;
}
.high-contrast .cookie-panel__accordions__buttons__button {
	background-color: #000;
}
.high-contrast .accordions--cookie .accordions__accordion__label {
	background-color: #000;
}
.high-contrast .accordions__accordion__reveal__inner .table {
	border: 1px solid #ffc701;
}
.high-contrast .accordions__accordion__reveal__inner .table thead {
	background-color: #000 !important;
}
.high-contrast .accordions__accordion__reveal__inner .table thead tr {
	color: #ffc701;
}
.high-contrast .accordions__accordion__reveal__inner .table tbody tr {
	margin-bottom: 0 !important;
	background-color: #000 !important;
}
.high-contrast .accordions__accordion__reveal__inner .table tbody tr:nth-child(even) {
	background-color: #ffc701 !important;
}
.high-contrast .accordions__accordion__reveal__inner .table__description {
	color: #000;
	background-color: #ffc701;
}
.high-contrast .accordions tr {
	margin: 0;
}
.high-contrast .accordions__accordion__reveal__inner {
	background: #000 !important;
}
.high-contrast .accordions__accordion__reveal__inner p {
	color: #ffc701 !important;
}
.high-contrast svg {
	color: #ffc701 !important;
}
.high-contrast .res img {
	background-color: #ffc701 !important;
}
.high-contrast .has-white-color {
	color: #ffc701 !important;
}
.high-contrast .has-theme-color {
	color: #ffc701 !important;
}

.icon {
	width: 1.5em;
	vertical-align: middle;
}

.iconset {
	--link-decoration: none;
	display: inline-flex;
	font-size: 1.5em;
	line-height: 1;
}
.iconset > * + * {
	margin-left: 1em;
}
.iconset img,
.iconset svg {
	width: auto;
	height: 1em;
	transition: fill 150ms;
}
.iconset a:hover > svg > svg {
	fill: var(--color, currentColor);
}

.input-button {
	--button-size: 0.75em;
	--button-text: none;
	--button-pad: 0 0.75em;
	--button-min: 0;
	display: flex;
	padding: 3px;
	border: 1px solid;
	border-radius: var(--border-radius);
	background: #fff;
}
.input-button > input {
	flex: 1 0 1px;
	padding: 0.5em;
	background: transparent;
	color: #27323c;
}

.input-label {
	font-weight: var(--bold-weight);
	display: inline-block;
	font-size: 0.875em;
	line-height: 1.25;
	margin-bottom: 1.1428571429em;
}

.low-contrast {
	opacity: 0.7;
}

.menu\:inline {
	display: flex;
}
.menu\:inline > li + li {
	margin-left: var(--x7);
}
.menu\:inline > li > a {
	display: block;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 0.9375em;
}
.menu\:inline > li > a::after {
	content: " ";
	display: block;
	width: 0;
	border-top: 1px solid;
	transition: width var(--speed);
}
.menu\:inline > li:hover > a::after,
.menu\:inline > li > a:hover::after {
	width: 100%;
}
.menu\:inline ul {
	white-space: nowrap;
	position: absolute;
	padding: 1em 0;
	margin-left: -1.5em;
	opacity: 0;
	visibility: hidden;
	transition: 0.6s;
	transition-property: opacity, visibility;
	box-shadow: var(--shadows);
	background: var(--bg);
	color: var(--color);
}
.menu\:inline ul ul {
	top: -1.375em;
	left: 100%;
	min-width: 0;
	margin-left: 0;
}
.menu\:inline ul li {
	margin: 0.375em 0;
	padding: 0 1.5em;
}
.menu\:inline ul a:hover {
	text-decoration: underline;
}
.menu\:inline .is-open > ul,
.menu\:inline li:hover > ul {
	opacity: 1;
	visibility: visible;
}

.menu\:list > li + li {
	border-top: 1px solid var(--lighter-color);
}
.menu\:list > li > a {
	padding: 0.75em 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu\:list > li > ul > li:first-child {
	margin-top: 0;
}
.menu\:list > li > a::after,
.menu\:list .is-parent > a::after {
	content: " ";
	display: inline-block;
	vertical-align: middle;
	width: 0.625rem;
	height: 0.625rem;
	vertical-align: 0.0625rem;
	margin: 0 0 0.125em 0.5em;
	border-style: solid;
	border-width: 0 2px 2px 0;
	transform: rotate(-45deg);
	transform-origin: 65% 65%;
	transition: transform var(--speed);
}
.menu\:list li > a:hover::after {
	transform: translateX(-0.25em) rotate(-45deg);
}
.menu\:list .is-parent > a::after {
	transform: rotate(45deg);
}
.menu\:list .is-parent > a:hover::after {
	transform: translateX(-0.25em) rotate(45deg);
}
.menu\:list .is-parent.is-open > a::after {
	transform: rotate(-45deg);
}
.menu\:list ul {
	list-style-position: inside;
	/* flag for handling sub menu toggle, see components/menu.js */
	overflow: hidden;
	height: 0;
	transition: height var(--speed);
}
.menu\:list ul ul {
	margin-left: 1em;
}
.menu\:list ul li {
	margin: 0.5em 0;
}
.menu\:list ul li:last-child {
	margin-bottom: 0.75em;
}
.menu\:list .is-open > ul {
	height: var(--height, auto);
}

.menu {
	line-height: 1.25;
}

.menu a {
	text-decoration: none;
}

.meta {
	--link-decoration: none;
	margin: 0 0 1.5em;
	opacity: 0.75;
	font-size: 0.875em;
}
.meta > * + * {
	margin-left: 1.125em;
}
.meta > * + *::before {
	content: "•";
	position: absolute;
	margin-left: -1em;
}

.navigation {
	--link-decoration: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 4% 0 5.3333333333%;
}
.navigation::before {
	content: " ";
	display: block;
	width: 100%;
	height: 0.25em;
	margin: 0 0 2.6666666667%;
	border-radius: var(--border-radius);
	background: var(--lighter-color);
}
.navigation .label {
	opacity: 0.75;
	font-size: 0.7em;
	margin-right: var(--x7);
}
.navigation .title {
	max-width: 17.5em;
}
.navigation .title .label {
	display: block;
	font-size: 1em;
	text-transform: uppercase;
}
.navigation .page-numbers {
	font-weight: var(--bold-weight);
	margin: 0 0.25em;
	padding: 0.275em 0;
	min-width: 2em;
	text-align: center;
	border-radius: var(--border-radius);
}
.navigation .page-numbers.dots {
	margin-top: -0.5em;
	padding: 0;
	min-width: 0;
}
.navigation .current,
.navigation a.page-numbers:hover {
	background: var(--lighter-color);
	color: var(--darker-color);
}

.title:first-of-type {
	margin-right: 1rem;
}

.popup .sr-only {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.popup-active {
	overflow: hidden;
}

.popup-active .popup {
	opacity: 1;
	visibility: visible;
	transition: opacity 150ms linear;
}

.popup-active .popup-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: all 300ms ease-out 300ms;
}

.popup,
.popup-content {
	opacity: 0;
	visibility: hidden;
	transition: none;
}

.popup-content {
	transform: translateY(1rem);
}

.popup {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	overflow-x: hidden;
	overflow-y: auto;
	display: flex;
	/*justify-content: center;*/
	align-items: center;
	/*height: 100%;
	width: 100%;*/
	background: rgba(0, 0, 0, 0.4);
}

.popup-dialog {
	position: relative;
	width: 100%;
	max-width: 48rem;
	margin: auto;
	/*height: 100%;*/
	/*max-height: 90%;*/
}

.popup-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.05), 0 0 100px rgba(0, 0, 0, 0.3);
}

.popup-image {
	position: relative;
	flex-shrink: 0;
	height: 0;
	padding-top: 50%;
}

.popup-image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center center;
	   object-position: center center;
}

.popup-body {
	overflow: auto;
	background: #fff;
	padding: 2rem;
}

.popup-body > :last-child {
	margin-bottom: 0;
}

.popup-body h3 {
	margin-bottom: 0.66em;
	line-height: 1.25;
}

.popup-body p {
	font-size: 0.875rem;
	line-height: 1.5;
}

.popup-actions {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.popup-dismiss {
	/*reset browser button styles*/
	appearance: none;
	-webkit-appearance: none;
	text-rendering: auto;
	letter-spacing: normal;
	word-spacing: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	display: inline-flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-color: transparent;
	font: inherit;
	padding: 0;
	margin: 0;
	border-width: 0;
	border-style: none;
	border-color: transparent;
	position: absolute;
	top: 1em;
	right: 1em;
	height: 2rem;
	width: 2rem;
	transition: all 300ms ease;
}

.popup-dismiss {
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
}

.popup-dismiss:hover {
	background: #fff;
	background: rgb(0, 0, 0);
}

.popup-dismiss svg {
	display: block;
	height: 1rem;
	width: 1rem;
}
.product-query-bar {
	background: #e7e7e7;
	position: absolute;
	width: 100vw;
	left: 0;
	padding: 0.5rem 0;
}
.product-query-bar-container {
	display: flex;
	justify-content: space-between;
	width: 80vw;
	max-width: 72rem;
	margin: 0 auto;
}
.product-query-bar .results {
	display: flex;
	align-items: center;
}
.product-query-bar .results p {
	font-weight: 600;
	margin: 0 !important;
	color: #1f2a54;
}
.product-query-bar .filter {
	display: flex;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
}
.product-query-bar .filter select {
	padding-right: 3rem !important;
	border: 1px solid #6e6e6e !important;
	border-radius: 24px !important;
	color: #6e6e6e !important;
	text-align: center;
	text-transform: capitalize;
	font-weight: bold;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.product-query-bar .filter p {
	margin: 0 !important;
	width: 100%;
}
.product-query-bar .filter::before {
	content: "";
	position: absolute;
	right: 1.8rem;
	top: 25px;
	width: 0.75rem;
	height: 0.125rem;
	background: #6e6e6e;
	transform: rotate(-45deg);
}
.product-query-bar .filter::after {
	content: "";
	position: absolute;
	right: 29px;
	top: 18px;
	width: 0.75rem;
	height: 0.125rem;
	background: #6e6e6e;
	transform: rotate(45deg);
}

.products-table {
	background-color: #eaf4fa;
	padding: 3rem 1rem;
}
.products-table-container {
	max-width: 80vw;
	margin: 0 auto;
}
.products-table-container table {
	border-collapse: collapse;
}
.products-table-container table thead tr th {
	background-color: #34828e;
	color: white;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.products-table-container table thead tr th:nth-child(1) {
	border-radius: 10px 0 0 0;
	padding-left: 2rem;
}
.products-table-container table thead tr th:last-of-type {
	border-radius: 0 10px 0 0;
}
.products-table-container table tbody tr td {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.products-table-container table tbody tr td p {
	display: none;
}
.products-table-container table tbody tr:nth-child(even) {
	background-color: #d7e7e9;
}
.products-table-heading-quantity {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1rem;
	position: relative;
}
.products-table-heading-quantity select {
	max-height: 2.7rem;
	border-radius: 6px;
	padding: 0.55em 0.8em;
	padding-right: 2.5rem;
}
.products-table-heading-quantity::before {
	content: "";
	position: absolute;
	left: 6.25rem;
	top: 2.95rem;
	width: 0.75rem;
	height: 0.125rem;
	background: #6e6e6e;
	transform: rotate(-45deg);
}
.products-table-heading-quantity::after {
	content: "";
	position: absolute;
	left: 6.25rem;
	top: 2.5rem;
	width: 0.75rem;
	height: 0.125rem;
	background: #6e6e6e;
	transform: rotate(45deg);
}
.products-table-heading-pagination {
	display: flex;
	gap: 0.25rem;
	border: 1px solid #a8a8a8;
	border-radius: 6px;
}
.products-table-heading-pagination span {
	cursor: pointer;
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	user-select: none;
	/* Standard syntax */
}
.products-table-heading-pagination span:first-of-type {
	padding-right: 0.5rem;
	margin-right: 0 !important;
	border-right: 1px solid #a8a8a8;
}
.products-table-heading-pagination span:last-of-type {
	padding-left: 0.5rem;
	margin-left: 0 !important;
	border-left: 1px solid #a8a8a8;
}
.products-table-heading-pagination span.page-numbers {
	padding: 0.25rem 0.95rem;
}
.products-table-heading-pagination span.page-numbers.active {
	border: 1px solid #222c62;
}
.products-table-heading-pagination span.page-numbers {
	line-height: 31px;
}
.products-table-heading-pagination span.page-prev, .products-table-heading-pagination span.page-next {
	line-height: 31px;
	margin: 0.25rem 0.6rem;
}
.products-table-heading-search {
	width: 1.4rem;
	position: relative;
}
.products-table-heading-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
}
.products-table-heading-container-right {
	display: flex;
	gap: 1.25rem;
	align-items: center;
}
.products-table .search-input {
	border: 1px solid #6e6e6e !important;
	border-radius: 24px !important;
	color: #6e6e6e !important;
	text-align: center;
	text-transform: capitalize;
	font-weight: bold;
	padding: 0.5rem !important;
	width: 6rem;
}

#searchIcon {
	fill: #34828e;
}

.schema-faq-section {
	margin: 1.5em 0 0;
	padding: 0 0 1.5em;
	border-bottom: 1px solid var(--light-color);
}

.schema-faq-answer img {
	margin-top: 1em;
}

button.schema-faq-question {
	display: block;
	width: 100%;
	text-align: inherit;
}
button.schema-faq-question::before {
	content: " ";
	float: right;
	width: 0.75em;
	height: 0.75em;
	margin: 0.325em 0 0 1.5em;
	border-style: solid;
	border-width: 0 2px 2px 0;
	transform: rotate(-45deg);
	transition: transform var(--speed);
}

.is-open > button.schema-faq-question::before {
	transform: rotate(45deg);
}

.has-js .schema-faq-answer {
	overflow: hidden;
	margin: 0;
	height: 0;
	transition: var(--speed);
	visibility: hidden;
}

.is-open > .schema-faq-answer {
	height: var(--height, auto);
	visibility: visible;
	margin-top: 1em;
}

.slider {
	position: relative;
	overflow: hidden;
}
.slider blockquote {
	align-self: center;
}
.slider.alignwide blockquote {
	padding: 0 5%;
}
.slider-nav {
	text-align: center;
	margin-top: var(--x5);
}
.slider-page {
	font-size: 0.875em;
	display: inline-block;
	border-radius: 100%;
	width: 1em;
	height: 1em;
	margin: 0 0.25em;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: rgba(0, 0, 0, 0.25);
}
.slider-page.is-active {
	background: var(--theme-color);
}

.has-js .slider .slides {
	overflow: visible;
	-ms-scroll-snap-type: none;
	    scroll-snap-type: none;
	transform: translate3d(var(--offset, 0px), 0px, 0px);
	transition: transform var(--speed);
}
.has-js .slider .slides > * {
	scroll-snap-align: none;
	cursor: grab;
}
.has-js .slider .slides > *:active {
	cursor: grabbing;
}

.slides {
	overflow-x: auto;
	overflow-y: hidden;
	-ms-scroll-snap-type: x mandatory;
	    scroll-snap-type: x mandatory;
	display: flex;
	--count: var(--columns, 1);
	--width: calc(100 / var(--count));
}
.slides > * {
	-webkit-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	scroll-snap-align: start;
	flex: 0 0 auto;
	width: calc(100% / var(--count) - 1.5em * (var(--count) - 1) / var(--count));
	margin: 0 1.5em 0 0;
}

.thumbnail {
	--link-color: inherit;
	--link-decoration: none;
}
.thumbnail > * {
	margin: 0;
}
.thumbnail .meta {
	font-size: 0.75em;
}
.thumbnail .title {
	font-size: var(--x3);
}
.thumbnail .media {
	margin: 0 0 5%;
}
.thumbnail .media > * {
	transition: transform var(--speed);
}
.thumbnail:hover .media > * {
	transform: scale(1.1);
}

.widget-title {
	margin: 0 0 0.75em;
	padding: 0 0 0.75em;
	border-bottom: 1px solid var(--lighter-color);
}

.widget_media_image img {
	width: 100%;
}

.wp-block-columns {
	justify-content: space-between;
}

.wp-block-column > :first-child:last-child {
	min-height: 100%;
}

.wp-block-columns .wp-block-column .wp-block-image img {
	aspect-ratio: 1/1;
	border-radius: 12px;
}

.wp-block-cover-image,
.wp-block-cover {
	padding: 5%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.wp-block-cover.has-background-gradient {
	color: #fff;
}
.wp-block-cover__inner-container * {
	--spacing-top: 0.5rem;
	--spacing-bottom: 1rem;
}
.wp-block-cover .wp-block-cover__inner-container {
	color: inherit;
	width: 100% !important;
	text-align: inherit;
}
.wp-block-cover.is-position-top-center, .wp-block-cover.is-position-center-center, .wp-block-cover.is-position-bottom-center {
	text-align: center;
}
.wp-block-cover.is-position-top-right, .wp-block-cover.is-position-center-right, .wp-block-cover.is-position-bottom-right {
	text-align: right;
}

.wp-block-cover__ident {
	position: absolute;
	top: 0;
	width: auto;
	height: 100%;
	color: var(--accent-color, var(--dark-color));
	opacity: 0.8;
}
.wp-block-cover__ident.is-position-left {
	left: 0;
	transform: scaleX(-1);
}
.wp-block-cover__ident.is-position-right {
	right: 0;
}

.contact-us-cta {
	background: #e7e7e7 !important;
	color: #fff !important;
}
.contact-us-cta h4, .contact-us-cta p {
	color: #000 !important;
}
.contact-us-cta .wp-block-cover__background::after {
	content: "";
	display: block;
	background-image: url(../../../uploads/2024/09/waves.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 115%;
	z-index: 0;
}
.contact-us-cta .wp-block-cover__background {
	background-color: transparent !important;
}

.hero-text {
	max-width: 27rem;
}

.has-js .wp-block-gallery figcaption {
	display: none;
}

.wp-block-group {
	border-radius: var(--border-radius);
}
.wp-block-group__inner-container {
	width: 90%;
	margin: auto;
	max-width: var(--wrap);
}
.wp-block-group__inner-container::before, .wp-block-group__inner-container::after {
	content: " ";
	display: table;
	margin: 0 0 7.5%;
}
.wp-block-group__inner-container::after {
	margin: 7.5% 0 0;
}

blockquote p {
	margin: 1em 0;
	font-size: var(--x5);
	font-style: normal;
	line-height: 1.333;
}

.wp-block-pullquote p,
.wp-block-quote.is-style-large p {
	font-size: var(--x6);
	font-style: normal;
	line-height: 1.333;
}

blockquote cite,
.wp-block-quote .wp-block-quote__citation,
.wp-block-pullquote .wp-block-pullquote__citation {
	font-weight: var(--bold-weight);
	display: block;
	text-align: center;
	text-transform: none;
	font-style: normal;
	font-size: 1em;
	opacity: 0.8;
	color: inherit;
}

blockquote,
.wp-block-quote,
.wp-block-pullquote {
	color: inherit;
}
blockquote .icon,
.wp-block-quote .icon,
.wp-block-pullquote .icon {
	display: block;
	margin-left: auto;
	margin-right: auto;
	font-size: var(--x5);
	color: var(--theme-color);
}

.wp-block-pullquote blockquote {
	text-align: inherit !important;
}
.wp-block-pullquote.is-style-solid-color {
	padding: 5%;
}
.wp-block-pullquote.is-style-solid-color .icon {
	color: inherit;
	opacity: 0.5;
}
.wp-block-pullquote.is-style-solid-color blockquote {
	max-width: none;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
	margin: 0.5em 0;
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	border-radius: 0;
}

.with-sidebar .alignfull,
.with-sidebar .alignwide {
	width: 100%;
	margin-left: 0;
}

.custom-logo {
	width: calc(0.75px * var(--width) * var(--logo-scale, 100) / 100);
	height: auto;
	max-width: none;
}

.custom-logo-link {
	margin: 1.5em 0;
}

.hero-slider {
	padding: 0 !important;
}
h1.hero-text {
	line-height: 50px !important;
}

.overlay {
	z-index: 3000;
	position: fixed;
	overflow: auto;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
}
.overlay[aria-hidden] {
	visibility: hidden;
}
.overlay-nav {
	font-size: var(--xx);
	position: absolute;
	z-index: 2;
	top: 50%;
	width: 2em;
	height: 2em;
	margin-top: -1em;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.overlay-nav:hover {
	background: var(--theme-color);
	color: var(--white-color);
}
.overlay-nav::before {
	content: " ";
	position: absolute;
	top: 0.5em;
	left: 0.25em;
	width: 1em;
	height: 1em;
	border-style: solid;
	border-width: 0 2px 2px 0;
	transform: rotate(-45deg);
}
.overlay-nav[data-overlay=prev] {
	left: 0;
}
.overlay-nav[data-overlay=prev]::before {
	left: 0.75em;
	transform: rotate(135deg);
}
.overlay-nav[data-overlay=next] {
	right: 0;
}
.overlay.is-gallery {
	background: rgba(0, 0, 0, 0.85);
}
.overlay.is-gallery > figure {
	max-width: 64.375rem;
	text-align: center;
}
.overlay.is-gallery > figure img {
	display: block;
	width: auto;
	margin: auto;
	-o-object-fit: contain;
	   object-fit: contain;
	max-height: var(--height, 100vh);
}
.overlay.is-gallery > figure figcaption {
	margin: 1em auto;
	display: block;
	max-width: 37.5rem;
}

.has-overlay body {
	overflow: hidden;
}

.sidebar .widget {
	margin: 10% 0;
}

.site-copyright {
	font-size: 0.875em;
}

.site-footer-links {
	font-size: 0.875em;
}
.site-footer-links > * {
	display: inline-block;
}
.site-footer-links > *::before {
	content: "•";
	padding: 0 0.5em 0 0.375em;
}
.site-footer-links > :first-child::before {
	content: none;
}

.site-footer {
	--spacing: 1em;
	--link-decoration: none;
	border-top: 1px solid var(--footer-border-color, var(--footer-bg));
	background: var(--footer-bg);
	color: var(--footer-color);
	overflow: hidden;
	position: relative;
}
.site-footer-widgets {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	position: relative;
	overflow: visible;
}
.site-footer-widgets-container-second::after {
	content: "";
	display: block;
	background-image: url(../../../uploads/2024/10/waves-new.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	opacity: 0.5;
	left: 0;
	bottom: 3.8rem;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.site-footer-widgets .widgets {
	position: relative;
	z-index: 2 !important;
}
.site-footer-widgets h3 {
	color: #000;
	font-size: 15px;
}
.site-footer-widgets > * {
	margin: 1.5em 0;
}
.site-footer-widgets .widget {
	margin: 0.5em 0;
}
.site-footer-widgets .widget p {
	margin: 0.2em 0 !important;
}
.site-footer-widgets .widget li li,
.site-footer-widgets .widget li + li {
	margin-top: 0.666em;
}
.site-footer-widgets .widget p,
.site-footer-widgets .widget a {
	font-size: 15px;
}
.site-footer-widgets .widget-title {
	font-size: 1em;
	margin-bottom: 0.5em;
}
.site-footer-widgets .widget_subscribe {
	max-width: 18.75em;
	min-width: 15em;
}
.site-footer-widgets .widget_social-networks {
	margin: 2em 0;
}
.site-footer-widgets .widget_social-networks .iconset a {
	font-size: 18px;
}

.site-footer-widgets .widgets:nth-child(4) .widget:last-of-type .wp-block-columns {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	width: 6.2rem;
}
.site-footer-widgets .widgets:nth-child(4) .widget:last-of-type img {
	width: 2rem !important;
	max-width: 2rem !important;
	margin-right: 0.5rem;
}

.site-footerbar {
	background: var(--footerbar-bg, rgba(255, 255, 255, 0.05));
	color: var(--footerbar-color, inherit);
	padding: 1.4285714286em 0 1.7142857143em;
	font-size: 0.875em;
}

.site-header {
	background: var(--header-bg);
	color: var(--header-color);
}
.site-header-widgets {
	margin: 0 !important;
}
.site-header-widgets .widget.widget_button a.button {
	background-color: #3c95a3;
}
.site-header .wrap.flex .site-header-widgets .widget_menu > .menu li {
	padding-bottom: 3rem;
}
.site-header .wrap.flex .widget_button,
.site-header .wrap.flex .widget_search {
	padding-bottom: 3rem;
}
.site-header .wrap.flex .site-menu-toggle {
	padding-bottom: 20%;
}
.site-header .sub-menu {
	background: #f0f0f0;
	top: 8.9rem;
	left: 50%;
	transform: translateX(-50%);
	color: #25316a;
	padding: 2rem;
	padding-bottom: 1rem;
	border-radius: 0 0 20px 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 80%;
	max-width: 75rem;
}
.site-header .sub-menu li {
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 0 !important;
}
.site-header .sub-menu li:hover {
	color: #33a7d8 !important;
}
.site-header .sub-menu li::before {
	content: "";
	width: 1rem;
	height: 1rem;
	background-image: url(..//icons/solid/chevron-right-blue.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: -0.25rem;
	top: 50%;
	transform: translateY(-50%);
}
.site-header .sub-menu li a {
	color: #25316a;
	font-weight: 500;
}
.site-header .sub-menu li a:hover {
	color: #33a7d8 !important;
}

.search-icon {
	fill: #000 !important;
	transform: scale(-1, 1);
}

.wp-block-group__inner-container::before {
	content: none !important;
}

.site-masthead {
	position: relative;
	position: -webkit-sticky;
	position: sticky;
	z-index: 1000;
	top: 0;
	transition: transform var(--speed);
}
.site-masthead.is-hidden {
	transform: translate3d(0, -120%, 0);
}
.has-site-menu .site-masthead.is-hidden {
	transform: translate3d(0, 0, 0);
}
.admin-bar .site-masthead {
	top: 32px;
}

.site-menu-toggle {
	position: relative;
	display: inline-block;
	width: 1.75em;
	height: 1.125em;
}
.site-menu-toggle::before, .site-menu-toggle::after,
.site-menu-toggle > * {
	content: " ";
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	text-indent: 100%;
	white-space: nowrap;
	margin-top: -1px;
	border-radius: 4px;
	background: var(--header-color, var(--body-color));
	transform: translateY(0.5625em);
	transition: var(--speed);
	transition-property: opacity, width, transform;
}
.has-site-menu .site-menu-toggle > * {
	width: 0;
	opacity: 0;
}
.site-menu-toggle::before {
	transform: translateY(-0.5625em);
}
.has-site-menu .site-menu-toggle::before {
	transform: rotate(45deg);
}
.site-menu-toggle::after {
	transform: none;
}
.has-site-menu .site-menu-toggle::after {
	transform: rotate(-45deg);
}

.site-navbar {
	--bg: var(--navbar-bg, var(--header-bg));
	--color: var(--navbar-color, var(--header-color));
	border-top: 1px solid var(--navbar-border-color, var(--navbar-bg, var(--light-color)));
	background: #000;
	color: #fff;
	padding: 0.5em 0;
}
.site-navbar .iconset {
	font-size: 1.3125em;
}
.site-navbar .wp-block-group__inner-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 0 !important;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.site-navbar .wp-block-group__inner-container img {
	max-width: 1.6rem !important;
	max-height: 1.6rem !important;
	width: auto;
}
.site-navbar .wp-block-group__inner-container p {
	margin: 0;
}
.site-navbar .wp-block-group__inner-container::after, .site-navbar .wp-block-group__inner-container::before {
	content: none !important;
}
.site-navbar .wrap.flex {
	flex-wrap: wrap;
	max-width: 85rem !important;
	padding: 0 2% !important;
	gap: 0.4rem;
}
.site-navbar .wrap.flex .widget.widget_block {
	width: -webkit-fit-content !important;
	width: -moz-fit-content !important;
	width: fit-content !important;
	margin: 0 !important;
}

.site-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.25em 5%;
	background: var(--notice-bg, var(--footer-bg));
	color: var(--notice-color, var(--footer-color));
	font-size: 0.875em;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}
.site-notice[data-reveal] {
	visibility: visible;
}
.site-notice button {
	margin-left: 1em;
}

.single-product-content {
	padding: 0 2rem;
}
.single-product .info {
	display: flex;
	gap: 4rem;
	width: 80vw;
	max-width: 70rem;
	margin: 0 auto;
	margin-top: 3rem;
}
.single-product .info > div {
	width: 50%;
}
.single-product .info .product-info h1 {
	color: #34828e;
}
.single-product .info .product-image {
	margin-bottom: 2rem;
}
.single-product .info .product-datasheet {
	padding: 0.5rem 2.5rem;
	background-color: #34828e;
	border-radius: 20px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.single-product .info .features,
.single-product .info .benefits {
	margin-bottom: 2rem;
	padding: 2rem 2.5rem;
	border-radius: 35px;
}
.single-product .info .features h3,
.single-product .info .benefits h3 {
	color: #34828e;
}
.single-product .info .features {
	background-color: #f0f0f0;
}
.single-product .info .benefits {
	background-color: #d6e6e8;
}
.single-product .col-1 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

body {
	overflow-x: hidden;
}

.site-topbar {
	--bg: var(--topbar-bg, var(--header-bg));
	--color: var(--topbar-color, var(--header-color));
	border-bottom: 1px solid var(--topbar-border-color, var(--topbar-bg, var(--light-color)));
	background: var(--bg);
	color: var(--color);
	font-size: 0.875em;
	padding: 0.7142857143em 0;
}
.site-topbar .iconset {
	font-size: 1.1428571429em;
}

.fill-cover {
	-o-object-fit: cover;
	   object-fit: cover;
}
.fill-contain {
	-o-object-fit: contain;
	   object-fit: contain;
}

.has-theme-background-color {
	--accent-color: var(--darkest-color);
	--color: var(--white-color);
	background-color: var(--theme-color) !important;
	color: var(--color);
}

.has-darkest-background-color {
	--accent-color: var(--darker-color);
	--color: var(--white-color);
	background-color: var(--darkest-color) !important;
	color: var(--color);
}

.has-darker-background-color {
	--accent-color: var(--darkest-color);
	--color: var(--white-color);
	background-color: var(--darker-color) !important;
	color: var(--color);
}

.has-dark-background-color {
	--accent-color: var(--darkest-color);
	--color: var(--white-color);
	background-color: var(--dark-color) !important;
	color: var(--color);
}

.has-mid-background-color {
	--accent-color: var(--dark-color);
	--color: var(--white-color);
	background-color: var(--mid-color) !important;
	color: var(--color);
}

.has-light-background-color {
	--accent-color: var(--mid-color);
	--color: var(--darkest-color);
	background-color: var(--light-color) !important;
	color: var(--color);
}

.has-lighter-background-color {
	--accent-color: var(--light-color);
	--color: var(--darkest-color);
	background-color: var(--lighter-color) !important;
	color: var(--color);
}

.has-lightest-background-color {
	--accent-color: var(--light-color);
	--color: var(--darkest-color);
	background-color: var(--lightest-color) !important;
	color: var(--color);
}

.has-white-background-color {
	--accent-color: var(--light-color);
	--color: var(--darkest-color);
	background-color: var(--white-color) !important;
	color: var(--color);
}

.has-theme-color {
	color: var(--theme-color);
}

.has-darkest-color {
	color: var(--darkest-color);
}

.has-darker-color {
	color: var(--darker-color);
}

.has-dark-color {
	color: var(--dark-color);
}

.has-mid-color {
	color: var(--mid-color);
}

.has-light-color {
	color: var(--light-color);
}

.has-lighter-color {
	color: var(--lighter-color);
}

.has-lightest-color {
	color: var(--lightest-color);
}

.has-white-color {
	color: var(--white-color);
}

.has-smaller-font-size {
	font-size: 0.75em;
}

.has-small-font-size {
	font-size: 0.875em;
}

.has-normal-font-size {
	font-size: 1em;
}

.has-medium-font-size {
	font-size: var(--x2);
}

.has-large-font-size {
	font-size: var(--x3);
}

.has-larger-font-size {
	font-size: var(--x4);
}

.has-x-large-font-size {
	font-size: var(--x5);
}

.has-xx-large-font-size {
	font-size: var(--x6);
}

.has-title-font-size {
	font-size: var(--x7);
	line-height: 1.333;
}

.has-light-gradient-background {
	background: linear-gradient(to right, var(--light-color), rgba(255, 255, 255, 0));
}

.has-dark-gradient-background {
	background: linear-gradient(to right, var(--darkest-color), rgba(255, 255, 255, 0));
}

.has-no-spacing,
.has-no-spacing-top {
	margin-top: 0;
}

.has-no-spacing,
.has-no-spacing-bottom {
	margin-bottom: 0;
}

.has-small-spacing,
.has-small-spacing-top {
	margin-top: var(--xx);
}

.has-small-spacing,
.has-small-spacing-bottom {
	margin-bottom: var(--xx);
}

.has-medium-spacing,
.has-medium-spacing-top {
	margin-top: calc(var(--xx) * 1.5);
}

.has-medium-spacing,
.has-medium-spacing-bottom {
	margin-bottom: calc(var(--xx) * 1.5);
}

.has-large-spacing,
.has-large-spacing-top {
	margin-top: calc(var(--xx) * 2);
}

.has-large-spacing,
.has-large-spacing-bottom {
	margin-bottom: calc(var(--xx) * 2);
}

.hold, .hold-link {
	position: relative;
}
.hold-link a::before,
.hold a[data-hold]::before {
	content: " ";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hold a[rel*=tag] {
	position: relative;
	z-index: 2;
}

.media {
	position: relative;
	overflow: hidden;
	-o-object-fit: cover;
	   object-fit: cover;
}

.has-pointer-focus :focus {
	outline: none;
}

[data-reveal] {
	animation: fade-in var(--speed) cubic-bezier(0.86, 0, 0.07, 1) both;
}

[data-reveal*=up] {
	animation-name: fade-in-up;
}

[data-reveal*=left] {
	animation-name: fade-in-left;
}

[data-reveal*=right] {
	animation-name: fade-in-right;
}

[data-reveal*=out] {
	animation-name: fade-out;
}

[data-reveal*="out left"] {
	animation-name: fade-out-left;
}

[data-reveal*="out right"] {
	animation-name: fade-out-right;
}

.has-js [data-reveal*=lazy] {
	animation-play-state: paused;
}

[data-reveal*=sequence]:nth-child(2) {
	animation-delay: 200ms;
}
[data-reveal*=sequence]:nth-child(3) {
	animation-delay: 400ms;
}
[data-reveal*=sequence]:nth-child(4) {
	animation-delay: 600ms;
}
[data-reveal*=sequence]:nth-child(5) {
	animation-delay: 800ms;
}
[data-reveal*=sequence]:nth-child(6) {
	animation-delay: 1000ms;
}
[data-reveal*=sequence]:nth-child(7) {
	animation-delay: 1200ms;
}
[data-reveal*=sequence]:nth-child(8) {
	animation-delay: 1400ms;
}
[data-reveal*=sequence]:nth-child(9) {
	animation-delay: 1600ms;
}
[data-reveal*=sequence]:nth-child(10) {
	animation-delay: 1800ms;
}
[data-reveal*=sequence]:nth-child(11) {
	animation-delay: 2000ms;
}
[data-reveal*=sequence]:nth-child(12) {
	animation-delay: 2200ms;
}
[data-reveal*=sequence]:nth-child(13) {
	animation-delay: 2400ms;
}
[data-reveal*=sequence]:nth-child(14) {
	animation-delay: 2600ms;
}
[data-reveal*=sequence]:nth-child(15) {
	animation-delay: 2800ms;
}
[data-reveal*=sequence]:nth-child(16) {
	animation-delay: 3000ms;
}
[data-reveal*=sequence]:nth-child(17) {
	animation-delay: 3200ms;
}
[data-reveal*=sequence]:nth-child(18) {
	animation-delay: 3400ms;
}
[data-reveal*=sequence]:nth-child(19) {
	animation-delay: 3600ms;
}
[data-reveal*=sequence]:nth-child(20) {
	animation-delay: 3800ms;
}

.hide {
	display: none;
}

.is-style-heading,
.is-style-title {
	font-weight: inherit;
}

.content h2 {
	margin-top: 2rem;
	margin-bottom: 0.7rem;
}

.resource-group {
	display: flex;
}
.resource-group .res img {
	max-width: 75px;
}
.resource-group .res {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 1rem;
}
.resource-group .res > * {
	margin: 0.5rem;
}
.resource-group .buttons a {
	min-width: auto !important;
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	max-width: 41rem;
	width: calc(100% - 3rem);
	padding: 3rem 2rem;
	background-color: #fff;
	box-shadow: 0 0 0 0.75rem hsla(0deg, 0%, 100%, 0.3);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.15s ease-in-out;
	z-index: 3;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.modal__copy p {
	margin-top: 0;
}
.modal__close {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 2.25rem;
	width: 100%;
	padding-bottom: 2rem;
	border: 0;
	background: transparent;
	cursor: pointer;
}
.modal__close span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 0.125rem;
	width: 1.25rem;
	background-color: #757575;
}
.modal__close span:first-child {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.modal__close span:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.modal__button {
	max-width: 250px;
	width: 100%;
	position: relative;
	margin: 0 auto;
	background-color: #9c3d8f;
	color: white;
	text-decoration: none;
	padding: 1rem 2rem;
}
.modal--active {
	opacity: 1;
	pointer-events: all;
}
@media (min-width: 20em) {
	:root {
		--x3: calc(1.125em + 0.125 * (100vw - 20rem) / 70);
	}
	:root {
		--x4: calc(1.25em + 0.25 * (100vw - 20rem) / 70);
	}
	:root {
		--x5: calc(1.375em + 0.375 * (100vw - 20rem) / 70);
	}
	:root {
		--x6: calc(1.5em + 0.5 * (100vw - 20rem) / 70);
	}
	:root {
		--x7: calc(1.5em + 1 * (100vw - 20rem) / 70);
	}
	:root {
		--xx: calc(1.5rem + 1 * (100vw - 20rem) / 70);
	}
}
@media (min-width: 23.4375em) {
	.dialog[role=document] {
		width: 90%;
	}
}
@media (min-width: 37.5em) {
	.wp-block-buttons .wp-block-button {
		margin: 0 0.75em 0 0;
	}
	.site-footer-widgets.is-stacked {
		text-align: center;
		padding-top: 1em;
		padding-bottom: 1em;
	}
	.site-footer-widgets.is-stacked > * {
		margin: 2.6666666667% auto;
	}
	.site-footer-widgets.is-stacked .widgets {
		margin: 4% auto;
	}
	.site-footer-widgets.is-stacked .widget {
		margin-left: auto;
		margin-right: auto;
	}
	.site-footer-widgets.is-stacked .widget li {
		font-weight: var(--bold-weight);
		display: inline-block;
		margin: 0 1em;
	}
	.site-footer-widgets.is-inline {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-between;
		padding-top: 2em;
		padding-bottom: 3em;
	}
	.site-footer-widgets.is-inline .widgets {
		margin: 2.6666666667% 0;
	}
	.site-footer-widgets.is-inline .widget:first-child {
		margin-top: 0;
	}
	.site-footer-widgets.is-inline .widget:last-child {
		margin-bottom: 0;
	}
	.site-footer-widgets.is-inline > * {
		flex: 1 0 20%;
		min-width: 200px;
		padding-right: 5%;
	}
	.hide\@sm {
		display: none;
	}
}
@media (min-width: 37.5em) and (max-width: 47.999em) {
	.slides {
		--count: min(3, var(--columns, 1));
	}
	.custom-logo {
		width: calc(100vw / 768 * var(--width) * var(--logo-scale, 100) / 100);
	}
}
@media (min-width: 620px) {
	div.service-grid .wp-block-group__inner-container h2,
div.service-grid .wp-block-group__inner-container p {
		max-width: 60%;
	}
}
@media (min-width: 640px) {
	.popup-dialog {
		width: 90%;
	}
}
@media (min-width: 767px) {
	.site-header .wrap.flex {
		align-items: flex-end !important;
	}
}
@media (min-width: 48em) {
	.accordions__accordion__label--active + .accordions__accordion__reveal {
		max-height: 17rem;
	}
	.entry {
		margin: 1em 0;
		display: flex;
		align-items: center;
	}
	.entry .media {
		width: 23.3333333333%;
		min-width: 17.5em;
		margin-right: 8.3333333333%;
	}
	.entry .content {
		font-size: 1.125em;
		max-width: 38.8888888889em;
	}
	.ginput_complex > * {
		flex: 1 0 1px;
	}
	.ginput_complex > * + * {
		margin-left: 2.5%;
	}
	.header {
		text-align: center;
	}
	.navigation .page-numbers {
		font-size: 1.2857142857em;
	}
	.alignwide {
		width: 90vw;
		margin-left: calc(50% - 45vw);
	}
	.custom-logo {
		width: calc(1px * var(--width) * var(--logo-scale, 100) / 100);
	}
	.sidebar {
		float: right;
		width: 23.3333333333%;
	}
	.sidebar .widget {
		margin: 0 0 15%;
	}
	.with-sidebar {
		float: left;
		width: 65.8333333333%;
	}
	.site-header .site-menu-toggle {
		display: none;
	}
	.site-header-widgets {
		display: flex;
		margin: 1.75em 0;
	}
	.site-header-widgets.is-inline {
		align-items: center;
	}
	.site-header-widgets.is-inline > * + * {
		margin-left: var(--x7);
	}
	.site-header-widgets.is-stacked {
		flex-direction: column;
		align-items: flex-end;
	}
	.site-header-widgets.is-stacked > * + * {
		margin-top: 1em;
	}
	.site-menu {
		display: none;
	}
	.hide\@md {
		display: none;
	}
}
@media (min-width: 48em) and (max-width: 64.374em) {
	body {
		font-size: calc(5.46875% * var(--body-size));
	}
}
@media (min-width: 782px) {
	.wp-block-columns .wp-block-column:not(:first-child) {
		margin-left: 5%;
	}
	.wp-block-columns.is-style-large .wp-block-column:not(:first-child) {
		margin-left: 10%;
	}
}
@media (min-width: 58.75em) {
	.accordions__accordion__label {
		padding: 1.5rem 6.25rem 1.5rem 2rem;
	}
	.accordions__accordion__reveal__inner {
		padding: 0 6.25rem 2.1875rem 2rem;
	}
	.accordions__accordion__reveal__text {
		font-size: 1.125rem;
	}
	.table thead {
		display: block;
		background-color: #8b004f;
		color: #fff;
		text-align: left;
	}
	.table thead tr {
		display: flex;
		justify-content: space-between;
	}
	.table tbody tr {
		flex-direction: row;
		justify-content: space-between;
	}
	.table td,
.table th {
		display: block;
		width: 100%;
		padding: 1rem;
		word-wrap: break-word;
	}
	.table td span,
.table th span {
		display: none;
	}
}
@media (min-width: 1024px) {
	.popup-dialog {
		width: 60%;
	}

	.popup-body p {
		font-size: 1rem;
	}
}
@media (min-width: 64.375em) {
	.wp-block-columns.is-style-large {
		justify-content: flex-start;
	}
	.site-footer-widgets.is-inline > * + :last-child {
		flex-grow: 0;
		padding-right: 0;
	}
	.hide\@lg {
		display: none;
	}
}
@media (min-width: 70.8125em) {
	.wp-block-columns:not(.is-style-large).alignwide {
		width: 64.375rem;
		margin-left: calc(50% - 32.1875rem);
	}
}
@media (min-width: 1180px) {
	.popup-body {
		padding: 3rem;
	}
}
@media (min-width: 1320px) {
	.wp-block-cover-image.alignfull,
.wp-block-cover.alignfull {
		padding-left: calc(50vw - 600px);
		padding-right: calc(50vw - 600px);
	}
	.with-sidebar .wp-block-cover-image.alignfull,
.with-sidebar .wp-block-cover.alignfull {
		padding-left: 1em;
		padding-right: 1em;
	}
}
@media (min-width: 82.5em) {
	.alignwide {
		width: 75rem;
		margin-left: calc(50% - 37.5rem);
	}
}
@media (min-width: 82.5rem) {
	div.service-grid .wp-block-group__inner-container {
		width: 75rem !important;
		display: flex;
		flex-direction: column;
	}
	div.service-grid .wp-block-group__inner-container h2,
div.service-grid .wp-block-group__inner-container p {
		max-width: 60%;
	}
}
@media (min-width: 90em) {
	:root {
		--x3: 1.25em;
	}
	:root {
		--x4: 1.5em;
	}
	:root {
		--x5: 1.75em;
	}
	:root {
		--x6: 2em;
	}
	:root {
		--x7: 2.5em;
	}
	:root {
		--xx: 2.5rem;
	}
}
@media (max-width: 1030px) {
	.products-table-heading-quantity::before {
		top: 2.55rem;
	}
	.products-table-heading-quantity::after {
		top: 2.1rem;
	}
}
@media (max-width: 64.374em) {
	.grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
	.site-header-widgets.is-inline > * + * {
		display: none;
	}
	.show\@lg {
		display: none;
	}
}
@media (max-width: 958px) {
	.popular-products .card {
		justify-content: flex-end;
	}
}
@media (max-width: 925px) {
	.site-footer-accreditations {
		right: 30px;
	}
}
@media (max-width: 830px) {
	.site-footer-widgets .widgets:nth-child(4) .widget:last-of-type .wp-block-columns {
		flex-direction: row !important;
		width: 100%;
		align-items: center !important;
		gap: 0 !important;
	}
	.site-footer-widgets .widgets:nth-child(4) .widget:last-of-type .wp-block-columns .wp-block-column {
		flex-basis: unset !important;
		max-width: 3rem !important;
		max-height: 3rem !important;
		margin-top: 0 !important;
	}
}
@media (max-width: 800px) {
	.products-table-heading-heading {
		margin-bottom: 0.75rem;
	}
	.products-table-heading-quantity p {
		margin: 0 !important;
	}
	.products-table-heading-quantity::before {
		top: 1.3rem;
	}
	.products-table-heading-quantity::after {
		top: 0.8rem;
	}
	.products-table-heading-container {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 0.75rem;
	}
	.single-product .info {
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		gap: 0;
	}
	.single-product .info > div {
		width: 100%;
	}
	.single-product .info .product-image {
		max-height: 20rem;
	}
}
@media (max-width: 781px) {
	.admin-bar .site-masthead {
		top: 46px;
	}
}
@media (max-width: 768px) {
	.popular-products {
		padding: 0 2rem !important;
	}
	li.home a {
		margin-bottom: 0.5rem;
	}
	li.home a::before {
		color: #fff !important;
		margin-bottom: 0.25rem;
	}
	li.is-parent .sub-menu {
		display: flex;
		flex-direction: column;
		gap: 0.1rem;
	}
	#imageStore {
		padding-top: 15rem;
	}
	.site-header .sub-menu {
		color: #fff !important;
	}
	.site-header .sub-menu li a {
		color: #fff !important;
	}
}
@media (max-width: 47.999em) {
	tr {
		display: block;
		padding: var(--pm) 0;
	}
	tr:first-child {
		padding-top: 0;
	}

	td,
th {
		display: block;
		padding: 0 0 1em;
		text-align: left;
	}
	td:empty,
th:empty {
		display: none;
	}

	thead {
		display: none;
	}

	td[data-label]::before {
		content: attr(data-label) ":";
		speak: normal;
		display: inline-block;
		width: 10em;
	}

	td[data-label]:empty::before {
		conent: none;
	}
	.ginput_complex {
		flex-direction: column;
	}
	.ginput_complex > * + * {
		margin-top: var(--gap);
	}
	.wp-block-cover {
		min-height: 50vw !important;
	}
	.site-footer-links > [data-site-footer-links-end] {
		display: block;
	}
	.site-footer-links > [data-site-footer-links-end]::before {
		content: none;
	}
	.site-header-widgets {
		display: none;
	}
	.site-menu {
		--bg: var(--menu-bg, var(--body-color));
		--color: var(--menu-color, rgba(255, 255, 255, 0.75));
		--link-hover: var(--menu-color-accent, var(--body-bg));
		background: var(--bg);
		color: var(--color);
		position: fixed;
		overflow: auto;
		z-index: 2000;
		top: var(--masthead-offset, 0px);
		left: 0;
		width: 100%;
		height: calc(100% - var(--masthead-offset, 0px));
		padding: calc(2em + 1 * (100vw - 20rem) / 28);
		display: flex;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		transition: var(--speed);
		transition-property: opacity, visibility;
	}
	.has-site-menu .site-menu {
		opacity: 1;
		visibility: visible;
	}
	.has-site-menu body {
		overflow: hidden;
	}

	.site-menu .menu a {
		display: inline-block;
		padding: 0;
	}
	.site-menu .menu li {
		border: 0;
		margin: 0.5em 0;
	}
	.site-menu .menu > li > a::after {
		content: none;
	}
	.site-menu .menu > li > ul > li:first-child {
		margin-top: 0.75em;
	}
	.site-menu .menu .is-parent > a::after {
		content: " ";
		transform: rotate(45deg);
	}
	.site-menu .menu .is-open > a::after {
		transform: rotate(-45deg);
	}
	.site-menu .menu.is-primary > li {
		margin: 0 0 0.75em;
	}
	.site-menu .menu.is-primary > li > a {
		font-weight: var(--bold-weight);
		font-size: 1.5em;
		color: var(--link-hover);
	}
	.site-menu .menu + :not(.menu) {
		margin-top: auto;
	}
	.site-menu .widget {
		--link-color: var(--link-hover);
		--link-decoration: underline;
	}
	.site-menu .widget + .widget {
		margin-top: 1.5em;
	}
	.site-menu .textwidget {
		font-size: 1.25em;
	}
	.show\@md {
		display: none;
	}
}
@media (max-width: 767px) {
	.products-table-container table tbody tr td {
		padding: 0.75rem !important;
		display: flex;
	}
	.products-table-container table tbody tr td p {
		display: block;
		font-weight: 600;
		margin: 0 !important;
		color: #1f2a54;
	}
	.products-table-container table tbody tr td p::after {
		content: ":";
		padding-right: 6px;
	}
}
@media (max-width: 708px) {
	.site-footer-accreditations {
		position: relative;
		right: 0;
		bottom: 0;
		justify-content: flex-start;
		padding: 2rem;
	}
}
@media (max-width: 601px) {
	.contact-us-cta {
		padding: 3rem 5%;
	}
	.contact-us-cta h4 {
		font-size: 1.4rem !important;
	}
	.contact-us-cta p {
		font-size: 0.875em !important;
	}
	.contact-us-cta a {
		font-size: var(--button-size, 1em);
	}
	.contact-us-cta div.wp-block-spacer {
		height: 10px !important;
	}
}
@media (max-width: 37.499em) {
	.slides {
		--count: min(1, var(--columns, 1));
	}
	.wp-block-buttons .wp-block-button {
		display: block;
	}
	.site-footerbar {
		--spacing: 1em;
		padding: 1.5em 0;
	}
	.site-footerbar > .flex {
		display: block;
	}
	.site-navbar {
		font-size: 0.875em;
	}
	.site-topbar > .flex {
		display: block;
		text-align: center;
	}
	.site-topbar > .flex > * + * {
		margin: 0.5em 0 0;
	}
	.show\@sm {
		display: none;
	}
}
@media (max-width: 598px) {
	.wp-block-column + .wp-block-column {
		margin-top: var(--xx);
	}
}
@media (max-width: 560px) {
	.site-footer-accreditations {
		flex-wrap: wrap;
	}
}
@media (hover: hover) {
	.hover-focus {
		pointer-events: none;
	}
	.hover-focus > * {
		pointer-events: auto;
		transition: var(--speed);
		transition-property: opacity;
	}
	.hover-focus:hover > * {
		opacity: 0.5;
	}
	.hover-focus:hover > *:hover {
		opacity: 1;
	}
}
/*# sourceMappingURL=main.css.map */
