
body {
	background: #fff;
	font-family: 'Letter Gothic Std', Sans-Serif;
	font-size: 11pt;
	font-weight: 400;
	color: #000;
	margin: 0;
	line-height: 1.8em;
}

a {
	text-decoration: none;
	color: #000;
	cursor: pointer;
	border-bottom: solid #000 1px;
	margin-bottom: -1px !important;
}

a:hover,
a:focus {
	color: rgba(0, 0, 0, 0.5);
	border-color: rgba(0, 0, 0, 0.5);
}

.dark {
	color: #fff;
}

.dark a {
	color: #fff;
	border-color: #fff;
}

.dark a:hover,
.dark a:focus {
	color: rgba(255, 255, 255, .5);
	border-color: rgba(255, 255, 255, .5);
}

h1, h2, h3, h4 {
	line-height: 1.2em;
	margin: 0;
}

h1 {
	font-family: 'Source Sans Pro', 'Letter Gothic Std', Sans-Serif;
	font-weight: 200;
	font-size: 45pt;
	text-transform: uppercase;
	
}

h2 {
	font-family: 'Source Sans Pro', 'Letter Gothic Std', Sans-Serif;
	font-size: 20pt;
	font-weight: 200;
}

@media only screen and (max-width: 750px) {
	h1 {
		font-size: 24pt;
	}

	h2 {
		font-size: 15pt;
	}
}@font-face {
    font-family: 'Letter Gothic Std';
    font-weight: 400;
    font-style: normal;
    src:
        url('../res/fonts/LetterGothicStd.woff');
        format('woff');
}

@font-face {
    font-family: 'Source Sans Pro';
    font-weight: 200;
    font-style: normal;
    src:
        url('../res/fonts/source_sans_pro_extralight.woff');
        format('woff');
}.footer {
	display: inline-block;
	position: relative;
	text-align: center;
	padding: 40px 40px 60px 40px;

	transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-webkit-transition: background 0.3s ease-in-out;
}

.footer.darkBackground {
	background-color: #111;
}

.footer.lightBackground {
	background-color: #fff;
}

.footer.transparent {
	background-color: transparent;
}

.footer > .scrollDownHint {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;

	height: 30px;

	background-size: 15px;
	background-position: center 0px;
	background-repeat: no-repeat;

	opacity: 0;
}

@media only screen and (max-width: 750px) {
	.footer > .scrollDownHint {
		display: none;
	}
}

.footer.darkBackground > .scrollDownHint {
	background-image: url('/res/scroll_down_hint_white.svg');
}

.footer.lightBackground > .scrollDownHint {
	background-image: url('/res/scroll_down_hint_black.svg');
}

.footer > .scrollDownHint.visible {
	opacity: 1;
}


.footer > .logo {
	display: inline-block;
	margin-bottom: 10px;
}

.footer > .logo > div {
	position: relative;

	width: 180px;
	height: 45px;
}

.footer > .logo > div > div {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;

	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;

	opacity: 0;

	transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
}

.footer .logo > div > .dark {
	background-image: url('/res/logo_black.svg');
}

.footer .logo > div > .light {
	background-image: url('/res/logo_white.svg');
}

@media only screen and (max-width: 750px) {
	.footer > .logo > div {
		width: 150px;
	}
}

.footer.darkBackground > .logo > div > .light { opacity: 1; }
.footer.darkBackground > .logo > div > .dark { opacity: 0; }

.footer.lightBackground > .logo > div > .dark { opacity: 1; }
.footer.lightBackground > .logo > div > .light { opacity: 0; }


.footer.noLogo > .logo {
	opacity: 0;
}

.footer > .menuButton {
	display: none;
	position: absolute;
	bottom: 0px;
	right: 0px;

	width: 73px;
	height: 73px;

	background-position: center;
	background-size: 20px;
	background-repeat: no-repeat;

	cursor: pointer;
	z-index: 2;
}

.footer.darkBackground > .menuButton {
	background-image: url('/res/menu_button_white.svg');
}

.footer.lightBackground > .menuButton {
	background-image: url('/res/menu_button_black.svg');
}

.footer > nav {
	display: flex;
	justify-content: center;
}

.footer > nav.visible {
	display: flex;
}

.footer > nav > a {
	margin: 0 10px;
	text-align: left;
	border: none;
	margin-bottom: 0 !important;

	transition: color, border-color 0.3s ease-in-out;
	-moz-transition: color, border-color 0.3s ease-in-out;
	-webkit-transition: color, border-color 0.3s ease-in-out;
}

.footer > nav > a.selected {
	color: #000;
	border-bottom: solid #000 1px;
	margin-bottom: -1px !important;
}

@media (pointer: fine) {
	.footer > nav > a:hover {
		color: #000;
		border-bottom: solid #000 1px;
		margin-bottom: -1px !important;
	}
}

@media only screen and (max-width: 750px) {
	.footer > nav > a.selected:not(:hover) {
		border-bottom: none;
		margin-bottom: 0 !important;
	}
}

.footer.darkBackground > nav > a {
	color: #fff;
}

.footer.darkBackground > nav > a.selected {
	border-color: #fff;
}

@media (pointer: fine) {
	.footer.darkBackground > nav > a:hover {
		border-color: #fff;
	}
}

@media only screen and (max-width: 750px) {
	.footer.darkBackground > nav > a.selected {
		border-color: transparent;
	}
}

@media only screen and (max-width: 750px) {
	.footer {
		padding: 10px;
	}

	.footer > .logo {
		margin-bottom: 0;
	}

	.footer > nav {
		display: none;
		position: fixed;
		z-index: 1;

		left: 0;
		right: 0;
		bottom: 0;
		padding: 20px;
		box-sizing: border-box;
		flex-direction: column;
		justify-content: flex-end;

	}

	.footer.lightBackground > nav {
		background-color: #fff;
	}

	.footer.darkBackground > nav {
		background-color: #111;
	}

	.footer > nav a {
		padding: 10px 0;
	}

	.footer > .menuButton {
		display: block;
	}

}.icon {
    display: inline-block;
}

.icon.size16,
.icon {
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

.icon.big {
	width: 25px;
	height: 25px;
	background-size: 25px;
}

.icon.huge {
	width: 100px;
	height: 100px;
	background-size: 100px;
}

.icon.white.play {background-image: url('/res/icons/white/play.svg');}

.buttonIcon {
	border: none;
	margin-bottom: 0 !important;

	transition: all .05s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-webkit-transition: all .1s ease-in-out;
}

.buttonIcon:hover {
	border: none;
	margin-bottom: 0 !important;
	transform: scale(1.05);
}

.buttonIcon:active {
	border: none;
	margin-bottom: 0 !important;
	transform: scale(1);
}

.buttonIcon.whiteBackground {
	background-color: #fff;
	padding: 10px;
}

.buttonIcon.blackBackground {
	background-color: #111;
	padding: 10px;
}#gallery > .footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}

#gallery > .screens > .screen {
	min-height: 100vh;
	box-sizing: border-box;
	padding-bottom: 300px;
}

@media only screen and (max-width: 750px) {
	#gallery > .screens > .screen:not(.video) {
		min-height: auto;
	}

	#gallery > .screens > .screen {
		padding-bottom: 50px;
	}
}


/* video */

#gallery > .screens > .screen.video {
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: none;
	overflow: hidden;
}

#gallery > .screens > .screen.video > video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#gallery > .screens > .screen.video > .overlay {
	text-align: center;
}

#gallery > .screens > .screen.video > .overlay > div {
	position: absolute;
	box-sizing: border-box;
	padding: 0 20px;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
	
#gallery > .screens > .screen.video.theGenesisOfPassion > .overlay > div {
	transform: translateY(calc(-100% + 60px));	
}

#gallery > .screens > .screen.video > .overlay > div > .buttonIcon {
	margin-top: 10px;
}

#gallery > .screens > .screen.video.dark > .overlay {
	color: #fff;
}

/* screen variations */

#gallery > .screens > .screen.black {
	background: #111;
}


/* photos */

#gallery > .screens > .screen.photos {
	text-align: center;
}

#gallery > .screens > .screen.photos > .container {
	height: 100%;
	text-align: center;
	padding: 10px 0;
}

#gallery > .screens > .screen.photos > .container > .photo {
	margin: 80px;
	vertical-align: top;
	max-width: calc(100% - 160px);
	max-height: calc(100vh - 300px);
}

@media only screen and (max-width: 750px) {
	#gallery > .screens > .screen.photos > .container {
		padding: 20px 0 0 0;
	}

	#gallery > .screens > .screen.photos > .container > .photo {
		margin: 0 0 20px 0;
		max-width: calc(100% - 40px);
		max-height: none;
	}
}

/* text */

#gallery > .screens > .screen.text {
	display: flex;
	justify-content: center;
	align-items: center;
}

#gallery > .screens > .screen.text > div {
	margin: 55px;
}@keyframes modal-video{from{opacity:0}to{opacity:1}}@keyframes modal-video-inner{from{transform:translate(0, 100px)}to{transform:translate(0, 0)}}.modal-video{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.5);z-index:1000000;cursor:pointer;opacity:1;animation-timing-function:ease-out;animation-duration:.3s;animation-name:modal-video;-webkit-transition:opacity .3s ease-out;-moz-transition:opacity .3s ease-out;-ms-transition:opacity .3s ease-out;-o-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.modal-video-close{opacity:0}.modal-video-close .modal-video-movie-wrap{-webkit-transform:translate(0, 100px);-moz-transform:translate(0, 100px);-ms-transform:translate(0, 100px);-o-transform:translate(0, 100px);transform:translate(0, 100px)}.modal-video-body{max-width:940px;width:100%;height:100%;margin:0 auto;display:table}.modal-video-inner{display:table-cell;vertical-align:middle;width:100%;height:100%}.modal-video-movie-wrap{width:100%;height:0;position:relative;padding-bottom:56.25%;background-color:#333;animation-timing-function:ease-out;animation-duration:.3s;animation-name:modal-video-inner;-webkit-transform:translate(0, 0);-moz-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-ms-transition:-ms-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal-video-movie-wrap iframe{position:absolute;top:0;left:0;width:100%;height:100%}.modal-video-close-btn{position:absolute;z-index:2;top:-35px;right:-35px;display:inline-block;width:35px;height:35px;overflow:hidden;border:none;background:transparent}.modal-video-close-btn:before{transform:rotate(45deg)}.modal-video-close-btn:after{transform:rotate(-45deg)}.modal-video-close-btn:before,.modal-video-close-btn:after{content:'';position:absolute;height:2px;width:100%;top:50%;left:0;margin-top:-1px;background:#fff;border-radius:5px;margin-top:-6px}
.modal-video {
	background-color: rgba(15, 15, 15, 1);
	cursor: default;
}

.modal-video-body {
	max-width: 80vw;
}

.modal-video-movie-wrap {
	background: #000;
}

.modal-video-movie-wrap > .modal-video-close-btn {
	cursor: pointer;
}