/* Critical CSS - above the fold */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin: 0;
	padding: 0;
}

#page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-header,
.header--row {
	display: block;
	position: relative;
}

.site-content {
	flex: 1;
}

.visible-xs img,
.hidden-xs img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

img[width][height] {
	aspect-ratio: attr(width) / attr(height);
}

@supports not (aspect-ratio: 1) {
	img[width][height] {
		position: relative;
	}

	img[width][height]::before {
		content: "";
		display: block;
		padding-top: calc(attr(height) / attr(width) * 100%);
	}
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	line-height: 1.6;
}

.customify-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.navigation,
nav {
	display: block;
}
