/* 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;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
	background: #000;
}

body {
	font-family: Montserrat, sans-serif;
}

#images {
	display: flex;
	flex-flow: column wrap;
}

.image {
	display: none;
	width: 100%;
}

.pswp__logo {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 24px;
	height: 24px;
}

.pswp__logo img {
	width: 100%;
	height: 100%;
}

.pswp__counter {
	top: 1px;
	left: 35px;
}

/* Prevent top bar from hiding */
.pswp__ui--idle .pswp__top-bar {
	opacity: 1;
}

.not-found {
	background-image: url('/assets/images/prospect.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	display: flex;
	flex-flow: column wrap;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
	color: #FFF;
	font-size: 20px;
	position: relative;
	z-index: 2;
}

.not-found span {
	z-index: 2;
}

.not-found::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.action-button {
  -webkit-appearance: none;
  background: #FFF;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  border: 2px solid transparent;
  transition: all .3s ease;
	position: relative;
	color: #000;
	margin-top: 40px;
}
.action-button svg, img {
	margin-right: 10px;
}
.action-button img {
	display: block;
	height: 16px;
	width: auto;
}
.action-button:hover {
	border: 2px solid #000;
	cursor: pointer;
}

@media (max-width: 991px) {
	.action-button {
		font-size: 14px;
	}
}

.pswp__button.pswp__button--dl {
	background-image: url(/assets/images/download.svg);
	background-position: 13px;
	background-size: 16px;
}

@media (orientation: landscape) and (max-width: 1023px) {
  .pswp__img {
		/*transform: scale(0.78);*/
		/*transform-origin: top center;
		top: 44px;*/
  }
}