body {
	margin: 0;
}

* {
	box-sizing: border-box;
}
:root {
	--white: #ffffff;
	--black: #000000;
	--grey: #929292;
	--pink: #d11880;
	--brighter-pink: #ff008f;
	--light-pink: #ffcee7;

	--text-size: 18px;
	--text-line-height: 1.6;
	--text-weight: 400;
	--text-font: Futura, sans-serif;

	--title-size: 24px;

	--cta-text-size: 14px;

	--content-width: 1152px;
	--header-footer-content-width: 1248px;
	--min-padding: 16px;

	--header-height: 88px;
	--footer-height: 339px;
}

.content-width.intro {
	--content-width: 992px;
}

body {
	font-family: var(--text-font);
	font-size: var(--text-size);
	line-height: var(--text-line-height);
	padding: var(--header-height) 0 0;
}
@media (max-width: 1231px) {
	.menu .menu__container {
		height: 100dvh;
	}
}

main {
	min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

main:has(.triangle-left),
main:has(.triangle-right) {
	min-height: calc(100vh - var(--header-height) - var(--footer-height) + 32px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
	margin-top: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-moz-hyphens: auto;
	hyphens: auto;
	-webkit-hyphens: manual;
}

.intro h1:only-child,
.intro h2:only-child,
.intro h3:only-child {
	margin-bottom: 0;
}

.light-h3 h3 {
	font-size: 18px;
	font-weight: 300;
	margin: 0;
}

em {
	color: var(--pink);
	font-style: normal;
}

.cta {
	display: inline-block;
	appearance: none;
	background-color: var(--pink);
	color: var(--white);
	font-size: var(--cta-text-size);
	font-family: var(--text-font);
	font-weight: 700;
	padding: 10px 16px;
	border: 2px solid transparent;
	box-sizing: border-box;
	cursor: pointer;
	user-select: none;
	text-transform: uppercase;
	width: max-content;
}

.cta:hover {
	background-color: var(--brighter-pink);
}

.cta.cta--alt {
	background-color: var(--white);
	color: var(--pink);
}

.cta.cta--alt:hover {
	background-color: var(--light-pink);
}

a,
.cta {
	text-decoration-line: underline;
	text-decoration-thickness: 0px;
	text-decoration-color: transparent;
	transition: background-color 200ms ease, color 200ms ease, text-decoration-color 200ms ease,
		text-decoration-thickness 200ms ease;
}

.cta.white {
	background-color: var(--white);
	color: var(--pink);
}

a:hover,
.cta:hover {
	text-decoration-color: inherit;
	text-decoration-thickness: 2px;
}

main a:not(.cta) {
	color: inherit;
	font-weight: bolder;
	text-decoration-thickness: 2px;
	text-decoration-color: var(--pink);
}

main a:not(.cta):hover {
	color: var(--pink);
}

main ul li {
	list-style-type: none;
	position: relative;
}

main ul li:not(:last-child) {
	margin-bottom: 24px;
}

main ul li:before {
	content: url("data:image/svg+xml,%3Csvg viewBox='-5 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:sketch='http://www.bohemiancoding.com/sketch/ns' fill='' stroke=''%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3Echevron-right%3C/title%3E%3Cdesc%3ECreated with Sketch Beta.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' sketch:type='MSPage'%3E%3Cg id='Icon-Set' sketch:type='MSLayerGroup' transform='translate(-473.000000, -1195.000000)' fill='%23d11880'%3E%3Cpath d='M486.717,1206.22 L474.71,1195.28 C474.316,1194.89 473.678,1194.89 473.283,1195.28 C472.89,1195.67 472.89,1196.31 473.283,1196.7 L484.566,1206.98 L473.283,1217.27 C472.89,1217.66 472.89,1218.29 473.283,1218.69 C473.678,1219.08 474.316,1219.08 474.71,1218.69 L486.717,1207.75 C486.927,1207.54 487.017,1207.26 487.003,1206.98 C487.017,1206.71 486.927,1206.43 486.717,1206.22' id='chevron-right' sketch:type='MSShapeGroup'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	position: absolute;
	width: 18px;
	height: 24px;
	left: -32px;
	top: 2px;
}

.hero {
	overflow: hidden;
}

.hero .hero__container {
	margin: auto 0 0;
}

.hero .hero__container h1 {
	max-width: 95vw;
}

.triangle-left {
	clip-path: polygon(0 0, 32px 32px, 100% 32px, 100% calc(100% + 1px), 0 calc(100% + 1px));
	margin-top: -2rem;
}

.triangle-right {
	clip-path: polygon(0 32px, calc(100% - 32px) 32px, 100% 1px, 100% 100%, 0 100%);
	margin-top: -2rem;
}

.image-logo svg {
	fill: currentColor;
}

.block-border-radius-16 {
	border-radius: 16px;
}

.quote-block i {
	font-size: 20px;
	font-weight: 400;
	font-style: italic;
}

.kerst-page {
	background: var(--black);
}

@media (max-width: 1231px) {
	.dt-only {
		display: none;
	}
}

@media (min-width: 1232px) {
	.m-only {
		display: none;
	}
}
