/*! abstraction-spirits v1.0.0 | (c) 2024 Kirill Miniaev | MIT License */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, select, textarea {
	outline: none;
}

input[type=checkbox],
input[type=radio] {
	cursor: pointer;
}

button {
	border: none;
	background-color: transparent;
	cursor: pointer;
}

*::before,
*::after {
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
}

/**
 * Vars
 */
:root {
	--c-red: #bd0f23;
	--c-gray-m: #ede8e1;
	--c-gray-xl: #fcfbf3;
	--font-serif: "plantin", times, serif;
	--font-sans: "neue-kabel", helvetica, arial, sans-serif;
}

/**
 * Breakpoints
 */
@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.gform_ajax_spinner,
.spinner {
	display: inline-block;
	border: 3px solid rgba(0, 0, 0, 0.1);
	border-left-color: var(--c-red);
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	animation: spinner 1.2s linear infinite;
}

html, body {
	width: 100%;
	height: 100%;
}

html {
	font-size: 62.5%;
	box-sizing: border-box;
}
html *, html *:before, html *:after {
	box-sizing: inherit;
}

main {
	min-height: 15rem;
}

body {
	font-size: 1.6rem;
	overflow-x: hidden;
}

body,
input,
select,
textarea {
	font-family: var(--font-serif);
	outline: 0;
}

button {
	font-family: var(--font-sans);
}

*, *:before, *:after {
	box-sizing: inherit;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-variant-numeric: lining-nums;
	font-feature-settings: "kern", "liga", "clig", "calt", "lnum";
}

h1, h2, h3, h4, h5, h6, div, span, p, a, ol, ul, li, dl, dd, dt, em, i, strong, b {
	line-height: 1.4;
}

sup {
	font-size: 50%;
	position: relative;
	top: -8px;
	margin: 0 2px;
}

a {
	text-decoration: none;
}

a > svg {
	pointer-events: none;
}

._wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding-left: 3.6rem;
	padding-right: 3.6rem;
	position: relative;
	z-index: 2;
	flex-wrap: wrap;
	container-type: inline-size;
}
._wrapper.-left {
	justify-content: flex-start;
}
._wrapper.-center {
	justify-content: center;
}
._wrapper.-right {
	justify-content: flex-end;
}
._wrapper.-middle {
	align-items: center;
}
._wrapper.-bottom {
	align-items: flex-end;
}
._wrapper.-v-stretch {
	align-items: stretch;
}
._wrapper.-full {
	width: 100%;
	padding: 0;
}

.-full ._wrapper {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}

._row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}

._column {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	container-type: inline-size;
	width: 100%;
}
._column.-w-5 {
	width: calc(5% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-5 {
		width: 100%;
	}
}
._column.-w-10 {
	width: calc(10% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-10 {
		width: 100%;
	}
}
._column.-w-15 {
	width: calc(15% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-15 {
		width: 100%;
	}
}
._column.-w-20 {
	width: calc(20% - 2rem);
}
@media screen and (max-width: 1024px) {
	._column.-w-20 {
		width: 25%;
	}
}
@media screen and (max-width: 768px) {
	._column.-w-20 {
		width: 50%;
	}
}
@media screen and (max-width: 430px) {
	._column.-w-20 {
		width: 100%;
	}
}
._column.-w-25 {
	width: calc(25% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-25 {
		width: 100%;
	}
}
._column.-w-30 {
	width: calc(30% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-30 {
		width: 100%;
	}
}
._column.-w-33 {
	width: calc(33.333333% - 1rem);
}
@media screen and (max-width: 768px) {
	._column.-w-33 {
		width: 100%;
	}
}
._column.-w-40 {
	width: calc(40% - 2rem);
}
._column.-w-40-f {
	width: 40%;
}
@media screen and (max-width: 768px) {
	._column.-w-40 {
		width: 100%;
	}
}
._column.-w-45 {
	width: calc(45% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-45 {
		width: 100%;
	}
}
._column.-w-50 {
	width: calc(50% - 2rem);
}
._column.-w-50-f {
	width: 50%;
}
@media screen and (max-width: 768px) {
	._column.-w-50 {
		width: 100%;
	}
}
._column.-w-55 {
	width: calc(55% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-55 {
		width: 100%;
	}
}
._column.-w-60 {
	width: calc(60% - 2rem);
}
._column.-w-60-f {
	width: 60%;
}
@media screen and (max-width: 768px) {
	._column.-w-60 {
		width: 100%;
	}
}
._column.-w-65 {
	width: calc(65% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-65 {
		width: 100%;
	}
}
._column.-w-66 {
	width: calc(66.666666% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-66 {
		width: 100%;
	}
}
._column.-w-70 {
	width: calc(70% - 2rem);
}
._column.-w-70-f {
	width: 70%;
}
@media screen and (max-width: 768px) {
	._column.-w-70 {
		width: 100%;
	}
}
._column.-w-80 {
	width: calc(80% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-80 {
		width: 100%;
	}
}
._column.-w-85 {
	width: calc(85% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-85 {
		width: 100%;
	}
}
._column.-w-90 {
	width: calc(90% - 2rem);
}
@media screen and (max-width: 768px) {
	._column.-w-90 {
		width: 100%;
	}
}
._column.-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
._column.-center {
	justify-content: center;
}
._column.-right {
	justify-content: flex-end;
}
@media screen and (max-width: 600px) {
	._column.-right {
		justify-content: center;
	}
}
._column.-stretch {
	align-self: stretch;
}
._column.-middle {
	align-items: center;
}
._column.-bottom {
	align-items: flex-end;
}

._grid {
	display: grid;
	gap: 5rem;
	width: calc(100% - 7.2rem);
	margin: 0 auto;
}
._grid.-col-3 {
	grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 680px) {
	._grid.-col-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 480px) {
	._grid.-col-3 {
		grid-template-columns: repeat(1, 1fr);
	}
}

body {
	background-color: var(--c-gray-xl);
}

body > header {
	width: 100%;
	padding: 2rem 0;
	position: relative;
	z-index: 99;
}
body > header ._brand {
	display: block;
	aspect-ratio: 148/43;
	width: 148px;
}
body > header ._brand a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 0;
}

._burger {
	outline: none;
	width: 15px;
	aspect-ratio: 1/0.8;
	border: 0px;
	padding: 0px;
	background: transparent;
	transition: all 250ms ease-out;
	cursor: pointer;
	appearance: none;
	display: none !important;
	font-size: 0;
	position: relative;
}
@media screen and (max-width: 768px) {
	._burger {
		display: flex !important;
	}
}
._burger::before, ._burger::after {
	content: "";
	width: 19px;
	height: 2px;
	position: absolute;
	background: #000;
	transition: transform 250ms ease-out;
	left: 50%;
}
._burger::before {
	top: 0;
	transform: translateX(-50%);
}
._burger::after {
	bottom: 0;
	transform: translateX(-50%);
}
._burger.-active::before {
	transform: translateX(-50%) translateY(260%) rotate(45deg);
}
._burger.-active::after {
	transform: translateX(-50%) translateY(-260%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
	._menu.-main {
		position: absolute;
		top: 6rem;
		left: 0;
		background-color: var(--c-gray-xl);
		width: 100%;
		border-top: 1px solid var(--c-gray-m);
		opacity: 0;
		pointer-events: none;
		transition: opacity 250ms ease-in-out;
	}
	._menu.-main.-active {
		opacity: 1;
		pointer-events: all;
	}
}
._menu.-main ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
@media screen and (max-width: 768px) {
	._menu.-main ul {
		justify-content: center;
		flex-wrap: wrap;
	}
}
._menu.-main ul.menu > li {
	padding: 2.5rem 0;
}
@media screen and (max-width: 768px) {
	._menu.-main ul.menu > li {
		padding: 1.5rem;
	}
}
._menu.-main ul li {
	margin-left: 3rem;
}
@media screen and (max-width: 768px) {
	._menu.-main ul li {
		margin: 0;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
}
._menu.-main ul a {
	display: block;
	font-family: var(--font-sans);
	color: #000;
	font-size: 1.8rem;
	font-weight: 600;
	text-transform: lowercase;
	position: relative;
}
@media screen and (max-width: 768px) {
	._menu.-main ul a {
		text-align: center;
	}
}
._menu.-main ul a::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #000;
	width: 0;
	opacity: 0;
	left: 0;
	bottom: -4px;
	position: absolute;
	transition: width 600ms cubic-bezier(0.86, 0, 0.07, 1), opacity 600ms cubic-bezier(0.86, 0, 0.07, 1);
}
._menu.-main ul a:hover::after, ._menu.-main ul a:focus::after {
	width: 100%;
	opacity: 1;
}
._menu.-main ul .current-menu-item > a::after {
	width: 100%;
	opacity: 1;
}
._menu.-main ul .sub-menu {
	position: absolute;
	top: 6rem;
	left: 0;
	width: 100%;
	background-color: var(--c-gray-xl);
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	padding: 3rem 3.6rem;
	pointer-events: none;
	transform: translateY(-1rem);
	opacity: 0;
	transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
}
@media screen and (max-width: 768px) {
	._menu.-main ul .sub-menu {
		position: initial;
		height: 0;
		padding: 0;
		justify-content: center;
	}
}
._menu.-main ul .sub-menu li {
	margin-left: 4rem;
}
@media screen and (max-width: 768px) {
	._menu.-main ul .sub-menu li {
		margin-left: 0;
	}
}
._menu.-main ul .sub-menu a {
	display: block;
	max-width: 15rem;
}
._menu.-main ul .sub-menu a span {
	text-transform: none;
	font-weight: 400;
	display: block;
	margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
	._menu.-main ul .menu-item-has-children {
		position: relative;
	}
	._menu.-main ul .menu-item-has-children::after {
		content: "";
		border: solid #000;
		border-width: 0 2px 2px 0;
		display: block;
		width: 0.75rem;
		aspect-ratio: 1/1;
		transition: transform 0.1s ease-in-out;
		position: absolute;
		top: 2.5rem;
		right: 2rem;
		transform: rotate(45deg);
	}
}
._menu.-main ul .menu-item-has-children:focus .sub-menu,
._menu.-main ul .menu-item-has-children:hover .sub-menu {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}
@media screen and (max-width: 768px) {
	._menu.-main ul .menu-item-has-children:focus .sub-menu,
	._menu.-main ul .menu-item-has-children:hover .sub-menu {
		height: auto;
		padding: 2rem;
	}
}
._menu.-legal ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
@media screen and (max-width: 600px) {
	._menu.-legal ul {
		justify-content: center;
		margin-top: 1rem;
	}
}
._menu.-legal ul li {
	margin-left: 3rem;
}
@media screen and (max-width: 600px) {
	._menu.-legal ul li:first-of-type {
		margin-left: 0;
	}
}
._menu.-legal ul a {
	display: block;
	font-family: var(--font-sans);
	color: var(--c-gray-xl);
	font-size: 1.4rem;
	text-transform: none;
	position: relative;
}
._menu.-legal ul a::after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--c-gray-xl);
	width: 0;
	opacity: 0;
	left: 0;
	bottom: -4px;
	position: absolute;
	transition: width 600ms cubic-bezier(0.86, 0, 0.07, 1), opacity 600ms cubic-bezier(0.86, 0, 0.07, 1);
}
._menu.-legal ul a:hover::after, ._menu.-legal ul a:focus::after {
	width: 100%;
	opacity: 0.8;
}
._menu.-legal ul .sub-menu {
	display: none;
}
._menu.-social {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-right: 1rem;
}
._menu.-social a {
	display: block;
	margin-right: 0.8rem;
	transition: transform 450ms cubic-bezier(0.86, 0, 0.07, 1);
}
._menu.-social a:hover {
	transform: scale(1.1);
}
._menu.-social a svg * {
	fill: var(--c-gray-xl);
}

body > footer {
	padding: 6rem 0;
	width: 100%;
	background-color: var(--c-red);
	margin-top: 8rem;
}
body > footer.-none {
	margin-top: 0;
}
body > footer.-hr {
	margin-top: 0;
}
body > footer.-hr ._wrapper {
	padding-top: 4rem;
	border-top: 1px solid var(--c-gray-xl);
}
body > footer h4, body > footer h5 {
	width: 100%;
	color: var(--c-gray-xl);
}
body > footer h4 {
	font-size: 4.6rem;
	line-height: 1;
	font-weight: 400;
	font-family: var(--font-serif);
}
body > footer h5 {
	font-size: 1.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-family: var(--font-sans);
	margin-top: 1rem;
}
body > footer ._brand {
	width: 12.5rem;
	aspect-ratio: 125/196;
	display: block;
	font-size: 0;
	color: transparent;
}
body > footer ._row:first-of-type {
	margin-bottom: 6rem;
}
body > footer ._copy {
	font-size: 1.4rem;
	color: var(--c-gray-xl);
	font-family: var(--font-sans);
}
@media screen and (max-width: 600px) {
	body > footer ._copy {
		text-align: center;
	}
}
@media screen and (max-width: 600px) {
	body > footer ._column {
		justify-content: center;
	}
}
body > footer .gform_wrapper {
	margin-top: 3.5rem;
	width: 100%;
	position: relative;
}
@media screen and (max-width: 768px) {
	body > footer .gform_wrapper {
		margin-bottom: 3rem;
	}
}
body > footer .gform_wrapper .gfield {
	background-color: #fff;
	padding: 1.5rem 2.5rem;
	border-radius: 10rem;
	position: relative;
}
body > footer .gform_wrapper .gfield.-focused label {
	transform: translateY(-5.5rem);
	color: #fff;
}
body > footer .gform_wrapper .gfield label {
	position: absolute;
	top: 50%;
	left: 2.5rem;
	transform: translateY(-50%);
	font-size: 1.8rem;
	color: var(--c-red);
	font-family: var(--font-sans);
	transition: color 250ms ease-in-out, transform 350ms ease-in-out;
}
body > footer .gform_wrapper .gfield input {
	font-size: 1.8rem;
	color: #000;
	appearance: none;
	border: 0;
	font-family: var(--font-sans);
}
body > footer .gform_wrapper .gfield .validation_message {
	position: absolute;
	bottom: 0;
	left: 2.5;
	transform: translateY(2.5rem);
	color: #fff;
	font-style: italic;
	font-size: 1.4rem;
}
body > footer .gform_wrapper .gfield_required {
	display: none;
}
body > footer .gform_wrapper .gform_submission_error {
	display: none;
}
body > footer .gform_wrapper .gform_footer {
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translateY(-50%);
}
body > footer .gform_wrapper .gform_footer button {
	font-size: 0;
	display: block;
	aspect-ratio: 175/95;
	width: 2rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.5' height='9.52' viewBox='0 0 17.5 9.52'%3E%3Cpath style='fill:%23bd0f10' d='M17.5 0h-1v4.93H2.01l3.07-2.86-.68-.73L0 5.43l4.4 4.09.68-.73-3.07-2.86H17.5V0z'/%3E%3C/svg%3E");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 0;
	margin: 0;
}
body > footer .gform_wrapper .gform_confirmation_message {
	margin: 4rem 0 2rem;
	background-color: #fff;
	color: var(--c-red);
	padding: 1.5rem 2.5rem;
	font-size: 1.8rem;
	font-weight: 600;
	font-family: var(--font-sans);
	border-radius: 10rem;
	display: block;
}

section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
}
section.-red {
	background-color: var(--c-red);
}
section.-filter {
	background-color: var(--c-red);
}
section.-filter > defer-image {
	mix-blend-mode: multiply;
	opacity: 0.5;
}
section > defer-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
section > defer-image[type=background] {
	background-size: cover;
	background-color: transparent !important;
}
section#where-to-find > defer-image[type=background] {
	background-size: 100%;
	background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
	section#where-to-find > defer-image[type=background] {
		display: none;
	}
}

defer-image {
	display: block;
	min-height: 2rem;
	background-color: rgba(0, 0, 0, 0.1);
	transform: translateY(0.75rem);
	opacity: 0;
	margin: 0 auto;
	transition: transform 1000ms cubic-bezier(0.86, 0, 0.07, 1), opacity 1000ms cubic-bezier(0.86, 0, 0.07, 1);
}
defer-image[loaded] {
	transform: translateY(0);
	opacity: 1;
}
defer-image img {
	transition: opacity 100ms ease-in-out;
	opacity: 0;
}

._image {
	width: 100%;
	display: block;
}
._image.-rounded img {
	border-radius: 3rem;
}

._imagecard {
	display: block;
	position: relative;
	width: 100%;
	background-color: var(--c-gray-m);
}
@media screen and (max-width: 768px) {
	._imagecard {
		min-height: 0 !important;
	}
}
._imagecard.-rounded {
	border-radius: 3rem;
	overflow: hidden;
}
._imagecard ._image {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 768px) {
	._imagecard ._image {
		width: 100% !important;
		position: initial;
	}
}
._imagecard ._image defer-image {
	width: 100%;
	height: 100%;
	display: block;
}
@media screen and (max-width: 768px) {
	._imagecard ._image defer-image img {
		object-position: center !important;
	}
}
._imagecard ._content {
	display: block;
	position: absolute;
	z-index: 2;
	max-width: 48rem;
	padding: 0 2rem;
}
@media screen and (max-width: 1100px) {
	._imagecard ._content {
		max-width: 40rem;
	}
}
@media screen and (max-width: 768px) {
	._imagecard ._content {
		position: initial;
		padding: 2rem;
		transform: none !important;
		margin: 0 auto;
	}
}
._imagecard ._content.-justify-left h1, ._imagecard ._content.-justify-left h2, ._imagecard ._content.-justify-left h3 {
	text-align: left;
}
._imagecard ._content.-justify-center h1, ._imagecard ._content.-justify-center h2, ._imagecard ._content.-justify-center h3 {
	text-align: center;
}
._imagecard ._content.-justify-right h1, ._imagecard ._content.-justify-right h2, ._imagecard ._content.-justify-right h3 {
	text-align: right;
}
._imagecard ._content h3 {
	font-size: 2.2rem;
	font-family: var(--font-sans);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--c-gray-xl);
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	._imagecard ._content h3 {
		color: #000;
	}
}
@media screen and (max-width: 425px) {
	._imagecard ._content h3 {
		font-size: 1.8rem;
	}
}
._imagecard ._content h1, ._imagecard ._content h2 {
	line-height: 0.9;
}
@media screen and (max-width: 600px) {
	._imagecard ._content h1, ._imagecard ._content h2 {
		line-height: 1;
	}
}
._imagecard ._content h1.-serif, ._imagecard ._content h2.-serif {
	font-size: 4.8rem;
	font-family: var(--font-serif);
	font-weight: 400;
}
@media screen and (max-width: 425px) {
	._imagecard ._content h1.-serif, ._imagecard ._content h2.-serif {
		font-size: 2.8rem;
	}
}
._imagecard ._content h1.-white, ._imagecard ._content h2.-white {
	color: var(--c-gray-xl);
}
@media screen and (max-width: 768px) {
	._imagecard ._content h1.-white, ._imagecard ._content h2.-white {
		color: var(--c-red);
	}
}
._imagecard ._content h1.-red, ._imagecard ._content h2.-red {
	color: var(--c-red);
}
._imagecard ._content h1.-sans, ._imagecard ._content h2.-sans {
	font-size: 4rem;
	font-family: var(--font-sans);
	font-weight: 600;
	margin-bottom: 2rem;
}
._imagecard ._content ._copy.-black {
	color: #000;
}
._imagecard ._content ._copy.-white {
	color: var(--c-gray-xl);
}
@media screen and (max-width: 768px) {
	._imagecard ._content ._copy.-white {
		color: #000;
	}
}
@media screen and (max-width: 768px) {
	._imagecard ._content ._button.-light {
		color: #000;
		border-color: #000;
	}
	._imagecard ._content ._button.-light:hover, ._imagecard ._content ._button.-light:focus {
		box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
		background-color: #000;
		color: #fff;
	}
}
._imagecard ._content.-position-left-top {
	left: 5%;
	top: 5%;
}
._imagecard ._content.-position-left-center {
	left: 25%;
	top: 50%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
	._imagecard ._content.-position-left-center {
		left: 50%;
		top: initial;
		bottom: 25%;
		transform: translate(-50%, 50%);
	}
}
._imagecard ._content.-position-left-bottom {
	left: 5%;
	bottom: 5%;
}
._imagecard ._content.-position-right-top {
	right: 5%;
	top: 5%;
}
._imagecard ._content.-position-right-center {
	right: 25%;
	top: 50%;
	transform: translate(50%, -50%);
}
@media screen and (max-width: 768px) {
	._imagecard ._content.-position-right-center {
		right: 50%;
		top: initial;
		bottom: 25%;
		transform: translate(50%, 50%);
	}
}
._imagecard ._content.-position-right-bottom {
	right: 5%;
	bottom: 5%;
}

._title {
	display: block;
	width: 100%;
	font-family: var(--font-sans);
}
._title.-center {
	text-align: center;
}

h1._title,
h2._title {
	font-size: 6.4rem;
	letter-spacing: 1px;
	color: var(--c-red);
	line-height: 1;
	padding: 8rem 0;
	font-family: var(--font-sans);
	max-width: 80%;
	margin: 0 auto;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	h1._title,
	h2._title {
		font-size: 5rem;
	}
}
@media screen and (max-width: 600px) {
	h1._title,
	h2._title {
		font-size: 4.2rem;
		max-width: 90%;
	}
}
h1._title.-left,
h2._title.-left {
	margin-left: 0;
}
h1._title.-right,
h2._title.-right {
	margin-right: 0;
}

.-invert ._title {
	color: var(--c-gray-xl) !important;
}

._content {
	width: 100%;
	font-size: 1.8rem;
	color: #000;
}
._content.-white {
	color: #fff;
}
._content.-slim {
	width: 80%;
	margin: 0 auto;
}
._content.-center {
	text-align: center;
}
._content.-small {
	font-size: 1.7rem;
}
._content > *:not(:last-child) {
	margin-bottom: 1rem;
}
._content p {
	line-height: 1.5;
}
._content ul {
	padding-left: 5rem;
	margin-bottom: 3rem;
}
._content ul li {
	margin-bottom: 1rem;
	padding-left: 2.5rem;
	position: relative;
}
._content h2 {
	font-size: 3.6rem;
	display: block;
	font-family: var(--font-sans);
	font-weight: 600;
	margin-bottom: 1rem;
}
._content h3 {
	font-size: 2rem;
	display: block;
	font-family: var(--font-sans);
	font-weight: 600;
}
._content a:not(._button) {
	color: #000;
	text-decoration: underline;
	transition: color 100ms ease-in-out;
}
._content a:not(._button):focus, ._content a:not(._button):hover {
	color: var(--c-red);
}

.-invert ._content {
	color: var(--c-gray-xl);
}
.-invert ._content h2, .-invert ._content h3 {
	color: var(--c-gray-xl);
}
.-invert ._content a {
	color: var(--c-gray-xl);
}
.-invert ._content a:focus, .-invert ._content a:hover {
	color: var(--c-gray-xl);
}

._buttons {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
._buttons.-center {
	justify-content: center;
}

._button {
	display: block;
	border: 0;
	padding: 0.5rem 1.5rem;
	border-radius: 100rem;
	margin: 1rem;
	font-size: 1.4rem;
	text-transform: none;
	letter-spacing: 1px;
	transition: box-shadow 250ms ease-in-out, background-color 250ms ease-in-out, color 250ms ease-in-out;
	border: 1px solid transparent;
	font-family: var(--font-sans);
	font-weight: 400;
	text-align: center;
}
._button.-light {
	color: #fff;
	border-color: #fff;
}
._button.-light:hover, ._button.-light:focus {
	box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	color: #000;
}
._button.-dark {
	color: #000;
	border-color: #000;
}
._button.-dark:hover, ._button.-dark:focus {
	box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
	background-color: #000;
	color: #fff;
}
._button:first-of-type {
	margin-left: 0;
}
._button:last-of-type {
	margin-right: 0;
}

c-video {
	display: block;
	width: 80%;
	margin: 0 auto;
	position: relative;
	border-radius: 2rem;
	overflow: hidden;
	aspect-ratio: 16/9;
}
c-video.-full {
	width: 100%;
}
c-video .cover {
	background-size: cover;
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	cursor: pointer;
}
c-video .cover::before {
	content: "";
	display: block;
	width: 6rem;
	aspect-ratio: 1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='63.11' height='63.11' viewBox='0 0 63.11 63.11'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='63.11' y1='31.56' y2='31.56' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.3' stop-color='%23e77721'/%3E%3Cstop offset='.46' stop-color='%23e97d25'/%3E%3Cstop offset='.68' stop-color='%23f08e30'/%3E%3Cstop offset='.94' stop-color='%23fbab42'/%3E%3Cstop offset='1' stop-color='%23ffb448'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='31.56' cy='31.56' r='31.56' fill='url(%23a)'/%3E%3Cpath fill='%23fff' d='m26.34 42.35 17.02-8.08c2.29-1.09 2.29-4.34 0-5.43l-17.02-8.08c-1.99-.95-4.29.51-4.29 2.71v16.16c0 2.21 2.3 3.66 4.29 2.71Z'/%3E%3C/svg%3E");
	background-size: cover;
	position: absolute;
	left: 2rem;
	bottom: 2rem;
}
c-video .cover h2 {
	font-size: 2rem;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--font-sans);
	font-variation-settings: "wght" 700;
	position: absolute;
	bottom: 4rem;
	left: 10rem;
}
c-video .cover h3 {
	font-size: 1.8rem;
	color: var(--c-orange-l);
	font-style: italic;
	position: absolute;
	bottom: 2rem;
	left: 14rem;
}

._video {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	max-width: 100%;
}
._video.-vertical {
	width: auto;
	aspect-ratio: 9/16;
	max-height: 100%;
	height: 90vh;
	margin: 0 auto;
}
._video iframe, ._video object, ._video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

._productcard defer-image {
	background-color: var(--c-gray-m) !important;
	border-radius: 3rem;
	margin-bottom: 2rem;
	display: block;
}
._productcard h2 {
	font-size: 2.6rem;
	line-height: 1.2;
	color: var(--c-red);
	font-weight: 600;
	font-family: var(--font-sans);
	padding: 0 3rem;
	margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
	._productcard h2 {
		padding: 0 1rem;
		font-size: 2.2rem;
	}
}
._productcard p {
	font-size: 2.2rem;
	color: var(--c-red);
	font-family: var(--font-serif);
	padding: 0 3rem;
}
@media screen and (max-width: 768px) {
	._productcard p {
		padding: 0 1rem;
		font-size: 1.8rem;
	}
}

._iconcard {
	width: 32%;
	background-color: var(--c-gray-xl);
	padding: 5rem 8rem;
	border-radius: 3rem;
	align-self: stretch;
}
@media screen and (max-width: 768px) {
	._iconcard {
		padding: 3rem 4rem;
	}
}
@media screen and (max-width: 600px) {
	._iconcard {
		width: 100%;
		margin-bottom: 2rem;
	}
}
._iconcard defer-image {
	margin: 0 auto 2rem;
}
._iconcard defer-image img {
	width: auto;
	margin: 0 auto;
}
._iconcard h3 {
	text-align: center;
	color: #000;
	font-size: 3.6rem;
	font-family: var(--font-sans);
	width: 100%;
	margin-bottom: 1rem;
	font-weight: 600;
}
._iconcard p {
	font-size: 1.8rem;
	font-weight: 100;
	line-height: 1.3;
	text-align: center;
	color: #000;
}

._form {
	width: 100%;
}
._form .gform_wrapper {
	margin-top: 3.5rem;
	width: 100%;
	position: relative;
}
@media screen and (max-width: 641px) {
	._form .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
		line-height: 1;
		min-height: auto;
	}
}
._form .gform_wrapper .gform_heading,
._form .gform_wrapper .gfield_label_before_complex {
	display: none;
}
._form .gform_wrapper .gfield {
	margin-bottom: 2rem;
}
._form .gform_wrapper .gfield .ginput_complex + .gfield_validation_message {
	color: #fff;
	font-style: italic;
	font-size: 1.4rem;
	padding: 1rem 2.5rem;
	margin-bottom: -2.5rem;
}
._form .gform_wrapper .ginput_complex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
._form .gform_wrapper .gfield:not(.gfield--type-name),
._form .gform_wrapper .gfield.gfield--type-name span {
	background-color: #fff;
	padding: 1.5rem 2.5rem;
	border-radius: 3rem;
	position: relative;
}
._form .gform_wrapper .gfield:not(.gfield--type-name).-focused label,
._form .gform_wrapper .gfield.gfield--type-name span.-focused label {
	transform: translateY(-4.5rem);
	color: #fff;
}
._form .gform_wrapper .gfield:not(.gfield--type-name) label,
._form .gform_wrapper .gfield.gfield--type-name span label {
	position: absolute;
	top: 1.5rem;
	left: 2.5rem;
	transform: translateY(0);
	font-size: 1.8rem;
	color: var(--c-red);
	font-family: var(--font-sans);
	transition: color 250ms ease-in-out, transform 350ms ease-in-out;
	pointer-events: none;
}
._form .gform_wrapper .gfield:not(.gfield--type-name) input,
._form .gform_wrapper .gfield:not(.gfield--type-name) textarea,
._form .gform_wrapper .gfield.gfield--type-name span input,
._form .gform_wrapper .gfield.gfield--type-name span textarea {
	font-size: 1.8rem;
	color: #000;
	appearance: none;
	border: 0;
	font-family: var(--font-sans);
	resize: vertical;
}
._form .gform_wrapper .gfield:not(.gfield--type-name) .validation_message,
._form .gform_wrapper .gfield.gfield--type-name span .validation_message {
	position: absolute;
	bottom: 0;
	left: 2.5;
	transform: translateY(2.5rem);
	color: #fff;
	font-style: italic;
	font-size: 1.4rem;
}
._form .gform_wrapper .gfield.gfield--type-name span {
	width: calc(50% - 1rem);
	display: block;
}
@media screen and (max-width: 425px) {
	._form .gform_wrapper .gfield.gfield--type-name span {
		width: 100%;
	}
	._form .gform_wrapper .gfield.gfield--type-name span:last-of-type {
		margin-top: 4rem;
	}
}
._form .gform_wrapper ._button {
	font-size: 1.8rem;
	padding: 1rem 2rem;
	margin-right: 1rem;
}
._form .gform_wrapper .gform_footer {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
._form .gform_wrapper .gfield_required {
	display: none;
}
._form .gform_wrapper .gform_submission_error,
._form .gform_wrapper .gform_validation_errors {
	display: none;
}
._form .gform_wrapper .gform_ajax_spinner,
._form .gform_wrapper .spinner {
	border: 3px solid rgba(0, 0, 0, 0.2);
	border-left-color: var(--c-gray-xl);
}
._form .gform_confirmation_wrapper {
	display: flex;
}
._form .gform_confirmation_message {
	margin: 4rem 0 2rem;
	background-color: #fff;
	color: var(--c-red);
	padding: 1.5rem 2.5rem;
	font-size: 1.8rem;
	font-weight: 600;
	font-family: var(--font-sans);
	border-radius: 10rem;
	display: block;
}

b, strong {
	font-weight: 600;
}

em, i {
	font-style: italic;
}

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

small {
	font-size: 60%;
	line-height: 1.3;
	display: inline-block;
}

.-z-1 {
	position: relative;
	z-index: 1;
}
.-z-2 {
	position: relative;
	z-index: 2;
}
.-z-3 {
	position: relative;
	z-index: 3;
}
.-z-4 {
	position: relative;
	z-index: 4;
}
.-z-5 {
	position: relative;
	z-index: 5;
}

.-padding-slim {
	padding: 3rem 0;
}
.-padding-slim-top {
	padding-top: 3rem;
}
.-padding-slim-bottom {
	padding-bottom: 3rem;
}
.-padding-normal {
	padding: 6rem 0;
}
.-padding-normal-top {
	padding-top: 6rem;
}
.-padding-normal-bottom {
	padding-bottom: 6rem;
}
.-padding-xl {
	padding: 10rem 0;
}
.-padding-xl-bottom {
	padding-bottom: 10rem;
}

.-m-10 {
	margin-top: 10rem;
}
@media screen and (max-width: 768px) {
	.-m-10 {
		margin-top: 5rem;
	}
}
.-m-20 {
	margin-top: 20rem;
}

/*# sourceMappingURL=core.css.map */