@import url(https://use.typekit.net/qpa2bvk.css);
/**
 * Teft dependencies
 */
/*@import '../node_modules/locomotive-scroll/dist/locomotive-scroll.css';*/
/* stylelint-disable no-duplicate-selectors, no-descending-specificity */
/**
 * Use a better box model (opinionated).
 */
html {
	box-sizing: border-box;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}
/**
 * Use a more readable tab size (opinionated).
 */
:root {
	-moz-tab-size: 4;
	-o-tab-size: 4;
	   tab-size: 4;
}
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}
/**
 * Set a default background color
 */
body {
	background-color: #fff;
}
/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}
/**
 * Improve consistency of default fonts in all browsers.
 */
body {
	font-family:
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		"Apple Color Emoji",
		"Segoe UI Emoji",
		"Segoe UI Symbol";
}
/* Grouping content
 * ========================================================================== */
/**
 * Add the correct height in Firefox.
 */
hr {
	height: 0;
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Chrome, Edge, and Safari.
 */
abbr[title] {
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}
/**
 * 1. Improve consistency of default fonts in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp,
pre {
	font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; /* 1 */
	font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in all
 * browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
/* Forms
 * ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}
/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none; /* 1 */
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}
/**
 * Remove the padding so developers are not caught out when they zero out
 * `fieldset` elements in all browsers.
 */
legend {
	padding: 0;
}
/**
 * Add the correct vertical alignment in Chrome and Firefox.
 */
progress {
	vertical-align: baseline;
}
/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Chrome and Safari.
 */
summary {
	display: list-item;
}
/**
 * Internal dependencies
 */
/* @define teft-typography */
:root {
	/* stylelint-disable-next-line value-keyword-case */
	--teft-typography-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	--teft-typography-heading-font-family: var(--teft-typography-font-family);
	--teft-typography-font-color: inherit;

	--teft-typography-base: 1em;
	--teft-typography-scale-ratio: 1.3;

	--teft-typography-xs: calc(1em / (var(--teft-typography-scale-ratio) * var(--teft-typography-scale-ratio)));
	--teft-typography-sm: calc(1em / var(--teft-typography-scale-ratio));
	--teft-typography-md: calc(1em * var(--teft-typography-scale-ratio));
	--teft-typography-lg: calc(var(--teft-typography-md) * var(--teft-typography-scale-ratio));
	--teft-typography-xl: calc(var(--teft-typography-lg) * var(--teft-typography-scale-ratio));
	--teft-typography-xxl: calc(var(--teft-typography-xl) * var(--teft-typography-scale-ratio));
	--teft-typography-xxxl: calc(var(--teft-typography-xxl) * var(--teft-typography-scale-ratio));

	--teft-typography-heading-line-height: 1.2;
	--teft-typography-heading-font-color: var(--teft-typography-font-color);
	--teft-typography-heading-font-weight: 600;
	--teft-typography-body-line-height: 1.8125;
}
html {
	font-size: var(--teft-typography-base);
	line-height: var(--teft-typography-body-line-height);
}
body {
	color: var(--teft-typography-font-color);
	font-family: var(--teft-typography-font-family);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--teft-typography-heading-font-color);
	font-family: var(--teft-typography-heading-font-family);
	font-weight: var(--teft-typography-heading-font-weight);
}
h1,
h2,
h3,
h4,
h5,
h6,
legend {
	line-height: var(--teft-typography-heading-line-height);
}
h1,
.teft-typography-xxl-size {
	font-size: var(--teft-typography-xxl);
}
h2,
.teft-typography-xl-size {
	font-size: var(--teft-typography-xl);
}
h3,
.teft-typography-lg-size {
	font-size: var(--teft-typography-lg);
}
h4,
.teft-typography-md-size {
	font-size: var(--teft-typography-md);
}
/**
 * External dependencies
 */
/* @define teft-theme */
/**
 * External dependencies
 */
/* @define teft-viewport */
:root {
	--teft-theme-site-padding: 1rem;
	--teft-theme-gap: 1rem;

	--teft-theme-content-width: 40rem;
	--teft-theme-site-width: 80rem;

	/**
	 * Colors
	 */
	--teft-theme-primary-color: #2ba6cb;
	--teft-theme-on-primary-color: #fff;
	--teft-theme-secondary-color: #e9e9e9;
	--teft-theme-on-secondary-color: #000;
	--teft-theme-body-font-color: #222;
	--teft-theme-header-font-color: var(--teft-theme-body-font-color);
	--teft-theme-alert-color: #c60f13;
	--teft-theme-on-alert-color: #fff;
	--teft-theme-success-color: #5da423;
	--teft-theme-on-success-color: #fff;
	--teft-theme-warning-color: #ffae00;
	--teft-theme-on-warning-color: #fff
}
@media (min-width: 601px) {
:root {
		--teft-theme-site-padding: 1.5rem
}
	}
@media (min-width: 783px) {
:root {
		--teft-theme-site-padding: 3rem
}
	}
/* @define teft-spacing */
/**
 * External dependencies
 */
:root {
	--teft-spacing-base: var(--teft-typography-base);
	--teft-spacing-block-margin: 4.5rem;
	--teft-spacing-negative-block-margin: -2.5rem;

	--teft-spacing-xxxs: calc(0.25 * var(--teft-spacing-base));
	--teft-spacing-xxs: calc(0.375 * var(--teft-spacing-base));
	--teft-spacing-xs: calc(0.5 * var(--teft-spacing-base));
	--teft-spacing-sm: calc(0.75 * var(--teft-spacing-base));
	--teft-spacing-md: calc(1.25 * var(--teft-spacing-base));
	--teft-spacing-lg: calc(2 * var(--teft-spacing-base));
	--teft-spacing-xl: calc(3.25 * var(--teft-spacing-base));
	--teft-spacing-xxl: calc(5.25 * var(--teft-spacing-base));
	--teft-spacing-xxxl: calc(8.5 * var(--teft-spacing-base));
}
/**
 * Internal dependencies
 */
:root .has-very-dark-gray-background-color {
	color: #fff;
}
/* @define teft-wordpress */
.entry-content,
.wp-block-cover .wp-block-cover__inner-container {
	margin: 0 auto;
	width: calc(100% - (var(--teft-theme-site-padding) * 2));
}
.entry-content > *,.wp-block-group__inner-container > *,.wp-block-teft-cards-theme > *,
.wp-block-cover__inner-container > *,
.wp-block-quote.is-style-large {
	margin: var(--teft-spacing-block-margin) auto;
	max-width: var(--teft-theme-content-width);
}
.entry-content > .alignwide,.wp-block-group__inner-container > .alignwide,.wp-block-teft-cards-theme > .alignwide {
	max-width: var(--teft-theme-site-width);
}
.entry-content > .alignfull {
	margin-left: calc(var(--teft-theme-site-padding) * -1);
	margin-right: calc(var(--teft-theme-site-padding) * -1);
	max-width: none;
	width: calc(100% + (var(--teft-theme-site-padding) * 2));
}
.wp-block-group__inner-container > .alignfull {
	max-width: none;
	width: 100%;
}
.entry-content ul,
.entry-content ol {
	list-style-position: outside;
	padding-left: 0;
}
.wp-block-video video {
	max-width: var(--teft-theme-content-width);
}
.wp-block-image img {
	display: block;
}
.wp-block-image .alignleft,
.wp-block-image .alignright {
	margin-top: 0;
}
.wp-block-image figcaption {
	font-size: var(--teft-typography-sm);
}
.wp-block-table {
	border-collapse: collapse;
	width: 100%;
}
.wp-block-table td,
.wp-block-table th {
	padding: 0.5em;
}
.entry-content li {
	margin-bottom: 6px;
	margin-left: 2.5em;
}
.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
	margin: 6px auto 0;
}
.wp-block-embed.type-video > .wp-block-embed__wrapper {
	height: 0;
	padding-top: 56.25%;
	position: relative;
	width: 100%;
}
.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
	bottom: 0;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}
.wp-block-quote cite {
	font-size: var(--teft-typography-sm);
}
.wp-block-pullquote p {
	font-size: var(--teft-typography-lg);
}
.wp-block-pullquote cite {
	font-size: var(--teft-typography-sm);
}
.wp-block-separator {
	padding: 0;
}
.more-link {
	display: block;
}
.wp-block-group.has-background .wp-block-group__inner-container > .alignfull {
	left: -30px;
	max-width: calc(100% + 60px);
	position: relative;
	width: calc(100% + 60px);
}
.has-small-font-size {
	font-size: var(--teft-typography-sm);
}
.has-large-font-size {
	font-size: var(--teft-typography-lg);
}
.has-huge-font-size {
	font-size: var(--teft-typography-xl);
}
.wp-block-search .wp-block-search__input {
	width: auto;
}
.entry-content > h2 + *,.wp-block-group__inner-container > h2 + *,.wp-block-teft-cards-theme > h2 + *,
	.entry-content > h3 + *,
	.wp-block-group__inner-container > h3 + *,
	.wp-block-teft-cards-theme > h3 + *,
	.entry-content > h4 + *,
	.wp-block-group__inner-container > h4 + *,
	.wp-block-teft-cards-theme > h4 + *,
	.entry-content > h5 + *,
	.wp-block-group__inner-container > h5 + *,
	.wp-block-teft-cards-theme > h5 + *,
	.entry-content > h6 + *,
	.wp-block-group__inner-container > h6 + *,
	.wp-block-teft-cards-theme > h6 + *,
	.entry-content > ol + p,
	.wp-block-group__inner-container > ol + p,
	.wp-block-teft-cards-theme > ol + p,
	.entry-content > p + ol,
	.wp-block-group__inner-container > p + ol,
	.wp-block-teft-cards-theme > p + ol,
	.entry-content > p + p,
	.wp-block-group__inner-container > p + p,
	.wp-block-teft-cards-theme > p + p,
	.entry-content > p + .wp-block-quote,
	.wp-block-group__inner-container > p + .wp-block-quote,
	.wp-block-teft-cards-theme > p + .wp-block-quote,
	.entry-content > .wp-block-quote + p,
	.wp-block-group__inner-container > .wp-block-quote + p,
	.wp-block-teft-cards-theme > .wp-block-quote + p,
	.entry-content > .wp-block-quote + ol,
	.wp-block-group__inner-container > .wp-block-quote + ol,
	.wp-block-teft-cards-theme > .wp-block-quote + ol,
	.entry-content > .wp-block-quote + ul,
	.wp-block-group__inner-container > .wp-block-quote + ul,
	.wp-block-teft-cards-theme > .wp-block-quote + ul,
	.entry-content > p + ul:not(.wp-block-gallery),
	.wp-block-group__inner-container > p + ul:not(.wp-block-gallery),
	.wp-block-teft-cards-theme > p + ul:not(.wp-block-gallery),
	.entry-content > ul:not(.wp-block-gallery) + p,
	.wp-block-group__inner-container > ul:not(.wp-block-gallery) + p,
	.wp-block-teft-cards-theme > ul:not(.wp-block-gallery) + p {
		margin-top: var(--teft-spacing-negative-block-margin);
	}
.wp-block-pullquote > p:first-child { /* stylelint-disable-line no-descending-specificity */
	margin-top: 0;
}
/* Override the default 16px gap for the Gallery Block with custom prop. */
.wp-block-gallery .blocks-gallery-item {
	margin: 0 var(--teft-theme-gap) var(--teft-theme-gap) 0;
	width: calc((100% - var(--teft-theme-gap)) / 2);
}
@media (min-width: 601px) {
	.wp-block-gallery.columns-3 .blocks-gallery-item,
	.wp-block-gallery.columns-4 .blocks-gallery-item,
	.wp-block-gallery.columns-5 .blocks-gallery-item,
	.wp-block-gallery.columns-6 .blocks-gallery-item,
	.wp-block-gallery.columns-7 .blocks-gallery-item,
	.wp-block-gallery.columns-8 .blocks-gallery-item {
		margin-right: var(--teft-theme-gap);
	}

	.wp-block-gallery.columns-3 .blocks-gallery-item {
		width: calc((100% - calc(var(--teft-theme-gap) * 2)) / 3);
	}

	.wp-block-gallery.columns-4 .blocks-gallery-item {
		width: calc((100% - calc(var(--teft-theme-gap) * 3)) / 4);
	}

	.wp-block-gallery.columns-5 .blocks-gallery-item {
		width: calc((100% - calc(var(--teft-theme-gap) * 4)) / 5);
	}

	.wp-block-gallery.columns-6 .blocks-gallery-item {
		width: calc((100% - calc(var(--teft-theme-gap) * 5)) / 6);
	}

	.wp-block-gallery.columns-7 .blocks-gallery-item {
		width: calc((100% - calc(var(--teft-theme-gap) * 6)) / 7);
	}

	.wp-block-gallery.columns-8 .blocks-gallery-item {
		width: calc((100% - calc(var(--teft-theme-gap) * 7)) / 8);
	}
}
/* Override the default 32px gap for the Columns Block with custom prop. */
.wp-block-column {
	margin-bottom: var(--teft-theme-gap);
}
@media (min-width: 601px) {
	.wp-block-column {
		flex-basis: calc(50% - calc(var(--teft-theme-gap) / 2));
	}

	.wp-block-column:nth-child(2n) {
		margin-left: var(--teft-theme-gap);
	}
}
@media (min-width: 783px) {
	.wp-block-column:not(:first-child) {
		margin-left: var(--teft-theme-gap);
	}
}
/**
 * Internal dependencies
 */
body {
	color: var(--teft-theme-body-font-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--teft-theme-heading-font-color);
}
a {
	color: var(--teft-theme-primary-color);
}
.hidden {
	display: none !important;
}
.relative {
	position: relative;
}
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
/**
 * Internal dependencies
 */
/**
 * External dependencies
 */
/**
 * Internal dependencies
 */
/* @define teft-buttons */
:root {
	--teft-buttons-border-radius: 2em;
	--teft-buttons-background-color: #474747;
	--teft-buttons-background-color-hover: #fff;
	--teft-buttons-border-color: #000;
	--teft-buttons-text-color: #fff;
	--teft-buttons-text-color-hover: #000;
}
.wp-block-button__link,
.teft-button {
	background-color: var(--teft-buttons-background-color);
	border: 1px transparent solid;
	border-radius: var(--teft-buttons-border-radius);
	color: var(--teft-buttons-text-color);
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	padding: 0.5em 1.5em;
	text-decoration: none
}
.wp-block-button__link:link, .teft-button:link {
		color: var(--teft-buttons-text-color);
	}
.wp-block-button__link.teft-button--primary:not(:disabled):focus,
		.wp-block-button__link.teft-button--primary:not(:disabled):hover,
		.teft-button.teft-button--primary:not(:disabled):focus,
		.teft-button.teft-button--primary:not(:disabled):hover {
			background-color: var(--teft-buttons-background-color-hover);
			border-color: var(--teft-buttons-border-color);
			color: var(--teft-buttons-text-color-hover);
		}
.wp-block-button__link.teft-button--alert, .teft-button.teft-button--alert {
		background-color: var(--teft-theme-alert-color)
	}
.wp-block-button__link.teft-button--alert:not(:disabled):focus,
		.wp-block-button__link.teft-button--alert:not(:disabled):hover,
		.teft-button.teft-button--alert:not(:disabled):focus,
		.teft-button.teft-button--alert:not(:disabled):hover {
			background-color: var(--teft-theme-alert-color);
			color: var(--teft-theme-on-alert-color);
		}
.wp-block-button__link.teft-button--success, .teft-button.teft-button--success {
		background-color: var(--teft-theme-success-color)
	}
.wp-block-button__link.teft-button--success:not(:disabled):focus,
		.wp-block-button__link.teft-button--success:not(:disabled):hover,
		.teft-button.teft-button--success:not(:disabled):focus,
		.teft-button.teft-button--success:not(:disabled):hover {
			background-color: var(--teft-theme-success-color);
			color: var(--teft-theme-on-success-color);
		}
.wp-block-button__link.teft-button--warning, .teft-button.teft-button--warning {
		background-color: var(--teft-theme-warning-color)
	}
.wp-block-button__link.teft-button--warning:not(:disabled):focus,
		.wp-block-button__link.teft-button--warning:not(:disabled):hover,
		.teft-button.teft-button--warning:not(:disabled):focus,
		.teft-button.teft-button--warning:not(:disabled):hover {
			background-color: var(--teft-theme-warning-color);
			color: var(--teft-theme-on-warning-color);
		}
.wp-block-button__link:disabled, .teft-button:disabled {
		background-color: var(--teft-form-color--disabled);
		cursor: not-allowed;
	}
.wp-block-button__link:not(:disabled):focus,
	.wp-block-button__link:not(:disabled):hover,
	.teft-button:not(:disabled):focus,
	.teft-button:not(:disabled):hover {
		opacity: 0.7;
	}
/**
 * External dependencies
 */
/**
 * Internal dependencies
 */
/* @define teft-form */
:root {
	--teft-form-input-height: 3.125em;
	--teft-form-input-padding: 0.8em;

	--teft-form-border-color: var(--teft-theme-body-font-color);
	--teft-form-color--selected: var(--teft-theme-primary-color);
	--teft-form-color--disabled: #dcdcdc;
	--teft-form-border-radius: 0;
}
.form-group {
	margin-bottom: var(--teft-theme-gap);
	position: relative;
}
input[type="text"],input[type="number"],input[type="date"],input[type="datetime-locale"],input[type="email"],input[type="month"],input[type="password"],input[type="tel"],input[type="time"],input[type="url"],input[type="week"],input[type="search"],
textarea,
select {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border-color: var(--teft-form-border-color);
	border-radius: var(--teft-form-border-radius);
	border-style: solid;
	border-width: 1px;
	display: block;
	width: 100%;
}
input[type="text"],input[type="number"],input[type="date"],input[type="datetime-locale"],input[type="email"],input[type="month"],input[type="password"],input[type="tel"],input[type="time"],input[type="url"],input[type="week"],input[type="search"],
select:not([multiple]) {
	height: var(--teft-form-input-height);
	padding: 0 var(--teft-form-input-padding);
}
textarea,
select[multiple] {
	padding: var(--teft-form-input-padding);
}
select:not([multiple]) {
	background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjkiIHZpZXdCb3g9IjAgMCA4IDkiIGZpbGw9Im5vbmUiPg0KICA8cGF0aCBkPSJNNC4wNjkyMiAwTDYuNzg4MTQgMy43NUgxLjM1MDMxTDQuMDY5MjIgMFoiIGZpbGw9IiNBQkFCQUIiLz4NCiAgPHBhdGggZD0iTTQuMDY5NDUgOUwxLjM1MDUzIDUuMjUgNi43ODgzNyA1LjI1IDQuMDY5NDUgOVoiIGZpbGw9IiNBQkFCQUIiLz4NCjwvc3ZnPg0K) no-repeat 98% 50%;
	background-size: 1em;
}
input:disabled,
textarea:disabled,
select:disabled {
	background-color: var(--teft-form-color--disabled);
	cursor: not-allowed;
}
input[type="range"] {
	width: 100%;
}
/* Teft style radio buttons and checkbox */
.teft-radio,
.teft-checkbox {
	display: inline-block;
	position: relative;
}
.teft-radio > input[type="radio"] + label,
.teft-checkbox > input[type="checkbox"] + label,
label.teft-radio > input[type="radio"] + span,
label.teft-checkbox > input[type="checkbox"] + span {
	display: inline-block;
	padding-left: 2em
}
.teft-radio > input[type="radio"] + label::before,
	.teft-radio > input[type="radio"] + label::after,
	.teft-checkbox > input[type="checkbox"] + label::before,
	.teft-checkbox > input[type="checkbox"] + label::after,
	label.teft-radio > input[type="radio"] + span::before,
	label.teft-radio > input[type="radio"] + span::after,
	label.teft-checkbox > input[type="checkbox"] + span::before,
	label.teft-checkbox > input[type="checkbox"] + span::after {
		content: "";
		position: absolute;
		top: 0.15em;
	}
.teft-radio > input[type="radio"] + label::before, .teft-checkbox > input[type="checkbox"] + label::before, label.teft-radio > input[type="radio"] + span::before, label.teft-checkbox > input[type="checkbox"] + span::before {
		border: 0.1em solid var(--teft-form-border-color);
		height: 1.5em;
		left: 0;
		width: 1.5em;
	}
.teft-radio > input[type="radio"] + label::after, .teft-checkbox > input[type="checkbox"] + label::after, label.teft-radio > input[type="radio"] + span::after, label.teft-checkbox > input[type="checkbox"] + span::after {
		opacity: 0;
		top: 0.9em;
	}
.teft-radio > input[type="radio"] + label::before,
	.teft-radio > input[type="radio"] + label::after,
	label.teft-radio > input[type="radio"] + span::before,
	label.teft-radio > input[type="radio"] + span::after {
		border-radius: 100%;
	}
.teft-radio > input[type="radio"] + label::after, label.teft-radio > input[type="radio"] + span::after {
		background-color: var(--teft-form-color--selected);
		height: 0.75em;
		left: 0.375em;
		top: 0.5em;
		width: 0.75em;
	}
.teft-checkbox > input[type="checkbox"] + label::after,
label.teft-checkbox > input[type="checkbox"] + span::after {
	background: transparent;
	border: solid var(--teft-form-color--selected);
	border-top-color: transparent;
	border-width: 0 0 0.15em 0.15em;
	height: 0.45em;
	left: 0.375em;
	position: absolute;
	transform: translateY(-75%) rotate(-45deg);
	width: 0.8em;
}
.teft-radio > input[type="radio"]:checked + label::after,
.teft-checkbox > input[type="checkbox"]:checked + label::after,
label.teft-radio > input[type="radio"]:checked + span::after,
label.teft-checkbox > input[type="checkbox"]:checked + span::after {
	opacity: 1;
}
/* Hide the real input elements */
.teft-radio input[type="radio"],
.teft-checkbox input[type="checkbox"] {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	cursor: pointer;
	height: 1.5em;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5em;
}
/* Mark focus */
.teft-radio input[type="radio"]:focus + label::before,
.teft-checkbox input[type="checkbox"]:focus + label::before,
label.teft-radio > input[type="radio"]:focus + span::before,
label.teft-checkbox > input[type="checkbox"]:focus + span::before {
	outline: -webkit-focus-ring-color auto 5px;
}
/**
 * Setup
 */
:root {
	--teft-typography-font-family: interstate, sans-serif;
	--teft-typography-heading-font-family-2: interstate-compressed, sans-serif;
	--teft-typography-heading-font-family: interstate, sans-serif;
	--teft-typography-article-font-family: interstate, sans-serif;
	--teft-typography-heading-font-weight: 500;

	--teft-typography-base: 16px;
	--teft-typography-body-line-height: 1.6;

	--theme-font-size-xxxl: 60px;
	--theme-font-size-xxl: 50px;
	--theme-font-size-xl: 35px;
	--theme-font-size-l: 24px;
	--theme-font-size-m: 19px;
	--theme-font-size-s: 16px;
	--theme-font-size-xs: 14px;
}
@media (min-width: 961px) {
	:root {
		--teft-typography-base: 19px;
		--theme-font-size-xxxl: 150px;
		--theme-font-size-xxl: 100px;
		--theme-font-size-xl: 50px;
		--theme-font-size-l: 32px;
		--theme-font-size-m: 24px;
		--theme-font-size-s: 19px;
		--theme-font-size-xs: 14px;
	}
}
:root {
	--theme-color-white: #fff;
	--theme-color-gray: #bdc6d0;
	--theme-color-purple: #5d6dce;
	--theme-color-primary-1: #375172;
	--theme-color-primary-2: #7594bc;
	--theme-color-primary-3: #a3b8d3;
	--theme-color-primary-4: #d1dbe9;
	--theme-color-primary-5: #f2f2f2;
	--theme-color-secondary: #8aa29a;
	--theme-color-text: #404040;
	--theme-color-navigation: #3d74c2;
	--theme-color-fi-dark: #6169ad;
	--theme-color-fi-medium: #979cc9;
	--theme-color-fi-light: #cbcde4;
	--theme-color-ce-dark: #94ccc5;
	--theme-color-ce-medium: #b0ded9;
	--theme-color-ce-light: #d8efec;
	--theme-color-gi-dark: #028977;
	--theme-color-gi-medium: #58b1a5;
	--theme-color-gi-light: #acd8d2;
	--theme-color-si-dark: #00adb6;
	--theme-color-si-medium: #57c9cf;
	--theme-color-si-light: #abe4e7;
	--theme-color-annual-report-green-4: #daedeb;
	--theme-color-warning-red: #e02f2f;
	--theme-color-teal: #04acb6;
	--theme-color-azure: #3d75c2;
	--theme-color-almost-black: #333941;
	--stem-light-green: #94CBC5;
	--stem-very-light-green: #D4EAE8;
}
:root {
	/**
	 * General
	 */
	--teft-theme-negative-block-margin: -20px;
	--teft-theme-block-margin: 40px;
	--teft-theme-site-width: 1280px !important;
	--teft-theme-content-width: 504px
}
@media (min-width: 1281px) {
:root {
		--teft-theme-content-width: 680px
}
	}
body {
  font-family: interstate, sans-serif !important;

  * {
    font-family: interstate, sans-serif !important;
  }

div.site {
  position: relative;
  z-index: 2;
}

.is-style-overlap-top {
  margin-top: -110px !important;
}
}
@media (max-width: 480px) {
body {
  .wp-block-image > figure {
    float: none !important;
  }
}
}
body {

.block-section {
  display: block;
  width: 100%;
  position: relative;
  z-index: 10;

  .block-section-inner {
    display: block;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%
  }

    @media screen and (max-width: 1315px) {

  .block-section-inner {
      margin: 0 15px;
      width: calc(100% - 30px)
  }
    }
}

.site-footer {
  position: relative;
  z-index: 12;
}

.border-button-big {
  font-size: 24px !important;
  padding: 22px 42px !important;
  border: 2px solid var(--theme-color-white);
  background-color: transparent;
  color: var(--theme-color-white) !important;
  transition: all 0.3s ease !important
}

  .border-button-big:hover {
    background-color: var(--theme-color-white) !important;
    color: black !important;
  }

  .border-button-big.black {
    border-color: var(--theme-color-text);
    color: var(--theme-color-text) !important
  }

    .border-button-big.black:hover {
      background-color: var(--theme-color-text) !important;
      color: white !important;
    }

  @media screen and (max-width: 768px) {

.border-button-big {
    font-size: 22px !important;
    padding: 10px 30px !important
}
  }

.teft-link-list__items {
  background-color: transparent !important;
}

.clearfix {
  display: block;
  clear: both;
}
}
@keyframes blob-1 {
  0% {
    transform: translate(60%, 10%);
  }
  30% {
    transform: translate(40%, 40%);
  }
  60% {
    transform: translate(65%, 25%);
  }
  100% {
    transform: translate(60%, 10%);
  }
}
@keyframes blob-2 {
  0% {
    transform: translate(50%, 40%);
  }
  30% {
    transform: translate(15%, 60%);
  }
  60% {
    transform: translate(25%, 35%);
  }
  100% {
    transform: translate(50%, 40%);
  }
}
@keyframes blob-3 {
  0% {
    transform: translate(30%, -20%);
  }
  30% {
    transform: translate(-25%, 20%);
  }
  60% {
    transform: translate(-15%, 50%);
  }
  100% {
    transform: translate(30%, -20%);
  }
}
@keyframes blob-4 {
  0% {
    transform: translate(30%, -10%);
  }
  30% {
    transform: translate(65%, 40%);
  }
  60% {
    transform: translate(95%, 75%);
  }
  100% {
    transform: translate(30%, -10%);
  }
}
@keyframes blob-5 {
	0% {
	  transform: translate(-30%, 10%);
	}
	30% {
	  transform: translate(15%, 40%);
	}
	60% {
	  transform: translate(-5%, 75%);
	}
	100% {
	  transform: translate(-30%, 10%);
	}
  }
.has-green-light-background-color {
	background-color: var(--theme-color-annual-report-green-4);
}
.has-warning-red-background-color {
	background-color: var(--theme-color-warning-red);
}
.has-warning-red-color {
	color: var(--theme-color-warning-red);
}
.has-ingress-font-size {
	font-size: 19px !important;
	font-weight: 700;
	line-height: 31px !important;
}
.entry-content {
	ul li strong,
	ol li strong,
	p strong,
	strong p,
	blockquote strong {
		font-weight: 700;
	}
}
.wp-block-teft-faq {
	.wp-block-teft-faq-item {
		.teft-faq__question button {
			font-weight: 700;
		}

		.teft-faq__description, .teft-faq__answer {
			font-size: 19px !important
		}

			@media screen and (max-width: 767px) {

		.teft-faq__description, .teft-faq__answer {
				font-size: 16px !important
		}
			}
	}
}
/**
 * Template parts
 */
div.norfund-notes-block-container {
	max-width: 844px;
}
.notes-accordion {
	position: relative
}
.notes-accordion.notes-accordion--is-open .notes-accordion__header .icon-arrow {
			background-image: url(../assets/icons/arrow-up-black.svg);
		}
.notes-accordion.notes-accordion--is-open .notes-accordion__content {
			max-height: 100vh;
		}
.notes-accordion .notes-accordion__header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 32px 24px;
		text-decoration: none;
		background-color: var(--theme-color-annual-report-green-4)
	}
.notes-accordion .notes-accordion__header h4 {
			margin: 0 0 2px 0;
			color: var(--theme-color-text);
			font-weight: bold;
			font-size: 16px;
			line-height: 1.43;
			font-family: var(--teft-typography-font-family);
		}
.notes-accordion .notes-accordion__header h3 {
			margin: 0;
			color: #000;
			font-weight: normal;
			font-size: 19px;
			line-height: 1.2;
			font-family: var(--teft-typography-font-family);
		}
.notes-accordion .notes-accordion__header .icon-arrow {
			display: block;
			width: 48px;
			height: 48px;
			border-radius: 50%;
			background-color: #fff;
			background-image: url(../assets/icons/arrow-down-black.svg);
			background-repeat: no-repeat;
			background-position: center;
		}
.notes-accordion .notes-accordion__content {
		z-index: 10;
		position: absolute;
		width: 100%;
		max-height: 0;
		margin-top: 2px;
		overflow: hidden;
		background-color: var(--theme-color-annual-report-green-4);
		transition: all 0.35s ease-in-out
	}
.notes-accordion .notes-accordion__content ol {
			padding: 32px 48px 40px 48px;
			counter-reset: notes;
		}
.notes-accordion .notes-accordion__content ol li {
			margin: 0 0 8px 0;
		}
.notes-accordion .notes-accordion__content ol li::before {
			color: inherit;
			font-weight: bold;
			font-size: inherit;
			font-family: var(--teft-typography-font-family);
			content: counter(notes) ". ";
			counter-increment: notes;
		}
.notes-accordion .notes-accordion__content a {
			color: #000;
			line-height: 1.44;
			font-family: var(--teft-typography-font-family);
			text-decoration: none
		}
.notes-accordion .notes-accordion__content a:hover,
			.notes-accordion .notes-accordion__content a:focus {
				text-decoration: underline;
			}
@media (min-width: 961px) {
	.hero-header + .single-article-container > .entry-content > .norfund-notes-block-container {
		/*margin-top: -58px;*/
	}
	.notes-accordion .notes-accordion__content ol {
		-moz-column-count: 2;
		     column-count: 2;
		grid-column-gap: 40px;
		-moz-column-gap: 40px;
		     column-gap: 40px;
	}
}
.block-section.image-content {
	display: block;
	position: relative;
	height: 688px;
	margin-top: 200px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

	* {
		font-family: 'interstate', sans-serif;
	}

	h2 {
		font-weight: 700;
		color: var(--theme-color-primary-1);
		font-size: 36px;
	}

	.block-section-inner {
		display: block;
		max-width: 1280px;
		margin: 0 auto;
		width: 100%;
		position: relative;
	}



	.content {
		position: absolute;
		left: 0;
		top: -135px;
		display: block;
		width: 750px;
		background-color: var(--stem-very-light-green);
		padding: 60px 80px 70px;
		border-radius: 60px;


		.wp-block-group {
			figure {
				display: flex;
				width: 100%;
				margin-left: -1rem;
				img {
					flex: 1 1;
				}
			}
		}

		.wp-block-button__link {
			background-color: transparent;
			color: var(--theme-color-text);
			border: 1px solid var(--theme-color-text);
		}
	}

		@media screen and (max-width: 1313px) {



	.content {
			left: 15px
	}
		}

		@media screen and (max-width: 799px) {



	.content {
			width: calc(100% - 30px);
			padding: 30px 40px 50px
	}
		}
}
.block-section.investment-areas {
	/*background: linear-gradient(180deg, #375172 35%, #94CBC5 100%);*/
	padding-top: 90px;
	margin-bottom: 270px;
	position: relative;
	margin-top: 0 !important;

	/*background: linear-gradient(
			to bottom,
			#375172 35%,
			#94CBC5 80%
	);*/

	* {
		font-family: 'interstate', sans-serif;
	}

	p {
		font-size: 18px;
		line-height: 25px;
	}

	.block-section-inner {
		overflow: hidden;
		position: relative;
		z-index: 2
	}

		@media screen and (max-width: 1313px) {

	.block-section-inner {
			width: calc(100% - 15px)
	}
		}

	.block-section-inner {

		.main-title {
			font-size: 120px;
			line-height: 132px;
			color: var(--theme-color-white);
			margin: 0;
			width: 100%;
			max-width: none;
			font-family: 'interstate', sans-serif;
			font-weight: 700;

			span {
				color: var(--stem-light-green);
			}
		}

			@media screen and (max-width: 1199px) {

		.main-title {
				font-size: 90px;
				line-height: 100px
		}
			}

			@media screen and (max-width: 1024px) {

		.main-title {
				font-size: 70px;
				line-height: 90px
		}
			}

			@media screen and (max-width: 767px) {

		.main-title {
				font-size: 50px;
				line-height: 60px
		}
			}
	}

	.content-and-button.content-and-button {
		display: flex;
		flex-wrap: wrap;
		justify-content: left;
		align-items: flex-start;
		padding: 50px 0 100px;

		article {
			display: inline-block;
			max-width: 660px;
			float: left;

			p {
				color: var(--theme-color-white);
			}
		}

		.button-wrapper {
			margin-top: auto;
			padding: 0 0 30px 50px;

			.wp-block-button__link {
				display: inline-block;
				float: left;
				background-color: transparent;
				border: solid 1px var(--theme-color-white);
			}
		}

			@media screen and (max-width: 1002px) {

		.button-wrapper {
				padding: 0 0 30px 0
		}
			}
	}

	.investment-area-wrapper {
		display: block;
		border-radius: 60px;
		background: var(--stem-very-light-green);
		padding: 70px 80px
	}

		@media screen and (max-width: 1313px) {

	.investment-area-wrapper {
			width: calc(100% - 30px)
	}
		}

		@media screen and (max-width: 767px) {

	.investment-area-wrapper {
			padding: 30px 40px;
			width: calc(100% - 30px)
	}
		}

	.investment-area-wrapper {

		h3 {
			font-size: 36px;
			line-height: 28px;
			font-weight: 700;
			color: var(--theme-color-primary-1);
		}

		p {
			max-width: 600px;
			display: block;
		}

		.page-list {
			display:grid;
			align-items: center;
			grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
			grid-gap: 30px;
			margin-top: 50px;

			.page-list-item {
				text-decoration: none;
				position: relative;
				padding-bottom: 50px;

				img {
					display: block;
					width: 100%;
					height: auto;
				}

				h4 {
					font-size: 18px;
					line-height: 23px;
					color: var(--theme-color-azure);
					font-weight: 300;
					display: block;
					margin: 0;
					border-radius: 10px;
					background-color: var(--theme-color-white);
					width: 240px;
					padding: 25px 10px;
					text-align: center;
					text-decoration: none;
					position: absolute;
					bottom: 0;
					left: 50%;
					transform: translateX(-50%);
					transition: all 0.3s ease
				}

					h4:hover {
						background-color: var(--theme-color-azure);
						color: var(--theme-color-white);
					}
			}
		}
	}
}
/**
 * Swiper 11.1.9
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 31, 2024
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, ease);
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
[dir="ltr"] .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child{
  margin-left: var(--swiper-centered-offset-before);
}
[dir="rtl"] .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child{
  margin-right: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-top: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-feature-settings: normal, ;
  font-variant: normal;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
/* Cube slide shadows end */
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}
.block-section.post-slider {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 80px 0;

	* {
		font-family: 'interstate', sans-serif;
	}

	.post-slider__title {
		color: var(--theme-color-white);
		font-size: 40px;
		display: inline-block;
		margin-bottom: 0;
		font-weight: 700
	}

		.post-slider__title:after {
			content: '';
			display: block;
			margin: 10px 0 0 0;
			background: var(--theme-color-white);
			width: 75%;
			height: 2px;
		}

	.slider__item {
		width: 100%;
		max-width: 552px;

		.slider__item-content-wrapper {
			position: relative;
			overflow: hidden;
			transition: all 0.3s ease
		}

			.slider__item-content-wrapper:after {
				content: '';
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background: var(--theme-color-primary-1);
				opacity: 0.5;
			}

		.slider__item-title {
			display: block;
			font-size: 36px;
			line-height: 40px;
			color: var(--theme-color-white);
			text-align: center;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			z-index: 10;
			margin: 0;
			width: 80%;
			transition: transform 0.3s ease;
			font-weight: 700
		}

			.slider__item-title:after {
				content: '';
				display: block;
				margin: 25px auto 0;
				background: url("../assets/icons/long-arrow.svg") no-repeat center center;
				width: 40px;
				height: 15px;
			}

		figure {
			margin: 0;
		}

		img {
			width: 100%;
			height: auto;
			display: block;

		}
	}

		.slider__item:hover {
			.slider__item-content-wrapper {
				border-radius: 30%;
			}

			.slider__item-title {
				transform: translate(-50%, -42%);
			}
		}

	.swiper-wrapper {
		margin-top: 30px;
	}

	.swiper-pagination {
		width: 265px;
		right: 115px;
		left: auto;
		background: #EFEFF0;

		.swiper-pagination-progressbar-fill {
			background: var(--stem-light-green);
		}
	}

		@media screen and (max-width: 1200px) {

	.swiper-pagination {
			right: 15px;
			margin-top: 0
	}
		}
}
.block-section.popup-video {
	display: block;
	position: relative;
	height: 1260px;
	margin-top: -107px !important;
	margin-bottom: 0 !important;
	width: 100%;
	overflow: hidden
}
@media screen and (max-width: 1836px) and (min-width: 1390px) {
.block-section.popup-video {
		margin-top: -185px !important
}
	}
@media screen and (max-width: 1400px) {
.block-section.popup-video {
		height: 960px
}
	}
@media screen and (max-width: 1200px) {
.block-section.popup-video {
		height: 760px
}
	}
@media screen and (max-width: 900px) {
.block-section.popup-video {
		height: 660px
}
	}
@media screen and (max-width: 700px) {
.block-section.popup-video {
		height: 620px
}
	}
@media screen and (max-height: 1000px) {
.block-section.popup-video {
		margin-top: -54px !important
}
	}
@media screen and (max-width: 640px) and (max-height: 770px) {
.block-section.popup-video {
		margin-top: -38px !important
}
	}
.block-section.popup-video {

	.block-section-inner {
		position: relative;
		z-index: 5;
		height: 100%;
		width: 100%;

		.wp-block-button__link {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			background: transparent;
			border: solid 1px white;
		}
	}

	.bg-image {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.oval {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border-radius: 700px 700px 0 0;
		width: 135%;
		height: 100%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		overflow: hidden;
		transition: border-radius 1s ease-in-out
	}

		.oval:after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.5);
		}

	.oval {

		.oval-inner {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: var(--stem-very-light-green);
			z-index: 99999;
			opacity: 1;
			transition: opacity 1s ease-in-out;
		}
	}

		@media screen and (max-width: 1400px) {

	.oval {
			border-radius: 500px 500px 0 0
	}
		}

		@media screen and (max-width: 1200px) {

	.oval {
			border-radius: 400px 400px 0 0
	}
		}

		@media screen and (max-width: 900px) {

	.oval {
			border-radius: 350px 350px 0 0
	}
		}

		@media screen and (max-width: 700px) {

	.oval {
			border-radius: 280px 280px 0 0
	}
		}

		@media screen and (max-width: 600px) {

	.oval {
			border-radius: 200px 200px 0 0
	}
		}
}
.block-section.popup-video.active {
		.oval {
			border-radius: 0;

			.oval-inner {
				animation: fadeOut 0.6s .6s forwards;
			}
		}

	}
.popup-video-wrapper {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -3;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;

	margin: 0 !important

}
.popup-video-wrapper.show {
		opacity: 1;
		visibility: visible;
		z-index: 101;
	}
.popup-video-wrapper {

	video {
		width: 100%;
		height: auto;
	}

}
.popup-video-mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: -3;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;
	max-width: none !important;
	margin: 0 !important
}
.popup-video-mask.show {
		opacity: 1;
		visibility: visible;
		z-index: 100;
	}
.popup-video-mask {

	.close-popup-video {
		display: block;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background: var(--theme-color-white) url(../../norfund/assets/icons/close-blue.svg) no-repeat center;
		right: 50px;
		top: 60px;
		position: fixed;
		transition: background-color 0.3s
	}

		.close-popup-video:hover {
			background-color: var(--theme-color-primary-3);
		}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}
.block-section.frontpage-hero {
	position: fixed;
	top: 0;
	margin-top: -96px;
	padding-top: 96px;
	height: 100vh
}
.block-section.frontpage-hero.inactive {
		z-index: 1;
		opacity: 0;
	}
.block-section.frontpage-hero {

	.title-animation {
		display: block;
		width: 532px;
		height: 262px;
		margin-top: 170px;
		position: relative;

		h1 {
			font-size: 18px;
			font-weight: 300;
			color: var(--theme-color-white);
		}

		lottie-player {
			position: absolute;
			top: 0;
			left: -50px;
		}
	}

		@media screen and (max-height: 1100px) {

	.title-animation {
			width: 380px;
			height: 140px;
			margin-top: 100px;

			lottie-player {
				left: -80px;
			}
	}
		}


		@media screen and (max-width: 999px) {

	.title-animation {
			width: 380px;
			height: 140px;
			margin-top: 100px;

			lottie-player {
				left: -80px;
			}
	}
		}

		@media screen and (max-width: 767px) {

	.title-animation {
			width: 280px;
			height: 100px;
			margin-top: 100px;

			lottie-player {
				left: -60px;
			}
	}
		}

		@media screen and (max-width: 639px) {

	.title-animation {
			width: 218px;
			height: 60px;
			margin-top: 80px;

			lottie-player {
				top: 10px;
			}
	}
		}

	.key-figures-section {
		display: block;
		overflow: hidden;

		>h2 {
			color: var(--theme-color-white);
			font-size: 36px;
			display: inline-block;
			margin-bottom: 50px;
			line-height: 39px;
			font-weight: 700
		}

			>h2:after {
				content: '';
				display: block;
				margin: 10px 0 0 0;
				background: var(--theme-color-white);
				width: 75%;
				height: 2px;
			}

			@media screen and (max-width: 767px) {

		>h2 {
				font-size: 22px;
				margin-bottom: 35px;
				line-height: 36px;
				margin-top: 0px
		}
			}

			@media screen and (max-width: 639px) {

		>h2 {
				font-size: 18px;
				margin-bottom: 20px;
				line-height: 22px;
				margin-top: 7px
		}

				>h2:after {
					margin-top: 2px;
				}
			}

		.key-figure {
			color: var(--theme-color-white);
			display: inline-block;
			max-width: 300px;
			width: 100%;
			float: left;
			padding-right: 40px;
			padding-left: 40px;
			border-right: 1px solid var(--theme-color-white);
			height: 220px;
			overflow: hidden
		}

			.key-figure:first-of-type {
				padding-left: 0;
			}

		.key-figure {

			h3 {
				font-size: 18px;
				font-weight: 600;
				line-height: 20px;
				margin: 0 0 20px;
			}

			.kf-number {
				font-size: 70px;
				font-weight: 700;
				line-height: 77px;
				text-transform: uppercase;

				.number {
					display: inline-block;
					float: left;
					font-family: var(--teft-typography-heading-font-family-2) !important;
				}

				.suffix {
					display: inline-block;
					float: left;
					font-size: 30px;
					font-weight: 700;
					text-transform: none;
					line-height: 38px;
					padding-top: 33px;
					padding-left: 6px;
					font-family: var(--teft-typography-heading-font-family-2) !important;
				}
			}

			.kf-text {
				line-height: 20px;
				display: block;
				clear: both;
				width: 100%;
				padding-top: 5px;
				font-size: 18px
			}

				@media screen and (max-width: 767px) {

			.kf-text {
					font-size: 16px;
					p {
						margin: 5px 0;
					}
			}
				}
		}

			@media screen and (max-width: 999px) {

		.key-figure {
				width: 50%;
				max-width: none;
				padding-right: 25px;
				padding-left: 25px;
				height: 180px
		}

				.key-figure:nth-of-type(even) {
					border-right: none;
					padding-right: 0;
				}

				.key-figure:nth-of-type(3) {
					padding-left: 0;
				}

		.key-figure {

				.kf-number {
					font-size: 40px;
					line-height: 50px;

					.suffix {
						font-size: 20px;
						line-height: 30px;
						padding-top: 18px;
					}
				}
		}
			}

			@media screen and (max-width: 639px) {

		.key-figure {
				padding-right: 15px;

				h3 {
					margin-bottom: 4px;
				}

				.kf-number {
					font-size: 28px;
					line-height: 36px;

					.suffix {
						padding-top: 6px;
					}
				}

				.kf-text {
					padding-top: 0;
				}
		}
			}

		.see-more {
			display: inline-block;
			margin-top: 38px;
			margin-left: 40px;
			text-decoration: none;
			width: 100px;
			text-align: center;

			span {
				color: var(--theme-color-white);
			}

			path {
				transition: transform 0.3s;
			}
		}

			.see-more:hover {
				path {
					transform: translateX(7px);
				}
			}

			@media screen and (max-width: 767px) {

		.see-more {
				width: 80px;
				margin-left: 20px;
				margin-top: 12px;
			    svg {
					display: block;
					width: 60px;
				}
		}
			}
	}
}
#scroll-down {
	z-index: 10;
	display: block;
	width: 86px;
	height: 32px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 3%;

	#animate-line {
		/*animate up and down*/
		animation: scrollDown 1s infinite;
	}
}
@media screen and (max-height: 999px) {
#scroll-down {
		bottom: 7%
}
	}
@media screen and (max-width: 1835px) {
#scroll-down {
		bottom: 7%
}
	}
@media screen and (max-width: 767px) {
#scroll-down {
		bottom: 9%
}
	}
@media screen and (max-height: 1100px) {
#scroll-down {
		margin: 15px auto 0
}
	}
@media screen and (max-width: 640px) and (max-height: 770px) {
#scroll-down {
		bottom: 3px
}
	}
.fake-hero {
	display: block;
	position: relative;
	z-index: 8;
	margin-top: -96px;
	background-image:
			url(../assets/hero-bg.svg),
			linear-gradient(
					to bottom,
					#375172 35%,
					#94CBC5 100%
			);
	background-repeat: no-repeat;
	background-size: 140%, 100%;
	background-position: 50% 75%, center center;
	height: 100vh;
	width: 100%
}
@media screen and (max-width: 1836px) and (min-width: 1390px) {
.fake-hero {
	    /*height: calc(100vh - 150px);*/
}
	}
@keyframes scrollDown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(5px);
	}
	100% {
		transform: translateY(0);
	}
}
.frontpage-hero-2023 {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9;
    background: linear-gradient(
      to bottom,
      #375172 35%,
      #94CBC5 100%
  )
  }
.frontpage-hero-2023.sticky {
      opacity: 1;
      z-index: 1;
      position: fixed;
    }
.block-section.frontpage-hero-2024 {
  position: fixed;
  top: 0;
  height: 100vh
}
.block-section.frontpage-hero-2024.inactive {
    z-index: 1;
    opacity: 0;
  }
.block-section.frontpage-hero-2024 {

  .relative-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .title-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 140px 0 0;
    z-index: 1;

    h1 {
      color: var(--theme-color-white);
      font-family: var(---teft-typography-font-family);
      font-size: 24px;
      font-weight: 400;
      line-height: 26.4px;
      text-align: center;
      text-underline-position: from-font;
      -webkit-text-decoration-skip-ink: none;
              text-decoration-skip-ink: none;
      margin: 0
    }

      @media screen and (max-width: 680px) {

    h1 {
        font-size: 1rem
    }
      }
      @media (min-height: 1300px) {

    h1 {
        margin-top: 7rem
    }
      }

    .report-date {
      font-size: clamp(4rem, 10vw, 8rem);
      font-weight: 500;
      font-family: var(--teft-typography-heading-font-family);
      margin-bottom: 3rem;
      background: linear-gradient(
        5.15deg,
        #94cbc5 3.7%,
        #b8ddd9 27.93%,
        #dceeec 63.3%,
        #ffffff 138.16%
      );
      -webkit-text-fill-color: transparent;
      -webkit-background-clip: text;
      filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3));
      line-height: normal;
    }
  }

  .key-figures-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;

    > h2 {
      color: var(--theme-color-white);
      font-size: 1.25rem;
      font-family: Interstate;
      margin: 0 auto 50px;
      display: inline-block;
      line-height: 22px;
      font-weight: 500
    }

      > h2:after {
        content: "";
        display: block;
        margin: 10px 0 0 0;
        background: var(--theme-color-white);
        width: 100%;
        height: 2px;
      }

    .key-figures-container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr fit-content(50px);
      padding-left: 6rem
    }

      @media screen and (max-width: 1340px) {

    .key-figures-container {
        padding-left: 2rem
    }
      }
      @media screen and (max-width: 1097px) {

    .key-figures-container {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 2
    }
      }
      @media screen and (max-width: 680px) {

    .key-figures-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 2;
        padding-left: 0
    }
      }

    .key-figure {
      color: var(--theme-color-white);
      display: flex;
      flex-direction: column;
      text-align: left;
      padding: 0 0 0 4rem;
      border-right: 1px solid var(--theme-color-white);
      height: auto

      /* 	  @media screen and (max-width: 1350px) {
        padding: 0 2.4rem;
      } */
    }

      @media screen and (max-width: 680px) {

    .key-figure {
        border-right: none
    }
      }

      .key-figure:first-of-type {
        padding: 0 0rem 0 3rem
      }

        @media screen and (max-width: 680px) {

      .key-figure:first-of-type {
          padding: 0;
          border-right: 1px solid var(--theme-color-white)
      }
        }
        @media screen and (max-width: 680px) {

      .key-figure:nth-of-type(2) {
          padding-left: 1.25rem
      }
        }

      .key-figure:last-of-type {
        border-right: none
      }

        @media screen and (max-width: 680px) {

      .key-figure:last-of-type {
          border-right: 1px solid var(--theme-color-white);
          padding-top: 2rem
      }
        }

    .key-figure {

      h3 {
        font-size: 18px;
        font-weight: 600;
        line-height: 20px;
        margin: 0 0 20px
      }

        @media screen and (max-width: 680px) {

      h3 {
          margin-bottom: 1rem
      }
        }
        @media screen and (max-width: 450px) {

      h3 {
          font-size: 1rem
      }
        }

      .kf-number {
        font-size: 70px;
        font-weight: 700;
        line-height: 77px;
        text-transform: uppercase;

        .number {
          display: inline-block;
          float: left;
          font-family: var(--teft-typography-heading-font-family-2) !important;
        }

        .suffix {
          display: inline-block;
          float: left;
          font-size: 30px;
          font-weight: 700;
          text-transform: none;
          line-height: 38px;
          padding-top: 33px;
          padding-left: 6px;
          font-family: var(--teft-typography-heading-font-family-2) !important;
        }
      }

      .kf-text {
        line-height: 20px;
        display: block;
        clear: both;
        width: 100%;
        padding-top: 5px;
        font-size: 0.875;
        max-width: 90%
      }

        @media screen and (max-width: 767px) {

      .kf-text {
          font-size: 16px;
          p {
            margin: 5px 0;
          }
      }
        }
    }

      @media screen and (max-width: 999px) {

    .key-figure {
        .kf-number {
          font-size: 40px;
          line-height: 50px;

          .suffix {
            font-size: 20px;
            line-height: 30px;
            padding-top: 18px;
          }
        }
    }
      }

      @media screen and (max-width: 680px) {

    .key-figure {
        padding: 0;

        .kf-number {
          font-size: 28px;
          line-height: 36px;

          .suffix {
            padding-top: 6px;
          }
        }

        .kf-text {
          padding-top: 0;
        }
    }
      }

    .see-more {
      display: inline-block;
      margin-top: 38px;
      margin-left: 30px;
      text-decoration: none;
      width: 100px;
      text-align: center;
      padding-right: 1rem;

      span {
        color: var(--theme-color-white);
      }

      path {
        transition: transform 0.3s;
      }
    }

      .see-more:hover {
        path {
          transform: translateX(7px);
        }
      }

      @media screen and (max-width: 767px) {

    .see-more {
        width: 80px;
        margin-left: 20px;
        margin-top: 1.4rem;
        padding-right: 0;
        svg {
          display: block;
          width: 60px;
        }
    }
      }
  }
}
#scroll-down-2024 {
  z-index: 10;
  display: block;
  width: 86px;
  height: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12%
}
#scroll-down-2024.inactive {
    z-index: 1;
    opacity: 0;
  }
#scroll-down-2024 {

  #animate-line {
    /*animate up and down*/
    animation: scrollDown 1s infinite;
  }
}
@media screen and (max-height: 999px) {
#scroll-down-2024 {
    bottom: 8%
}
  }
@media screen and (max-width: 1835px) {
#scroll-down-2024 {
    bottom: 9%
}
  }
@media screen and (max-width: 767px) {
#scroll-down-2024 {
    bottom: 13%
}
  }
@media screen and (max-height: 1100px) {
#scroll-down-2024 {
    margin: 15px auto 0
}
  }
@media screen and (max-width: 640px) and (max-height: 770px) {
#scroll-down-2024 {
    bottom: 3px
}
  }
.fake-hero {
  display: block;
  position: relative;
  z-index: 8;
  margin-top: -96px;
  background-image: url(../assets/hero-bg.svg),
    linear-gradient(to bottom, #375172 35%, #94cbc5 100%);
  background-repeat: no-repeat;
  background-size: 140%, 100%;
  background-position: 50% 75%, center center;
  height: 100vh;
  width: 100%
}
@media screen and (max-width: 1836px) and (min-width: 1390px) {
.fake-hero {
    /*height: calc(100vh - 150px);*/
}
  }
@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.frontpage-hero-2024-bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9;
  background: rgba(55, 81, 114, 1)
}
.frontpage-hero-2024-bg.sticky {
    opacity: 1;
    z-index: 1;
    position: fixed;
  }
.frontpage-hero-2024-bg {

  .blob-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 40;

    .blob {
      filter: blur(150px);
      border-radius: 100px;
      position: absolute;
      height: 556px;
      width: 550px;
      background: rgba(148, 203, 197, 0.5);
    }

    .blob-1 {
      top: 10%;
      left: 60%;
      animation: blob-1 9s infinite ease;
    }

    .blob-2 {
      top: 40%;
      left: 50%;
      animation: blob-2 10s infinite ease;
    }

    .blob-3 {
      top: -20%;
      left: 30%;
      animation: blob-3 8s infinite ease;
    }

    .blob-4 {
      top: -10%;
      left: 30%;
      animation: blob-4 9s infinite ease;
    }

    .blob-5 {
      top: 10%;
      left: -30%;
      animation: blob-4 9s infinite ease;
    }
  }
}
.block-section.business-support-2024 {
    position: absolute;
    top: 0;
    height: 100vh


/*     max-height: 1060px; */
  }
.block-section.business-support-2024.inactive {
      z-index: 1;
      opacity: 0;
    }
.block-section.business-support-2024 {
  
    .relative-container {
      position: relative;
      width: 100%;
      height: 100%;
    }
  
    .title-animation {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 310px 0 0
  
    }

      @media screen and (max-height: 1250px) {
  
    .title-animation {
        padding: 180px 0 0
  
    }
      }
      @media screen and (max-height: 715px) {
  
    .title-animation {
        padding: 160px 0 0
  
    }
      }
      @media screen and (max-height: 658px) {
  
    .title-animation {
        padding: 120px 0 0
  
    }
      }
  
    .title-animation {
  
      h1 {
        color: var(--theme-color-white);
        font-family: var(--teft-typography-heading-font-family);
        font-size: clamp(1.3rem, 10vw, 4.3rem);
        font-weight: 500;
        /* line-height: 26.4px; */
        text-align: center;
        text-underline-position: from-font;
        -webkit-text-decoration-skip-ink: none;
                text-decoration-skip-ink: none;
        margin: 0;
      }

      h2 {
        color: var(--theme-color-white);
        font-family: var(--teft-typography-heading-font-family);
        font-size: 1.125rem;
        font-weight: 500;
        margin-top: 1rem;
      }

      .business-date {
        font-size: 3.125rem;
        font-weight: 500;
        font-family: var(--teft-typography-heading-font-family);
        margin: 1.25rem 0 3.5rem;
        background: linear-gradient(
          5.15deg,
          #94cbc5 3.7%,
          #b8ddd9 27.93%,
          #dceeec 63.3%,
          #ffffff 138.16%
        );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        line-height: normal
      }

        @media screen and (max-height: 715px) {

      .business-date {
          margin: 1.25rem 0 2.5rem
      }
        }
  
    }
  
    .business-figures-section {
      display: flex;
      justify-content: center;
        .business-figures-container {
            color: var(--theme-color-white);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            max-width: 1100px
        }

            @media screen and (max-width: 832px) {
        .business-figures-container {
              grid-template-columns: repeat(2, 1fr)
        }
            }
        .business-figures-container {
       

            .business-figure {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding-left: 4rem;
                margin-left: 2rem;
                border-left: 1px solid var(--theme-color-white);
                height: auto
            }

                .business-figure:first-of-type {
                    border-left: none;
                }

                @media screen and (max-width: 1158px) {
       

            .business-figure {
                  padding-left: 2rem;
                  margin-left: 1rem
            }
                }

                @media screen and (max-width: 832px) {
       

            .business-figure {

                  margin-left: 0rem
            }

                  .business-figure:first-child {
                    padding-left: 0;
                    padding-right: 2rem;
                  }

                  .business-figure:nth-of-type(3) {
                    border-left: none;
                    padding-left: 0;
                    padding-top: 2rem;
                    padding-right: 2rem;
                }
                  .business-figure:last-of-type {
                    padding-top: 2rem;
                  }
                }
       

            .business-figure {

                h3 {
                    font-size: 0.875rem;
                    font-weight: 600;
                    font-family: var(--teft-typography-heading-font-family);
                    max-width: 150px;
                    padding-bottom: 1rem;
                    text-wrap: wrap;
                    
                }
                .business_figure_number {
                    font-size: 3rem;
                    font-weight: 700;
                    line-height: 0.9
                }

                    @media screen and (max-height: 658px) {
                .business_figure_number {
                      font-size: 2rem
                }
                    }
            }
        }
    }
  }
#scroll-down-business {
    z-index: 10;
    display: block;
    width: 86px;
    height: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14%

  }
#scroll-down-business.inactive {
      z-index: 1;
      opacity: 0;
    }
#scroll-down-business {
  
    #animate-line {
      /*animate up and down*/
      animation: scrollDown 1s infinite;
    }

  }
@media screen and (max-height: 999px) {
#scroll-down-business {
      bottom: 7%

  }
    }
@media screen and (max-width: 1835px) {
#scroll-down-business {
      bottom: 10%

  }
    }
@media screen and (max-width: 767px) {
#scroll-down-business {
      bottom: 9%

  }
    }
@media screen and (max-height: 1100px) {
#scroll-down-business {
      margin: 15px auto 0

  }
    }
@media screen and (max-height: 850px) {
#scroll-down-business {
      display: none

  }
    }
.fake-hero {
    display: block;
    position: relative;
    z-index: 8;
    margin-top: -96px;
    background-image: url(../assets/hero-bg.svg),
      linear-gradient(to bottom, #375172 35%, #94cbc5 100%);
    background-repeat: no-repeat;
    background-size: 140%, 100%;
    background-position: 50% 75%, center center;
    height: 100vh;
    width: 100%
  }
@media screen and (max-width: 1836px) and (min-width: 1390px) {
.fake-hero {
      /*height: calc(100vh - 150px);*/
  }
    }
@keyframes scrollDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(5px);
    }
    100% {
      transform: translateY(0);
    }
  }
.business-support-2024-bg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9;
    background: #293D56

}
.business-support-2024-bg.sticky {
      opacity: 1;
      z-index: 1;
      position: fixed;
    }
.business-support-2024-bg {
    .blob-container {
      position: relative;
      width: 100%;

      height: 100%;
      z-index: 40;

      svg {
        width: 100vw;
        height: 100%;
      }

      .blob {
        filter: blur(150px);
        border-radius: 100px;
        position: absolute;
        height: 556px;
        width: 550px;
        background: #3D75C2;

      }

      .blob-1 {
        top: 10%;
        left: 60%;
        animation: blob-1 9s infinite ease;
		
      }

      .blob-2 {
        top: 40%;
        left: 50%;
        animation: blob-2 10s infinite ease;
      }

      .blob-3 {
        top: -20%;
        left: 30%;
        animation: blob-3 8s infinite ease;
      }

      .blob-4 {
        top: -10%;
        left: 30%;
        animation: blob-4 9s infinite ease;
       
      }

	  .blob-5 {
        top: 10%;
        left: -30%;
        animation: blob-4 9s infinite ease;
      }

      .svg-path {
        opacity: 0.1;
        position: absolute;
        width: 700px;
        height: 700px;
      }

    }

}
.chart-container.wide {
		max-width: var(--teft-theme-site-width);
	}
.chart-container.full {
		max-width: none;
	}
.donut-chart-wrapper {
	display: block;
	position: relative;

	.piehole-text {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-weight: 700;
	}
}
.block-section.image-content-sbs {
	position: relative;
	padding: 200px 0 100px
}
@media screen and (max-width: 1399px) {
.block-section.image-content-sbs {
		padding: 150px 0 80px
}
	}
@media screen and (max-width: 1100px) {
.block-section.image-content-sbs {
		padding: 100px 0 20px
}
	}
.block-section.image-content-sbs {

	.block-section-inner {
		display: block;
		overflow: hidden;
	}

	.image {
		display: block;
		max-width: 550px;
		width: 100%;
		float: left;
		overflow: hidden;

		img {
			display: block;
			width: 100%;
		}
	}

		@media screen and (max-width: 1100px) {

	.image {
			max-width: 480px
	}
		}

		@media screen and (max-width: 900px) {

	.image {
			max-width: none
	}
		}

	.content {
		width: calc(100% - 550px);
		display: block;
		float: left;
		padding-left: 80px
	}

		@media screen and (max-width: 1100px) {

	.content {
			padding-left: 50px;
			width: calc(100% - 480px)
	}
		}

		@media screen and (max-width: 900px) {

	.content {
			width: 100%;
			padding-left: 0;
			margin-top: 40px
	}
		}

	.content {

		h2 {
			font-size: 120px;
			line-height: 132px;
			color: var(--theme-color-white);
			margin: 0;
			font-weight: 700
		}

			@media screen and (max-width: 1399px) {

		h2 {
				font-size: 90px;
				line-height: 100px
		}
			}

			@media screen and (max-width: 1024px) {

		h2 {
				font-size: 70px;
				line-height: 80px
		}
			}

			@media screen and (max-width: 767px) {

		h2 {
				font-size: 50px;
				line-height: 60px
		}
			}

		p {
			color: var(--theme-color-white);
			font-size: 18px;
			line-height: 25px;
		}

		.button-wrapper {
			margin-top: 50px;

			.wp-block-button__link {
				display: inline-block;
				float: left;
				background-color: transparent;
				border: solid 1px var(--theme-color-white);
			}
		}

			@media screen and (max-width: 767px) {

		.button-wrapper {
				padding: 0 0 30px 0;
				margin-top: 18px
		}
			}
	}
}
/**
 * Template parts components
 */
.hero-header {
	position: relative;
	z-index: 2
}
.hero-header .hero-header__image {
		height: 720px !important;
		background-color: var(--theme-color-primary-1);
		background-size: 1420px auto !important
	}
@media screen and (min-width: 768px) {
.hero-header .hero-header__image {
			background-position: right center !important
	}
		}
@media screen and (max-width: 1800px) {
.hero-header .hero-header__image {
			background-size: 1080px auto !important
	}
		}
@media screen and (max-width: 1024px) {
.hero-header .hero-header__image {
			height: 600px !important;
			background-size: 900px auto !important
	}
		}
@media screen and (max-width: 767px) {
.hero-header .hero-header__image {
			height: 500px !important;
			background-size: 745px auto !important
	}
		}
.hero-header .hero-header__image::after {
			display: none;
		}
.hero-header .hero-header__image::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-image: url("../assets/hero-bg-layer.svg");
			background-size: cover;
			background-position: center top;
			background-repeat: no-repeat;
		}
.hero-header .hero-header__image .hero-header__image__content {
			display: flex;
			z-index: 1;
			position: relative;
			flex-direction: column;
			justify-content: center;
			height: 100%;
			margin: 0 auto !important;
			max-width: 1270px;
			align-items: flex-start
		}
@media screen and (max-width: 1390px) {
.hero-header .hero-header__image .hero-header__image__content {
				max-width: 100%;
			    padding: 0 var(--teft-theme-site-padding)
		}
			}
.hero-header .hero-header__image .hero-header__image__content .hero-header__title {
				color: var(--theme-color-white);
				text-transform: none;
				font-size: 36px
			}
.hero-header .hero-header__image .hero-header__image__content .hero-header__title:after {
					content: '';
					display: block;
					margin: 10px 0 0 0;
					background: var(--theme-color-white);
					width: 40%;
					height: 2px;
				}
.hero-header .hero-header__image .hero-header__image__content .hero-header__title {

				span {
					color: var(--stem-light-green);
				}
			}
.hero-header .hero-header__image .hero-header__image__content .hero-header__subtitle {
				color: var(--theme-color-white);
				font-size: 24px;
				text-transform: none;
				font-weight: 400;
				margin-top: 50px;

			}
.hero-header .hero-header__image .hero-header__image__content {

			.hero-header__inner {
				max-width: 408px;
			}
		}
.hero-header.hero-header--no-image {
		display: flex;
		background-image: linear-gradient(to right, #3c4d92 0%, #3faab7 100%)
	}
.hero-header.hero-header--no-image .hero-header__inner {
			max-width: var(--teft-theme-site-width);
			margin: 0 auto
		}
.hero-header.hero-header--no-image .hero-header__inner .entry-title {
				color: var(--theme-color-white);
				text-align: center;
				text-transform: none;
			}
@media (min-width: 961px) {
	.hero-header.hero-header--no-image {
		min-height: 280px;
	}
}
@media only screen and (max-width: 800px) {
			.site-header--branding.uses-custom-logo img {
				height: 50px;
				width: auto;
			}
}
/*@import "./page-navigation/page-navigation.css";*/
#article-nav {
	display: block;
	width: 100%;
	padding: 0 80px;
	top: 880px;
	position: fixed;
	z-index: 1
}
@media screen and (max-height: 999px) {
#article-nav {
		top: auto;
		bottom: 50px
}
	}
@media screen and (max-width: 1290px) {
#article-nav {
		padding: 0 20px
}
	}
@media screen and (max-width: 1024px) {
#article-nav {
		top: 780px
}
	}
@media screen and (max-width: 767px) {
#article-nav {
		top: auto;
		overflow: hidden;
		position: relative;
		max-width: 544px;
		margin: 40px auto 40px
}
	}
#article-nav {

	.article-nav-button {
		display: block;
		max-width: 200px;
		float: left;

		a {
			text-decoration: none;
		}

		h6 {
			font-size: 14px;
			font-weight: 700;
			color: var(--theme-color-text);
			margin: 0 0 5px 0;
		}

		h4 {
			margin: 0;
			font-size: 14px;
			color: var(--theme-color-text);
			line-height: 22px;
		}

		.icon {
			display: block;
			width: 40px;
			height: 35px;
			float: left;

			path {
				fill: var(--stem-light-green);
			}
		}
	}

		.article-nav-button.button-next {
			float: right;
			margin-right: 0;
			text-align: right;

			.icon {
				transform: none;
				float: right;
			}
		}

		.article-nav-button.button-previous {
			.icon {
				transform: rotate(180deg);
				float: left;
			}
		}

		.article-nav-button:hover {
			h6 {
				text-decoration: underline;
			}
		}
}
body.page-template-page-download-center #content {
	width: var(--teft-theme-site-width);
	max-width: 100%;
	margin: 0 auto;
}
@media only screen and (max-width: 1299px) {
.site .download-center .site-container {
			padding-left: 20px;
			padding-right: 20px
	}
		}
.site .download-center h1 {
		text-transform: unset;
		font-size: var(--theme-font-size-xl);
		margin-bottom: 20px
	}
@media (max-width: 899px) {
.site .download-center h1 {
			margin-top: 70px
	}
		}
.site .download-center h3 {
		font-family: var(--teft-typography-font-family);
	}
.site .download-center .download-center-intro-text {
		max-width: 424px;
	}
.site .download-center .download-center-intro-text p {
			font-size: var(--theme-font-size-s);
		}
.site .download-center .download-center-intro-text {
		margin-bottom: 41px;
	}
#download-center-content {
	font-family: var(--teft-typography-font-family);

	.title-text, .count {
		font-size: 20px;
	}


	.downloadable-item {
		.title {
			line-height: 26px;
			font-size: 18px;
		}
	}

}
@media (min-width: 901px) {
#download-center-content {
		margin-bottom: rem-calc(100);
		display: flex;
		justify-content: space-between

}
		#download-center-content > .handorgel {
			width: calc(60% - 20px);
		}
		#download-center-content > .summary {
			width: calc(40% - 20px);
		}
	}
#download-center-content button {
		width: 100%;
	}
#download-center-content ul {
		width: 100%;
		list-style: none;
		margin: 0;
		padding: 0;
	}
#download-center-content .handorgel__header,
	#download-center-content .handorgel__content {
		margin: 0;
	}
#download-center-content button,
	#download-center-content h4 {
		text-align: left;
		border: none;
		font-family: var(--teft-typography-font-family);
	}
#download-center-content h4 {
		padding: 17px 18px 12px 18px;
		margin: 0;
		font-size: var(--theme-font-size-m);
	}
#download-center-content .handorgel__header button {
		background-color: var(--theme-color-primary-4);
		color: var(--theme-color-primary-dark);
		font-weight: bold;
		padding: 15px 18px;
		display: inline-flex;
		justify-content: space-between;
		align-items: center
	}
#download-center-content .handorgel__header button .count {
			display: inline-flex;
			justify-content: space-between;
			align-items: center
		}
#download-center-content .handorgel__header button .count::after {
				margin-left: 20px;
				background: url(../assets/icons/arrow-down-blue-alt.svg) no-repeat center center;
				display: inline-block;
				width: 40px;
				height: 40px;
				background-size: 20px 13px;
				content: "";
				border-radius: 100%;
				border: 1px solid var(--theme-color-primary-1);
				transform: rotate(0deg);
				flex-shrink: 0;
				flex-grow: 0;
			}
#download-center-content .handorgel__header button[aria-expanded="true"] .count::after {
			transform: rotate(180deg);
		}
#download-center-content .handorgel__content {
		max-height: 0;
		margin: 0 0 15px 0;
		overflow: hidden
	}
#download-center-content .handorgel__content button {
			padding: 5px 18px;
			font-weight: normal;
			font-size: var(--theme-font-size-s);
			background-color: transparent;
		}
#download-center-content .handorgel__content.handorgel__content--open {
			max-height: 9999px
		}
#download-center-content .handorgel__content.handorgel__content--open .handorgel__content__inner {
				ul {
					margin: 0;
					padding: 0;
				}
				li {
					margin: 0;
				}
			}
@media (min-width: 901px) {
#download-center-content .handorgel__content.handorgel__content--open .handorgel__content__inner {
					position: relative
			}
					#download-center-content .handorgel__content.handorgel__content--open .handorgel__content__inner::before {
						content: "";
						display: block;
						height: 100%;
						width: 0;
						position: absolute;
						top: 0;
						left: 50%;
						border-right: 2px solid var(--theme-color-primary-4);
					}
				}
@media only screen and (min-width: 650px) {
		#download-center-content .handorgel__content__inner {
			display: flex;
		}
	}
#download-center-content .pages,
	#download-center-content .images {
		width: 100%
	}
@media only screen and (min-width: 650px) {
#download-center-content .pages,
	#download-center-content .images {
			width: 50%;
			flex-shrink: 0;
			flex-grow: 1
	}
		}
#download-center-content .selectable-with-icon {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top: 4px
	}
#download-center-content .selectable-with-icon span {
			pointer-events: none;
		}
#download-center-content .selectable-with-icon.active {
			background-color: var(--theme-color-primary-1);
			color: var(--theme-color-white)
		}
#download-center-content .selectable-with-icon.active .button-icon {
				background-color: var(--theme-color-teal);
				border-color: var(--theme-color-teal)
			}
#download-center-content .selectable-with-icon.active .button-icon::before,
				#download-center-content .selectable-with-icon.active .button-icon::after {
					border-color: var(--theme-color-white);
				}
#download-center-content .selectable-with-icon.active .button-icon::before {
					transform: translateY(calc(-50% + 1px)) translateX(calc(-50% - 3px)) rotate(45deg);
					width: 5px;
				}
#download-center-content .selectable-with-icon.active .button-icon::after {
					width: 10px;
					transform: translateY(-50%) translateX(calc(-50% + 2px)) rotate(-45deg);
				}
#download-center-content .selectable-with-icon.active:hover .button-icon::before, #download-center-content .selectable-with-icon.active:focus .button-icon::before {
						transform: translateY(-50%) translateX(-50%) rotate(45deg);
						width: 13px;
					}
#download-center-content .selectable-with-icon.active:hover .button-icon::after, #download-center-content .selectable-with-icon.active:focus .button-icon::after {
						width: 13px;
						transform: translateY(-50%) translateX(-50%) rotate(-45deg);
					}
#download-center-content .selectable-with-icon .button-icon {
			flex-shrink: 0;
			flex-grow: 0;
			background-color: var(--theme-color-white);
			border: 1px solid var(--theme-color-primary-1);
			content: "";
			display: block;
			width: 24px;
			height: 24px;
			border-radius: 100%;
			position: relative
		}
#download-center-content .selectable-with-icon .button-icon::before,
			#download-center-content .selectable-with-icon .button-icon::after {
				width: 13px;
				height: 0;
				border-top: 2px solid var(--theme-color-primary-1);
				content: "";
				display: block;
				position: absolute;
				top: 50%;
				left: 50%;
				transform-origin: center center;
			}
#download-center-content .selectable-with-icon .button-icon::before {
				transform: translateY(-50%) translateX(-50%);
			}
#download-center-content .selectable-with-icon .button-icon::after {
				transform: translateY(-50%) translateX(-50%) rotate(90deg);
			}
#download-center-content .selectable-with-icon:hover .button-icon, #download-center-content .selectable-with-icon:focus .button-icon {
				background-color: var(--theme-color-teal);
				border-color: var(--theme-color-teal)
			}
#download-center-content .selectable-with-icon:hover .button-icon::before,
				#download-center-content .selectable-with-icon:hover .button-icon::after,
				#download-center-content .selectable-with-icon:focus .button-icon::before,
				#download-center-content .selectable-with-icon:focus .button-icon::after {
					border-color: var(--theme-color-white);
				}
#download-center-content a.selectable-with-icon {
		background-color: var(--theme-color-azure);
		color: var(--theme-color-white);
		text-decoration: none;
	}
.summary h3 {
		background-color: var(--theme-color-primary-1);
		color: var(--theme-color-white);
		margin-top: 0;
		margin-bottom: 10px;
	}
.summary h3,
	.summary a,
	.summary button#download-custom-pdf {
		padding: 18px 15px;
	}
.summary h3,
	.summary .download-link {
		font-size: var(--theme-font-size-s);
		font-weight: bold;
	}
.summary a,
	.summary button#download-custom-pdf {
		background-color: var(--theme-color-azure)
	}
.summary a:hover,
		.summary a:focus,
		.summary button#download-custom-pdf:hover,
		.summary button#download-custom-pdf:focus {
			color: var(--theme-color-white);
			background-color: var(--theme-color-teal);
		}
.summary .remove-button {
		padding: 7px 15px;
	}
.summary #preset-downloads {
		margin-top: -10px;
	}
.summary #user-downloads:not(.hidden) + #preset-downloads {
		margin-top: 35px;
	}
.summary .download-link {
		display: flex;
		justify-content: right;
		align-items: center;
		background-color: var(--theme-color-almost-black);
		color: var(--theme-color-white);
		text-decoration: none;
		margin-top: 10px
	}
.summary .download-link .title {
			display: flex;
			flex-grow: 1;
			justify-content: left;
		}
.summary .download-link .file-size {
			width: 90px;
			justify-self: right;
		}
.summary .download-link:hover,
		.summary .download-link:focus {
			cursor: pointer;
			color: var(--theme-color-white);
			background-color: var(--theme-color-teal);
		}
.summary .download-link::after {
			content: "";
			display: inline-block;
			width: 20px;
			height: 20px;
			background: url(../assets/icons/download-white.svg) no-repeat center center;
		}
#download-center-content .summary .selectable-with-icon {
		background-color: var(--theme-color-azure);
		color: var(--theme-color-white);
		font-size: var(--theme-font-size-s);
		font-weight: 100
	}
#download-center-content .summary .selectable-with-icon .button-icon {
			background-color: var(--theme-color-white);
			border-color: var(--theme-color-azure)
		}
#download-center-content .summary .selectable-with-icon .button-icon::after,
			#download-center-content .summary .selectable-with-icon .button-icon::before {
				border-top-color: var(--theme-color-azure);
			}
#download-center-content .summary .selectable-with-icon .button-icon::before {
				transform: translateY(calc(-50% + 1px)) translateX(calc(-50% - 3px)) rotate(45deg);
				width: 5px;
			}
#download-center-content .summary .selectable-with-icon .button-icon::after {
				width: 10px;
				transform: translateY(-50%) translateX(calc(-50% + 2px)) rotate(-45deg);
			}
#download-center-content .summary .selectable-with-icon:hover,
		#download-center-content .summary .selectable-with-icon:focus {
			cursor: pointer
		}
#download-center-content .summary .selectable-with-icon:hover .button-icon::before, #download-center-content .summary .selectable-with-icon:focus .button-icon::before {
					transform: translateY(-50%) translateX(-50%) rotate(45deg);
					width: 13px;
				}
#download-center-content .summary .selectable-with-icon:hover .button-icon::after, #download-center-content .summary .selectable-with-icon:focus .button-icon::after {
					width: 13px;
					transform: translateY(-50%) translateX(-50%) rotate(-45deg);
				}
.site-header--site-title {
	display: none;
	padding: 0 var(--teft-theme-site-padding);
	text-align: center;
}
@media (min-width: 1281px) {
	.site-header--site-title {
		display: block;
	}
}
header .mega-menu {
	min-height: calc(100vh - 72px);
	background-color: #94CBC5;
	top: 0;
	padding-top: 96px;
	opacity: 0;
	z-index: -2;

	* {
		font-family: 'interstate', sans-serif;
	}
}
header .mega-menu .site-menu--primary {
		background: none;
	}
header .mega-menu .icon {
		display: block;
		width: 18px;
		height: 18px;
		margin-left: 16px
	}
@media (min-width: 901px) {
header .mega-menu .icon {
			margin-left: 59px
	}
		}
header .mega-menu .icon-download {
		background: transparent url(../../norfund/assets/icons/download-white.svg) no-repeat center;
	}
header .mega-menu:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 2;
		background: linear-gradient(
				to bottom,  
				rgba(55, 81, 114, 1) 10%,
				rgba(255,0,0,0) 100%
		);
	}
header .mega-menu:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url(../assets/icons/butterfly.svg);
		background-size: cover;
		background-position: bottom right;
		z-index: 1;
	}
.mega-menu-inner {
	max-width: 100%;
	overflow-y: auto;
	z-index: 3
}
.mega-menu-inner.with-archive .header-menu .sub-menu {
				margin-left: 0;
			}
.mega-menu-inner.with-archive .header-menu a {
				display: flex;
				justify-content: space-between;
				align-items: center;
			}
.mega-menu-inner.with-archive .header-menu > li > a {
					padding: 15px;
					position: relative
				}
.mega-menu-inner.with-archive .header-menu > li > a::after {
						content: "";
						position: absolute;
						bottom: 4px;
						left: 15px;
						width: calc(100% - 30px);
						border-bottom: 1px solid var(--theme-color-white);
					}
@media (min-width: 901px) {
.mega-menu-inner.with-archive .header-menu > li > a {
						padding: 15px 0
				}
						.mega-menu-inner.with-archive .header-menu > li > a::after {
							display: none;
						}
					}
.mega-menu-inner.with-archive .header-menu > li > .sub-menu .sub-menu > li > a {
					text-decoration: underline;
				}
.mega-menu-inner.with-archive .header-menu > li.active > a {
						position: relative;
						border-bottom: transparent;
						color: var(--theme-color-primary-1);
						display: block
					}
@media (min-width: 901px) {
.mega-menu-inner.with-archive .header-menu > li.active > a {
							background-color: transparent
					}
							.mega-menu-inner.with-archive .header-menu > li.active > a::before {
								position: absolute;
								top: -1px;
								right: 0;
								height: calc(100% + 1px);
								width: 100%;
								display: block;
								content: "";
								background-color: var(--theme-color-white);
								z-index: -1;
							}
						}
.mega-menu-inner.with-archive .sub-menu li.menu-item-has-children > a {
				position: relative
			}
.mega-menu-inner.with-archive .sub-menu li.menu-item-has-children > a::after {
					display: inline-block;
					content: "";
					width: 14px;
					height: 8px;
					background: url("../assets/icons/arrow-down-light.svg") no-repeat center center
				}
@media (min-width: 901px) {
.mega-menu-inner.with-archive .sub-menu li.menu-item-has-children > a::after {
						position: absolute;
						top: 50%;
						left: 0;
						transform: translateY(-50%)
				}
					}
.mega-menu-inner.with-archive .sub-menu li.menu-item-has-children.active > a::after {
				transform: rotate(180deg);
			}
.mega-menu-inner.with-archive li:not(.active) .sub-menu {
			display: none;
		}
@media (min-width: 901px) {
			.mega-menu-inner.with-archive .header-menu {
				flex-direction: column;
				position: relative
			}
				.mega-menu-inner.with-archive .header-menu li,
				.mega-menu-inner.with-archive .header-menu a {
					position: unset;
				}
				.mega-menu-inner.with-archive .header-menu > li {
					width: 50%
				}
					.mega-menu-inner.with-archive .header-menu > li > a {
						border-bottom: 1px solid var(--theme-color-white);
					}
				.mega-menu-inner.with-archive .header-menu > li {
					> .sub-menu {
						position: absolute;
						top: 30px;
						left: 62%;
						width: 73%
					}
							> .sub-menu > li a {
								display: flex;
								align-items: center;
								margin: 0;
								padding-right: 30px;
							}
							> .sub-menu > li > a {
								padding-left: 30px;
								font-size: 22px;
								line-height: 1.2;
								font-weight: 400;
							}
							> .sub-menu > li li > a {
								padding-left: 60px;
							}
				}
		}
@media only screen and (min-width: 901px) and (max-height: 800px) {
					.mega-menu-inner.with-archive .header-menu > li > a {
						font-size: var(--theme-font-size-m);
					}
					.mega-menu-inner.with-archive .header-menu > li.active > .sub-menu {
						top: 10px
					}
							.mega-menu-inner.with-archive .header-menu > li.active > .sub-menu > li > a {
								padding-left: 30px;
								font-size: 17px;
								height: 40px;

							}
							.mega-menu-inner.with-archive .header-menu > li.active > .sub-menu > li li a {
								font-size: 15px;
								height: 35px;
							}

		}
@media (min-width: 901px) {
.mega-menu-inner.without-archive {
			/* Make parent li not clickable */
	}
			.mega-menu-inner.without-archive.header-menu > li > a {
				pointer-events: none;
			}
			.mega-menu-inner.without-archive .header-menu {
				display: flex;
				flex-wrap: wrap
			}

				.mega-menu-inner.without-archive .header-menu > li {
					flex: 0 0 33% !important;
				}
		}
.mega-menu-inner {

	#downloads-search-archive, .mega-menu-inner {
		position: relative;
		z-index: 3;
	}

	#menu-primary-menu {
		li {
			width: 60%;

			>a {
				padding-right: 38px !important;
			}

		}

			@media screen and (max-width: 1510px) {
		li {
				width: 50%;

				>.sub-menu {
					left: 53%;

					>li {
						width: 65%;
					}
				}

		}
			}

			@media screen and (max-width: 1320px) {
		li {
				>a {
					font-size: 21px !important;
				}

		}
			}

			@media screen and (max-width: 900px) {
		li {
				width: 100%;

				.sub-menu {
					padding: 15px;

					>li {
						width: 90%;
					}


					a {
						font-size: 19px;
					}
				}

		}
			}
		li {

			a {
				font-size: 24px;
				padding: 18px 0;
				position: relative;
				height: auto
			}

				a:after {
					content: '';
					display: block;
					background: url("../assets/icons/long-arrow.svg") no-repeat center center;
					width: 40px;
					height: 15px;
					border: none;
					position: absolute;
					right: 0;
					left: auto;
					top: 37%;
					transition: right 0.3s
				}

					@media screen and (max-width: 900px) {

				a:after {
						display: none
				}
					}

			> .sub-menu {
				padding: 15px;

				a {
					padding: 10px 0;
				}
			}

		}
	}

		@media screen and (max-width: 900px) {

	#menu-primary-menu {
			padding-left: 15px;
			padding-right: 15px
	}
		}
}
.main-navigation__is-visible .mega-menu {
	opacity: 1;
	z-index: 11;
}
.mega-menu-inner.with-archive .header-menu .sub-menu .sub-menu {
	background-color: var(--theme-color-primary-1);
	padding: 15px;
	border-radius: 10px;

	li {
		width: 100% !important;

		A {
			font-size: 18px !important;
		}
	}
}
.menu-go-to-norfund {
	color: var(--theme-color-white) !important;
	display: inline-block;
	margin-top: 50px;
	font-size: 18px
}
@media screen and (max-width: 899px) {
.menu-go-to-norfund {
	    margin-left: 20px
}
	}
body.main-navigation__is-visible {
	#masthead #go-to-nf {
		display: none !important;
	}
}
header .mega-menu {
	#menu-primary-menu {
		/*1st level*/
		>li:not(.active) {
			/*2nd level*/
			>.sub-menu {
				transition: opacity .3s;
			}
		}

			@media screen and (min-width: 768px) {
				>li:not(.active):hover {
					/*2nd level*/
					>.sub-menu {
						display: block;
						opacity: .25;
					}
				}
			}

		/*all level*/
			li > a:hover:after {
				right: -12px;
			}

		a {
			text-decoration: none !important;
		}

		/*1st level*/
		>li.active {
			/*1st level*/
			>a {
				color: var(--theme-color-white);
				border-bottom: solid 1px var(--theme-color-white)
			}

				>a:before {
					background-color: transparent;
				}

				>a:after {
					right: -12px;
				}
		}

		>li.no-submenu-on-hover {
			/*2nd level*/
			>.sub-menu {
				display: none !important;
			}
		}
	}

		@media screen and (max-width: 768px) {
	#menu-primary-menu {
			>li.active {
				>.sub-menu-button {
					transform: rotate(180deg);
				}
			}

			>li {
				>.sub-menu-button {
					position: absolute;
					z-index: -1;
				}

				.menu-item-has-children {
					position: relative;

					.sub-menu-button {
						top: -12px;
					}
				}

					.menu-item-has-children.active {
						.sub-menu-button {
							transform: rotate(180deg);
						}
					}
			}
	}
		}
}
.mega-menu-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.report-downloads-wrapper {
	background-color: #2b3452;
	color: var(--theme-color-white);
	padding: 1rem var(--teft-theme-site-padding)
}
.report-downloads-wrapper dl {
		display: flex;
		flex-direction: row;
		align-items: center;
	}
.report-downloads-wrapper dt,
	.report-downloads-wrapper dd {
		display: flex-inline;
	}
.report-downloads-wrapper dt {
		line-height: 1;
		font-size: 32px;
		font-family: var(--teft-typography-heading-font-family);
		margin: 0;
		padding: 0 0 8px 0;
	}
.report-downloads-wrapper ul {
		display: flex;
		list-style: none;
		margin: 0;
		padding: 0;
	}
.report-downloads-wrapper li {
		margin-right: 35px;
		padding-bottom: 7px;
		border-bottom: 1px solid var(--theme-color-white);
	}
.report-downloads-wrapper.icon-download {
		background: transparent url(../assets/icons/download-white.svg) no-repeat 50%;
		width: 18px;
		height: 18px;
		display: inline-block;
		margin-left: 56px;
	}
.site .report-downloads-wrapper a {
		text-decoration: none;
		font-size: 19px;
		color: var(--theme-color-white);
		display: flex;
		justify-content: space-between;
		align-items: center
	}
.site .report-downloads-wrapper a:hover,
		.site .report-downloads-wrapper a:focus {
			color: var(--theme-color-primary-4);
		}
@media only screen and (max-width: 900px) {

		.report-downloads-wrapper dl,
		.report-downloads-wrapper ul {
			flex-direction: column;
		}

		.report-downloads-wrapper li {
			margin-top: 10px;
		}

		.report-downloads-wrapper dt {
			font-size: 28px;
		}

	.site .report-downloads-wrapper a {
		font-size: 16px;
	}

}
#downloads-search-archive {
	background-color: var(--theme-color-primary-dark)

}
#downloads-search-archive .search-form {
		display: flex
	}
#downloads-search-archive .search-form input[type="search"] {
			background-image: none;
			padding: 0 50px 0 20px;
			border-top-right-radius: 0;
			border-bottom-right-radius: 0;
			height: 38px;
		}
@media (min-width: 901px) {
#downloads-search-archive .search-form input[type="search"] {
				width: 250px;
		}
			}
#downloads-search-archive .search-form input[type="search"] {
			text-transform: none;
		}
#downloads-search-archive .search-form .search-submit {
			display: inline-block;
			border: 3px solid var(--theme-color-primary-dark);
			background: var(--theme-color-primary-4) url("../assets/icons/spyglass-dark-blue.svg") no-repeat center center;
			border-radius: 50px;
			margin-left: -30px;
			height: 40px;
			width: 80px;
			flex-shrink: 0;
			text-indent: -99999px;
		}
@media (min-width: 901px) {
#downloads-search-archive {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0

}
	}
#downloads-search-archive {

	color: var(--theme-color-white)

}
#downloads-search-archive .text-link-with-icon {
		width: 200px;
		border: none;
		border-bottom: 1px solid var(--theme-color-white);
	}
#downloads-search-archive a,
	#downloads-search-archive button {
		color: var(--theme-color-white);
		background-color: transparent;
	}
#downloads-search-archive #main-menu-additional {
		background-color: var(--theme-color-primary-dark);
		position: relative;
		z-index: 50;
		padding: 30px 0;
		display: flex;
		height: 100%;
		width: 100%;
		justify-content: space-between;
		align-items: center;
		flex-direction: column
	}
#downloads-search-archive #main-menu-additional .text-link-with-icon,
		#downloads-search-archive #main-menu-additional input {
			font-size: var(--theme-font-size-xs);
		}
#downloads-search-archive #main-menu-additional .text-link-with-icon,
		#downloads-search-archive #main-menu-additional form {
			width: calc(100% - 80px);
		}
#downloads-search-archive #main-menu-additional form {
			justify-content: center;
			margin-top: 10px;
		}
@media (min-width: 901px) {
#downloads-search-archive #main-menu-additional {
			background-color: transparent
	}
			#downloads-search-archive #main-menu-additional .text-link-with-icon,
			#downloads-search-archive #main-menu-additional input {
				font-size: var(--theme-font-size-s);
			}
			#downloads-search-archive #main-menu-additional .text-link-with-icon,
			#downloads-search-archive #main-menu-additional form {
				width: 200px;
			}
			#downloads-search-archive #main-menu-additional form {
				margin-top: 0;
			}
#downloads-search-archive #main-menu-additional {
			height: 170px;
			flex-direction: row;
			padding: 0 20px;
			display: flex
	}
			#downloads-search-archive #main-menu-additional #download-center-link {
				order: 1;
			}
			#downloads-search-archive #main-menu-additional form {
				order: 2;
			}
			#downloads-search-archive #main-menu-additional #toggle-report-archive {
				order: 3;
			}
		}
#downloads-search-archive #report-archive {
		z-index: 45;
		height: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		padding-bottom: 200px;
		max-height: 100vh;
		overflow: hidden;
		transition: all 350ms ease-out
	}
#downloads-search-archive #report-archive[aria-hidden="true"] {
			max-height: 0;
			padding-bottom: 0;
		}
@media (min-width: 901px) {
#downloads-search-archive #report-archive {
			bottom: 168px;
			height: auto;
			padding-bottom: 0
	}
		}
#downloads-search-archive #report-archive .site-container {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			justify-content: space-around;
			margin: 30px auto;
			padding: 0 20px
		}
@media (min-width: 901px) {
#downloads-search-archive #report-archive .site-container {
				justify-content: space-between;
				padding: 0
		}
			}
#downloads-search-archive #report-archive {
		width: 100%;
		background-color: var(--theme-color-primary-4)
	}
#downloads-search-archive #report-archive h2 {
			width: 100%;
			text-align: center;
			font-family: var(--teft-typography-heading-font-family);
			font-size: var(--theme-font-size-l);
		}
#downloads-search-archive #report-archive h2,
		#downloads-search-archive #report-archive a {
			color: var(--theme-color-primary-dark);
		}
#downloads-search-archive #report-archive .icon-download {
			background-image: url(../assets/icons/download-dark-blue.svg);
		}
#downloads-search-archive #report-archive .icon-arrow-right {
			background-image: url(../assets/icons/arrow-right-dark-blue.svg);
		}
#downloads-search-archive #report-archive a {
			font-size: var(--theme-font-size-xs);
			border-bottom-color: var(--theme-color-primary-dark);
			max-width: calc(50% - 10px)
		}
@media (min-width: 901px) {
#downloads-search-archive #report-archive a {
				max-width: unset;
				font-size: var(--teft-typography-s)
		}
			}
#downloads-search-archive #report-archive button {
			position: absolute;
			top: 10px;
			right: 10px
		}
@media (min-width: 901px) {
#downloads-search-archive #report-archive button {
				right: -10px
		}
			}
#downloads-search-archive #report-archive button {
			width: 40px;
			height: 40px;
			border: none;
			display: block;
			background: url(../assets/icons/close-blue.svg) no-repeat center;
			transform: scale(1);
			transition: scale 150ms ease-in-out
		}
#downloads-search-archive #report-archive button:hover,
			#downloads-search-archive #report-archive button:focus {
				cursor: pointer;
				transform: scale(1.15);
			}
#downloads-search-archive #toggle-report-archive .icon {
			background-image: url(../assets/icons/arrow-down-light.svg);
			transform: rotate(180deg);
		}
#downloads-search-archive #toggle-report-archive.active .icon {
				transform: rotate(0deg);
			}
#downloads-search-archive #toggle-report-archive:hover,
		#downloads-search-archive #toggle-report-archive:focus {
			cursor: pointer;
		}
.site-header--branding {
	padding: 0 var(--teft-theme-site-padding);
	max-width: 148px;

	a {
		display: block;
		width: 148px;

		svg {
			display: block;
			width: 100%;

			#smallest-petal {
				fill: #89A199 !important;
			}
		}
	}
}
@media (min-width: 901px) {
	.site-header--branding {
		padding: 0
	}

		.site-header--branding svg {
			/* width: 140px; */
			width: 176px;
		}
}
body {
	#masthead {
		z-index: 15;
		background: transparent;

		.site-header-main {
			background: var(--theme-color-primary-1);

			.site-container {
				background: transparent;
			}
		}

		.site-header--branding svg {
			path {
				fill: var(--theme-color-white);
			}
		}

		.site-header--nav-toggle {
			color: var(--theme-color-white);
			padding-right: 0
		}

			@media screen and (max-width: 920px) {

		.site-header--nav-toggle {
				padding-right: 1rem
		}
			}

		.site-header--nav-toggle {

			.hamburger span {
				background-color: var(--theme-color-white);
			}
		}

		.site-header--site-title__string, .site-header--site-title {
			color: var(--theme-color-white);
		}

		#go-to-nf {

			a {
				color: var(--theme-color-white);
			}
		}
	}
}
body.home,
body.page-template-template-home
{
	#masthead {

		.site-header-main {
			background: transparent;

			.site-container {
				background: transparent;
			}
		}
	}
}
#masthead #go-to-nf {
	margin-left: auto;
	padding-right: 5px;
	display: block !important;

	a {
		font-size: 14px;
	}
}
@media screen and (max-width: 999px) {
#masthead #go-to-nf {
	    display: none !important
}
	}
.site-header-main {
	box-shadow: none !important;

	.site-container {
		justify-content: space-between;
	}
}
body.main-navigation__is-visible {
	.site-header,
	.site-header-main,
	.site-header-main .site-container {
		background: transparent !important;
		box-shadow: none;
	}

	.site-header--branding svg {
		path {
			fill: var(--theme-color-white);
		}
	}

	.site-header--nav-toggle {
		color: var(--theme-color-white);

		.hamburger span {
			background-color: var(--theme-color-white);
		}
	}
}
.site-container {
	align-items: center;
	font-size: 19px
}
.site-container .footer-area-1 {
		flex: 1 0 60% !important;
	}
.site-container .footer-area-2 {
		flex: 1 0 40% !important;
	}
.footer-bottom-menu {
	background-color: var(--theme-color-primary-4)
}
.footer-bottom-menu .menu {
		margin: 0;
		padding: 24px 0;
		display: flex
	}
.footer-bottom-menu .menu .menu-item {
			margin: 0 40px 0 0
		}
.footer-bottom-menu .menu .menu-item a {
				color: var(--theme-color-text);
				line-height: 1.15;
				text-decoration: none
			}
.footer-bottom-menu .menu .menu-item a:hover,
				.footer-bottom-menu .menu .menu-item a:focus {
					text-decoration: underline;
				}
/*# sourceMappingURL=style.css.map */