/*
Theme Name: Flowio
Author: KingsDesign
Author URI: kingsdesign.com.au
Description: A block-based WordPress theme designed to provide a great editing experience that minimises the visual gap between the frontend and backend. This theme also has a focus on consistent spacing & frontend performance.
Version: 0.4
Text Domain: flowio
*/

/*
*  CSS TABLE OF CONTENTS
*
*  1.0 - Reset
*  2.0 - Fonts
*  3.0 - Custom Properties
*  4.0 - General Typography
*  5.0 - Areas
*    5.1 - Header
*    5.2 - Entry Content
* 6.0 - Utilities
*  7.0 - Buttons
*  8.0 - Gutenberg Conditionals
*/

/* -------------------------------------------------
1.0 Reset
------------------------------------------------- */
html {
	scroll-behavior: smooth;
	overflow-wrap: break-word;
}

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

/* Add default focus style */
*:focus-visible {
	outline: 1px solid var(--primary-200);
}

/* Remove default padding */
ul,
ol {
	padding: 0;
}

/* body.biodiversity h1,
body.biodiversity h2,
body.biodiversity h3,
body.biodiversity h4,
body.biodiversity h5,
body.biodiversity h6 {
  color: var(--primary-green);
} */

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

/* Make media easier to work with */
img,
picture,
video,
canvas,
svg {
	display: block;
}

img {
	width: 100%;
	height: auto;
	/* background: var(--gray-100); */
	object-position: var(--focus);
	object-fit: cover;
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.95s;
}
.wp-block-image {
	margin-bottom: 0;
}

.wp-block-image img {
	width: auto;
	display: inline-block;
}
img.loaded {
	opacity: 1;
}

/* Inherit fonts for inputs and buttons */
input,
textarea,
select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	font: inherit;
	width: 100%;
	padding: 0.5rem;
	border: 1px solid var(--gray-100);
	background: unset;
	color: currentColor;
	border-radius: 0.25rem;
}

input[type="checkbox"] {
	width: fit-content;
}

input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 1.5em;
	height: 1.5em;
	border: 1px solid var(--gray-100);
	border-radius: 0;
	transform: translateY(-0.075em);
	display: grid;
	place-content: center;
}

input[type="checkbox"]::before {
	content: "";
	width: 0.65em;
	height: 0.65em;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em var(--primary-400);
	transform-origin: bottom left;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"]::focus {
	outline: max(2px, 0.15em) solid currentColor;
	outline-offset: max(2px, 0.15em);
}

input[type="checkbox"]:checked::before {
	transform: scale(1);
}

button {
	font: inherit;
	padding: 0;
	cursor: pointer;
	border: none;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.screen-reader-text {
	visibility: hidden;
	position: fixed;
}

/* -------------------------------------------------
End Reset
------------------------------------------------- */

/* -------------------------------------------------
2.0 Font Imports
------------------------------------------------- */

@font-face {
	font-family: "Cabin";
	src: url("./fonts/Cabin-Bold.woff2") format("woff2"), url("./fonts/Cabin-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Nunito Sans";
	src: url("./fonts/NunitoSans-Regular.woff2") format("woff2"), url("./fonts/NunitoSans-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* -------------------------------------------------
End Font Imports
------------------------------------------------- */

/* -------------------------------------------------
3.0 Custom Properties
------------------------------------------------- */
:root {
	--heading-font: "Cabin", sans-serif;
	--body-font: "Nunito Sans", sans-serif;
	--white: #fff;
	--black: #000;
	--gray-50: #f5f5f5;
	--gray-100: #ddd;
	--gray-200: #bebebe;
	--gray-300: #8d8d8d;
	--gray-400: #858585;
	--gray-500: #6a6a6a;
	--gray-600: #525252;
	--gray-700: #383838;
	--gray-800: #1e1e1e;
	--gray-900: #141414;
	--primary-50: #f1f8fe;
	--primary-100: #bdd7ef;
	--primary-200: #96c1e9;
	--primary-300: #66a5e1;
	--primary-400: #388cdc;
	--primary-500: #2273bf;
	--primary-600: #0d59a1;
	--primary-700: #093f71;
	--primary-800: #062a4c;
	--primary-900: #031526;
	--secondary-50: #fffbf5;
	--secondary-100: #ffe3bd;
	--secondary-200: #ffcd8a;
	--secondary-300: #ffb552;
	--secondary-400: #ff9e1b;
	--secondary-500: #dc8209;
	--secondary-600: #a2620b;
	--secondary-700: #6e450c;
	--secondary-800: #4b2e06;
	--secondary-900: #261703;
	--torquise: #018d99;
	--content-width: min(calc(100% - 3.5rem), 87%);
	--w-3xs: 22.5rem;
	--w-2xs: 30rem;
	--w-xs: 33.5rem;
	--w-sm: 40rem;
	--w-md: 48rem;
	--w-lg: 60rem;
	--w-xl: 72rem;
	--w-2xl: 80rem;
	--w-3xl: 96rem;
	--w-4xl: 120rem;
	--w-full: 100%;
	--spacing: 1rem;
	--letter-spacing: 0.15em;
	--ls-md: 0.15em;
	--ls-sm: 0.05em;

	--s-3xs: calc(clamp(0.875rem, 0.3rem + 2vh + 2vw, 2.25rem) * 0.25);
	--s-2xs: calc(clamp(0.875rem, 0.3rem + 2vh + 2vw, 2.25rem) * 0.5);
	--s-xs: calc(clamp(0.875rem, 0.3rem + 2vh + 2vw, 2.25rem) * 0.75);
	--s-sm: clamp(0.875rem, 0.3rem + 2vh + 2vw, 2.25rem);
	--s-md: calc(clamp(0.875rem, 0.3rem + 2vh + 2vw, 2.25rem) * 1.5);
	--s-lg: calc(clamp(0.875rem, 0.3rem + 2vh + 2vw, 2.25rem) * 2);
	--s-xl: calc(clamp(0.875rem, 0.3rem + 2vh + 2vw, 2.25rem) * 2.5);
	--s-2xl: calc(clamp(0.875rem, 0.3rem + 2vh + 2vw, 2.25rem) * 3.5);
	--s-c1: calc(clamp(3.5rem, 2vh + 6vw, 6.5rem) + 3rem);

	--fs-normal: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
	--fs-xs: clamp(0.5rem, 0.51rem + 0.18vw, 0.75rem);
	--fs-0: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
	--fs-1: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
	--fs-2: clamp(1.125rem, 1.09rem + 0.18vw, 1.25rem);
	--fs-3: clamp(1.25rem, 1.11rem + 0.71vw, 1.75rem);
	--fs-4: clamp(1.5rem, 1.29rem + 1.07vw, 2.25rem);
	--fs-5: clamp(1.75rem, 1.39rem + 1.79vw, 3rem);
	--fs-6: clamp(2.25rem, 1.82rem + 2.14vw, 3.75rem);

	font-family: var(--body-font);

	--primary-blue: rgba(1, 119, 162, 1);
	--secondary-blue: rgba(1, 177, 198, 1);
	--primary-gray: rgba(83, 78, 75, 1);
	--secondary-gray: rgba(108, 103, 103, 1);
	--gray-dark: #1c1a18;
	--primary-green: rgba(33, 91, 51, 1);
	--secondary-green: rgba(33, 117, 51, 1);

	--dark-green: #215933;
	--mid-green: #217833;

	--light: #e9eeeb;

	--gradient-blue: linear-gradient(90deg, rgba(1, 119, 162, 1) 40%, rgba(1, 177, 198, 1) 100%);
	--gradient-blue-reverse: linear-gradient(90deg, rgba(1, 177, 198, 1) 40%, rgba(1, 119, 162, 1) 100%);
	--gradient-green: linear-gradient(90deg, rgba(33, 91, 51, 1) 40%, rgba(33, 117, 51, 1) 100%);
	--gradient-green-reverse: linear-gradient(90deg, rgba(33, 117, 51, 1) 40%, rgba(33, 91, 51, 1) 100%);
	--gradient-gray: linear-gradient(90deg, rgba(83, 78, 75, 1) 40%, rgba(108, 103, 103, 1) 100%);
	--gradient-gray-reverse: linear-gradient(90deg, rgba(108, 103, 103, 1) 40%, rgba(83, 78, 75, 1) 100%);
	--gradient-torquise: linear-gradient(90deg, #018d99 40%, #78c0cb 100%);
	--gradient-torquise-reverse: linear-gradient(90deg, #78c0cb 40%, #018d99 100%);

	--gradient-green: linear-gradient(90deg, #215933 40%, #217833 100%);

	--primary-copper-rose: rgba(158, 102, 77, 1);
	--secondary-copper-rose: rgba(134, 90, 70, 1);
	--gradient-copper-rose: linear-gradient(90deg, #9e664d 40%, #865a46 100%);
	--gradient-copper-rose-reverse: linear-gradient(90deg, #865a46 40%, #9e664d 100%);
}
/* -------------------------------------------------
End Custom Properties
------------------------------------------------- */

/* -------------------------------------------------
4.0 General Typography
------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
	/* line-height: 1.3; */
	font-weight: bold;
}
.fs-xs {
	font-size: var(--fs-xs);
}
.fs-normal {
	font-size: var(--fs-normal);
}
.fs-0,
.has-0-font-size,
h6 {
	font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
	/* font-size: clamp(0.5rem, 0.51rem + 0.18vw, 0.875rem); */
}
.fs-1,
.has-1-font-size,
h5 {
	font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
}

.fs-2,
.has-2-font-size,
h4 {
	font-size: clamp(1.125rem, 1.09rem + 0.18vw, 1.25rem);
}
.fs-3,
.has-3-font-size,
h3 {
	font-size: clamp(1.25rem, 1.11rem + 0.71vw, 1.75rem);
}
.fs-4,
.has-4-font-size,
h2 {
	font-size: clamp(1.5rem, 1.29rem + 1.07vw, 2.25rem);
}
.fs-5,
.has-5-font-size,
h1 {
	font-size: clamp(1.75rem, 1.39rem + 1.79vw, 3rem);
}
.fs-6,
.has-6-font-size {
	font-size: clamp(2.25rem, 1.82rem + 2.14vw, 3.75rem);
}

p {
	font-family: var(--body-font);
	font-weight: normal;
	/* line-height: 1.9; */
	font-size: var(--fs-normal);
}

html main a:not(.btn, .button, .woocommerce-LoopProduct-link, .wc-block-grid__product-link, .woof_btn_default, ),
html
	.wp-block-flowio-section-block
	a:not(.btn, .button, .woocommerce-LoopProduct-link, .wc-block-grid__product-link, .woof_btn_default, ) {
	color: currentColor;
	transition: filter 0.3s;
}

html main a:not(.btn, .button, .woocommerce-LoopProduct-link, .wc-block-grid__product-link, .woof_btn_default, ):hover,
html
	.wp-block-flowio-section-block
	a:not(.btn, .button, .woocommerce-LoopProduct-link, .wc-block-grid__product-link, .woof_btn_default, ):hover {
	filter: hue-rotate(30deg) brightness(1.5);
}

.heading-font {
	font-family: var(--heading-font);
	font-weight: bold;
}

.body-font {
	font-family: var(--body-font);
	font-weight: normal;
}

/* style lists */
ul,
ol {
	padding-left: 2rem;
	/* line-height: 1.75; */
}

.ttu {
	text-transform: uppercase;
}
.ttc {
	text-transform: capitalize;
}
.ttl {
	text-transform: lowercase;
}

.ls-md {
	letter-spacing: 0.15em;
}
.ls-sm {
	letter-spacing: 0.05em;
}

strong {
	font-weight: bold;
}
/* -------------------------------------------------
End General Typography
------------------------------------------------- */

/* -------------------------------------------------
5.0 Areas
------------------------------------------------- */
/* --------
5.1 Header
-------- */
.wp-site-blocks,
.site-header.wp-block-template-part,
.wp-block-lazyblock-header {
	display: contents;
}

.theme-header ul,
.theme-header ol {
	padding-left: 0;
}

.theme-header {
	width: 100%;
	color: white;
	/* background: var(--gradient-blue); */
	transition: background 0.5s;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}
.theme-header.enabled-mega-menu .header-wrapper {
	background-color: #1c1a18;
}

.theme-header.enabled {
	position: sticky;
	position: fixed;
	top: 0;
	background: #000;
	z-index: 69240;
}
.blog .theme-header,
.archive .theme-header,
.search .theme-header,
.single-post .theme-header {
	background: #000;
}
.theme-header.enabled .brand {
	/* height: 3rem; */
}
.header-wrapper {
	position: relative;
}
.header-content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
	justify-content: space-between;
}

.brand {
	color: white;
	text-decoration: none;
	display: flex;
	gap: 0.5rem;
	align-items: center;
	height: 5.25rem;
	transition: height 0.3s, margin 0.3s;
	align-self: center;
	margin-block: 1rem;
	max-width: 10rem;
}

.brand > svg {
	height: 100%;
	transition: color 0.4s, opacity 0.4s, backdrop-filter 0.4s;
}
.brand > img {
	background: transparent;
	/* height: 100%; */
}

.brand > svg:nth-of-type(2) {
	height: 37%;
	display: none;
}

.brand:hover > svg,
.brand:active > svg {
	color: var(--secondary-200);
	opacity: 0.7;
	backdrop-filter: blur(20px);
}

.brand > div {
	margin-left: 0.75rem;
	font-size: 1.5rem;
	/* text-transform: uppercase; */
	/* letter-spacing: 0.15em; */
	color: white;
	display: none;
}

@media screen and (min-width: 38rem) {
	.brand > svg:nth-of-type(2) {
		display: block;
	}
}

.menu-item {
	list-style: none;
	/* position: relative; */
}

a {
	color: currentColor;
}

.menu-item a,
.menu-item button {
	text-decoration: none;
	/* text-transform: uppercase; */
	/* letter-spacing: 0.15em; */
	font-weight: bold;
	/* color: white; */
	transition: color 0.3s;
	font-family: var(--heading-font);
}

.menu-item > a:hover,
a:active {
	/* color: var(--secondary-400); */
}

.navigation-items {
	display: grid;
	/* align-items: center; */
	/* place-content: end; */
	/* align-content: center; */
	grid-auto-flow: column;
	align-items: center;
}
@media screen and (max-width: 64rem) {
	.blog .theme-header,
	.archive .theme-header,
	.search .theme-header,
	.single-post .theme-header {
		padding-bottom: 1rem;
	}
}

.desktop-nav {
	display: none;
	/* height: 100%; */
}

.desktop-nav > div {
	/* height: 100%; */
}

.desktop-nav > div > ul > li {
	display: grid;
	align-items: center;
}

.desktop-nav > div > ul {
	display: flex;
	flex-wrap: wrap;
	margin-block: 1rem;
	justify-content: flex-end;
	align-items: center;
	transition: margin 0.3s;
}

.desktop-nav .sub-menu a:hover {
	/* color: var(--secondary-400); */
}

.desktop-nav .menu-item-has-children:hover > .sub-menu,
.desktop-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
}

#menuButton {
	margin: 1rem 0;
	z-index: 69469;
	place-self: end;
}

#menuButton rect,
#menuButton svg {
	/* transition: all 0.35s; */
}

#menuButton[aria-expanded="true"] svg {
	transform: translate(-3%, -2%);
}

#menuButton[aria-expanded="true"] rect:nth-of-type(1) {
	opacity: 0;
}

#menuButton[aria-expanded="true"] rect:nth-of-type(2) {
	transform: rotate(45deg) translateX(25%) translateY(-25%);
}

#menuButton[aria-expanded="true"] rect:nth-of-type(3) {
	transform: rotate(-45deg) translateX(-50%) translateY(-0%);
}

.theme-header.enabled #menuButton {
	margin: 0.5rem 0;
}
.search-form-wrap {
	display: flex;
	flex-direction: row;
}
.desktop-nav .search-form {
	display: none;
}
.close-search-form {
	align-items: center;
}
.theme-header.enabled .search-form-wrap {
	padding: 1rem 0;
}

button.open-search-form,
button.open-search-form:hover,
button.open-search-form:focus,
button.close-search-form,
button.close-search-form:hover,
button.close-search-form:focus {
	background: none;
	border: none;
}

button.open-search-form:focus,
button.close-search-form:focus {
	outline: 2px solid #fff;
}

.search-submit[type="submit"] {
	background: var(--secondary-blue);
	border: 2px solid var(--secondary-blue);
	border-radius: 0;
}

.search-submit[type="submit"]:hover {
	background: transparent;
	border-radius: 0;
}

.search-field {
	background-color: var(--gray-50);
	color: #000;
}

/* .search-form {} */
@media screen and (max-width: 64rem) {
	.brand {
		height: 3rem;
	}
	.brand img {
		width: auto;
	}
}
@media screen and (min-width: 64rem) {
	.desktop-nav {
		display: flex;
		align-items: center;
		flex-direction: row;
		width: 100%;
		justify-content: end;
	}
	#menuButton {
		display: none;
	}
	.mobile-search {
		display: none;
	}
}

#menu-primary_navigation {
	padding: 0;
	display: flex;
	align-items: center;
	gap: 1rem;
}

#menu-primary_navigation li {
	height: 100%;
	transition: all 0.3s;
}

#menu-primary_navigation li.menu-item-has-children button[aria-expanded="false"]::after,
#menu-primary_navigation li.menu-item-has-children button[aria-expanded="true"]::after {
	content: "";
	display: inline-block;
	position: absolute;
	background-size: cover;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24' stroke='white ' stroke-width='4' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	width: 0.875rem;
	height: 0.875rem;
	right: 0.35rem;
	transition: transform 0.3s;
	top: 50%;
	transform: translateY(-50%);
}
#menu-primary_navigation li.menu-item-has-children button[aria-expanded="true"]::after,
#menu-primary_navigation li.menu-item-has-children:hover button[aria-expanded="false"]::after,
#menu-primary_navigation > li.current-menu-ancestor button[aria-expanded="false"]::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24' stroke='black ' stroke-width='4' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
#menu-primary_navigation li.menu-item-has-children button[aria-expanded="true"]::after {
	transform: translateY(-50%) rotate(180deg);
}

#menu-primary_navigation > li:hover button,
#menu-primary_navigation > li:active button,
#menu-primary_navigation > li:focus button,
#menu-primary_navigation > li button[aria-expanded="true"],
#menu-primary_navigation > li.current-menu-ancestor button,
#menu-primary_navigation > li.current_page_item a {
	background: white;
	color: var(--black);
	cursor: pointer;
	border-radius: 0.25rem;
}

#menu-primary_navigation > li > a,
#menu-primary_navigation > li > button {
	background: none;
	display: inline-block;
	/* line-height: 1; */
	text-decoration: none;
	color: inherit;
	padding: 0.75rem 0.5rem;
	transition: padding 0.5s;
	position: relative;
}
/* 
.theme-header.enabled .brand, */
.theme-header.enabled .desktop-nav > div > ul {
	margin-block: 0.5rem;
}

#menu-primary_navigation li.menu-item-has-children > a,
#menu-primary_navigation li.menu-item-has-children > button {
	padding-right: 1.5rem;
}

.theme-header.enabled #menu-primary_navigation > li.menu-item-has-children > a,
.theme-header.enabled #menu-primary_navigation > li.menu-item-has-children > button {
	padding-right: 1.5rem;
}

#menu-primary_navigation .sub-menu {
	display: none;
	position: absolute;
	position: fixed;
	/* padding: 0; */
	margin: 0;
	background: var(--gray-dark);
	z-index: 10;
	/* top: 100%; */
	right: 0;
	min-width: 12rem;
	text-align: center;
	height: 100%;
	width: 100%;
	padding-top: 12rem;
	grid-template-columns: repeat(3, 1fr);
	top: 0;
	z-index: -1;
}
.projects-submenu .sub-menu {
	/* display: block !important; */
}
.projects-submenu .sub-menu .menu-item-has-children:not(:first-child) .menu-card-grid-scrollbar {
	display: none;
}

.projects-submenu li.menu-item .menu-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}
#menu-item-2880 .sub-menu ul {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
}
svg.progress-bar__circle {
	transform: rotate(-90deg);
	height: 2.375rem;
	width: 2.375rem;
	overflow: visible;
}
.progress-bar__background {
	fill: none;
	stroke: var(--primary-blue);
	stroke-width: 2;
}

.progress-bar__progress {
	fill: none;
	stroke: var(--primary-blue);
	stroke: var(--gray-500);
	stroke-dasharray: 100 100;
	stroke-dashoffset: 100;
	stroke-linecap: round;
	stroke-width: 3;
	transition: stroke-dashoffset 1s ease-in-out;
}

.progress,
.progress .percentage {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.progress .percentage {
	gap: 0;
	position: relative;
}
.progress .percentage span {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.menu-card {
	background: #fff;
	color: var(--gray-500);
	border-radius: 0.25rem;
	overflow: hidden;
	padding-bottom: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}
#menu-primary_navigation .projects-submenu .sub-menu {
	/* display: block !important; */
	/* height: 70vh; */
	/* position: relative; */
	background: var(--gradient-green);
	/* display: none !important; */
}
#menu-primary_navigation .projects-submenu .sub-menu ul {
	position: relative;
	direction: ltr;
	/* width: var(); */
}
.projects-submenu li.menu-item > a {
	text-align: left;
}
.desktop-nav .projects-submenu .sub-menu li.menu-item {
	display: flex;
	/* position: relative; */
}
.desktop-nav .projects-submenu .sub-menu:after {
	content: "Scroll Down";
	background-image: url("data:image/svg+xml,%3Csvg stroke='%23fff' fill='%23fff' stroke-width='0' viewBox='0 0 16 16' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z'%3E%3C/path%3E%3C/svg%3E");
	height: 3rem;
	width: 6rem;
	display: block;
	position: absolute;
	left: 50%;
	bottom: 1rem;
	background-repeat: no-repeat;
	transform: translateX(50%);
	background-position: center 80%;
	font-size: 0.75rem;
	background-size: 30%;
	animation: jumpInfinite 2.5s infinite;
	opacity: 0.7;
}
@keyframes jumpInfinite {
	0% {
		bottom: 1rem;
		opacity: 0.7;
	}
	50% {
		bottom: 0;
		opacity: 0;
	}
	100% {
		opacity: 0.7;
		bottom: 1rem;
	}
}
.projects-submenu .sub-menu li.menu-item .menu-card-grid-scrollbar {
	direction: rtl;
	/* max-height: 38rem; */
	max-height: calc(85vh - 12rem);
	overflow-y: auto;
	width: 75%;
	max-width: var(--w-2xl);
	right: 0;
	top: 0;
	scrollbar-color: #999 #333;
	position: absolute;
	padding-left: 8rem;
	padding-right: 8rem;
}
@media screen and (min-width: 1920px) {
	.projects-submenu .sub-menu li.menu-item .menu-card-grid-scrollbar {
		right: calc((75% - 80rem) / 2);
		right: calc((100% - 120rem) / 2);
	}
}
.projects-submenu .sub-menu li.menu-item .menu-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	direction: initial;
}
.projects-submenu .sub-menu li.menu-item .menu-card-grid .menu-card {
	direction: initial;
}
.projects-submenu .sub-menu li.menu-item .menu-card-grid-scrollbar::-webkit-scrollbar {
	width: 0.25rem; /* Mostly for vertical scrollbars */
	/* height: 10px; Mostly for horizontal scrollbars */
}
.projects-submenu .sub-menu li.menu-item .menu-card-grid-scrollbar::-webkit-scrollbar-thumb {
	background: #fff;
}
.projects-submenu .sub-menu li.menu-item .menu-card-grid-scrollbar::-webkit-scrollbar-track {
	background: #666;
}
.projects-submenu .social-links {
	/* position: absolute; */
	/* bottom: 0; */
	/* left: 50%; */
	/* transform: translateX(-50%); */
	/* z-index: -1; */
}
.menu-card .menu-thumb img {
	aspect-ratio: 16/9;
	height: 100%;
}
.menu-card .sub-menu-title {
	background: var(--gradient-green-reverse);
	padding: 1rem 1.5rem;
	text-align: left;
	color: #fff;
	margin-top: 0;
}
.menu-card.land .sub-menu-title {
	background: var(--gradient-gray-reverse);
}
.menu-card.water .sub-menu-title {
	background: var(--gradient-blue-reverse);
}
.menu-card.sustainable-futures .sub-menu-title,
.menu-card.risk-resilience .sub-menu-title {
	background: var(--gradient-copper-rose);
}
.menu-card .menu-card-content {
	padding: 0 1.5rem;
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.menu-card-content .button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: auto;
	align-items: end;
}
.menu-card-content .button-group .btn {
	max-width: max-content;
	letter-spacing: unset;
}
.sub-menu .projects-title,
.sub-menu .theme-title {
	display: none;
}
#menu-primary_navigation .projects-submenu .sub-menu .projects-title,
#menu-primary_navigation .themes-submenu .sub-menu .theme-title {
	display: block;
}
#menu-primary_navigation .themes-submenu .sub-menu {
	max-height: 100vh;
	overflow-y: auto;
	scrollbar-color: #999 #333;
	padding-top: 8rem;
}
#menu-primary_navigation .themes-submenu .sub-menu .menu-card .menu-thumb img {
	aspect-ratio: 20/9;
}

#menu-primary_navigation .themes-submenu .sub-menu .menu-card .sub-menu-title {
	padding: 0.5rem 1.5rem;
}
#menu-primary_navigation .themes-submenu .sub-menu ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	width: var(--content-width);
	max-width: var(--w-2xl);
	/* max-height: calc(70vh - 12rem);
  overflow-y: auto;
  scrollbar-color: #999 #333; */
	padding-right: 1.5rem;
}
#menu-primary_navigation .sub-menu .social-links ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 0.5rem;
}

#menu-primary_navigation .sub-menu .social-links ul li a {
	padding: 0;
}
.sub-menu .menu-item a {
	display: grid;
}
#menu-primary_navigation .sub-menu[aria-hidden="false"] {
	display: block;
}

#menu-primary_navigation .sub-menu li {
	padding: 0;
	margin-bottom: 2rem;
}

#menu-primary_navigation .sub-menu li a {
	display: block;
	padding: 0.5rem 1rem;
	width: 100%;
	text-decoration: none;
	max-width: max-content;
	transition: all 0.25s;
}
#menu-primary_navigation .sub-menu li > a {
	width: var(--content-width);
	margin: 0 auto;
	max-width: var(--w-2xl);
	padding: 0.5rem 0;
}
#curtain-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 69468;
	background: var(--gray-dark);
	color: var(--gray-300);
	min-height: 100vh;
	width: 100vw;
	max-width: 0;
	display: none;
	transition: all 0.3s ease-out;
	overflow-y: scroll;
}

#curtain-menu-container {
	opacity: 0;
	width: var(--content-width);
	max-width: var(--width-medium);
	margin: auto;
	/* padding: 3rem 0; */
	transition: opacity 0.3s ease;
}

#curtain-menu-container.fade-in {
	opacity: 1;
}
#curtain-menu-container nav {
	margin-top: 3rem;
}
#curtain-menu-container ul {
	font-size: 1.25rem;
	padding-left: 0;
}

#curtain-menu-container ul > * + * {
	margin-block-start: 0.6rem;
}

#curtain-menu-container .sub-menu {
	padding: 0;
	margin-block-start: 0.6rem;
	display: none;
	position: absolute;
	background: #1c1a18;
	height: 100%;
	top: 9rem;
	left: 50%;
	width: var(--content-width);
	padding-top: 3rem;
	transform: translateX(-50%);
}
.back-btn {
	display: none;
	background: transparent;
	align-items: center;
	gap: 0.25rem;
}

#curtain-menu-container .sub-menu .sub-menu {
	position: static;
	padding-top: 0;
	transform: initial;
}
#curtain-menu-container .sub-menu li.menu-item-has-children > a {
	pointer-events: none;
}
#curtain-menu-container .sub-menu.has-child-submenu .sub-menu li a {
	font-size: var(--fs-0);
	pointer-events: initial;
}
#curtain-menu-container .social-links {
	width: 100% !important;
}
#curtain-menu-container .social-links ul {
	padding: 0;
	list-style-type: none;
	display: flex;
	gap: 0.5rem;
}
#curtain-menu-container .sub-menu.has-child-submenu .sub-menu {
	display: block;
}
#curtain-menu-container .social-links ul li {
	margin: 0;
	color: #fff;
}
#curtain-menu-container .social-links p {
	color: #fff;
}
#curtain-menu-container .menu-item-has-children > a[href="#"] {
	/* pointer-events: none; */
	/* opacity: 0.75; */
}
#curtain-menu-container .menu-item > a {
	font-size: var(--fs-4);
}
#curtain-menu.active {
	display: block;
}

#curtain-menu.mw-full {
	max-width: 100%;
}

#curtain-content {
	opacity: 0;
	transition: opacity 0.3s;
	padding-block: 5rem;
}

#curtain-content.fade-in {
	opacity: 1;
}
/* --------
End Header
-------- */
/* --------
5.2 Entry Content
-------- */
div[class^="wp-block-lazy"] {
	width: 100%;
	max-width: 100%;
}

.auto-child-width > * {
	max-width: var(--auto-child-max-width, var(--w-sm));
	width: var(--auto-child-width, var(--content-width));
	margin-inline-start: auto;
	margin-inline-end: auto;
}

p > a,
.wp-block-post-navigation-link a,
.wc-forward,
td > a {
	color: currentColor;
	transition: color 0.3s;
}

p > a:hover,
p > a:focus,
.wp-block-post-navigation-link a:hover,
.wp-block-post-navigation-link a:focus,
.wc-forward > a:hover,
.wc-forward > a:focus,
td > a:hover,
td > a:focus {
	color: var(--primary-500);
}

/* Ninja Forms */
.nf-form-layout .nf-before-form-content {
	border-bottom: 1px solid var(--primary-100);
	padding-bottom: 1rem;
}

.nf-form-layout .nf-form-content {
	padding: 0;
	margin-top: 1rem;
	max-width: unset;
}

nf-fields-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

/*** This is to select which elements should span multiple columns ***/
nf-fields-wrap nf-field:nth-child(3) {
	grid-column: span 2;
}
#nf-form-5-cont .label-right .field-wrap {
	display: block;
}
#nf-form-5-cont #nf-field-36-wrap .nf-field-description {
	margin-bottom: 1rem;
}
#nf-form-5-cont #nf-field-26-wrap .nf-field-description {
	margin-top: 1rem;
}
/* --------
End Entry Content
-------- */
/* --------
5.3 Footer
-------- */
.theme-footer ul,
.theme-footer ol {
	padding-left: 0;
}
.theme-footer {
	background: var(--gray-dark);
}
.theme-footer .brand {
	height: auto;
	width: 50%;
	max-width: 15rem;
}
.theme-footer .menu-item a {
	font-size: var(--fs-2);
}
.theme-footer .menu-item a,
.theme-footer p {
	color: var(--gray-300);
}
.theme-footer p a {
	color: var(--primary-blue);
	font-weight: bold;
}

.theme-footer .footer-menu-title {
	color: white;
	font-weight: bold;
	font-size: var(--fs-xs);
}

.footer-content .col-1 {
	grid-column-start: 1;
	grid-column-end: 4;
	padding-right: 3rem;
}

.footer-menu,
.gov-logos {
	display: none;
}
.theme-footer .show-mobile {
	display: block;
}
.footer-content {
	display: flex;
	gap: 2rem;
	flex-direction: column;
}
.gov-logos {
	width: 100%;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 1rem;
	align-items: baseline;
}
.copyright {
	border-top: 1px solid #666666;
	display: grid;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.secure-payment-logos {
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	align-items: center;
}
.secure-payment-logos svg {
	height: 2rem;
	width: 2rem;
}
@media screen and (min-width: 960px) {
	.copyright {
		padding-inline-start: var(--s-md);
		padding-inline-end: var(--s-md);
	}
	.copyright,
	.secure-payment-logos {
		grid-auto-flow: column;
	}

	.secure-payment-logos {
		display: grid;
	}
}
.mobile-footer-menu {
	display: flex;
	justify-content: end;
	align-items: center;
	display: none;
}
.mobile-footer-menu div.line {
	width: 100%;
	height: 1px;
	background-color: #666;
}
.mobile-footer-menu .footer-menu-button {
	background: transparent;
}
.mobile-footer-menu .footer-menu-button:hover svg rect:not(:first-child) {
	width: 35px !important;
	transition: all 300ms;
}
@media screen and (min-width: 767px) {
	.footer-content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (min-width: 1200px) {
	.mobile-footer-menu {
		display: none;
	}
	.footer-menu {
		display: block;
	}
	.gov-logos {
		display: grid;
	}
	.footer-content {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
		gap: 1rem;
	}
	.footer-content .col-1 {
		grid-column-end: 3;
	}
}
/* --------
Emd Footer
-------- */

/* -------------------------------------------------
End Areas
------------------------------------------------- */
/* -------------------------------------------------
6.0 Utilities
------------------------------------------------- */
/* Flow */
.flow,
.inner-flow,
.ff-final {
	--flow: 2rem;
}

.flow > * + * {
	margin-block-start: var(--flow, 2rem);
}
.tabcontent .page .section .layoutArea .column > * + * {
	margin-block-start: var(--flow, 2rem);
}
.inner-flow > * + * {
	margin-block-start: var(--inner-flow, var(--flow, 2rem));
}

.flex-flow {
	display: flex;
	flex-direction: column;
	gap: var(--flow, 2rem);
}
.flex-w {
	display: flex;
	flex-wrap: wrap;
}
.flex-nw {
	display: flex;
	flex-wrap: nowrap;
}
.ff-final {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: end;
}
.flow-none {
	--flow: 0;
}

.flow-2xs {
	--flow: 0.25rem;
}
.flow-xs {
	--flow: 0.5rem;
}
.flow-sm {
	--flow: 1rem;
}
.flow-md {
	--flow: 1.5rem;
}
.flow-lg {
	--flow: 2rem;
}
.flow-xl {
	--flow: 2.5rem;
}
.flow-2xl {
	--flow: 3rem;
}

/* Margins */
.m-3xs {
	margin: var(--s-3xs);
}

.m-2xs {
	margin: var(--s-2xs);
}

.m-xs {
	margin: var(--s-xs);
}

.m-sm {
	margin: var(--s-sm);
}

.m-md {
	margin: var(--s-md);
}

.m-lg {
	margin: var(--s-lg);
}

.m-xl {
	margin: var(--s-xl);
}

.m-2xl {
	margin: var(--s-2xl);
}

.m-c1 {
	margin: var(--s-c1);
}

.m-none {
	margin: 0;
}

.my-3xs {
	margin-block-start: var(--s-3xs);
	margin-block-end: var(--s-3xs);
}

.my-2xs {
	margin-block-start: var(--s-2xs);
	margin-block-end: var(--s-2xs);
}

.my-xs {
	margin-block-start: var(--s-xs);
	margin-block-end: var(--s-xs);
}

.my-sm {
	margin-block-start: var(--s-sm);
	margin-block-end: var(--s-sm);
}

.my-md {
	margin-block-start: var(--s-md);
	margin-block-end: var(--s-md);
}

.my-lg {
	margin-block-start: var(--s-lg);
	margin-block-end: var(--s-lg);
}

.my-xl {
	margin-block-start: var(--s-xl);
	margin-block-end: var(--s-xl);
}

.my-2xl {
	margin-block-start: var(--s-2xl);
	margin-block-end: var(--s-2xl);
}

.my-c1 {
	margin-block-start: var(--s-c1);
	margin-block-end: var(--s-c1);
}

.my-none {
	margin-block-start: 0;
	margin-block-end: 0;
}

.mx-3xs {
	margin-inline-start: var(--s-3xs);
	margin-inline-end: var(--s-3xs);
}

.mx-2xs {
	margin-inline-start: var(--s-2xs);
	margin-inline-end: var(--s-2xs);
}

.mx-xs {
	margin-inline-start: var(--s-xs);
	margin-inline-end: var(--s-xs);
}

.mx-sm {
	margin-inline-start: var(--s-sm);
	margin-inline-end: var(--s-sm);
}

.mx-md {
	margin-inline-start: var(--s-md);
	margin-inline-end: var(--s-md);
}

.mx-lg {
	margin-inline-start: var(--s-lg);
	margin-inline-end: var(--s-lg);
}

.mx-xl {
	margin-inline-start: var(--s-xl);
	margin-inline-end: var(--s-xl);
}

.mx-2xl {
	margin-inline-start: var(--s-2xl);
	margin-inline-end: var(--s-2xl);
}

.mx-c1 {
	margin-inline-start: var(--s-c1);
	margin-inline-end: var(--s-c1);
}

.mx-auto {
	margin-inline-start: auto;
	margin-inline-end: auto;
}

.mt-3xs {
	margin-block-start: var(--s-3xs);
	--mt: var(--s-3xs);
}

.mt-2xs {
	margin-block-start: var(--s-2xs);
	--mt: var(--s-2xs);
}

.mt-xs {
	margin-block-start: var(--s-xs);
	--mt: var(--s-xs);
}

.mt-sm {
	margin-block-start: var(--s-sm);
	--mt: var(--s-sm);
}

.mt-md {
	margin-block-start: var(--s-md);
	--mt: var(--s-md);
}

.mt-lg {
	margin-block-start: var(--s-lg);
	--mt: var(--s-lg);
}

.mt-xl {
	margin-block-start: var(--s-xl);
	--mt: var(--s-xl);
}

.mt-2xl {
	margin-block-start: var(--s-2xl);
	--mt: var(--s-2xl);
}

.mt-c1 {
	margin-block-start: var(--s-c1);
	--mt: var(--s-c1);
}

.mt-none {
	margin-block-start: 0;
	--mt: 0;
}

.mb-3xs {
	margin-block-end: var(--s-3xs);
}

.mb-2xs {
	margin-block-end: var(--s-2xs);
}

.mb-xs {
	margin-block-end: var(--s-xs);
}

.mb-sm {
	margin-block-end: var(--s-sm);
}

.mb-md {
	margin-block-end: var(--s-md);
}

.mb-lg {
	margin-block-end: var(--s-lg);
}

.mb-xl {
	margin-block-end: var(--s-xl);
}

.mb-2xl {
	margin-block-end: var(--s-2xl);
}

.mb-c1 {
	margin-block-end: var(--s-c1);
}

.mb-none {
	margin-block-end: 0;
}

.ml-3xs {
	margin-inline-start: var(--s-3xs);
}

.ml-2xs {
	margin-inline-start: var(--s-2xs);
}

.ml-xs {
	margin-inline-start: var(--s-xs);
}

.ml-sm {
	margin-inline-start: var(--s-sm);
}

.ml-md {
	margin-inline-start: var(--s-md);
}

.ml-lg {
	margin-inline-start: var(--s-lg);
}

.ml-xl {
	margin-inline-start: var(--s-xl);
}

.ml-2xl {
	margin-inline-start: var(--s-2xl);
}

.ml-c1 {
	margin-inline-start: var(--s-c1);
}

.ml-none {
	margin-inline-start: 0;
}

.mr-3xs {
	margin-inline-end: var(--s-3xs);
}

.mr-2xs {
	margin-inline-end: var(--s-2xs);
}

.mr-xs {
	margin-inline-end: var(--s-xs);
}

.mr-sm {
	margin-inline-end: var(--s-sm);
}

.mr-md {
	margin-inline-end: var(--s-md);
}

.mr-lg {
	margin-inline-end: var(--s-lg);
}

.mr-xl {
	margin-inline-end: var(--s-xl);
}

.mr-2xl {
	margin-inline-end: var(--s-2xl);
}

.mr-c1 {
	margin-inline-end: var(--s-c1);
}

.mr-none {
	margin-inline-end: 0;
}
/*Padding*/
.p-3xs {
	padding: var(--s-3xs);
}

.p-2xs {
	padding: var(--s-2xs);
}

.p-xs {
	padding: var(--s-xs);
}

.p-sm {
	padding: var(--s-sm);
}

.p-md {
	padding: var(--s-md);
}

.p-lg {
	padding: var(--s-lg);
}

.p-xl {
	padding: var(--s-xl);
}

.p-2xl {
	padding: var(--s-2xl);
}

.p-c1 {
	padding: var(--s-c1);
}

.p-none {
	padding: 0;
}

.py-3xs {
	padding-block-start: var(--s-3xs);
	padding-block-end: var(--s-3xs);
}

.py-2xs {
	padding-block-start: var(--s-2xs);
	padding-block-end: var(--s-2xs);
}

.py-xs {
	padding-block-start: var(--s-xs);
	padding-block-end: var(--s-xs);
}

.py-sm {
	padding-block-start: var(--s-sm);
	padding-block-end: var(--s-sm);
}

.py-md {
	padding-block-start: var(--s-md);
	padding-block-end: var(--s-md);
}

.py-lg {
	padding-block-start: var(--s-lg);
	padding-block-end: var(--s-lg);
}

.py-xl {
	padding-block-start: var(--s-xl);
	padding-block-end: var(--s-xl);
}

.py-2xl {
	padding-block-start: var(--s-2xl);
	padding-block-end: var(--s-2xl);
}

.py-c1 {
	padding-block-start: var(--s-c1);
	padding-block-end: var(--s-c1);
}

.py-none {
	padding-block-start: 0;
	padding-block-end: 0;
}

.px-3xs {
	padding-inline-start: var(--s-3xs);
	padding-inline-end: var(--s-3xs);
}

.px-2xs {
	padding-inline-start: var(--s-2xs);
	padding-inline-end: var(--s-2xs);
}

.px-xs {
	padding-inline-start: var(--s-xs);
	padding-inline-end: var(--s-xs);
}

.px-sm {
	padding-inline-start: var(--s-sm);
	padding-inline-end: var(--s-sm);
}

.px-md {
	padding-inline-start: var(--s-md);
	padding-inline-end: var(--s-md);
}

.px-lg {
	padding-inline-start: var(--s-lg);
	padding-inline-end: var(--s-lg);
}

.px-xl {
	padding-inline-start: var(--s-xl);
	padding-inline-end: var(--s-xl);
}

.px-2xl {
	padding-inline-start: var(--s-2xl);
	padding-inline-end: var(--s-2xl);
}

.px-c1 {
	padding-inline-start: var(--s-c1);
	padding-inline-end: var(--s-c1);
}

.px-auto {
	padding-inline-start: auto;
	padding-inline-end: auto;
}

.pt-3xs {
	padding-block-start: var(--s-3xs);
}

.pt-2xs {
	padding-block-start: var(--s-2xs);
}

.pt-xs {
	padding-block-start: var(--s-xs);
}

.pt-sm {
	padding-block-start: var(--s-sm);
}

.pt-md {
	padding-block-start: var(--s-md);
}

.pt-lg {
	padding-block-start: var(--s-lg);
}

.pt-xl {
	padding-block-start: var(--s-xl);
}

.pt-2xl {
	padding-block-start: var(--s-2xl);
}

.pt-c1 {
	padding-block-start: var(--s-c1);
}

.pt-none {
	padding-block-start: 0;
}

.pb-3xs {
	padding-block-end: var(--s-3xs);
}

.pb-2xs {
	padding-block-end: var(--s-2xs);
}

.pb-xs {
	padding-block-end: var(--s-xs);
}

.pb-sm {
	padding-block-end: var(--s-sm);
}

.pb-md {
	padding-block-end: var(--s-md);
}

.pb-lg {
	padding-block-end: var(--s-lg);
}

.pb-xl {
	padding-block-end: var(--s-xl);
}

.pb-2xl {
	padding-block-end: var(--s-2xl);
}

.pb-c1 {
	padding-block-end: var(--s-c1);
}

.pb-none {
	padding-block-end: 0;
}

.pl-3xs {
	padding-inline-start: var(--s-3xs);
}

.pl-2xs {
	padding-inline-start: var(--s-2xs);
}

.pl-xs {
	padding-inline-start: var(--s-xs);
}

.pl-sm {
	padding-inline-start: var(--s-sm);
}

.pl-md {
	padding-inline-start: var(--s-md);
}

.pl-lg {
	padding-inline-start: var(--s-lg);
}

.pl-xl {
	padding-inline-start: var(--s-xl);
}

.pl-2xl {
	padding-inline-start: var(--s-2xl);
}

.pl-c1 {
	padding-inline-start: var(--s-c1);
}

.pl-none {
	padding-inline-start: 0;
}

.pr-3xs {
	padding-inline-end: var(--s-3xs);
}

.pr-2xs {
	padding-inline-end: var(--s-2xs);
}

.pr-xs {
	padding-inline-end: var(--s-xs);
}

.pr-sm {
	padding-inline-end: var(--s-sm);
}

.pr-md {
	padding-inline-end: var(--s-md);
}

.pr-lg {
	padding-inline-end: var(--s-lg);
}

.pr-xl {
	padding-inline-end: var(--s-xl);
}

.pr-2xl {
	padding-inline-end: var(--s-2xl);
}

.pr-c1 {
	padding-inline-end: var(--s-c1);
}

.pr-none {
	padding-inline-end: 0;
}

/* Block Widths */
.mw-3xs {
	max-width: var(--w-3xs);
}

.mw-2xs {
	max-width: var(--w-2xs);
}

.mw-xs {
	max-width: var(--w-xs);
}

.mw-sm {
	max-width: var(--w-sm);
}

.mw-md {
	max-width: var(--w-md);
}

.mw-lg {
	max-width: var(--w-lg);
}

.mw-xl {
	max-width: var(--w-xl);
}

.mw-2xl {
	max-width: var(--w-2xl);
}

.mw-3xl {
	max-width: var(--w-3xl);
}

.mw-4xl {
	max-width: var(--w-4xl);
}

.mw-content {
	max-width: var(--content-width);
}

.mw-full {
	max-width: 100%;
}

.w-content {
	width: var(--content-width);
}

.w-full {
	width: 100%;
}

.cmw-3xs {
	--auto-child-max-width: var(--w-3xs);
}

.cmw-2xs {
	--auto-child-max-width: var(--w-2xs);
}

.cmw-xs {
	--auto-child-max-width: var(--w-xs);
}

.cmw-sm {
	--auto-child-max-width: var(--w-sm);
}

.cmw-md {
	--auto-child-max-width: var(--w-md);
}

.cmw-lg {
	--auto-child-max-width: var(--w-lg);
}

.cmw-xl {
	--auto-child-max-width: var(--w-xl);
}

.cmw-2xl {
	--auto-child-max-width: var(--w-2xl);
}

.cmw-3xl {
	--auto-child-max-width: var(--w-3xl);
}

.cmw-4xl {
	--auto-child-max-width: var(--w-4xl);
}

.cmw-full {
	--auto-child-max-width: 100%;
}

.cw-content {
	--auto-child-width: var(--content-width);
}

.cw-full {
	--auto-child-width: 100%;
}

/* Grid Utilities */
.grid-cols,
.grid-cols > .block-editor-inner-blocks > .block-editor-block-list__layout {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(max(25%, 18rem), 1fr));
	gap: var(--gap);
}

/* Other Utilities */
.td-none {
	text-decoration: none;
}

.ar-square,
.wp-block-image.ar-square * {
	aspect-ratio: 1/1;
}

.ar-landscape,
.wp-block-image.ar-landscape * {
	aspect-ratio: 3/2;
}

.ar-portrait,
.wp-block-image.ar-portrait * {
	aspect-ratio: 4/5;
}

.border-full,
.wp-block-image.border-full * {
	border-radius: 50%;
	margin-bottom: 0;
}

.wp-block-image.border-full {
	display: grid;
	place-items: center;
}

.ta-l,
.has-text-align-left {
	text-align: left;
}

.ta-c,
.has-text-align-center {
	text-align: center;
}

.ta-r,
.has-text-align-right {
	text-align: right;
}

.fw-1 {
	font-weight: 100;
}

.fw-2 {
	font-weight: 200;
}

.fw-3 {
	font-weight: 300;
}

.fw-4 {
	font-weight: normal;
}

.fw-5 {
	font-weight: 500;
}

.fw-6 {
	font-weight: 600;
}

.fw-7 {
	font-weight: bold;
}

.fw-8 {
	font-weight: 800;
}

.fw-9 {
	font-weight: 900;
}

.stack {
	display: grid;
	grid-template-areas: "stack";
	position: relative;
}

.stack > * {
	grid-area: stack;
	position: relative;
}

.stack > img {
	position: absolute;
	object-fit: cover;
	height: 100%;
}

.stack > .overlay {
	width: 100%;
	height: 100%;
	background: var(--overlay, rgba(0, 0, 0, 0.5));
}

/* Colour Utilities */
.col-p-50,
.has-primary-50-color {
	color: var(--primary-50);
}

.col-p-100,
.has-primary-100-color {
	color: var(--primary-100);
}

.col-p-200,
.has-primary-200-color {
	color: var(--primary-200);
}

.col-p-300,
.has-primary-300-color {
	color: var(--primary-300);
}

.col-p-400,
.has-primary-400-color {
	color: var(--primary-400);
}

.col-p-500,
.has-primary-500-color {
	color: var(--primary-500);
}

.col-p-600,
.has-primary-600-color {
	color: var(--primary-600);
}

.col-p-700,
.has-primary-700-color {
	color: var(--primary-700);
}

.col-p-800,
.has-primary-800-color {
	color: var(--primary-800);
}

.col-p-900,
.has-primary-900-color {
	color: var(--primary-900);
}
.col-primary {
	color: var(--primary-blue);
}
.col-gray {
	color: var(--primary-gray);
}
.col-green {
	color: var(--primary-green);
}
.col-torquise {
	color: var(--torquise);
}
.col-copper-rose,
.has-copper-rose-color {
	color: var(--primary-copper-rose);
}
.col-s-50,
.has-secondary-50-color {
	color: var(--secondary-50);
}

.col-s-100,
.has-secondary-100-color {
	color: var(--secondary-100);
}

.col-s-200,
.has-secondary-200-color {
	color: var(--secondary-200);
}

.col-s-300,
.has-secondary-300-color {
	color: var(--secondary-300);
}

.col-s-400,
.has-secondary-400-color {
	color: var(--secondary-400);
}

.col-s-500,
.has-secondary-500-color {
	color: var(--secondary-500);
}

.col-s-600,
.has-secondary-600-color {
	color: var(--secondary-600);
}

.col-s-700,
.has-secondary-700-color {
	color: var(--secondary-700);
}

.col-s-800,
.has-secondary-800-color {
	color: var(--secondary-800);
}

.col-s-900,
.has-secondary-900-color {
	color: var(--secondary-900);
}

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

.col-black,
.has-black-color {
	color: var(--black);
}

.col-g-50,
.has-gray-50-color {
	color: var(--gray-50);
}

.col-g-100,
.has-gray-100-color {
	color: var(--gray-100);
}

.col-g-200,
.has-gray-200-color {
	color: var(--gray-200);
}

.col-g-300,
.has-gray-300-color {
	color: var(--gray-300);
}

.col-g-400,
.has-gray-400-color {
	color: var(--gray-400);
}

.col-g-500,
.has-gray-500-color {
	color: var(--gray-500);
}

.col-g-600,
.has-gray-600-color {
	color: var(--gray-600);
}

.col-g-700,
.has-gray-700-color {
	color: var(--gray-700);
}

.col-g-800,
.has-gray-800-color {
	color: var(--gray-800);
}

.col-g-900,
.has-gray-900-color {
	color: var(--gray-900);
}
.bg-gray-dark {
	background: #1c1a18;
}
.bg-gradient-blue {
	background: var(--gradient-blue);
}
.bg-gradient-gray {
	background: var(--gradient-gray);
}
.bg-gradient-green {
	background: var(--gradient-green);
}
.bg-gradient-blue-reverse {
	background: var(--gradient-blue-reverse);
}
.bg-gradient-gray-reverse {
	background: var(--gradient-gray-reverse);
}
.bg-gradient-copper-rose {
	background: var(--gradient-copper-rose);
}
.bg-gradient-copper-rose-reverse {
	background: var(--gradient-copper-rose-reverse);
}
.bg-gradient-green-reverse {
	background: var(--gradient-green-reverse);
}
.bg-p-50,
.has-primary-50-background-color {
	background-color: var(--primary-50);
}

.bg-p-100,
.has-primary-100-background-color {
	background-color: var(--primary-100);
}

.bg-p-200,
.has-primary-200-background-color {
	background-color: var(--primary-200);
}

.bg-p-300,
.has-primary-300-background-color {
	background-color: var(--primary-300);
}

.bg-p-400,
.has-primary-400-background-color {
	background-color: var(--primary-400);
}

.bg-p-500,
.has-primary-500-background-color {
	background-color: var(--primary-500);
}

.bg-p-600,
.has-primary-600-background-color {
	background-color: var(--primary-600);
}

.bg-p-700,
.has-primary-700-background-color {
	background-color: var(--primary-700);
}

.bg-p-800,
.has-primary-800-background-color {
	background-color: var(--primary-800);
}

.bg-p-900,
.has-primary-900-background-color {
	background-color: var(--primary-900);
}

.bg-s-50,
.has-secondary-50-background-color {
	background-color: var(--secondary-50);
}

.bg-s-100,
.has-secondary-100-background-color {
	background-color: var(--secondary-100);
}

.bg-s-200,
.has-secondary-200-background-color {
	background-color: var(--secondary-200);
}

.bg-s-300,
.has-secondary-300-background-color {
	background-color: var(--secondary-300);
}

.bg-s-400,
.has-secondary-400-background-color {
	background-color: var(--secondary-400);
}

.bg-s-500,
.has-secondary-500-background-color {
	background-color: var(--secondary-500);
}

.bg-s-600,
.has-secondary-600-background-color {
	background-color: var(--secondary-600);
}

.bg-s-700,
.has-secondary-700-background-color {
	background-color: var(--secondary-700);
}

.bg-s-800,
.has-secondary-800-background-color {
	background-color: var(--secondary-800);
}

.bg-s-900,
.has-secondary-900-background-color {
	background-color: var(--secondary-900);
}

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

.bg-black,
.has-black-background-color {
	background-color: var(--black);
}

.bg-g-50,
.has-gray-50-background-color {
	background-color: var(--gray-50);
}

.bg-g-100,
.has-gray-100-background-color {
	background-color: var(--gray-100);
}

.bg-g-200,
.has-gray-200-background-color {
	background-color: var(--gray-200);
}

.bg-g-300,
.has-gray-300-background-color {
	background-color: var(--gray-300);
}

.bg-g-400,
.has-gray-400-background-color {
	background-color: var(--gray-400);
}

.bg-g-500,
.has-gray-500-background-color {
	background-color: var(--gray-500);
}

.bg-g-600,
.has-gray-600-background-color {
	background-color: var(--gray-600);
}

.bg-g-700,
.has-gray-700-background-color {
	background-color: var(--gray-700);
}

.bg-g-800,
.has-gray-800-background-color {
	background-color: var(--gray-800);
}

.bg-g-900,
.has-gray-900-background-color {
	background-color: var(--gray-900);
}

.has-primary-blue-color {
	color: var(--primary-blue);
}
.has-secondary-blue-color {
	color: var(--secondary-blue);
}
.has-secondary-blue-color {
	color: var(--secondary-blue);
}
.has-primary-gray-color {
	color: var(--primary-gray);
}
.has-secondary-gray-color {
	color: var(--secondary-gray);
}
.has-primary-green-color {
	color: var(--primary-green);
}
.has-secondary-green-color {
	color: var(--secondary-green);
}
.has-gray-dark-color {
	color: var(--gray-dark);
}
.flex-layout {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap, 2rem);
	row-gap: var(--row-gap, var(--gap, 2rem));
	justify-content: var(--justify);
	align-items: var(--align);
}
.flex-layout > * {
	flex: var(--flex-base, 17rem) var(--flex-grow, 1) var(--flex-shrink, 1);
	max-width: var(--flex-child-max-width);
	min-width: var(--flex-child-min-width);
}
.fb-2 {
	--flex-base: 2rem;
}
.fb-4 {
	--flex-base: 4rem;
}
.fb-6 {
	--flex-base: 6rem;
}
.fb-8 {
	--flex-base: 8rem;
}
.fb-10 {
	--flex-base: 10rem;
}
.fb-12 {
	--flex-base: 12rem;
}
.fb-14 {
	--flex-base: 14rem;
}
.fb-16 {
	--flex-base: 16rem;
}
.fb-18 {
	--flex-base: 18rem;
}
.fb-20 {
	--flex-base: 20rem;
}
.fb-24 {
	--flex-base: 24rem;
}
.fb-28 {
	--flex-base: 28rem;
}
.fb-32 {
	--flex-base: 32rem;
}
.fb-40 {
	--flex-base: 40rem;
}
.gap-none {
	--gap: 0;
}
.gap-2xs {
	--gap: 0.25rem;
}
.gap-xs {
	--gap: 0.5rem;
}
.gap-sm {
	--gap: 1rem;
}
.gap-md {
	--gap: 1.5rem;
}
.gap-lg {
	--gap: 2rem;
}
.gap-xl {
	--gap: 2.5rem;
}
.gap-2xl {
	--gap: 3rem;
}
.row-gap-none {
	--row-gap: 0;
}
.row-gap-2xs {
	--row-gap: 0.25rem;
}
.row-gap-xs {
	--row-gap: 0.5rem;
}
.row-gap-sm {
	--row-gap: 1rem;
}
.row-gap-md {
	--row-gap: 1.5rem;
}
.row-gap-lg {
	--row-gap: 2rem;
}
.row-gap-xl {
	--row-gap: 2.5rem;
}
.row-gap-2xl {
	--row-gap: 3rem;
}

.cols-layout {
	columns: var(--maxCols, 4) var(--colBase, 10rem);
	gap: var(--gap, 1rem);
}

.cols-layout > * + * {
	margin-block-start: var(--row-gap, var(--gap, 1rem));
}

.cols-layout > div {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

.mw-2 {
	max-width: 2rem;
}
.mw-4 {
	max-width: 4rem;
}
.mw-6 {
	max-width: 6rem;
}
.mw-8 {
	max-width: 8rem;
}
.mw-10 {
	max-width: 10rem;
}
.mw-12 {
	max-width: 12rem;
}
.mw-14 {
	max-width: 14rem;
}
.mw-16 {
	max-width: 16rem;
}
.mw-18 {
	max-width: 18rem;
}
.mw-20 {
	max-width: 20rem;
}
.mw-24 {
	max-width: 24rem;
}
.mw-28 {
	max-width: 28rem;
}
.mw-32 {
	max-width: 32rem;
}
.mw-40 {
	max-width: 40rem;
}

.fcmw-2 {
	--flex-child-max-width: 2rem;
}
.fcmw-4 {
	--flex-child-max-width: 4rem;
}
.fcmw-6 {
	--flex-child-max-width: 6rem;
}
.fcmw-8 {
	--flex-child-max-width: 8rem;
}
.fcmw-10 {
	--flex-child-max-width: 10rem;
}
.fcmw-12 {
	--flex-child-max-width: 12rem;
}
.fcmw-14 {
	--flex-child-max-width: 14rem;
}
.fcmw-16 {
	--flex-child-max-width: 16rem;
}
.fcmw-18 {
	--flex-child-max-width: 18rem;
}
.fcmw-20 {
	--flex-child-max-width: 20rem;
}
.fcmw-24 {
	--flex-child-max-width: 24rem;
}
.fcmw-28 {
	--flex-child-max-width: 28rem;
}
.fcmw-32 {
	--flex-child-max-width: 32rem;
}
.fcmw-40 {
	--flex-child-max-width: 40rem;
}

.h-full {
	height: 100%;
}
.grid-layout {
	display: grid;
	grid-template-columns: repeat(var(--col-fill, auto-fit), minmax(var(--col-min, 15rem), var(--col-max, 1fr)));
	grid-auto-rows: var(--grid-auto-rows, 1fr);
	gap: var(--gap, 2rem);
}
.justify-start {
	--justify: start;
}
.justify-center {
	--justify: center;
}
.justify-end {
	--justify: end;
}
.justify-around {
	--justify: space-around;
}
.justify-between {
	--justify: space-between;
}
.align-start {
	--align: start;
}
.align-center {
	--align: center;
}
.align-end {
	--align: end;
}
.align-around {
	--align: space-around;
}
.align-between {
	--align: space-between;
}
.as-start {
	align-self: start;
}
.as-center {
	align-self: center;
}
.as-end {
	align-self: end;
}
.js-start {
	justify-self: start;
}
.js-center {
	justify-self: center;
}
.js-end {
	justify-self: end;
}
/* -------------------------------------------------
End Utilities
------------------------------------------------- */
/* -------------------------------------------------
7.0 Buttons
------------------------------------------------- */
.btn,
.facetwp-reset,
html .woocommerce .button,
html .woocommerce button.button,
html .woocommerce button.button.alt,
html .woocommerce button.button.alt.disabled,
html .woocommerce a.button.checkout-button,
html .woof_btn_default,
.linkbtn > a,
html body input[id^="nf-"][type="button"],
button[type="submit"],
input[type="submit"],
.wp-pagenavi .nextpostslink,
.elm-button,
#nf-form-5-cont .nf-form-content button,
.nf-form-content input[type="submit"] {
	color: var(--color, var(--white));
	background: var(--background, var(--primary-blue));
	border: var(--border, 2px solid var(--primary-blue));
	border-radius: var(--borderRadius, 0.25rem);
	padding: var(--padding, 0.5rem 1rem);
	transform: var(--transform, none);
	display: inline-flex;
	width: fit-content;
	align-items: center;
	text-decoration: none;
	font-family: var(--heading-font);
	/* text-transform: uppercase; */
	/* font-weight: bold; */
	font-size: 0.875rem;
	letter-spacing: unset;
	transition: background 0.55s, color 0.55s, border 0.55s;
}

.btn:hover,
html .woocommerce .button:hover,
html .woocommerce button.button:hover,
html .woocommerce button.button.alt:hover,
html .woocommerce button.button.alt.disabled:hover,
html .woocommerce a.button.checkout-button:hover,
html .woof_btn_default:hover,
.linkbtn > a:hover,
html body input[id^="nf-"][type="button"]:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
#nf-form-5-cont .nf-form-content button:hover,
.nf-form-content input[type="submit"]:hover,
#nf-form-5-cont .nf-form-content button:focus,
.nf-form-content input[type="submit"]:focus {
	color: var(--hColor, var(--white));
	background: var(--hBackground, transparent);
	border: var(--hBorder, 2px solid var(--white));
	border-radius: var(--hBorderRadius, 0.25rem);
	padding: var(--hPadding, 0.5rem 1rem);
	transform: var(--hTransform, none);
	cursor: pointer;
}

.btn:focus,
html .woocommerce .button:focus,
html .woocommerce button.button:focus,
html .woocommerce button.button.alt:focus,
html .woocommerce button.button.alt.disabled:focus,
html .woocommerce a.button.checkout-button:focus,
html .woof_btn_default:focus,
.linkbtn > a:focus,
html body input[id^="nf-"][type="button"]:focus,
button[type="submit"]:focus,
input[type="submit"]:focus {
	color: var(--fColor, var(--white));
	background: var(--fBackground, var(--primary-blue));
	border: var(--fBorder, 2px solid var(--primary-blue));
	border-radius: var(--fBorderRadius, 0.25rem);
	padding: var(--fPadding, 0.5rem 1rem);
	transform: var(--fTransform, var(--primary-600));
	outline: none;
}

.btn:active,
html .woocommerce .button:active,
html .woocommerce button.button:active,
html .woocommerce button.button.alt:active,
html .woocommerce button.button.alt.disabled:active,
html .woocommerce a.button.checkout-button:active,
html .woof_btn_default:active,
.linkbtn > a:active,
html body input[id^="nf-"][type="button"]:active,
button[type="submit"]:active,
input[type="submit"]:active,
#nf-form-5-cont .nf-form-content button:active,
.nf-form-content input[type="submit"]:active {
	color: var(--aColor, var(--white));
	background: var(--aBackground, var(--primary-blue));
	border: var(--aBorder, 2px solid var(--primary-blue));
	border-radius: var(--aBorderRadius, 0.25rem);
	padding: var(--aPadding, 0.5rem 1rem);
	transform: var(--aTransform, none);
}
.has-down-arrow .btn {
	background-image: url("data:image/svg+xml,%3Csvg stroke='%23fff' fill='none' stroke-width='4' viewBox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 95% center;
	padding-right: 1.75rem;
}
/* .has-down-arrow .btn:hover {
  background-image: url("data:image/svg+xml,%3Csvg stroke='%2301b1c6' fill='none' stroke-width='4' viewBox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
} */
.header-button {
	--color: var(--gray-dark);
	--hColor: #fff;
	--fColor: #fff;
	--aColor: var(--gray-dark);
	--background: white;
	--hBackground: transparent;
	--fBackground: transparent;
	--aBackground: white;
	--border: 2px solid #fff;
	--hBorder: 2px solid #fff;
	--fBorder: 2px solid #fff;
	--aBorder: 2px solid #fff;
	--padding: 0.25rem;
	--hPadding: 0.25rem;
	--fPadding: 0.25rem;
	--aPadding: 0.25rem;
}
.header-button[aria-expanded="false"] span.menu-open-text,
.header-button[aria-expanded="true"] span.menu-close-text {
	display: block;
	margin: 0 0.125rem 0 0.25rem;
}
.header-button[aria-expanded="false"] span.menu-close-text,
.header-button[aria-expanded="true"] span.menu-open-text {
	display: none;
	margin: 0 0.125rem 0 0.25rem;
}
.btn.black-outline-black-fill {
	--color: var(--black);
	--hColor: var(--white);
	--fColor: var(--white);
	--aColor: var(--white);
	--background: none;
	--hBackground: var(--black);
	--fBackground: var(--black);
	--aBackground: var(--black);
	--border: 2px solid var(--black);
	--hBorder: 2px solid var(--black);
	--fBorder: 2px solid var(--black);
	--aBorder: 2px solid var(--black);
}

.btn.black-fill-black-outline {
	--color: var(--white);
	--hColor: var(--black);
	--fColor: var(--black);
	--aColor: var(--black);
	--background: var(--black);
	--hBackground: none;
	--fBackground: none;
	--aBackground: none;
	--border: 2px solid var(--black);
	--hBorder: 2px solid var(--black);
	--fBorder: 2px solid var(--black);
	--aBorder: 2px solid var(--black);
}

.btn.white-outline-white-fill {
	--color: var(--white);
	--hColor: var(--black);
	--fColor: var(--black);
	--aColor: var(--black);
	--background: none;
	--hBackground: var(--white);
	--fBackground: var(--white);
	--aBackground: var(--white);
	--border: 2px solid var(--white);
	--hBorder: 2px solid var(--white);
	--fBorder: 2px solid var(--white);
	--aBorder: 2px solid var(--white);
}

.btn.white-fill-white-outline {
	--color: var(--black);
	--hColor: var(--white);
	--fColor: var(--white);
	--aColor: var(--white);
	--background: var(--white);
	--hBackground: none;
	--fBackground: none;
	--aBackground: none;
	--border: 2px solid var(--white);
	--hBorder: 2px solid var(--white);
	--fBorder: 2px solid var(--white);
	--aBorder: 2px solid var(--white);
}

.btn.black-outline-white-fill {
	--color: var(--black);
	--hColor: var(--black);
	--fColor: var(--black);
	--aColor: var(--black);
	--background: none;
	--hBackground: var(--white);
	--fBackground: var(--white);
	--aBackground: var(--white);
	--border: 2px solid var(--black);
	--hBorder: 2px solid var(--white);
	--fBorder: 2px solid var(--white);
	--aBorder: 2px solid var(--white);
}
.facetwp-reset {
	--color: var(--black);
	--hColor: var(--black);
	--fColor: var(--black);
	--aColor: var(--black);
	--background: none;
	--hBackground: var(--white);
	--fBackground: var(--white);
	--aBackground: var(--white);
	--border: 1px solid #ccc;
	--hBorder: 1px solid var(--white);
	--fBorder: 1px solid var(--white);
	--aBorder: 1px solid var(--white);
}
.btn.white-outline-black-fill {
	--color: var(--white);
	--hColor: var(--white);
	--fColor: var(--white);
	--aColor: var(--white);
	--background: none;
	--hBackground: var(--black);
	--fBackground: var(--black);
	--aBackground: var(--black);
	--border: 2px solid var(--white);
	--hBorder: 2px solid var(--black);
	--fBorder: 2px solid var(--black);
	--aBorder: 2px solid var(--black);
}
.btn.white-outline-blue-fill {
	--color: var(--white);
	--hColor: var(--white);
	--fColor: var(--white);
	--aColor: var(--white);
	--background: none;
	--hBackground: var(--primary-blue);
	--fBackground: var(--primary-blue);
	--aBackground: var(--primary-blue);
	--border: 2px solid var(--white);
	--hBorder: 2px solid var(--primary-blue);
	--fBorder: 2px solid var(--primary-blue);
	--aBorder: 2px solid var(--primary-blue);
}
.biodiversity .btn,
.btn.primary-green-fill {
	--color: var(--white);
	--hColor: var(--primary-green);
	--fColor: var(--primary-green);
	--aColor: var(--primary-green);
	--background: var(--primary-green);
	--hBackground: none;
	--fBackground: none;
	--aBackground: none;
	--border: 2px solid var(--primary-green);
	--hBorder: 2px solid var(--primary-green);
	--fBorder: 2px solid var(--primary-green);
	--aBorder: 2px solid var(--primary-green);
}
.btn.primary-green-outline {
	--color: var(--primary-green);
	--hColor: var(--white);
	--fColor: var(--white);
	--aColor: var(--white);
	--background: none;
	--hBackground: var(--primary-green);
	--fBackground: var(--primary-green);
	--aBackground: var(--primary-green);
	--border: 2px solid var(--primary-green);
	--hBorder: 2px solid var(--primary-green);
	--fBorder: 2px solid var(--primary-green);
	--aBorder: 2px solid var(--primary-green);
}
.land .btn,
.btn.primary-gray-fill {
	--color: var(--white);
	--hColor: var(--primary-gray);
	--fColor: var(--primary-gray);
	--aColor: var(--primary-gray);
	--background: var(--primary-gray);
	--hBackground: none;
	--fBackground: none;
	--aBackground: none;
	--border: 2px solid var(--primary-gray);
	--hBorder: 2px solid var(--primary-gray);
	--fBorder: 2px solid var(--primary-gray);
	--aBorder: 2px solid var(--primary-gray);
}
.btn.primary-gray-outline {
	--color: var(--primary-gray);
	--hColor: var(--white);
	--fColor: var(--white);
	--aColor: var(--white);
	--background: none;
	--hBackground: var(--primary-gray);
	--fBackground: var(--primary-gray);
	--aBackground: var(--primary-gray);
	--border: 2px solid var(--primary-gray);
	--hBorder: 2px solid var(--primary-gray);
	--fBorder: 2px solid var(--primary-gray);
	--aBorder: 2px solid var(--primary-gray);
}
.water .btn,
.btn.primary-blue-fill {
	--color: var(--white);
	--hColor: var(--primary-blue);
	--fColor: var(--primary-blue);
	--aColor: var(--primary-blue);
	--background: var(--primary-blue);
	--hBackground: none;
	--fBackground: none;
	--aBackground: none;
	--border: 2px solid var(--primary-blue);
	--hBorder: 2px solid var(--primary-blue);
	--fBorder: 2px solid var(--primary-blue);
	--aBorder: 2px solid var(--primary-blue);
}
.btn.primary-blue-outline {
	--color: var(--primary-blue);
	--hColor: var(--white);
	--fColor: var(--white);
	--aColor: var(--white);
	--background: none;
	--hBackground: var(--primary-blue);
	--fBackground: var(--primary-blue);
	--aBackground: var(--primary-blue);
	--border: 2px solid var(--primary-blue);
	--hBorder: 2px solid var(--primary-blue);
	--fBorder: 2px solid var(--primary-blue);
	--aBorder: 2px solid var(--primary-blue);
}
.btn.torquise-fill {
	--color: var(--white);
	--hColor: var(--torquise);
	--fColor: var(--torquise);
	--aColor: var(--torquise);
	--background: var(--torquise);
	--hBackground: none;
	--fBackground: none;
	--aBackground: none;
	--border: 2px solid var(--torquise);
	--hBorder: 2px solid var(--torquise);
	--fBorder: 2px solid var(--torquise);
	--aBorder: 2px solid var(--torquise);
}
.btn.torquise-fill-white {
	--color: var(--white);
	--hColor: var(--torquise);
	--fColor: var(--torquise);
	--aColor: var(--torquise);
	--background: var(--torquise);
	--hBackground: var(--white);
	--fBackground: none;
	--aBackground: none;
	--border: 2px solid var(--torquise);
	--hBorder: 2px solid var(--white);
	--fBorder: 2px solid var(--torquise);
	--aBorder: 2px solid var(--torquise);
}
.btn.torquise-outline {
	--color: var(--torquise);
	--hColor: var(--white);
	--fColor: var(--white);
	--aColor: var(--white);
	--background: none;
	--hBackground: var(--torquise);
	--fBackground: var(--torquise);
	--aBackground: var(--torquise);
	--border: 2px solid var(--torquise);
	--hBorder: 2px solid var(--torquise);
	--fBorder: 2px solid var(--torquise);
	--aBorder: 2px solid var(--torquise);
}
/* .single-project.sustainable-futures .btn:not(#menu-primary_navigation .btn), */
.btn.primary-copper-rose-fill {
	--color: var(--white);
	--hColor: var(--primary-copper-rose);
	--fColor: var(--primary-copper-rose);
	--aColor: var(--primary-copper-rose);
	--background: var(--primary-copper-rose);
	--hBackground: none;
	--fBackground: none;
	--aBackground: none;
	--border: 2px solid var(--primary-copper-rose);
	--hBorder: 2px solid var(--primary-copper-rose);
	--fBorder: 2px solid var(--primary-copper-rose);
	--aBorder: 2px solid var(--primary-copper-rose);
}
.btn.primary-copper-rose-outline {
	--color: var(--primary-copper-rose);
	--hColor: var(--white);
	--fColor: var(--white);
	--aColor: var(--white);
	--background: none;
	--hBackground: var(--primary-copper-rose);
	--fBackground: var(--primary-copper-rose);
	--aBackground: var(--primary-copper-rose);
	--border: 2px solid var(--primary-copper-rose);
	--hBorder: 2px solid var(--primary-copper-rose);
	--fBorder: 2px solid var(--primary-copper-rose);
	--aBorder: 2px solid var(--primary-copper-rose);
}
.nf-form-content input[type="submit"] {
	height: inherit;
	cursor: pointer;
}
#nf-form-5-cont .nf-form-content button:hover,
.nf-form-content input[type="submit"]:hover,
#nf-form-5-cont .nf-form-content button:focus,
.nf-form-content input[type="submit"]:focus {
	color: var(--primary-blue);
	background-color: transparent;
}
/* -------------------------------------------------
End Buttons
------------------------------------------------- */
/* -------------------------------------------------
8.0 Gutenberg Extras
------------------------------------------------- */

.sticker,
.double-sticker .flayout-inner-child {
	position: sticky;
	top: 6rem;
}

.section-sticker > .flow {
	height: 100%;
}

.section-sticker > .flow > * {
	position: sticky;
	top: 6rem;
}
/* -------------------------------------------------
End Gutenberg Conditionals
------------------------------------------------- */
.buttons-block {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: var(--bbj);
	align-items: var(--bba);
}

.bbj-start {
	--bbj: start;
}

.bbj-center {
	--bbj: center;
}

.bbj-end {
	--bbj: end;
}

.bba-start {
	--bba: start;
}

.bba-center {
	--bba: center;
}

.bba-end {
	--bba: end;
}

.search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	height: fit-content;
}

.search-form .search-field {
	height: 100%;
	width: 100%;
	border: 1px solid var(--gray-200);
	border-radius: 0;
	padding: 0.5rem;
}

.wp-block-search__input {
	border: 1px solid currentColor;
}

hr.wp-block-separator,
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
	border: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 1px;
	background: currentColor;
}
/* -------------------------------------------------
WooCommerce Styles
------------------------------------------------- */
html div[data-block-name="woocommerce/legacy-template"] {
	max-width: unset;
}

.woof_redraw_zone > * + * {
	padding-block-start: 1.5rem;
	border-top: 1px solid var(--gray-100);
	margin-block-start: 1.25rem;
}

.wp-block-lazyblock-shop-filter {
	display: none;
}

.woof_show_auto_form {
	display: inline-flex;
	margin-block: 1rem !important;
	height: unset !important;
}

.woof_products_top_panel li a {
	color: var(--primary-500);
	text-decoration: underline;
	transition: all 0.35s;
}

.woof_products_top_panel li a:hover {
	color: var(--primary-700);
}

@media (min-width: 73.375rem) {
	.wp-block-lazyblock-shop-filter {
		display: block;
	}

	html .woof_btn_default.woof_show_auto_form {
		display: none !important;
	}
}

.wc-block-components-product-image img,
img.pswp__img {
	opacity: 1;
}

/* WC Dashboard Styles */
/* .woocommerce nav.woocommerce-MyAccount-navigation ul {
	padding: 0;
	display: flex;
	list-style: none;
	gap: 0.5rem;
} */

/* Attribute Filter Block */
.wp-block-woocommerce-attribute-filter > .wc-block-attribute-filter {
	display: flex;
	align-items: start;
	margin-bottom: unset;
}

.wp-block-woocommerce-attribute-filter h1,
.wp-block-woocommerce-attribute-filter h2,
.wp-block-woocommerce-attribute-filter h3,
.wp-block-woocommerce-attribute-filter h4,
.wp-block-woocommerce-attribute-filter h5,
.wp-block-woocommerce-attribute-filter h6 {
	font-size: clamp(1.125rem, 1.09rem + 0.18vw, 1.25rem);
}

.wp-block-woocommerce-attribute-filter .wc-block-checkbox-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	row-gap: 0;
	margin-block-start: 1rem;
}

.wp-block-woocommerce-attribute-filter .wc-block-checkbox-list > li {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.wp-block-woocommerce-attribute-filter .wc-block-checkbox-list > li > input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 1.5em;
	height: 1.5em;
	border: 1px solid var(--gray-100);
	border-radius: 0;
	transform: translateY(-0.075em);
	display: grid;
	place-content: center;
}

.wp-block-woocommerce-attribute-filter .wc-block-checkbox-list > li > input[type="checkbox"]::before {
	content: "";
	width: 0.65em;
	height: 0.65em;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em var(--primary-400);
	transform-origin: bottom left;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.wp-block-woocommerce-attribute-filter .wc-block-checkbox-list > li > input[type="checkbox"]::outline {
	outline: max(2px, 0.15em) solid currentColor;
	outline-offset: max(2px, 0.15em);
}

.wp-block-woocommerce-attribute-filter .wc-block-checkbox-list > li > input[type="checkbox"]:checked::before {
	transform: scale(1);
}

/* Price Filter Block */
.wp-block-woocommerce-price-filter .wc-block-components-price-slider__range-input-progress {
	--range-color: var(--primary-400);
}

.wp-block-woocommerce-price-filter .wc-block-price-filter__controls input {
	border-color: var(--gray-100) !important;
}

/* Product List */
ul.products {
	padding: 0;
}

.woocommerce ul.products li.product .added_to_cart {
	margin-inline-start: 0.5rem;
}

.woocommerce ul.products li.product img {
	transition: all 0.5s;
}

.woocommerce ul.products li.product:hover img {
	filter: grayscale(0.8);
}

.woocommerce ul.products li.product > a.woocommerce-loop-product__link {
	color: inherit;
}

.woocommerce ul.products li.product .price {
	color: var(--gray-600);
}

.woocommerce-loop-product__title {
	color: inherit;
}

.woocommerce ul.products li.product .button {
	margin-top: 0.25rem;
}

/* Product Page */
.woocommerce-product-details__short-description {
	display: grid;
	gap: 1.5rem;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--primary-600);
}

.single-product .summary.entry-summary {
	display: grid;
	gap: 1.5rem;
}

.single-product .product_meta {
	display: none;
}

button[name="add-to-cart"] {
	height: 100%;
	display: grid;
	align-items: center;
}

/* Login page */
.woocommerce-form-login__rememberme {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* Account Pages */
.woocommerce-edit-address .woocommerce-MyAccount-content > p {
	border: 1px solid var(--gray-100);
	padding: 0.5rem;
	margin-block-end: 1rem;
}

/* Gutenberg product grids */
.wc-block-grid__products .wc-block-grid__product-image img {
	width: 100%;
}

.wc-block-grid__product-link {
	text-decoration: none;
	transition: all 0.5s;
	color: inherit;
}

.wc-block-grid__product-link:hover {
	filter: grayscale(0.8);
}

.wc-block-grid__product-title {
	font-size: clamp(1.125rem, 1.09rem + 0.18vw, 1.25rem);
	font-weight: normal;
}

.woocommerce .products img {
	opacity: 1;
}
/* -------------------------------------------------
End WooCommerce Styles
------------------------------------------------- */

/* Scroll reveal */

.sr {
	transition: transform var(--sr-time, 0.85s) cubic-bezier(0.215, 0.61, 0.355, 1),
		opacity var(--sr-time, 0.85s) cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-delay: var(--sr-delay, 0.1s);
	opacity: 0;
}

.sr-slide-up {
	transform: translateY(50px);
}

.sr-slide-down {
	transform: translateY(-50px);
}
.sr-slide-left {
	transform: translateX(50px);
}
.sr-slide-right {
	transform: translateX(-50px);
}

.sr-t-2 {
	transition-duration: 0.2s;
}

.sr-t-3 {
	transition-duration: 0.3s;
}

.sr-t-4 {
	transition-duration: 0.4s;
}

.sr-t-5 {
	transition-duration: 0.5s;
}

.sr-t-6 {
	transition-duration: 0.6s;
}

.sr-t-7 {
	transition-duration: 0.7s;
}

.sr-t-8 {
	transition-duration: 0.8s;
}

.sr-t-9 {
	transition-duration: 0.9s;
}

.sr-d-2 {
	transition-delay: 0.2s;
}

.sr-d-3 {
	transition-delay: 0.3s;
}

.sr-d-4 {
	transition-delay: 0.4s;
}

.sr-d-5 {
	transition-delay: 0.5s;
}

.sr-d-6 {
	transition-delay: 0.6s;
}

.sr-d-7 {
	transition-delay: 0.7s;
}

.sr-d-8 {
	transition-delay: 0.8s;
}

.sr-d-9 {
	transition-delay: 0.9s;
}
.sr-s-2 {
	--sr-scale: 2;
}
.sr-s-3 {
	--sr-scale: 3;
}
.sr-s-4 {
	--sr-scale: 4;
}
.sr-s-5 {
	--sr-scale: 5;
}
.sr-s-6 {
	--sr-scale: 6;
}
.sr-s-7 {
	--sr-scale: 7;
}
.sr-s-8 {
	--sr-scale: 8;
}
.sr-s-9 {
	--sr-scale: 9;
}

[data-sr-slide] {
	opacity: 1;
	transform: translateY(0);
}
[data-sr-fade] {
	opacity: 1;
}
/* end scroll reveal */

.tech-stack img {
	background: none;
}

.mw-3 {
	max-width: 3rem;
}

.icon-label {
	/* line-height: 1.2; */
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 82rem) {
	.tech-stack .wp-block-flowio-flayout-inner-content:nth-child(even) {
		display: none;
	}
}
/* separator block */
.separator-svg-icons {
	padding: 0;
	list-style-type: none;
	margin-top: -2.5rem;
	margin-bottom: -2.5rem;
	position: relative;
	z-index: 9;
}
.separator-svg-icons svg {
	height: 5rem;
	width: 5rem;
}
.svg-icons {
	padding: 0;
}
.separator-svg-icons li,
.svg-icons li {
	height: 5rem;
	width: 5rem;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	/* padding: 1.5rem; */
}
.svg-icons li.white,
.separator-svg-icons li.white {
	background: #fff;
}
/* .svg-icons li.white svg,
.svg-icons li.white svg,
.svg-icons li.white svg path,
.separator-svg-icons li.white svg,
.separator-svg-icons li.white svg path {
  fill: var(--primary-blue);
  stroke: var(--primary-blue);
} */
.separator-svg-icons li.bg-gradient-copper-rose-reverse svg,
.separator-svg-icons li.bg-gradient-copper-rose-reverse svg path,
.svg-icons li.bg-gradient-copper-rose-reverse svg,
.svg-icons li.bg-gradient-copper-rose-reverse svg path,
.svg-icons li.bg-gradient-blue-reverse svg,
.svg-icons li.bg-gradient-blue-reverse svg path,
.svg-icons li.bg-gradient-green-reverse svg,
.svg-icons li.bg-gradient-green-reverse svg path,
.svg-icons li.bg-gradient-gray-reverse svg,
.svg-icons li.bg-gradient-gray-reverse svg path,
.separator-svg-icons li.bg-gradient-blue-reverse svg,
.separator-svg-icons li.bg-gradient-blue-reverse svg path,
.separator-svg-icons li.bg-gradient-green-reverse svg,
.separator-svg-icons li.bg-gradient-green-reverse svg path,
.separator-svg-icons li.bg-gradient-gray-reverse svg,
.separator-svg-icons li.bg-gradient-gray-reverse svg path {
	fill: var(--primary-blue);
	fill: white;
}
.separator-svg-icons li.bg-gradient-copper-rose-reverse svg,
.separator-svg-icons li.bg-gradient-copper-rose-reverse svg path {
	stroke: white;
}

/* post-block*/
.custom-post-results-list {
	display: grid;
	padding: 0;
	background-color: inherit;
}
.custom-post-results-list li {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}
.custom-post-results-list li .card-content {
	min-width: 50ch;
}
.custom-post-results-list li .card-thumbnail {
	height: 100%;
	position: relative;
}

/* .custom-post-results-list li svg.progress-bar__circle {
  height: 3.5rem;
  width: 3.5rem;
} */
.posthero .hero-image img {
	aspect-ratio: 16/9;
}
.info-btn {
	display: none;
}
.project-information {
	display: none;
}
@media screen and (min-width: 36rem) {
	.custom-post-results-list li .card-thumbnail img {
		height: 100%;
		aspect-ratio: 16/9;
	}
	.custom-post-results-list li {
		display: grid;
		grid-template-columns: 1fr 2fr;
	}

	.custom-post-results-list li .card-content {
		margin-left: auto;
	}
	.custom-post-results-list li:nth-child(even) {
		grid-template-columns: 2fr 1fr;
	}
	.custom-post-results-list li:nth-child(even) .card-thumbnail {
		order: 1;
	}
	.custom-post-results-list li:nth-child(even) .card-content {
		order: 2;
		margin-left: inherit;
		margin-right: auto;
	}
	/* .custom-post-results-list li .card-thumbnail:before,
  .custom-post-results-list li .card-thumbnail:after {
    content: "";
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='66' height='66' viewBox='0 0 66 66' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M33 66C14.8 66 0 51.2 0 33C0 14.8 14.8 0 33 0C51.2 0 66 14.8 66 33C66 51.2 51.2 66 33 66ZM33 3C16.5 3 3 16.5 3 33C3 49.5 16.5 63 33 63C49.5 63 63 49.5 63 33C63 16.5 49.5 3 33 3ZM38.6 51.8H27.4C25.7 51.8 24.4 50.4 24.4 48.8V45.8C24.4 44.1 25.8 42.8 27.4 42.8V37.7C25.7 37.7 24.4 36.3 24.4 34.7V31.7C24.4 30 25.8 28.7 27.4 28.7H35.5C37.2 28.7 38.5 30.1 38.5 31.7V42.9C40.2 42.9 41.5 44.3 41.5 45.9V48.9C41.6 50.4 40.3 51.8 38.6 51.8ZM27.4 45.7V48.8H38.6V45.8H35.6V31.5H27.4V34.6H30.4V45.7H27.4ZM33 26.6C29.2 26.6 26.2 23.5 26.2 19.8C26.2 16 29.3 13 33 13C36.8 13 39.8 16.1 39.8 19.8C39.8 23.6 36.8 26.6 33 26.6ZM33 16C30.9 16 29.2 17.7 29.2 19.8C29.2 21.9 30.9 23.6 33 23.6C35.1 23.6 36.8 21.9 36.8 19.8C36.8 17.7 35.1 16 33 16Z' fill='white'/%3E%3C/svg%3E%0A");
    display: block;
    position: absolute;
    left: -2.5rem;
    top: 5rem;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9;
    background-size: 50%;
  }
  .custom-post-results-list li .card-thumbnail:before {
    background-image: var(--gradient-blue-reverse);
    background-size: 100%;
  }
  .custom-post-results-list li:nth-child(even) .card-thumbnail:before,
  .custom-post-results-list li:nth-child(even) .card-thumbnail:after {
    left: inherit;
    right: -3rem;
  } */
	.info-btn {
		display: block;
		background-image: var(--gradient-blue-reverse);
		background-size: 100%;
		height: 5rem;
		width: 5rem;
		border-radius: 100%;
		position: absolute;
		left: -2.5rem;
		top: 5rem;
		background-repeat: no-repeat;
		background-position: center;
		z-index: 9;
	}
	.card-thumbnail .info-btn svg {
		z-index: 2;
		background-image: var(--gradient-blue-reverse);
		border-radius: 100%;
	}
	.card-thumbnail .info-btn::after {
		opacity: 0;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		content: "";
		height: 100%;
		width: 100%;
		background: var(--secondary-blue);
		border-radius: 100%;
		-webkit-animation-name: ripple;
		animation-name: ripple;
		-webkit-animation-duration: 3s;
		animation-duration: 3s;
		-webkit-animation-delay: 0s;
		animation-delay: 0s;
		-webkit-animation-iteration-count: infinite;
		animation-iteration-count: infinite;
		-webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
		animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
		z-index: -1;
	}
	.custom-post-results-list li:nth-child(even) .card-thumbnail .info-btn,
	.custom-post-results-list li:nth-child(even) .card-thumbnail .info-btn {
		left: inherit;
		right: -2.5rem;
	}
	/* .card-thumbnail .project-information:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
  } */

	.card-thumbnail .overlay {
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 99;
	}
	.card-thumbnail .project-information {
		display: block;
		background: white;
		position: fixed;
		color: #000;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		/* min-height: 4rem;
    width: 15rem; */
		z-index: 100;
	}
	/* .project-information .info-header, */
	.project-information .info-header button {
		display: flex;
		align-items: center;
		gap: 0.25rem;
		justify-content: center;
		background-color: transparent;
	}
	.project-information .info-header {
		display: flex;
		justify-content: space-between;
		position: absolute;
		top: 1rem;
		width: 95%;
		left: 0;
	}
	.project-information .info-header > div {
		height: 5rem;
		width: 5rem;
		margin-top: -3.5rem;
		margin-left: -2.5rem;
		background-image: var(--gradient-blue-reverse);
		border-radius: 100%;
	}
}

/* Style the tab */
.tab-wrapper {
	display: grid;
	gap: 1rem;
}
@media screen and (min-width: 72rem) {
	.tab-wrapper {
		grid-template-columns: 40ch 1fr;
	}
}
.tab-wrapper .tab {
	display: flex;
	gap: 1rem;
	flex-direction: column;
	max-width: fit-content;
}
.tab-wrapper .tab button {
	background-color: transparent;
	text-align: left;
	color: var(--secondary-gray);
}
.tab-wrapper .tab button:hover,
.tab-wrapper .tab button.active {
	color: #fff;
}
.tab-wrapper .tab-content-wrapper {
}
.tab-content-wrapper figure {
	width: 100% !important;
	pointer-events: none;
}
.tab-content-wrapper figure figcaption {
	display: none;
}
.tab .additional-links {
	margin-top: 1rem;
	padding-top: 2rem;
	border-top: 1px solid var(--gray-600);
	display: grid;
	grid-area: 1rem;
	color: var(--primary-blue);
}
.tab .additional-links a {
	text-decoration: none;
	transition: all 200ms;
}
.tab .additional-links a:hover {
	color: white;
	text-decoration: underline;
	transition: all 200ms;
}
/* approach list */
.approach-list {
	list-style-type: none;
	display: grid;
	/* gap: 1rem; */
	padding: 0;
}
.approach-list li {
	padding: 1rem;
}
.approach-list li:nth-child(odd) {
	background-color: #fff;
}
.video-neg-margin iframe {
	margin-bottom: -10px;
}
/* #menu-item-2880 {
  pointer-events: none;
} */
/* video block */
.youtube-block {
	position: relative;
}
.youtube-block .video-title {
	/* display: none; */
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}

.min-h-60vh {
	min-height: 60vh;
}
.min-h-80vh {
	min-height: 80vh;
}
.min-h-50vh {
	min-height: 50vh;
}
/* featured-project-grid */

.featured-project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(10rem, 24rem));
	list-style-type: none;
	gap: 1.5rem;
	padding: 0;
	justify-content: center;
}
.featured-project-grid li {
	background: #fff;
	color: var(--gray-500);
	border-radius: 0.25rem;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.featured-project-grid li img {
	aspect-ratio: 16/9;
}
.featured-project-card-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	height: 100%;
}
.featured-project-grid li.water h2 {
	color: var(--primary-blue);
}
.featured-project-grid li.land h2 {
	color: var(--primary-gray);
}
.featured-project-grid li.biodiversity h2 {
	color: var(--primary-green);
}
/* featured-project-grid end */
/* latest news */
.latest-news {
	display: grid;
	gap: 2rem;
	list-style: none;
	padding: 0;
}
.latest-news li {
	border-radius: 0.25rem;
	overflow: hidden;
	display: grid;
	gap: 2rem;
	place-items: center;
	padding-bottom: 2rem;
}

.latest-news .news-thumbnail img {
	aspect-ratio: 16/9;
	border-radius: 0.25rem;
	overflow: hidden;
}
.latest-news .news-content > div > p {
	color: var(--primary-blue);
}

.post-info {
	text-transform: uppercase;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	row-gap: 0;
	align-items: center;
}

.post-info span:nth-child(2) {
	height: 0.25rem;
	width: 0.25rem;
	background: var(--primary-blue);
	border-radius: 50%;
	display: block;
}

@media screen and (min-width: 1024px) {
	.latest-news li:first-child:after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		/* background-color: rgba(0, 0, 0, 0.5);
    background: rgb(0, 0, 0); */
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
	}
	.latest-news {
		display: grid;
		gap: 2rem;
		list-style: none;
		padding: 0;
	}
	.latest-news li {
		display: grid;
		gap: 2rem;
		place-items: center;
		padding-bottom: 0;
	}
	.latest-news li:first-child .news-content > div > p {
		color: white;
	}
	.latest-news li:first-child .post-info span:nth-child(2) {
		height: 0.25rem;
		width: 0.25rem;
		background: white;
	}
	.latest-news li:first-child {
		grid-column-start: 1;
		grid-column-end: 3;
		display: flex;
		color: #fff;
		gap: 0;
		justify-content: center;
		width: 100%;
		position: relative;
	}
	.latest-news li:first-child .news-thumbnail {
		width: 100%;
		margin-right: -100%;
	}

	.latest-news li:first-child .news-content {
		width: 100%;
		z-index: 9;
	}
	.latest-news li:first-child .news-content > div * {
		max-width: var(--w-3xs);
	}
	.latest-news li:first-child .news-content > div {
		max-width: var(--content-width);
		margin: 0 auto;
	}
}
@media screen and (min-width: 1280px) {
	.latest-news {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
		list-style: none;
		padding: 0;
	}
	.latest-news li {
		border-radius: 0.25rem;
		overflow: hidden;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
		place-items: center;
	}
	.latest-news .news-thumbnail {
		height: 100%;
	}
	.latest-news .news-thumbnail img {
		height: 100%;
	}
}
/* fixed-jump-menu */
.fixed-jump-menu {
	display: none;
}
.single-project .fixed-jump-menu {
	display: flex;
	/* display: none; */
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	height: 100%;
	align-items: center;
}
.single-project .fixed-jump-menu ul {
	min-height: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	list-style-type: none;
	gap: 1rem;
	padding: 2rem;
}

.single-project .fixed-jump-menu ul li a {
	text-decoration: none;
	text-transform: capitalize;
	color: var(--primary-blue);
	padding: 1rem;
	border-radius: 50px;
	overflow: hidden;
	background-color: #fff;
	display: block;
	text-align: center;
}
.single-project .fixed-jump-menu button.jump-menu:focus {
	border: 2px solid #fff;
}
.single-project .fixed-jump-menu ul li a:hover,
.single-project .fixed-jump-menu ul li a:focus,
.single-project .fixed-jump-menu ul li a:active {
	background-color: var(--primary-100);
}
.single-project .fixed-jump-menu ul li.is-active a {
	background-color: var(--primary-blue);
	color: #fff;
}
.single-project .fixed-jump-menu .verticle-btn {
	transform: rotate(-90deg) translateY(100%);
	position: absolute;
	right: 100%;
	height: min-content;
	width: max-content;
}

.jump-menu-items {
	display: flex;
	align-items: center;
	height: 100%;
	background: white;
}
/* fixed-jump-menu ends */

/* single post stylings */
.single-post .entry-content > * + * {
	margin-top: var(--flow, 2rem);
}
.single-post .vc_row.wpb_row.vc_row-fluid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	gap: 2rem;
}
.single-post ul.slides {
	margin-top: var(--flow, 2rem);
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1.5rem;
	list-style-type: none;
}

.has-border-radius {
	border-radius: 0.25rem;
	overflow: hidden;
}
.bg-contain img {
	object-fit: contain !important;
	background-color: transparent !important;
}
figure {
	position: relative;
}
figcaption {
	position: absolute;
	left: 1rem;
	bottom: 0;
	z-index: 9;
	color: #fff !important;
	margin: 0;
}

@-webkit-keyframes ripple {
	from {
		opacity: 1;
		transform: scale3d(0.75, 0.75, 1);
	}
	to {
		opacity: 0;
		transform: scale3d(2, 2, 1);
	}
}

@keyframes ripple {
	from {
		opacity: 1;
		transform: scale3d(0.75, 0.75, 1);
	}
	to {
		opacity: 0;
		transform: scale3d(2, 2, 1);
	}
}
/* .elm-loading-anim {
  display: none !important;
} */

#mc_embed_signup {
	/* width: 600px; */
}

.subscribe-form-fields.newsletter-block {
	display: flex;
	align-items: end;
	gap: 0.25rem;
	justify-content: center;
	position: relative;
}

.subscribe-form-fields.newsletter-block input[type="email"]::placeholder,
.subscribe-form-fields.newsletter-block input[type="text"]::placeholder {
	/* color: var(--gray-300); */
	color: var(--gray-50);
}

.subscribe-form-fields.newsletter-block input[type="email"],
.subscribe-form-fields.newsletter-block input[type="text"] {
	color: #fff;
}

.mc-field-group {
	position: relative;
	width: 100%;
}

#mc_embed_signup div.mce_inline_error {
	position: absolute;
}
#mce-responses {
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 100%;
}
@media screen and (max-width: 560px) {
	.subscribe-form-fields.newsletter-block {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
}
/* .svg-icons li.white svg,

.svg-icons li.white svg,

.svg-icons li.white svg path,

.separator-svg-icons li.white svg,

.separator-svg-icons li.white svg path */

.separator-svg-icons svg,
.separator-svg-icons svg path {
	fill: var(--primary-blue);

	stroke: var(--primary-blue);
}

body.biodiversity .separator-svg-icons svg,
body.biodiversity .separator-svg-icons svg path,
.page-id-15228 .separator-svg-icons svg,
.page-id-15228 .separator-svg-icons svg path {
	fill: var(--primary-green);

	stroke: var(--primary-green);
}

body.land .separator-svg-icons svg,
body.land .separator-svg-icons svg path,
.page-id-15358 .separator-svg-icons svg,
.page-id-15358 .separator-svg-icons svg path {
	fill: var(--primary-gray);

	stroke: var(--primary-gray);
}

body.water .separator-svg-icons svg,
body.water .separator-svg-icons svg path {
	fill: var(--primary-blue);

	stroke: var(--primary-blue);
}

.glide__arrow svg {
	stroke: var(--primary-blue);
}

.biodiversity .glide__arrow svg {
	stroke: var(--primary-green);
}

.land .glide__arrow svg {
	stroke: var(--primary-gray);
}

.water .glide__arrow svg {
	stroke: var(--primary-blue);
}

body.biodiversity .tab .additional-links a,
body.biodiversity .tab .additional-links,
.has-dark-green-color,
.carousel-card-content p {
	color: var(--secondary-green);
}

body.land .tab .additional-links a,
body.land .tab .additional-links,
.carousel-card-content p {
	color: var(--gray-300);
}

body.biodiversity.single-project .fixed-jump-menu ul li a {
	color: var(--secondary-green);
}
body.biodiversity.single-project .fixed-jump-menu ul li a:hover,
body.biodiversity.single-project .fixed-jump-menu ul li a:focus,
body.biodiversity.single-project .fixed-jump-menu ul li a:active,
body.biodiversity.single-project .fixed-jump-menu ul li.is-active a {
	background-color: var(--gray-200);
}

body.land.single-project .fixed-jump-menu ul li a {
	color: var(--primary-gray);
}

body.land.single-project .fixed-jump-menu ul li a:hover,
body.land.single-project .fixed-jump-menu ul li a:focus,
body.land.single-project .fixed-jump-menu ul li a:active,
body.land.single-project .fixed-jump-menu ul li.is-active a {
	background-color: var(--gray-200);
}

.wp-block-lazyblock-youtube-video {
	background: var(--primary-gray);
}
body.biodiversity .tab .additional-links a,
body.biodiversity .tab .additional-links,
.has-dark-green-color,
.carousel-card-content p {
	color: var(--secondary-green);
}

body.land .tab .additional-links a,
body.land .tab .additional-links,
.carousel-card-content p {
	color: var(--gray-300);
}

body.biodiversity.single-project .fixed-jump-menu ul li a {
	color: var(--secondary-green);
}

body.biodiversity.single-project .fixed-jump-menu ul li a:hover,
body.biodiversity.single-project .fixed-jump-menu ul li a:focus,
body.biodiversity.single-project .fixed-jump-menu ul li a:active,
body.biodiversity.single-project .fixed-jump-menu ul li.is-active a {
	background-color: var(--gray-200);
}

body.land.single-project .fixed-jump-menu ul li a {
	color: var(--primary-gray);
}

body.land.single-project .fixed-jump-menu ul li a:hover,
body.land.single-project .fixed-jump-menu ul li a:focus,
body.land.single-project .fixed-jump-menu ul li a:active,
body.land.single-project .fixed-jump-menu ul li.is-active a {
	background-color: var(--gray-200);
}

.wp-block-lazyblock-youtube-video {
	background: var(--primary-gray);
}

/* property management planning form */
#nf-form-8-cont form .nf-before-form-content {
	margin-top: 1rem;
	padding-bottom: 2rem;
	display: none;
}
#nf-form-8-cont form .nf-form-content {
	margin-top: 2rem;
}

@media screen and (min-width: 1140px) {
	#nf-form-8-cont form .nf-form-content > div {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	#nf-form-8-cont form .nf-form-content > div .nf-mp-header {
		width: calc(30%);
	}
	#nf-form-8-cont form .nf-form-content > div .nf-mp-body {
		width: calc(70%);
		background-color: #fff;
		padding: 2rem;
	}
	#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs {
		display: flex;
		flex-direction: column;
		margin: 0 !important;
	}
}
#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs a {
	margin-bottom: 0;
	background: transparent;
	color: #000000;
}
#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
}
#nf-form-8-cont form .nf-form-content > div .nf-mp-footer {
	/* border-top: 1px solid #ccc; */
	padding-top: 2rem;
	width: 100%;
	/* order: -999; */
}
#nf-form-8-cont form .nf-form-content > div .nf-mp-footer input {
	cursor: pointer;
}
#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs li a:hover {
	background: #c4c4c4;
}
#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs li.active a {
	background: var(--gradient-gray-reverse);
	color: #fff;
}
#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs li a {
	width: 100%;
}
#nf-form-8-cont .submit-wrap {
	text-align: right;
}
#nf-form-8-cont .submit-wrap .ninja-forms-field.nf-element {
	background-color: var(--gray-dark);
}
#nf-form-8-cont .submit-wrap .ninja-forms-field.nf-element:hover {
	background-color: #fff;
	color: var(--gray-dark);
}
#nf-form-8-cont .nf-field-container.hr-container {
	margin: 1rem 0;
}
#nf-form-8-cont
	.field-wrap.html-wrap:not(
		#nf-field-38-wrap,
		#nf-field-41-wrap,
		#nf-field-51-wrap,
		#nf-field-68-wrap,
		#nf-field-71-wrap,
		#nf-field-331-wrap,
		#nf-field-332-wrap,
		#nf-field-333-wrap,
		#nf-field-334-wrap,
		#nf-field-335-wrap,
		#nf-field-336-wrap,
		#nf-field-337-wrap,
		#nf-field-338-wrap,
		#nf-field-339-wrap,
		#nf-field-340-wrap,
		#nf-field-341-wrap
	) {
	padding: 1rem;
	background-color: rgb(245 245 245);
}
#nf-field-38-wrap .nf-field-element > * + *,
#nf-field-41-wrap .nf-field-element > * + *,
#nf-field-51-wrap .nf-field-element > * + *,
#nf-field-68-wrap .nf-field-element > * + *,
#nf-field-71-wrap .nf-field-element > * + *,
#nf-field-331-wrap .nf-field-element > * + *,
#nf-field-332-wrap .nf-field-element > * + *,
#nf-field-333-wrap .nf-field-element > * + *,
#nf-field-334-wrap .nf-field-element > * + *,
#nf-field-335-wrap .nf-field-element > * + *,
#nf-field-336-wrap .nf-field-element > * + *,
#nf-field-337-wrap .nf-field-element > * + *,
#nf-field-338-wrap .nf-field-element > * + *,
#nf-field-339-wrap .nf-field-element > * + *,
#nf-field-340-wrap .nf-field-element > * + *,
#nf-field-341-wrap .nf-field-element > * + * {
	margin-top: 1rem;
}

#nf-form-8-cont .field-wrap.html-wrap p {
	font-size: var(--fs-1);
}
#nf-form-8-cont .field-wrap.html-wrap p b {
	margin-bottom: 1rem;
	display: block;
	font-size: 1.5rem;
}
#nf-form-8-cont .field-wrap.html-wrap a {
	margin-bottom: 1rem;
	display: block;
}
#nf-form-8-cont .field-wrap.html-wrap a:hover {
	color: #5e5c5c;
	text-decoration: none;
}
#nf-form-8-cont .nf-next-previous {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
}
#nf-form-8-cont .nf-previous-item,
#nf-form-8-cont .nf-next-item {
	float: none !important;
	min-width: 10rem;
}
#nf-form-8-cont .nf-previous-item input:hover,
#nf-form-8-cont .nf-next-item input:hover {
	color: #000;
}
.nf-next-previous::after {
	display: none;
}
#nf-form-8-cont .nf-after-form-content {
	text-align: right;
}
.nf-saves-item a.load {
	padding-right: 0.25rem;
	border-right: 1px solid #ccc;
}
.nf-saves-item a {
	display: inline-block;
	color: var(--primary-blue);
}
.nf-saves-item a:hover {
	color: var(--secondary-blue);
}
.nf-saves-item a.cancel,
.nf-saves-item.active a.load {
	pointer-events: none;
	color: #8c8c8c;
}
.nf-saves-item.active a.cancel {
	color: var(--primary-blue);
	pointer-events: all;
}
#nf-form-8-cont .save-wrap {
	text-align: right;
}
#nf-form-8-cont .save-wrap input,
#nf-form-8-cont .submit-wrap input {
	background-color: #333 !important;
	height: unset !important;
	border-color: #333;
	color: #fff;
}
#nf-form-8-cont .save-wrap input:hover,
#nf-form-8-cont .submit-wrap input:hover {
	background-color: var(--gray-dark) !important;
	color: #fff !important;
}
#nf-form-8-cont .nf-saves-cont table {
	border-collapse: collapse;
}
#nf-form-8-cont .nf-saves-cont table th,
#nf-form-8-cont .nf-saves-cont table td {
	border: 1px solid #ccc;
	border-collapse: collapse;
	padding: 0.24rem 0.5rem;
	text-align: left;
}

#nf-form-8-cont .nf-response-msg p {
	display: block;
	background: var(--secondary-green);
	padding: 1rem;
	color: #fff;
	margin-bottom: 1rem;
	border-radius: 0.25rem;
	font-size: var(--fs-1);
}

.nf-saves-cont .nf-saves-item:not(:last-child) {
	display: none;
}
@media screen and (max-width: 1139px) {
	#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs {
		flex-wrap: nowrap;
		overflow-y: hidden;
		overflow-x: scroll;
		padding-bottom: 0.5rem !important;
	}
	#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs li {
		min-width: max-content;
		border: 1px solid #ddd;
	}
	#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs::-webkit-scrollbar {
		height: 0.5rem;
		margin-top: 0.5rem;
	}
	#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs::-webkit-scrollbar-thumb {
		background: rgba(1, 177, 198, 1);
	}
	#nf-form-8-cont form .nf-form-content > div .nf-mp-header .nf-breadcrumbs::-webkit-scrollbar-track {
		background: #666;
	}
}

.wp-block-gallery.has-nested-images {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1.5rem;
}
.wp-block-gallery.has-nested-images .wp-block-image {
	width: 100% !important;
}
