html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
}

div,
a,
img,
span {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	outline: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-text-size-adjust: none;
}

section,
div {
	box-sizing: border-box;
}

div,
ul {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

.hidden {
	width: 0px;
	height: 0px;
	position: absolute;
	top: -1000px;
	left: -1000px;
	opacity: 0;
	z-index: 0;
}

a {
	color: #fff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* ================================== */
/* ---- variables ------------------- */
/* ================================== */

:root {
	--blue: #00a7e1;
	--dark-blue: #172028;
	--edge-blue: #00609c;
	--grey: #b2b2b2;
	--dark-grey: #3b3b3b;
	--grey-gradient: linear-gradient(to right, #717371, #aaaaa7);
	--font-axia: axia, sans-serif;
	--font-axia-stencil: axia-stencil, ui-sans-serif, system-ui, -apple-system,
		BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans,
		sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol,
		"Noto Color Emoji";
}

/* ================================== */
/* ---- general / top level --------- */
/* ================================== */

#main-wrapper {
	width: 100%;
	height: auto;
	position: relative;
	font-size: 14px;
	margin: 0;
	overflow: hidden;
	font-family: var(--font-axia);
	text-transform: uppercase;
	font-variant: lining-nums;
}

/* ------------------- */
header {
	width: 100%;
	height: auto;
	position: relative;
	background-color: var(--dark-blue);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem 0;
}
header .logo {
	height: auto;
	max-width: 20rem;
	width: auto;
	margin: 0 0 1rem 0;
}
header .date {
	color: #fff;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: bold;
}

@media (max-width: 1280px) {
	header .logo {
		max-width: 14rem;
	}

	header .date {
		font-size: 1rem;
		line-height: 1rem;
	}
}

@media (max-width: 900px) {
	header .logo {
		max-width: 10rem;
		margin: 0 0 0.6rem 0;
	}

	header .date {
		font-size: 0.8rem;
		line-height: 0.8rem;
	}
}

/* ------------------- */
.video-section {
	width: 100%;
	height: auto;
	padding: 2rem 4vw;
	background-color: var(--grey);
}

.video-section iframe {
	max-width: 56rem;
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
	display: block;
	margin: 0 auto;
	border: none;
}

/* ------------------- */
.partners-section {
	width: 100%;
	height: auto;
	padding: 2rem 0;
	background-color: var(--dark-blue);
}

.partners-section .partners-logos {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	max-width: 80rem;
	width: 90%;
	margin: 0 auto;
}

.partners-section img {
	max-height: 3.5rem;
	width: auto;
	position: relative;
	margin: 0 2.5rem;
}

@media (max-width: 1280px) {
	.partners-section img {
		max-height: 2.2rem;
		margin: 0 2.2rem;
	}
}

@media (max-width: 980px) {
	.partners-section img {
		max-height: 1.8rem;
		margin: 0 1.5rem;
	}
}

@media (max-width: 640px) {
	.partners-section .partners-logos {
		max-width: 20rem;
	}

	.partners-section img {
		margin: 0.7rem 1.2rem;
	}
}

/* ------------------- */
.schedule-section {
	width: 100%;
	height: auto;
	padding: 4rem 4vw;
	background-color: #fff;
	background-image: url(../img/shards.webp);
	background-size: 200rem;
	background-repeat: repeat-y;
	background-position: top center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.schedule-section .bg-figures {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
}

.schedule-section .bg-figures .hockey-figure {
	width: 52rem;
	height: auto;
	position: absolute;
	top: 10rem;
	right: calc(-37rem + 20vw);
	display: none;
}

.schedule-section .bg-figures .football-figure {
	width: 33rem;
	height: auto;
	position: absolute;
	bottom: 0;
	left: calc(-29rem + 20vw);
	display: none;
}

.schedule-section .content {
	max-width: 36rem;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	margin: 0 auto;
}

.schedule-section .heading-wrapper {
	color: var(--edge-blue);
	font-size: 2rem;
	line-height: 2rem;
	margin: 0 0 2rem 0;
	text-align: center;
	text-transform: none;
}

.schedule-section .heading-wrapper h1 {
	font-family: var(--font-axia-stencil);
	font-size: 2.2rem;
	line-height: 2.2rem;
	margin: 0 0 0.1rem 0;
}

.schedule-section .date-label {
	width: 100%;
	height: auto;
	border-bottom: 1px solid var(--blue);
	text-align: left;
}

.schedule-section .date-label .date {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: bold;
	background-color: var(--blue);
	color: #fff;
	padding: 1rem 1.5rem;
	display: inline-block;
	text-transform: none;
}

.schedule-section .coming-soon {
	width: 100%;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: bold;
	color: var(--dark-grey);
	padding: 2rem 0;
	display: inline-block;
	text-transform: none;
	background-color: #e2e2e2;
}

.schedule-section .schedule {
	width: 100%;
	height: auto;
	position: relative;
	display: none;
	flex-direction: column;
}

.schedule-section .schedule .item {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	border-bottom: 1px solid var(--blue);
	padding: 2rem 0;
	text-transform: none;
	font-size: 1rem;
	line-height: 1.5rem;
}

.schedule-section .schedule .item .time {
	width: 6rem;
	font-weight: bold;
	white-space: nowrap;
	color: var(--dark-grey);
}

.schedule-section .schedule .item .details {
	padding: 0 0 0 0.7rem;
}

.schedule-section .schedule .item .event {
	font-weight: bold;
	color: var(--dark-grey);
}

.schedule-section .schedule .item a {
	font-weight: bold;
	color: var(--blue);
	text-decoration: underline;
}

.schedule-section .schedule .item a:hover {
	color: var(--dark-blue);
	text-decoration: underline;
}

.schedule-section .add-heading {
	font-size: 1.25rem;
	line-height: 1.75rem;
	text-align: center;
	margin: 1.5rem 0 1rem 0;
	text-transform: none;
}

.schedule-section .add-links {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.schedule-section .add-links a {
	width: 100%;
	max-width: 8rem;
	font-size: 1rem;
	color: #fff;
	font-weight: bold;
	padding: 1rem 0;
	margin: 0 1rem;
	background-color: var(--blue);
	text-transform: none;
	display: inline-block;
}

.schedule-section .add-links a:hover {
	background-color: var(--edge-blue);
	color: #fff;
	text-decoration: none;
}

@media (max-width: 1280px) {
	.schedule-section {
		background-size: 140rem;
	}

	.schedule-section .bg-figures .hockey-figure {
		width: 30rem;
		height: auto;
		position: absolute;
		top: 5rem;
		right: calc(-24rem + 20vw);
		opacity: 0.4;
	}

	.schedule-section .bg-figures .football-figure {
		width: 13rem;
		height: auto;
		position: absolute;
		bottom: 0;
		left: calc(-14rem + 20vw);
		opacity: 0.4;
	}

	.schedule-section .heading-wrapper {
		font-size: 1.5rem;
		line-height: 1.7rem;
	}

	.schedule-section .heading-wrapper .heading {
		font-size: 2rem;
		line-height: 2rem;
	}
}

@media (max-width: 900px) {
	.schedule-section {
		padding: 3rem 5vw;
		background-size: 120rem;
	}

	.schedule-section .heading-wrapper {
		font-size: 1.2rem;
		line-height: 1.4rem;
	}

	.schedule-section .heading-wrapper .heading {
		font-size: 1.7rem;
		line-height: 1.8rem;
		margin: 0 0 0.1rem 0;
	}

	.schedule-section .date-label .date {
		font-size: 0.8rem;
		line-height: 1rem;
		padding: 0.8rem 1.2rem;
	}

	.schedule-section .schedule .item {
		font-size: 0.8rem;
		line-height: 1.2rem;
		padding: 1.2rem 0;
	}

	.schedule-section .schedule .item .time {
		width: 4rem;
	}

	.schedule-section .add-heading {
		font-size: 1rem;
	}

	.schedule-section .add-links a {
		max-width: 7rem;
		font-size: 0.8rem;
		padding: 0.6rem 0;
		margin: 0 0.3rem;
	}
}

/* ------------------- */
.section-founding-partners {
	width: 100%;
	height: auto;
	padding: 4rem 6vw;
	background-color: var(--grey);
	background-image: var(--grey-gradient);
	text-align: center;
}

.section-founding-partners .heading {
	font-family: var(--font-axia-stencil);
	color: #fff;
	font-size: 3.75rem;
	text-transform: uppercase;
	margin: 0 0 3rem 0;
	text-align: center;
}

.section-founding-partners .descriptions {
	max-width: 52rem;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	color: #fff;
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.section-founding-partners .descriptions .item {
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin: 0 0 2rem 0;
	text-align: left;
	text-transform: none;
}

.section-founding-partners .descriptions .item .logo {
	width: auto;
	height: auto;
	text-align: right;
}

.section-founding-partners .descriptions .item .logo.meta {
	transform-origin: top right;
}

.section-founding-partners .descriptions .item .logo img {
	width: auto;
	max-width: 15rem;
	height: auto;
	max-height: 5rem;
	margin: 0;
	display: inline-block;
	position: relative;
	top: 0.4rem;
}

.section-founding-partners .descriptions .item .text {
	width: 100%;
	max-width: 32rem;
	height: auto;
	margin: 0 0 0 4rem;
	font-size: 1.125rem;
	line-height: 1.75rem;
}

@media (max-width: 1280px) {
	.section-founding-partners .heading {
		font-size: 2rem;
	}

	.section-founding-partners .descriptions .item {
	}

	.section-founding-partners .descriptions .item img {
		max-width: 10rem;
		max-height: 3rem;
	}

	.section-founding-partners .descriptions .item p {
		font-size: 1rem;
		line-height: 1.5rem;
		margin: 0 0 0 2rem;
	}
}

@media (max-width: 900px) {
	.section-founding-partners .heading {
		font-size: 1.6rem;
	}

	.section-founding-partners .descriptions {
		max-width: 38rem;
	}

	.section-founding-partners .descriptions .item .logo img {
		max-width: 9rem;
		max-height: 5rem;
	}

	.section-founding-partners .descriptions .item .text {
		margin: 0 0 0 2.5rem;
	}
}

@media (max-width: 600px) {
	.section-founding-partners {
		padding: 3rem 6vw 0rem;
	}

	.section-founding-partners .descriptions .item {
		flex-direction: column;
		align-items: center;
		margin: 0 0 2.5rem 0;
	}

	.section-founding-partners .descriptions .item .logo img {
		margin: 0 0 1rem 0;
	}

	.section-founding-partners .descriptions .item .logo.meta {
		transform-origin: bottom center;
	}

	.section-founding-partners .descriptions .item .text {
		font-size: 0.9rem;
		line-height: 1.3rem;
		margin: 0;
	}
}

/* ------------------- */
footer {
	width: 100%;
	height: auto;
	position: relative;
	background-color: var(--dark-blue);
	color: #fff;
	padding: 2rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.125rem;
	line-height: 1.5rem;
	box-sizing: border-box;
}

footer .contact-info {
	width: 100%;
	text-align: center;
	margin-bottom: 2rem;
}

footer .contact-info a {
	color: var(--blue);
}

footer .footer-logo {
	max-width: 10rem;
	height: auto;
	margin: 0 0 2rem 0;
}

footer .links {
	margin: 0 0 2rem 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	text-transform: uppercase;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

footer .links a {
	margin: 0 0.5rem;
}

footer .separator {
	width: 100%;
	max-width: 80rem;
	height: 1px;
	border-bottom: 2px solid #fff;
	margin: 0 0 2rem 0;
}

footer .copyright {
	font-size: 0.75rem;
	line-height: 1rem;
	text-transform: none;
}

@media (max-width: 1024px) {
	footer .links {
		flex-direction: column;
		text-align: center;
	}

	footer .links a {
		margin: 0.2rem 0;
		line-height: 1rem;
	}
}

@media (max-width: 600px) {
	footer .contact-info {
		font-size: 1rem;
		line-height: 1.2rem;
	}

	footer .links a {
		font-size: 0.8rem;
		margin: 0.2rem 0;
		line-height: 1rem;
	}
}

/* ------------------- */
#modal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	pointer-events: none;
}

#modal .darkener {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(43, 51, 85, 0.8);
	opacity: 0;
	transition: 200ms;
}

#modal .modal-content {
	max-width: 35rem;
	max-height: 95%;
	width: 95%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: -2px 2px 20px -1px rgb(30, 36, 66);
	opacity: 0;
	transition: 300ms;
	display: flex;
	flex-direction: column;
}

#modal.show {
	pointer-events: auto;
}

#modal.show .darkener {
	opacity: 1;
}

#modal.show .modal-content {
	opacity: 1;
}

#modal .modal-content .top-container {
	width: auto;
	height: 4rem;
	position: relative;
	display: block;
	padding: 1rem 1.5rem 1rem;
}

#modal .modal-content .divider-line {
	height: 1px;
	width: auto;
	position: relative;
	display: block;
	background-color: var(--dark-blue);
}

#modal .modal-content .bottom-container {
	width: auto;
	height: 2rem;
	position: relative;
	display: block;
}

#modal .modal-content .top-container .close-btn {
	width: 2.5rem;
	height: 2.5rem;
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	cursor: pointer;
	font-family: var(--font-axia-stencil);
	cursor: pointer;
	font-size: 2rem;
	text-align: center;
	vertical-align: middle;
	color: var(--edge-blue);
}

#modal .modal-content .content {
	width: auto;
	height: auto;
	position: relative;
	display: block;
	overflow-y: auto;
	padding: 0 2rem;
	font-family: var(--font-axia);
}

#modal .modal-content .content .top-details {
	width: 100%;
	height: auto;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	gap: 2rem;
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin: 0 0 2rem 0;
}

#modal .modal-content .content .top-details .photo {
	width: 13rem;
	height: auto;
	position: relative;
	border-radius: 5px;
}

#modal .modal-content .content .top-details .bio-name {
	font-size: 1.2rem;
	font-weight: bold;
}

#modal .modal-content .content .top-details .bio-title {
	font-size: 1rem;
	color: #3b3b3b;
}

#modal .modal-content .content .bio-bio {
	margin: 2rem 0 0 0;
}

@media (max-width: 600px) {
	#modal .modal-content .content .top-details {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1rem;
	}

	#modal .modal-content .content .top-details .photo {
		width: 12rem;
	}
}
