/**
* Reset CSS
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Montserrat', sans-serif;
	background-color: black;
}

:root {
	--nav-logo-height: 34px;
	--nav-padding-y: 25px;
	--nav-offset: calc((var(--nav-padding-y) * 2) + var(--nav-logo-height));
}
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;
}

/* End Reset CSS */

.wide-container {
    max-width: 1720px;
    margin: 0 auto;
}

.container {
	max-width: 1500px;
	margin: 0 auto;
}

.site-header .site-header__nav {
	background-color: black;
	padding: var(--nav-padding-y) 30px;
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10;
}

.site-header .site-logo {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	max-height: var(--nav-logo-height);
}

.hero-video {
	width: 100%;
	margin-top: var(--nav-offset);
	position: relative;
	height: calc(100svh - var(--nav-offset));
	height: calc(100dvh - var(--nav-offset));
	overflow: hidden;
}

.hero-video iframe {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: max(100%, calc((100svh - var(--nav-offset)) * 16 / 9));
	width: max(100%, calc((100dvh - var(--nav-offset)) * 16 / 9));
	height: max(100%, calc(100vw * 9 / 16));
	transform: translate(-50%, -50%);
	border: 0;
}

.site-footer {
	padding: 200px 30px;
}

.site-footer .container {
	width: 100%;
	max-width: 1500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.site-footer .footer-columns {
	display: flex;
	flex-direction: column;
	gap: 60px;
	width: 100%;
	align-items: center;
}

.site-footer .footer-column,
.site-footer .footer-bottom-row {
	color: white;
	text-align: left;
}

.site-footer .footer-column {
	width: 100%;
}

.site-footer .footer-column img {
	display: block;
	max-width: 100%;
	height: auto;
}

.site-footer .footer-column img + * {
	margin-top: 20px;
}

.site-footer .footer-column p,
.site-footer .footer-column a {
	font-size: 18px;
	line-height: 1.6;
	overflow-wrap: anywhere;
}



.site-footer .footer-column p {
	text-transform: uppercase;
	font-weight: 700;
}

.site-footer .footer-column.yellow {
	color: #ffeb00;
}

.site-footer .footer-column.blue {
	color: #2ec4d0;
}

.site-footer .footer-column.red {
	color: #ff3c38;
}

.site-footer .footer-column a {
	color: #fff;
	text-decoration: none;
}

.site-footer .footer-bottom-row {
	margin-top: 48px;
	text-align: center;
	width: 100%;
}

.site-footer .social-icons {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	width: 100%;
	justify-content: flex-start;
}

.site-footer .social-icons a {
	display: flex;
	flex: 1 1 0;
	justify-content: center;
}

.site-footer .social-icons img {
	display: block;
	width: 100%;
	max-width: 72px;
	height: auto;
}

@media (min-width: 1024px) {
	:root {
		--nav-logo-height: 42px;
	}

	.site-footer {
		--footer-column-gap: clamp(72px, 6vw, 140px);
	}

	.site-footer .container {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: var(--footer-column-gap);
		justify-content: stretch;
		align-items: start;
	}

	.site-footer .footer-columns {
		display: contents;
	}

	.site-footer .footer-column,
	.site-footer .footer-bottom-row {
		text-align: left;
	}

	.site-footer .footer-column p,
	.site-footer .footer-column a {
		font-size: 20px;
	}

	.site-footer .social-icons img {
		width: auto;
		max-width: 100%;
	}

	.site-footer .social-icons a {
		flex: 0 0 auto;
	}

	.site-footer .footer-column img {
		margin: 0;
	}

	.site-footer .footer-column img + * {
		margin-top: 67px;
	}

	.site-footer .footer-column:nth-child(1) {
		grid-column: 1;
	}

	.site-footer .footer-column:nth-child(2) {
		grid-column: 2;
	}

	.site-footer .footer-column:nth-child(3) {
		grid-column: 3;
	}

	.site-footer .footer-bottom-row {
		grid-column: 2 / 4;
		margin-top: 165px;
	}

	.site-footer .social-icons {
		justify-content: flex-start;
	}
}

@media (min-width: 1640px) {
	.site-footer .nowrap-desktop {
		white-space: nowrap;
	}
}
