.main-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	column-gap: 32px;
}

button.main-button {
	padding: 1rem 1.5rem;
}

.main-grid .left-half-super-short {
	grid-column: span 3;
}

.main-grid .left-half-short {
	grid-column: span 5;
}

.main-grid .right-half-long {
	grid-column-start: 7;
	grid-column-end: span 6;
}

.main-grid .right-half-longer {
	grid-column-start: 6;
	grid-column-end: span 7;
}

.main-grid .left-half-long {
	grid-column: span 7;
}

.main-grid .right-half-short {
	grid-column-start: 9;
	grid-column-end: span 4;
}

.main-grid .left-half-veryshort {
	grid-column: span 4;
}

.main-grid .right-half-verylong {
	grid-column-start: 6;
	grid-column-end: span 7;
}

.main-grid .left-half-verylong {
	grid-column: span 10;
}

.main-grid .left-half-mid {
	grid-column: span 6;
}

.main-grid .right-half-mid {
	grid-column-start: 8;
	grid-column-end: span 5;
}


.main-grid .full-length {
  grid-column: span 12;
}

@media (max-width: 1150px) {
	.underlined.with-arrow-diagonal::after {
		height: 0.5em;
		width: 0.5em;
		transform: translateY(-0.5em);
	}
}

@media (max-width: 600px) {
	.main-grid {
		display: flex;
		flex-direction: column;
	}

	.main-grid>*+* {
		margin-top: 24px;
	}
}

.underlined.with-arrow-diagonal::after {
	content: url("../images/Icon_LinkArrow_DiagonalLarge.svg");
	display: inline-flex;
	height: 1em;
	width: 1em;
}

@media (max-width: 600px) {
	h1,
	h2,
	h3.enlarged {
		font-size: 32px;
		line-height: 40px;
	}

	h3 {
		font-size: 28px;
		line-height: 32px;
	}

	hgroup h3+* {
		margin-top: 16px;
	}

	h4.alt {
		font-size: 20px;
	}
}

hgroup h1 {
	margin-bottom: 32px;
}

hgroup h2 {
	margin-bottom: 16px;
}

hgroup>h3+* {
	margin-top: 32px;
}

ul {
	list-style-type: none;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
}

.card {
	background-color: var(--color-bgs-light);
	border-style: solid;
	border-color: var(--color-strokes-and-outlines);
	border-width: 2px;
	border-radius: 8px;
	transition: all 0.25s;
}

.point-list-point {
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: left;
}

.point-list-dot {
	height: 8px;
	width: 8px;
	border-radius: 50%;
	display: inline-block;
	background-color: var(--color-highlights-main);
	margin-left: 12px;
	margin-right: 12px;
}

.contact-main {
	align-items: center;
}

.contact-main .big-email-parent {
	text-align: end;
	gap: 24px;
}

.contact-main .big-email-parent > a {
	text-decoration: underline;
	text-underline-position: auto;
	text-underline-offset: 24px;
}

.thin-separator {
	height: 1px;
	width: 100%;
	background-color: var(--color-strokes-and-outlines);
	margin-top: 120px;
}

@media (max-width: 600px) {
	.contact-main .big-email-parent>img {
		display: none;
	}
}

.info-popup {
	background-color: var(--color-bgs-light);
	outline: solid;
	outline-color: var(--color-strokes-and-outlines);
	outline-width: 2px;

	box-sizing: border-box;
	padding: 100px;

	display: flex;
	flex-direction: column;
	gap: 50px;

	z-index: 100;
}

@media (max-width: 600px) {
	.info-popup {
		padding: 20px;
		gap: 25px;
	}
}

.info-popup-title {
	display: flex;
	flex-direction: row;

	align-items: center;

	gap: 10px;

	position: sticky;
	top: 0px;
	background: var(--color-bgs-light);
	padding-top: 100px;
}

@media (max-width: 600px) {
	.info-popup-title {
		padding-top: 20px;
	}
}

.info-popup-title>h3 {
	flex-grow: 1;
}

.show {
	transform: translateX(0);
	opacity: 1 !important;
}