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;
}
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: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	border: none;
	background-color: transparent;
	font: inherit;
	cursor: pointer;
	color: inherit;
}
input, select {
	border: none;
	background-color: transparent;
	font-size: 1em;
	padding: 0;
	margin: 0;
}
input:focus, select:focus {
	outline: none;
}
textarea {
	font: inherit;
}
a {
	text-decoration: inherit;
	color: inherit;
}
*, *::before, *::after {
	box-sizing: border-box;
}
html, body {
	height: 100%;
	overflow: auto;
}

body {
	background-color: #212121;
	color: white;
	font-family: "Open Sans", Arial, sans-serif;
}

@font-face {
	font-family: "Aldrich";
	src: url("/assets/Aldrich-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Montserrat";
	src: url("/assets/Montserrat-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Montserrat";
	src: url("/assets/Montserrat-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "Antonio";
	src: url("/assets/Antonio-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}

:root {
	--page-max-width: 1200px;
}

@media (max-width: 1350px) {
	:root {
		--page-max-width: 1350px;
	}
}



.site-banner {
	background-color: #414141;
	font-family: "Aldrich", sans-serif;
	font-size: 0.7em;

	max-width: var(--page-max-width);
	margin-left: auto;
	margin-right: auto;

	display: flex;
	justify-content: space-between;

	padding: 0.75rem 1rem;
}

.site-banner > * {
	display: flex;
	align-items: center;
	gap: 0.5em;
}

.site-contact-link {
	background-color: #c38f20;
	border: solid 2px hsl(41, 92%, 60%);
	color: white;
	font-size: 1.05em;
	padding: 0.4em 0.8em;
	border-radius: 4px;
	line-height: 1.3;
}

@media (max-width: 700px) {
	.site-banner {
		gap: 0.5rem;
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
}


.site-header {
	background-color: #f4f4f4;
	color: black;

	max-width: var(--page-max-width);
	margin-left: auto;
	margin-right: auto;

	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
}

.site-header > *:first-child {
	display: flex;
}

.site-header > *:first-child > *:first-child {
	margin-right: auto;
}

@media (max-width: 700px) {
	.site-header {
		gap: 1.5rem;
	}

	.site-header > *:first-child {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.site-header > *:first-child > *:first-child {
		margin-right: 0;
	}
}

.site-account {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #777;
}

.site-nav {
	border-top: solid 1px #ccc;

	display: flex;
	font-size: 0.65em;
	flex-wrap: wrap;
	justify-content: start;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	color: #222;

	padding: 0 0.75rem;
}

@media (min-width: 1150px) {
	.site-nav-right-align {
		margin-left: auto;
	}
}

.site-nav > * {
	padding:	0.75rem;
}

.site-header-top {
	padding: 0 1.5rem;
	padding-top: 0.75rem;
}

.site-search {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 1rem;
}

.site-search img {
	height: 1.5rem;
}

.site-search input {
	border: solid 1px #aaa;
	border-radius: 1000px;
	padding: 0.4em 0.8em;
	font-size: 0.85em;
	background-color: white;
}

.brand-name-span {
	color: #ebeaea;
	font-family: 'Antonio';
	font-weight: bold;
	text-transform: uppercase;
	font-size: 30px;
}

.brand-name-span span {
	color: #c39e1f;
}



.site-footer-wrapper {
	position: sticky;
	top: 100%;
}

.site-footer {
	max-width: var(--page-max-width);
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas: "logo nav embed";
}

@media (max-width: 1000px) {
	.site-footer {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		grid-template-areas:
			"logo embed"
			"nav nav";
	}
}

@media (max-width: 500px) {
	.site-footer {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr;
		grid-template-areas: "nav" "logo" "embed";
	}
}

.site-footer-section-logo { grid-area: logo; }
.site-footer-section-nav { grid-area: nav; }
.site-footer-section-embed { grid-area: embed; }

.site-footer-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em;
}

.site-footer-section:last-child a {
	display: contents;
}

.site-footer-section:nth-child(2n) {
	background-color: #262525;
}

.site-footer-section:nth-child(2n + 1) {
	background-color: #2b2b2b;
}

.site-footer-section-nav {
	display: flex;
	text-align: center;
	gap: 1em;
}

.site-footer-section-nav > * {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

.site-footer-section-nav a {
	font-family: 'Montserrat';
	font-weight: bold;
	color: #908f8f;
	font-size: 0.65em;
	text-transform: uppercase;
}



.site-colophone {
	text-align: center;
	color: #575757;
	font-family: 'Montserrat';
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.7em;
	padding: 1em;
}





.page {
	margin-top: 2rem;
	margin-bottom: 2rem;

	width: min(calc(100vw - 4rem), var(--page-max-width));
	margin-left: auto;
	margin-right: auto;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-list > * + * {
	margin-top: 1rem;
}

.contact-entry {
	min-height: 300px;
	display: flex;

	position: relative;
}

.contact-entry:nth-child(2n) {
	justify-content: end;
}

.contact-entry:nth-child(2n) img {
	transform: scaleX(-1);
}

.contact-entry:nth-child(2n) .contact-entry-text {
	align-items: end;
}

.contact-entry img {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-entry-text {
	width: 25%;

	background-color: rgba(0, 0, 0, 0.75);

	padding: 1rem 2rem;
	gap: 1rem;

	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
}

.contact-entry-text h2 {
	font-family: 'Antonio';
	font-weight: bold;
	font-size: 3em;
	color: #ccc;
}

.contact-entry-text {
	font-family: Aldrich, sans-serif;
	font-size: 0.8em;
}





a.button, .button {
	display: inline-block;
	background-color: #c38f20;
	padding: 0.5rem 1rem;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}







.blocks-centered > :is(h1, h2, h3, h4, h5, h6) {
	text-align: center;
}

.layout-grid > *:only-child .blocks-centered p {
	text-align: center;
}

.blocks {
	color: white;
}

.blocks > * + * {
	margin-top: 1em;
}

.blocks > * + .cards {
	margin-top: 2.5rem;
}

.blocks > .layout-grid + .layout-grid {
	margin-top: 4em;
}

.blocks > :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.3;
}

.blocks > h1 {
	font-family: "Antonio", sans-serif;
	font-weight: bold;
	font-size: 2em;
	text-transform: uppercase;
}

.blocks > h2 {
	font-size: 2em;
	font-family: "Antonio", sans-serif;
}

.blocks > p {
	line-height: 1.3;
}

.blocks > p strong {
	font-weight: bold;
	color: #cca42b;
}

.blocks > p em {
	font-style: italic;
	font-weight: bold;
	color: #d8d8d8;
}

.blocks > p code {
	font-family: monospace;
	background-color: #444;
	padding: 0 0.3em;
}

.blocks > p a {
	color: hsl(200, 50%, 50%);
	text-decoration: underline;
}

.blocks > figure img {
	width: 100%;
}

.blocks > figure {
	position: relative;
}

.blocks > figure figcaption {
	position: absolute;

	bottom: 0;
	left: 0;
	right: 0;

	background-color: rgba(0, 0, 0, 0.8);
	padding: 0.5em 1em;

	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;

	font-style: italic;
	color: #bbb;

	line-height: 1.4;
}







.vertical-form {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;

	color: black;

	display: flex;
	flex-direction: column;

	padding: 1rem;
}

.vertical-form > label {
	font-weight: bold;
	color: white;
}

.vertical-form > :is(input, select, textarea) {
	background-color: #383838;
	border-radius: 5px;
	border: none;
	padding: 0.3em 0.6em;
	color: white;
}

.vertical-form > :is(input, select, textarea).has-error {
	border-radius: 5px 5px 0 0;
	border: solid 1px hsl(0, 50%, 50%);
}

.vertical-form > label + * {
	margin-top: 0.5rem;
}

.vertical-form > * + label {
	margin-top: 1.5rem;
}

.vertical-form > .button {
	align-self: end;
	margin-top: 1rem;
}

.vertical-form > textarea {
	resize: vertical;
	min-height: 10em;
}

.vertical-form > .field-error {
	background-color: hsl(0, 50%, 50%);
	color: white;
	border-radius: 0 0 5px 5px;
	padding: 0.25em 0.5em;
	padding-bottom: 0.5em;
}



.layout-grid {
	grid-template-columns: repeat(12, 1fr);
	column-gap: 2rem;
	display: grid;
	align-items: center;
}

.layout-grid > * {
	grid-column: span var(--span);
}

@media (max-width: 800px) {
	.contact-list {
		gap: 4rem;
	}

	.layout-grid {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.layout-grid.layout-grid-reverse {
		flex-direction: column-reverse;
	}
}


.notification {
	text-align: center;
	padding: 0.75em 1em;
	border-radius: 6px;
}

.notification-green {
	background-color: rgb(165, 210, 75);
	color: rgb(34, 45, 11);
}

.notification-red {
	background-color: rgb(238, 104, 104);
	color: rgb(101, 11, 11);
}

.notification-yellow {
	background-color: rgb(235, 199, 71);
	color: rgb(69, 56, 8);
}

.notification-blue {
	background-color: rgb(116, 171, 226);
	color: rgb(20, 56, 93);
}




.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, 230px);
	justify-content: center;
	justify-items: center;
	gap: 40px;
}

.cards .card {
	width: 100%;
	position: relative;
	background-color: rgb(239, 174, 46);
	display: flex;
	flex-direction: column;
	border-radius: 24px 24px 12px 12px;
	padding-bottom: 1em;
}

.cards .card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border-radius: 12px 12px 0 0;
	height: calc(30% + 1.5em);
	background-color: #444;
	z-index: 1;
}

.cards .card img {
	margin: 7%;
	width: 86%;
	border-radius: 10000px;
	border: solid 5px white;
	z-index: 2;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
}

.cards .card span {
	margin-top: auto;
	line-height: 1.1;
	background-color: #444;
	text-align: center;
	font-weight: bold;
	padding: 0.5em 1em;
	z-index: 2;
	font-size: 1.2em;
}

@media (max-width: 650px) {
	.cards {
		grid-template-columns: 1fr 1fr;
	}

	.cards .card span {
		font-size: 3.1vw;
	}
}