/* START: Global tags */
html {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	height:100%;
}

html.has-scroll-smooth {
	overflow: hidden;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	backface-visibility: hidden;
	transform: translateZ(0);
}

body {
	width: 100%;
	height: 100%;
	background: var(--secondary-color);
}


* {
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

*:focus {
	outline: none;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

::selection {
	background: rgba(0, 0, 0, 0.05);
	color: var(--fourth-color);
}

::-moz-selection {
	background: rgba(0, 0, 0, 0.05);
	color: var(--fourth-color);
}

p {
	margin-bottom: 20px;
}

a, a:hover, a:link {
	color: var(--main-color);
	text-decoration: none;
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
}

.container {
	width: 100%;
	padding: 0 var(--main-padding-space);
	clear: both;
	position: relative;
	overflow: hidden;
}

.container.cvertical {
	padding: var(--main-padding-space);
}

.transition {
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
}

.slowTransition {
	transition: all .8s cubic-bezier(0.645, 0.045, 0.355, 1);
	-webkit-transition: all .8s cubic-bezier(0.645, 0.045, 0.355, 1);
	-moz-transition: all .8s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all .8s cubic-bezier(0.645, 0.045, 0.355, 1);
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}

.pictureContainer,
.videoContainer {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
}

.blur {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	image-rendering: auto;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	pointer-events: none;
}

.lazyloaded .blur {
	opacity: 0;
}

body.transitioning .blur {
	opacity: 1;
}

.pictureContainer img.uncompressed,
.pictureContainer picture {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
}

.pictureContainer img.uncompressed,
.pictureContainer picture img,
.videoContainer video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}

.touchDevice video  {
	pointer-events: none;
}

*[data-scroll-section] {
	visibility: hidden;
}

.touchDevice *[data-scroll-section],
*[data-scroll-section][data-scroll-section-inview] {
	visibility: visible;
}

.typeWriteContainer {
	position: relative;
	opacity: 0;
}

.touchDevice .typeWriteContainer,
.typeWriteContainer.show {
	opacity: 1;
}

.typewriterContent {
	position: relative;
	opacity: 0;
	pointer-events: none;
}	

.typewriterInside {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* HEADER */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	mix-blend-mode: difference;
}

header .logo {
	float: left;
}

header .logo a,
header .logo a img {
	display: block;
}

header .logo a {
	transition-duration: .8s;
	width: 300px;
}

header .logo a.normal {
	width: 156px;
}

header .logo a img {
	width: 100%;
}

header .right {
	float: right;
}

header nav {
	float: left;
}

header nav ul {
	list-style: none;
}

header nav ul li {
	float: left;
	/*margin-left: 36px;*/
}

header nav ul li a{
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	padding-right: 18px;
}

header nav ul li a:before {
	content: "[";
	opacity: 0;
}

header nav ul li a:after {
	content: "]";
	opacity: 0;
}

header nav ul li.current-menu a,
header nav ul li.current-menu-item a {
	color: var(--fourth-color);
}

header nav ul li.current-menu a:before,
header nav ul li.current-menu-item a:before,
header nav ul li.current-menu a:after,
header nav ul li.current-menu-item a:after {
	opacity: 1;
}



header .clock {
	float: left;
	margin-left: 42px;
}

.mobileMenu {
	display: none;
}

/* ZOOM */
.zoom {
	width: 100%;
	height: 100%;
	position: fixed;
	background: var(--secondary-color);
	top: 0;
	left: 0;
	z-index: 20;
	transition-property: opacity;
	opacity: 0;
	pointer-events: none;
	cursor: none;
}

.zoom.show {
	opacity: 1;
	pointer-events: initial;
}

.zoom .close {
	-webkit-appearance: none;
	appearance:  none;
	border: 0;
	display: block;
	width: 25px;
	height: 25px;
	background-color: transparent;
	background-image: url(../images/close.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
	right: 16px;
	top: 16px;
	position: absolute;
}

.zoom .area {
	width: 100%;
	height: 90%;
	position: absolute;
	left: 0;
	top: 5%;
}

.zoom .inner {
	width: 80%;
	height: 80%;
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 10%;
	transition-property: opacity;
	pointer-events: none;
	opacity: 0;
}

.zoom.loaded.show .inner {
	opacity: 1;
}

.zoom .inner .element {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
}

.zoom .inner img,
.zoom .inner video {
	position: relative;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.zoom .inner span {
	margin-top: var(--main-padding-space);
	color: var(--third-color);
}

.zoom .inner .element {
	display: none;
}

.zoom .inner .element.show {
	display: flex;
}

.customCursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	z-index: 20;
	mix-blend-mode: difference;
	color: white;
}

.customCursor span {
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	display: none;
	position: absolute;
}

.previous .customCursor span.previous,
.next .customCursor span.next,
.play .customCursor span.play,
.playing .customCursor span.pause {
	display: block;
}

.playing .customCursor span.play,
.customCursor.controls span.play,
.customCursor.controls span.pause {
	display: none !important;
}

.touchDevice .customCursor {
	display: none !important;
}

.plyr__controls {
	cursor: default;
}

/* FOOTER */
footer {
	width: 100%;
	display: block;
	padding-top: 85px;
	padding-bottom: 35px;
	overflow: hidden;
}

.footerContent .column {
	float: left;
	padding-right: var(--main-padding-space);
}

.footerContent .column a,
.footerContent .column a *,
.copyright div {
	display: inline-block;
}


.footerContent .column a:hover {
	color: var(--fourth-color);
}

.footerContent .column:nth-child(1),
.footerContent .column:nth-child(2) {
	width: 25%;
}

.footerContent .column:nth-child(3) {
	width: 50%;
	padding-left: 25%;
}

.footerContent .column .block {
	width: 100%;
	display: block;
	margin-bottom: 35px;
	float: left;
}

.footerContent .column .block > * {
	display: block;
	float: left;
}

.footerContent .column .block > .label {
	width: 35px;
}

.footerContent .column .block > .info > * {
	width: 100%;
	display: block;
	margin-bottom: 5px;
}

.footerContent .column .block > .info > *:last-child {
	margin-bottom: 0;
}

.footerContent .column:nth-child(3) a {
	color: var(--fourth-color);
}

.footerContent .column:nth-child(3) a:hover div {
	text-decoration: underline;
}

footer .tail {
	width: 100%;
	margin-top: 150px;
}

footer .tail .copyright {
	float: left;
}

footer .tail .credits {
	float: right;
}

footer .credits span {
	display: inline-block;
	margin-bottom: 5px;
}

.credits a {
	color: var(--fourth-color);
	border-bottom: 1px solid var(--fourth-color);
}

@media only screen and (max-width: 768px) {
	/*footer[data-scroll-section]{
		visibility: visible;
	}*/
	header .right {
		display: none;
	}

	header .logo,
	header .logo a,
	header .logo img {
		width: 100%;
		display: block;
	}

	.home header .logo a.normal,
	.home header .logo a {
		display: block;
		width: 100%;
	}

	header .logo a {
		transition: width .8s cubic-bezier(0.645, 0.045, 0.355, 1);
		-webkit-transition: width .8s cubic-bezier(0.645, 0.045, 0.355, 1);
		-moz-transition: width .8s cubic-bezier(0.645, 0.045, 0.355, 1);
		-o-transition: width .8s cubic-bezier(0.645, 0.045, 0.355, 1);
		-webkit-transform: translateZ(0);
		-moz-transform: translateZ(0);
		-ms-transform: translateZ(0);
		-o-transform: translateZ(0);
		transform: translateZ(0);
	}

	header .logo a.normal,
	header .logo.ready a,
	.home header .logo.ready a,
	header .logo a {
		width: 66%;
	}

	.menuBtn {
		-webkit-appearance: none;
		appearance: none;
		border: 0;
		background: transparent;
		display: block !important;
		position: absolute;
		right: var(--main-padding-space);
		z-index: 2;
		color: white;
		mix-blend-mode: difference;
		transition-property: color, opacity;
		opacity: 1;
	}

	.home .menuBtn {
		opacity: 0;
		pointer-events: none;
	}

	.home .menuBtn.ready {
		opacity: 1;
		pointer-events: initial;
	}

	.menuBtn:before {
		content: '[MENU]';
	}

	.menu-opened .menuBtn {
		mix-blend-mode: normal;
		color: var(--third-color);
	}

	.menu-opened .menuBtn:before {
		content: '[CLOSE]';	
	}

	.mobileMenu {
		display: block;
		position: fixed;
		z-index: 9;
		background: var(--secondary-color);
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		pointer-events: none;
		padding: 130px 0 32px;
		opacity: 0;
		overflow-y: scroll;
		scroll-behavior: smooth;
	}

	.mobileMenu .credits{
		display: none;
	}

	.menu-opened .mobileMenu {
		opacity: 1;
		pointer-events: initial;
	}

	.mobileMenu .menu nav {
		float: left;
		width: -webkit-calc(100% - 60px);
		width: calc(100% - 60px);
		margin-bottom: 40px;
	}

	.mobileMenu .menu nav li {
		margin-bottom: 40px;
	}

	.footerContent {
		float: left;
		width: 100%;
	}

	.footerMenu {
		display: none !important;
	}

	.mobileMenu .menu label {
		color: var(--third-color);
	}

	.mobileMenu .menu label,
	.footerContent .column .block > .label,
	.mobileMenu .footerContent .column .block > .label {
		width: 60px;
		float: left;
	}

	.mobileMenu .footerContent .column:nth-child(3),
	.copyright,
	.credits {
		padding-left: 60px;
	}

	.copyright,
	.credits {
		float: left !important;
		left: var(--main-padding-space);
		color: var(--third-color);
	}

	footer {
		float: left;
	}

	.footerContent .column {
		width: 100% !important;
		padding-right: 0;
	}

	.footerContent .column:nth-child(2) .block:first-child a {
		color: var(--fourth-color);
	}

	.footerContent .column:nth-child(3) {
		padding-left: 60px;
	}

	.footerContent .credits {
		padding-left: 0;
	}

	.copyright {
		display: block;
		float: left;
		margin-top: 0px;
		left: var(--main-padding-space);
		width: calc(100% - var(--main-padding-space));
	}
}