/* ----------------------------------------- */
/*  Fonts
/* ----------------------------------------- */
@font-face {
	font-family: 'Signika';
	src: url("/warehouse/fnt/signika.woff2") format("woff2");
}

@font-face {
	font-family: 'Signika';
	src: url("/warehouse/fnt/signikaBold.woff2") format("woff2");
	font-weight: bold;
}

@font-face {
	font-family: 'Tiamat';
	src: url("/warehouse/fnt/tiamat.woff2") format("woff2");
}

body {
	font-family: "Tiamat", "Signika", "serif";
	background: #111;
	width: 100%;
	height: 100vh;
	overflow: hidden auto;
	margin: 0;
	background-image: url(/warehouse/img/denim.png);
	background-repeat: repeat;
	background-size: auto;
	font-size: 15px;
	color: #d9d7c8;
}

header {
	max-width: 1920px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 2em;
	padding-top: 2em;
	box-shadow: 0px 10px 10px #111;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

h1 {
	margin: 0 0;
	font-size: 72px;
	font-weight: lighter;
	line-height: 100px;
	text-align: center;
	text-shadow: 1px 1px 10px #000, -1px 1px 10px #000, -1px -1px 10px #000, 1px -1px 10px #000, 1px 1px 10px #000, -1px 1px 10px #000, -1px -1px 10px #000, 1px -1px 10px #000;
}

h2 {
	color: #d9d7c8;
	font-size: 48px;
	line-height: 80px;
	font-weight: normal;
	text-align: center;
	text-shadow: 1px 1px 10px #000, -1px 1px 10px #000, -1px -1px 10px #000, 1px -1px 10px #000, 1px 1px 10px #000, -1px 1px 10px #000, -1px -1px 10px #000, 1px -1px 10px #000;
}

h3 {
	color: #d9d7c8;
	font-size: 24px;
	line-height: 36px;
	font-weight: normal;
	text-align: center;
	text-shadow: 1px 1px 10px #000, -1px 1px 10px #000, -1px -1px 10px #000, 1px -1px 10px #000, 1px 1px 10px #000, -1px 1px 10px #000, -1px -1px 10px #000, 1px -1px 10px #000;
}

a {
	color: #d9d7c8;
}

a:hover {
	color: #d9d7c8;
}

a:active {
	color: #d9d7c8;
}

a:visited {
	color: #d9d7c8;
}

.slide_photo {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 3s ease;
	-webkit-animation: fade 3s infinite;
	-moz-animation: fade 3s infinite;
	-o-animation: fade 3s infinite;
	animation: fade 3s infinite;
}

#logo {
	height: 128px;
	width: 128px;
	margin-left: 2em;
	background-size: contain;
	background-origin: content-box;
	background-repeat: no-repeat;
}

#title {
	flex-grow: 1;
}

#links {
	display: flex;
	align-items: flex-start;
	justify-content: left;
	flex-direction: column;
}

.link {
	margin-right: 2em;
	padding: 16px 20px;
	background-color: rgba(0, 0, 0, 0.75);
	box-shadow: 0 0px 20px 15px #666, inset 0 0px 5px 5px #666;
	font-size: 24pt;
	line-height: 60px;
	border-radius: 20px;
}

.link:hover {
	background-color: #666;
	box-shadow: 0 10px 20px 10px #111;
}

#links a img {
	vertical-align: middle;
	margin-right: 15px;
	width: 40px;
	height: 40px;
}

@media only screen and (max-width: 1024px) {
	header {
		flex-wrap: wrap;
		justify-content: left;
	}

	#title {
		margin-right: 180px;
	}

	#links {
		justify-content: center;
		align-items: center;
		flex-direction: row;
		margin: 0 auto;
	}

	.link {
		margin-right: 0.5em;
	}

	#links a img {
		width: 32px;
		height: 32px
	}

	#logo {
		transform: scale(0.75);
	}
}

@media only screen and (max-width: 900px) {
	.link {
		font-size: 16pt;
		line-height: 32px;
	}
}

main {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: stretch;
	margin: 0 auto;
}

main a {
	display: grid;
	color: #d9d7c8;
	text-align: center;
	width: 350px;
	height: 350px;
	flex: 0 0 auto;
	margin: 30px;
	background-color: #aaa3;
	border-radius: 100px;
}

main a * {
	grid-column-start: 1;
	grid-row-start: 1;
	z-index: 1;
	margin: auto 0;
	pointer-events: none;
}

main a img {
	width: 320px;
	height: 320px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: auto;
	background-origin: content-box;
	z-index: 0;
	padding: 15px;
	pointer-events: all;
}

main a:nth-child(2n-1) img {
	transform: scaleX(-1);
}

main a#gold {
	box-shadow: 0 0px 20px 15px #d69d00, inset 0 0px 5px 5px #d69d00;
}

main a#gold:hover {
	background-color: #d69d00;
	box-shadow: 0 0px 20px 15px #0008;
}

main a#red {
	box-shadow: 0 0px 20px 15px #911616, inset 0 0px 5px 5px #911616;
}

main a#red:hover {
	background-color: #911616;
	box-shadow: 0 0px 20px 15px #0008;
}

main a#blue {
	box-shadow: 0 0px 20px 15px #121a47, inset 0 0px 5px 5px #121a47;
}

main a#blue:hover {
	background-color: #121a47;
	box-shadow: 0 0px 20px 15px #0008;
}

main a *:hover {
	content: url(/warehouse/logo?f=fff);
}

.unavailable {
	pointer-events: none;
	filter: brightness(0.5)
}

body::after {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	z-index: -1;
	content: url(/warehouse/img/banner-0.jpg) url(/warehouse/img/banner-1.jpg) url(/warehouse/img/banner-2.jpg) url(/warehouse/img/banner-3.jpg) url(/warehouse/img/banner-4.jpg);
}

section {
	width: max-content;
	margin: auto;
	margin-top: 2em;
}

section>a {
	width: max-content;
	margin: 1em;
	font-size: 18pt;
}