/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
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;
}

* {
	box-sizing: border-box;
}

@font-face {
    font-family: 'Garage Gothic Bold';
    src: url('fonts/Garage_Gothic_Bold.eot') format('eot'),
        url('fonts/Garage_Gothic_Bold.woff') format('woff'),
        url('fonts/Garage_Gothic_Bold.woff2') format('woff2');
}

body {
	background-color: #000;
	background-image: url('img/collage-bg.jpeg');
	background-repeat: repeat;
	background-attachment: fixed;
	color: #DDD;
	font: 13px/19px Arial,sans-serif 
}

body img {
	margin: 0;
	max-width: 100%;
	vertical-align: middle;
}

#wrapper {
	margin: 0;
}

.wrap {
	margin: 0 auto;
	position: relative;
	max-width: 1200px;
}

.grid {
    display: grid;
    padding: 20px 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    text-align: center;
}

/*
#menu {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: #000;
}

#menu ul {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #444;
}

#menu ul li {
	position: relative;
	text-align: center;
	border-right: 1px solid #444;
}

#menu ul li:last-child {
	border: 0;
}

#menu a {
	display: block;
	color: #FFF;
	text-decoration: none;
	line-height: 60px;
}
*/


#menu {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 10;
}

.menu  {
	display: none;
	text-align: right;
}

.toggled {
	display: block;
}

#menu li {
	margin-bottom: 15px;
}

#menu li a {
	color: #000;
	background: #FFF;
	margin-right: 5px;
	padding: 0 5px;
	line-height: 35px;
	font-size: 27px;
	font-family: 'Garage Gothic Bold';
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 3px 3px 2px #000;
}

#menu a.toggle {
	display: block;
	margin-left: 30px;
}

.notify {
  animation: animSpin 1.8s ease-in-out forwards infinite, animFade 1.8s ease forwards infinite;
}

@keyframes animSpin {
	0% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(0deg); transform: perspective(120px) rotateY(181deg) rotateX(0deg); 
  }
  50% { -webkit-transform: perspective(120px) rotateY(0deg) rotateX(0deg); transform: perspective(120px) rotateY(0deg) rotateX(0deg); 
  }
	100% { -webkit-transform: perspective(120px) rotateY(180deg); transform: perspective(120px) rotateY(181deg); }
}
@keyframes animFade {
	0% { opacity: .95; }
	100% { opacity: 1; }
}

/* ============================================= */

.panel {
	
}

.panel div {
	position: relative;
	padding-bottom: 2px;
	text-align: center;
}

.panel a {
	display: block;
	font-family: 'Garage Gothic Bold';
}

.panel span {
	display: block;
	margin: 0 auto;
	width: 100%;
	position: absolute;
	top: 50%;
	color: #000;
	font-size: 3em;
	text-decoration: none;
	text-transform: uppercase;
}

.panel em {
	background: #FFF;
	padding: 5px 5px;
}



#catalog .panel img {
	min-width: 1000px;
	height: auto;
}

@media screen and (max-width: 900px) {
	
#catalog .panel img {
	min-width: auto;
	height: auto;
}	
	
}