.hero-primary {
	position: relative;
	background: var(--color-theme-primary);
	overflow: hidden;
}

.hero-primary__content {
	color: var(--color-theme-blue-bright);
	position: absolute;
	z-index: 5;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3rem;
	margin: auto;
	text-align: center;
}

.hero-primary__headline {
	font-family: var(--secondary-font-family);
	text-transform: uppercase;
	font-weight: 700;
	color: var(--color-theme-blue-bright);
	line-height: 0.8em;
	font-size: 87px;
}

@media (min-width: 768px) {
	.hero-primary__headline {
		font-size: 120px;
	}
}

@media (min-width: 1280px) {
	.hero-primary__headline {
		font-size: 220px;
	}
}

.hero-primary__container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--hero-primary__gutter);
	padding-left: var(--hero-primary__gutter);
}

@media (min-width: 480px) {
	:root {
		--hero-primary__gutter: 16px;
	}
	.hero-primary__container {
		max-width: 480px;
	}
}

@media (min-width: 640px) {
	:root {
		--hero-primary__gutter: 24px;
	}
	.hero-primary__container {
		max-width: 640px;
	}
}

@media (min-width: 768px) {
	:root {
		--hero-primary__gutter: 28px;
	}
	.hero-primary__container {
		max-width: 768px;
	}
}

@media (min-width: 1024px) {
	:root {
		--hero-primary__gutter: 32px;
	}
	.hero-primary__container {
		max-width: 1024px;
	}
}

@media (min-width: 1280px) {
   :root {
		--hero-primary__gutter: 40px;
	}
	.hero-primary__container {
		max-width: 1280px;
	}
}

.hero-primary__tagline {
	display: none;
	font-family: var(--highlight-font-family);
	font-size: 14px;
	letter-spacing: 0.25ch;
	color: white;
	text-transform: uppercase;
	line-height: 1em;
	position: absolute;
}

@media (min-width: 1280px) {
	.hero-primary__tagline {
		display: block;
	}
}

.hero-primary__tagline--left {
	left: 46px;
	transform: rotate(-90deg) translate(-50%, 0);
	transform-origin: left;
}

.hero-primary__tagline--right {
	right: 46px;
	transform: rotate(90deg) translate(50%, 0);
	transform-origin: right;
}

.hero-primary__canvas {
	width: 100%;
	min-height: 390px;
	position: relative;
	z-index: 6;
}

@media (min-width: 768px) {
	.hero-primary__canvas {
		min-height: 500px;
	}
}

@media (min-width: 1280px) {
	.hero-primary__canvas {
		min-height: 750px;
	}
}

.hero-primary__clearButton {
	z-index: 7;
	position: absolute;
	font-family: var(--secondary-font-family);
	border: none;
	background-color: transparent;
	bottom: 2rem;
	left: 3rem;
	color: #fff;
	cursor: pointer;
	font-size: 24px;
	line-height: 1em;
	padding-left: 30px;
	background-image: url(../../assets/images/nav_main_icon_close_white.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 18px;
	letter-spacing: 1px;
}

.hero-primary__clearButton:focus {
	color: var(--color-theme-blue-bright) !important;
}