/* reset */
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,
main, 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, main, 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;
}

html {
	box-sizing: border-box;
}

*,
::after,
::before {
	box-sizing: inherit;
}

/* general */
html {
	font-size: 100%;
}

html, body, button, input, select, textarea {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1;
	font-family: "Proxima Nova", sans-serif;
}

body {
	background: linear-gradient(to right, #3379ab , #c32e84);
	color: #fff;
	font-size: 0.875rem;
	line-height: 1.125rem;
}

html, body {
	height: 100%;
}

strong, h1, h2 {
	font-weight: 900;
	text-transform: uppercase;
}

h1 {
	font-size: 1.813rem;
	line-height: 2.125rem;
}

h1, h2 {
	padding-bottom: 10px;
}

a {
	color: #fff;
	text-decoration: none;
}

a:hover, .active a {
	text-decoration: underline;
}

/* layout */
body {
	min-height: 100%;
	display: grid;
	grid-template-rows: 1fr auto;
}

.page {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	align-items: center;
	justify-items: center;
	padding: 25px 25px 0 25px;
	position: relative;
	z-index: 2;
}

.splash {
	width: 820px;
	height: 820px;
	padding: 70px;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	align-items: center;
	background-color: rgba(0,0,0,.3);
}

.splash-inside {
	display: grid;
	grid-template-columns: 1fr 300px;
	grid-row-gap: 70px;
	align-items: center;
}

.logo {
	grid-column-start: 1;
    grid-column-end: 3;
    align-self: end;
}

.logo svg {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.to-radio > a {
	display: block;
	text-align: center;
}

.stores {
	padding-top: 40px;
	text-align: center;
}

.stores a {
	position: relative;
	display: inline-block;
	margin: 0 10px;
}

.stores a:first-child {
	margin-left: 0;
}

.stores a:last-child {
	margin-right: 0;
}

.stores a svg {
	width: auto;
	height: 40px;
	display: block;
}

.stores a span {
	position: absolute;
	left: 0;
	right: 0;
	top: -26px;
	text-align: center;
	color: #000;
	font-size: 0.75rem;
	color: #fff;
}

.footer {
	text-align: center;
	padding: 25px 20px;
	position: relative;
	z-index: 2;
}

.footer-menu li {
	display: inline-block;
	padding: 0 25px;
}

.footer-menu li:first-child {
	padding-left: 0;
}

.footer-menu li:last-child {
	padding-right: 0;
}

.copyright {
	font-size: 0.625rem;
	padding-top: 25px;
}

.video {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
}

.content {
	grid-column-start: 1;
    grid-column-end: 3;
    min-height: 300px;
}

.content p {
	padding-bottom: 18px;
}

.no-cssgrid .page, .no-cssgrid .footer {
	position: relative;
}

.no-cssgrid .splash {
	margin: 0 auto;
}

.no-cssgrid .contact {
	float: left;
	width: calc(100% - 140px)
}

.no-cssgrid .soon {
	float: right;
	width: 140px;
}

.no-cssgrid .soon svg {
	height: 48px;
}

@media screen and (max-width: 890px) {
	.splash, .splash-inside {
		width: auto;
		height: auto;
		display: block;
	}

	.logo, .contact {
		padding-bottom: 25px;
	}

	.contact {
		min-height: 1px;
	}

	.no-cssgrid .contact, .no-cssgrid .soon {
		float: none;
		width: auto;
	}
}

@media screen and (max-width: 500px) {
	.splash {
		padding: 70px 20px;
	}

	.footer-menu li {
		padding: 0 5px;
	}

	.footer-menu li:first-child {
		padding-left: 0;
	}

	.footer-menu li:last-child {
		padding-right: 0;
	}
}

@media screen and (max-width: 400px) {
	.stores a svg {
		height: 30px;
	}
}