/*  Typography */

@font-face {
    font-family: 'IBM regular';
    src: url('fonts/jesolonew-regular.woff2') format('woff2'),
         url('fonts/jesolonew-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  	font-display: fallback; 
}
@font-face {
    font-family: 'IBM book';
    src: url('fonts/jesolonew-book.woff2') format('woff2'),
         url('fonts/jesolonew-book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  	font-display: fallback; 
}
body, html{
	max-width: 100vw;
	overflow-x: hidden;
}
body, html, h1, h2, h3, ::placeholder, input, button, small{
    font-family: 'IBM regular', Univers, Arial, Helvetica, sans-serif;
    letter-spacing: 0.01em;
    font-size: 17px;
    line-height: 1.3em;
    font-weight: normal;
    font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-spacing: -2px;
	color: black;
}
.serif{
    font-family: 'IBM book', 'Times New Roman', Times, serif;
}
a{
	color: black;
}
a:hover{
	color: black;
	text-decoration: none;
}
.headline{
	font-size: 10vw;
	line-height: 1.1em;
}
.huge{
	font-size: 3em;
	line-height: 1.15em;
	letter-spacing: -0.000em;
	word-spacing: -0.01em;
}
.medium{
	font-size: 1.5em;
	line-height: 1.3em;
}
::-moz-selection { /* Code for Firefox */
  background: yellow;
}
::selection {
  background: yellow;
}
.case{
	text-transform: uppercase;
	letter-spacing: .125em;
}

/*  Layout */

.background{
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
/* 	background: linear-gradient(180deg, #1417C4, #ffffff, #1417C4, #ffffff); */	
	background: linear-gradient(180deg, #333, #ffffff, #333, #ffffff);
	background-size: 600% 600%;
	-webkit-animation: gradient 15s ease infinite;
	-moz-animation: gradient 15s ease infinite;
	animation: gradient 15s ease infinite;
}
.background.blue{
	background: linear-gradient(180deg, #1417C4, #ffffff, #1417C4, #ffffff);
}
.background.red{
	background: linear-gradient(180deg, #1417C4, #ffffff, #1417C4, #ffffff);
}
.home .background{
	background: linear-gradient(180deg, #333, #ffffff, #333, #ffffff);
	background-size: 600% 600%;
	-webkit-animation: gradient 15s ease infinite;
	-moz-animation: gradient 15s ease infinite;
	animation: gradient 15s ease infinite;
}
@-webkit-keyframes gradient {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-moz-keyframes gradient {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@keyframes gradient { 
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
main{
	min-height: calc(100vh - 2em);
}
p{
	margin: 0 0 1em 0;
}
main{
	padding: 1em;
	text-shadow: -2px 2px 5px #fff;
}
.mobile{
	display: none;
}
/*  Header, footer */

#menu{
	position: fixed;
	top: 0;
	left: 0;
	padding: 2em;
	z-index: 10;
}
#menu ul{
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	flex-wrap: wrap;
}
#menu ul li{
	padding-bottom: 2em;
}
.button{
	position: relative;
	padding: .5em 1em;
	color: inherit;
	background-color: inherit;
	margin-right: 1em;
	min-width: 3.5em;
	text-align: center;
}
.button:before{
	content: "";	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 1.25em;
	-webkit-filter: blur(.25rem);
	filter: blur(.20rem);
	transition: .20s;
	background-color: #fff;
}
.button:hover{
	color: blue;
}
.loading{
	height: 100vh;
}
footer{
	margin-top: 2em;
	display: flex;
	justify-content: space-between;
	text-shadow: -2px 2px 5px #fff;
}
footer span{
	padding: 1em;
}
.cookie-message{
	position: fixed;
	bottom: 0px;
	left: 0px;
	padding: 1em 2em;
	width: calc(100vw);
	display: flex;
	justify-content: space-between;
}
.cookie-message span{
	max-width: 90%;
}
.cookie-message .gdpr-accept{
	cursor: pointer;
}
.cookie-message:before{
	content: "";	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	-webkit-filter: blur(1rem);
	filter: blur(1rem);
	background-color: #fff;
}
.newsletter h3{
	padding: 1em 0;
	text-align: center;
}
.newsletter{
	position: fixed;
	background: transparent;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
	z-index: 11;
	padding-top: -5em;
}
.newsletter.visible{
	display: flex !important;
	flex-wrap: wrap;
  opacity: 1;	
}
.newsletter form{
  margin: auto;
  max-width: 900px;
}
.close{
	position: fixed;
	right: 0em;
	top: 1em;
	cursor: pointer;
	z-index: 100;
}
.newsletter .terms{
	position: fixed;
	bottom: 0.5em;
	left: 1em;
	width: 100%;
}
.response{
	display: block;
	width: 100%;
	text-align: center;
	padding: 1em 0;
}
.mce_inline_error{
	display: block;
	padding-top: 2.5em;
	width: 100%;
}
.terms a{
	border-bottom: 1px black solid;
}
.blur{
	-webkit-filter: blur(1rem);
	filter: blur(1rem);
}
.noscroll{
  overflow: hidden;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}
.newsletter input{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	background-color: transparent;
	width: 100%;
	text-align: left;
	padding: 0 3em;
}
input[type=submit]{
	text-align: center;
	cursor: pointer;
	transition: 0.3s;
}
input[type=submit]:hover{
	color: blue;
}

textarea:focus, input:focus{
    outline: none;
}
#mc_embed_signup_scroll{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.input{
	position: relative;
	z-index: 5;
	flex-grow: 1;
	display: flex;
	min-height: 6em;
	width: 50%;
}
.input.submit{
	width: 100%;
}
.input:before{
	content: "";
	position: absolute;
	z-index: -1;
	top: 1em;
	bottom: 1em;
	left: 0;
	right: 0;
	border-radius: 25vh;
	-webkit-filter: blur(.4em);
	filter: blur(.4em);
	border: .25em solid transparent;
	background-color: white;
	transition: .75s;
}

/*  Single project */

.block{
	margin-bottom: 2em;
}
.paragraph p{
	padding-left: 30vw;
	margin-bottom: 1em;
}
.big_paragraph p{
	margin-bottom: 1em;
}
.small_paragraph{
	max-width: 700px;
}
figure img{
	width: 100%;
}
.lazy-image{
    filter: blur(34px);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.lazy-image.loaded{
    filter: blur(0);
    -ms-transform: scale(1);
    transform: scale(1);
}
.block figcaption{
	margin-top: 0.5em;
}
.postcard figcaption{
	max-width: 700px;
}
h1.block{
	height: calc(100vh - 2em);
	width: calc(100vw - 2em);
	cursor: pointer;
	text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
h1.block span{
	display: block;
	padding: 0.25em 0;
}
.postcard{
	padding: 1em 0;
}
.two_images{
	display: flex;
	justify-content: space-evenly;
	padding: 1em 0;
	flex-wrap: wrap;
}
.two_images figure{
	width: 40%;
}
.swiper-container {
	margin: 0 auto;
	padding: 2em 0;
}
.small{
	margin-left: 0;
	font-size: 50%;
	line-height: 1.35em;
	display: block;
}
.johannes-intro{
	padding-top: 8em;
	padding-left: 30vw;
}
.johannes ol{
    counter-reset: li;
    list-style-type: none;
    margin-left: 1em;
}
.johannes ol li{
    position:relative;
}
.johannes ol li:before{
    content: counter(li)'.';
    counter-increment: li -1;
    position:absolute;
    right:100%;
    margin-right:0.5em;
}
.johannes .small li:before{
    content: counter(li)'.';
    counter-increment: li;
}
section.johannes{
	padding-top: 2em;
}

.block{
	margin-bottom: 0;
	padding: 2rem 0 2rem 0;
}
section.block .caption{
	padding-top: 0.5rem;
	text-align: left;
}

.plyr{
	position: relative;
	margin: 1em 0 2em 0;
	padding: .5em 1em;
	color: inherit;
	background-color: inherit;
	min-width: 3.5em;
	text-align: center;
	z-index: 1;
}
.plyr:before{
	content: "";	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 1.25em;
	-webkit-filter: blur(1rem);
	filter: blur(1rem);
	background-color: #fff;
}
.vimeo .plyr--video{
	background: transparent !important;
}
.vimeo .plyr:before{
	background: transparent !important;
}
.vimeo .plyr{
	padding: 0;
	margin-bottom: 0rem;
}
.vimeo .plyr__control--overlaid{
	display: none !important;
}
.vimeo .plyr__controls__item:nth-child(8) {
	display: block;
}
.vimeo .plyr--video .plyr__time{
	display: block;
}
.video video{
	width: 100%;
	object-fit: cover;
}
.title{
	text-align: center;
}
.data {
	visibility: hidden;
	opacity: 0;
	position: fixed; 
	bottom: 0.5em; 
	left: 0.5em; 
	width: 80%; 
	pointer-events: none; 
	font-size: 3em;
	line-height:  1.2em;
	font-weight: normal; 
	color: white;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	z-index: 10000;
	transition: all 0.25s ease;
}
.block.visible .data{
	visibility: visible;
	opacity: 1;
}
.big_text p{
	font-size: 2.5rem;
	line-height: 1.2em;
	margin-bottom: 0rem;
}
.vertical{
	display: flex;
}
.vertical figure{
	margin: auto;
	height: 90vh;
	display: inline-block;
}
.vertical figure img{
	height: 100%;
	width: auto;
}
.two_images{
	columns: 2;
	column-gap: 2rem;
}
.two_images figure img{
	width: 100%;
	height: auto;
}
.soundtrack{
	margin: 0 2rem;
}
.soundtrack .caption{
	padding-left: 2rem;
}
.soundtrack .title{
	font-size: 2.5rem;
	line-height: 1.2em;
	text-align: center;
	margin-bottom: 2rem;	
}
.article{
	width: 70vw;
	margin: auto;
}
.article .serif{
	font-size: 1.25rem;
	line-height: 1.3em;
	text-align: justify;
}
.article .title{
	font-size: 2.5rem;
	line-height: 1.2em;
	text-align: center;
	margin-bottom: 2rem;	
}
.article figure{
	width: 50vw;
	margin: auto;
	padding: 0;
}
.article .caption, .article-link{
	text-align: center !important;
}
.stream{
	width: 80%;
	margin: auto;
	position: relative;
}
.stream .container{
	margin: auto;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	box-shadow: 1em 1em 1em #1417C4;
}
.stream .container iframe,  .stream .container object, .stream .container embed{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.stream .container::after{
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	width: 1em;
	height: 1em;
	border-radius: 1em;
	background: red;
	z-index: 100000;
	animation: stream-pulse 2s ease infinite;
	content: ' ';
}
.stream .container::before{
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	z-index: 100000;
	color: white;
	font-size: 2rem;
	content: attr(time);
}
.single-slide{
	height: 100vh !important;
	width: auto;
	text-align: center;
}
.single-slide img{
	height: calc(100vh - 4em);
	object-fit: contain;
}
@keyframes stream-pulse {
    0%   { 	opacity: 0	}
    50% { opacity: 1 }
    100%   { opacity: 0 }
}
.zoom figure{
	max-width: 1000px;
	margin: auto;
	overflow: hidden;
	width: calc(100vw - 2em);
}
.image-zoom-available{
	cursor: zoom-in;
  }
.image-zoom-available.is-active{
	cursor: none;
}
iframe.w360{
	width: 90vh;
	height: 90vh;
	margin: auto;
	display: block;
}
/*  Archive, list */
.postcards article{
	width: calc(100vw - 2em);
	cursor: pointer;
	min-height: 90vh;
}
.postcards article figure{
  width: 100%;
  margin:  15vh auto 0 auto;
	height: 70vh;
}
.postcards article figure img{
	padding-bottom: 1em;
	width: 100%;
	height: 100%;
	object-fit: contain;
  object-position: 50% 50%; 
}
.postcards figcaption{
	text-align: center;
}
.postcards article h3{
	height: calc(100vh - 2em);
	width: calc(100vw - 2em);
	cursor: pointer;
	text-align: center;
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-around;
  	align-items: center;
}
.postcards article h3 span{
	padding: 0.25em 0;
	display: block;
}
section.archive{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.archive article{
	width: 40%;
	padding: 5em 0;
}
.archive .large{
	width: 100%;
}
.archive figcaption{
	margin-top: 0.5em;
}
.cols3{
	columns: 3;
}
.cols3 div{
	break-inside: avoid;
}
.small div{
	font-size: 1rem !important;
	line-height: 1.2em;
}
.orange .plyr:before{
	background-color: #fa9448;
	-webkit-filter: blur(3rem);
	filter: blur(3rem);
}
.lime .plyr:before{
	background-color: #eff97b;
	-webkit-filter: blur(3rem);
	filter: blur(3rem);
}
.blue .plyr:before{
	background-color: #5473d7;
	-webkit-filter: blur(3rem);
	filter: blur(3rem);
}
.salmon .plyr:before{
	background-color: #eda89d;
	-webkit-filter: blur(3rem);
	filter: blur(3rem);
}
.green .plyr:before{
	background-color: #91d296;
	-webkit-filter: blur(3rem);
	filter: blur(3rem);
}
.brown .plyr:before{
	background-color: #a27769;
	-webkit-filter: blur(3rem);
	filter: blur(3rem);
}

/*  Johannes */
.johannes article{
	padding-bottom: 1em;
}
.johannes article p:first-child{
	margin-bottom: 0;
}
.johannes article p:last-child{
	margin-top: 0.5em;
}

.typed-fade-out{
	opacity: 0 !important;
}
.typed {
	position: absolute; 
	bottom: 10%; 
	left: 5%; 
	width: 80%; 
	pointer-events: none; 
	font-size: 3em;
	line-height:  1.2em;
	font-weight: normal; 
	color: white;
 	transition: opacity 0.2s linear !important;
	opacity: 1;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
/*  Terms */
main.notes{
	padding-top: 7em;
}
.notes .title{
	padding-bottom: 2em;
	text-align: center;
}
.notes .columns{
	column-count: 3;
	column-gap: 40px;
}

/*  About */
.about{
	padding-top: 2em;
	margin-bottom: 4em;
}
.address{
	position: fixed; 
	bottom: 1em; 
	left: 1em; 
	width: calc(100% - 2em); 
	color: white;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.66), 1px -1px 0 rgba(0, 0, 0, 0.66), -1px 1px 0 rgba(0, 0, 0, 0.66), 1px 1px 0 rgba(0, 0, 0, 0.66);
	*display: flex;
	*justify-content: space-between;
	text-align: center;
}
.address a{
	color: white;
}
.address p{
	margin-bottom: 0;
}
.scrollbar::-webkit-scrollbar{
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	width: 10px;
	height: 10px!important;
}
.scrollbar::-webkit-scrollbar-thumb{
	background-color: grey;
	border-radius: 10px;
}

.scrollbar::-webkit-scrollbar-thumb:vertical{
	height: 10px!important;
	width: 10px;
}
.scrollbar img{
	user-drag: none;
	-webkit-user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

/*  Media Query */
@media only screen and (max-width: 768px) {
	body, html, h1, h2, h3, ::placeholder, input, button{
    letter-spacing: 0.01em;
    font-size: 14px;
    line-height: 1.3em;
	}
	.huge{
		font-size: 2em;
		line-height: 1.3em;
	}
	main{
		text-shadow: -1px 1px 4px #fff;
	}
	.mobile{
		display: inline-block;
	}
	#menu ul{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100vw;
		padding: 3em 1em 0 1em;
	}
	.input{
		width: 100%;
	}
	#menu ul li{
		font-size: 175%;
		margin-bottom: 2em;
		padding-bottom: 0;
	}
	.postcards article, .postcards article figure{
		height: auto;
		width: 100%;
	}
	.postcards article a figure img{
		width: 100%;
		height: auto;
		max-width: 100vw;
	}
	.archive article{
		width: 100%;
		padding: 2em 0;
	}
	.typed {
		font-size: 2em;
	}
	.paragraph p {
		padding-left: 0vw;
	}
	.two_images figure{
		width: 100%;
		margin-bottom: 2em;
	}
	.johannes-intro{
		padding-top: 5em;
		padding-left: 0vw;
	}
	.postcards article figure{
		margin: 5em auto 0 auto;
	}
	h1.block{
		height: calc(80vh - 2em);
	}
	.johannes ol{
    margin-left: 0em;
    padding-left: 0;
	}
 	.johannes ol li:before{
		left: 0;
  	}
	.johannes ol li p:first-child{
			text-indent: 2em;
	}
	ol.small li:before{
		right: 100%;
		left: auto;
  	}
  	.small{
		margin-left: 0.5em;
		padding-left: 1em;
		font-size: 75%;
		line-height: 1.35em;
		display: block;
	}
	.newsletter form{
		padding: 1em;
	}
	.input:before{
		-webkit-filter: blur(.2em);
		filter: blur(.2em);
	}
	.newsletter .terms{
		position: relative;
		bottom: 0em;
		left: 2em;
		width: calc(100% - 4em);
	}
	.newsletter h3 {
		padding: 2em 0 0 0;
	}
	.noscroll{
  		position: fixed;	
  	}
  .notes .columns{
		column-count: 1;
	}
	.about{
		margin-bottom: 7em;
	}
	.address{
		text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3), 1px -1px 0 rgba(0, 0, 0, 0.3), -1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3);	
	}
	.article{
		width: 100%;
	}
	.soundtrack{
		margin: 0;
	}
	.soundtrack .caption{
		padding-left: 0;
	}
	.article .serif{
		text-align: left;
	}
	.article .title, .big_text p, .soundtrack .title{
		font-size: 2rem;
	}
	.article figure{
		width: 75vw;
	}
	.stream{
		width: 100%;
	}
	.stream .container::before{
		font-size: 1rem;
	}
	.stream .container{
		box-shadow: 0.5em 0.5em 0.5em #1417C4;
	}
	.vertical figure, .vertical figure img{
		height: auto;
		width: 100%;
	}
	section.block{
		margin-bottom: 0;
		padding: 2rem 0 5rem 0;
	}
	iframe.w360{
		width: calc(100vw - 2em);
		height: calc(100vw - 2em);
	}
}
