@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Anton|Buenard:400,700');
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:'Spectral', serif;
font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
*,
*::after,
*::before {
	box-sizing: border-box;
}

body {
	--color-text: #000;
	--color-bg: #fff;
	--color-link: #fff;
	--color-link-hover: #ccc;
	--color-info: #000;
	font-family: '', serif;
	min-height: 100vh;
	color: #57585c;
	color: var(--color-text);
	background-color: #fff;/*
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;*/
}

.preview-open {
	overflow: hidden;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
	text-decoration:none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin:100px 0 0 0;
	/*margin: 0 auto;*/
	fill: currentColor;
}

main {
	position: relative;
}

.content {
	position: relative;
	/*padding-left:80px;*/
}


/* Top Navigation Style */

.grid {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-bottom: 10rem;
}
#works{
	margin-top:300px;
}

.grid__item {
	display: flex;
	justify-content: center;
/*	margin: 0 0 10rem 0;
*/	cursor: pointer;
}

.box {
	position: relative;
/*	margin: 2rem;
*/}

.box__title {
	margin: 0;
	line-height: 1;
	position: absolute;
	z-index: 100;
}

.box__title-inner {
	display: block;
	position: relative;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 4.15rem;
	letter-spacing: 0.15rem;
	line-height: 1.25;
	font-family:'Spectral', serif;

}

.box__title-inner[data-hover] {
	-webkit-text-stroke: 2px #000;
	text-stroke: 2px #000;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
}

.box__title-inner::before {
	content: attr(data-hover);
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	overflow: hidden;
	white-space: nowrap;
	-webkit-text-stroke: 0;
	text-stroke: 0;
	-webkit-text-fill-color: #000;
	text-fill-color: #000;
	color: #000;
	transition: all 0.3s;
}

.grid__item:hover .box__title-inner::before {
	height: 100%;
	width: 100%;
}

.box__text {
	margin: 0;
	position: absolute;
	top: 1rem;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	font-size: 0.75rem;
	margin: 0.5rem 1rem;
	font-family: 'Spectral', serif;
	/*font-family: 'Anton', sans-serif;*/
}

.box__text-inner {
	position: relative;
	display: block;
	border: 6px solid var(--color-text);
	padding: 0.25rem 1.25rem;
	color:#FFF;
}

.box__text-inner--reverse {
	background: var(--color-text);
	color: var(--color-bg);
}

.box__img {
	display: block;
	flex: none;
	margin: 0 auto;
	max-width: 100%;
	filter: grayscale(1);
	transition: filter 0.3s;
	pointer-events: none;
}

.grid__item:hover .box__img:not(.box__img--original) {
	filter: grayscale(0);
}

/*.box__shadow {
	position: absolute;
	width: 100%;
	height: 100%;
	top: -1rem;
	left: -1rem;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAOklEQVQoU43MSwoAMAgD0eT+h7ZYaOlHo7N+DNHL2HAGgBWcyGcKbqTghTL4oQiG6IUpOqFEC5bI4QD8PAoKd9j4XwAAAABJRU5ErkJggg==);
}*/

.box__deco {
	font-size: 6rem;
	line-height: 1;
	font-weight: bold;
	position: absolute;
	bottom: -4rem;
	right: -4rem;
	display: none;
}

.box__content {
	position: absolute;
	max-width: 195px;
	font-size: 0.9rem;
	text-align: right;
	background-color:#000;
	display: none;
}

.box__content strong {
	white-space: nowrap;
}

.overlay {
	pointer-events: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	overflow: hidden;
	 }

.grid-bckgrd{
	position:relative;
	background-image:url(../../art%20-%20Copy/svg/maj-logo.svg);
	background-repeat:no-repeat;
	background-position:center;
	background-sizel:100%;
	z-index:0;	
}

.overlay--open {
	pointer-events: auto;
}

.overlay__reveal {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	position: absolute;
	z-index: 100;
	transform: translate3d(100%,0,0);
	background-color: #000;
}

.overlay__item {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0;
	display: flex;
	flex-direction: column;
    align-items: center;
    padding: 5rem 2vw;
    justify-content: center;
}

.overlay__item .box {
	max-width: 700px;
	max-height: 100%;
	margin: 100px 0 0 0;
}

.overlay__item .box__title {
	bottom: 0;
}

.box__img--original {
	max-height: calc(100vh - 10rem);
	filter: none;
}

.overlay__close {
	position: absolute;
	top: 80px;
	right: 0;
	background: none;
	border: 0;
	margin: 3rem;
	padding: 1rem;
	opacity: 0;
}

.overlay__close:focus {
	outline: none;
}

.overlay__content {
	font-size: 1.0rem;
	line-height: 1.5;
	margin: 25px;
}

@media screen and (min-width: 55em) {
	.grid {
		display: grid;
		align-items: center;
/*		padding: 3rem 3rem 15rem 3rem;
		grid-row-gap: 2rem;*/
		grid-template-columns: repeat(4,calc(100% / 4));
	}
	.grid__item {
		margin: 0;
	}
	.box {
		margin: 0rem;
	}
	.box__title {
		top: -4rem;
		right: -4.5rem;
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
	}
	.box__title--straight {
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
	}
	.box__title--straight .box__title-inner::before {
		width: 0;
		height: auto;
	}
	.box__title--bottom {
		bottom: -5rem;
		top: auto;
	}
	.box__title--left {
		left: -2rem;
		right: auto;
	}
	.box__text--topcloser {
		top: -5rem;
	}
	.box__text--bottom {
		bottom: -5rem;
		top: auto;
	}
	.box__text--bottomcloser {
		bottom: -5rem;
		top: auto;
	}
	.box__text--right {
		right: 0;
		left: auto;
	}
	.box__text-inner--rotated1 {
		transform: rotate(4deg);
	}
	.box__text-inner--rotated2 {
		transform: rotate(-3deg);
	}
	.box__text-inner--rotated3 {
		transform: rotate(-15deg);
	}
	.box__deco {
		display: block;
	}
	.box__deco--left {
		right: auto;
		left: -3rem;
	}
	.box__deco--top {
		top: 0;
		bottom: auto;
	}
	.overlay__item {
		flex-direction: row;
	}
	.overlay__content {
		font-size: 2.25rem;
		margin-top: 0 100px;
	}
	.overlay__item .box__title--bottom {
		bottom: 0;
	}
}

@media screen and (min-width: 80em) {
	.grid {
		grid-template-columns: repeat(4,25%);
	}
	.grid__item:nth-child(4n-2) {
		margin-top: -10rem;
		margin-bottom: 10rem;
	}
	.grid__item:nth-child(4n) {
		margin-top: -8rem;
	}
	.box {
/*		margin: 6rem 4.5rem;
*/	}
	.box__content {
		display: block;
	}
}

@media screen and (max-width: 55em) {
	.content {
		flex-direction: column;
		height: auto;
		min-height: 0;
	}
	.content--fixed {
		position: relative;
		z-index: 1000;
		display: block;
		padding: 0.85em;
	}
	.codrops-header {
		flex-direction: column;
		align-items: center;
		padding-bottom: 5rem;
	}
	.codrops-header__title {
		font-weight: bold;
		padding-bottom: 0.25em;
		text-align: center;
	}
	.info {
		margin: 0;
	}
	.github {
		display: block;
		margin: 1em auto;
	}
	.codrops-links {
		margin: 0;
	}
}

/* OEK  CSS  */

.maj-sign-top{
position:fixed;
float:left;
width:150px;
height:auto;
left:0px;
top:0px;
margin-top:30px;
margin-left:30px;
z-index:2000;
}

.title-left{
position:fixed;
float:left;
width:100px;
height:auto;
left:0px;
bottom:50px;
margin-top:0px;
margin-left:10px;
z-index:2000;
}

#stroke-top {
left: 0px;
top: 0px;
height: 50px;
width: 100%;
background-color: #000;
position: fixed;
z-index: 1016;
}
#stroke-bottom {
left: 0px;
bottom: 0px;
height: 50px;
width: 100%;
background-color: #000;
position: fixed;
z-index: 1015;
}
#stroke-right {
right: 0px;
bottom: 0px;
height: 100%;
width: 25px;
background-color: #000;
position: fixed;
z-index: 1014;
}
#stroke-left {
left: 0px;
bottom: 0px;
height: 100%;
width: 80px;
background-color: #000;
position: fixed;
-webkit-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
z-index: 1013;
}

.text-about {
	width:100%;
		font-weight: bold;
		padding-bottom: 0.25em;
		text-align: center;
		padding:50px;
	}
	
	#tabstop{
	position: fixed;
	top: 0;
	right: 0;
	font-weight: normal;
	text-transform: uppercase;
	margin: 15px 20px 20px 20px;
	font-size: 1.65rem;
	letter-spacing: 0.25rem;
	line-height: 1.25;
	font-family:'Spectral', serif;
	color: #fff;
	z-index: 400000;
	}
	
	#about{
	background-color:#FFF;
	}
	
	.cell-spacing01{
	position:relative;
/*	float:left;
*/	padding:60px 40px 40px 40px ;
	text-align:center;
	width:100%;
	}
	
.about-small{
font-family: 'Spectral', serif, italic;
font-size:14px;
text-align:center;
color:rgba(255,255,255,1);
letter-spacing:2pt;
line-height:2;
padding:50px 0 30px 0;
}

.about-small-footer {
font-family: 'Spectral', serif, italic;
font-size:14px;
text-align:center;
color:rgba(255,255,255,1);
letter-spacing:1pt;
line-height:2;
padding:50px;
float:left;
}

.about-big{
	font-family: 'Spectral', serif, italic;
font-weight:100;
font-size:30px;
text-align:center;
color:rgba(255,255,255,1);
padding: 100px 2px 100px 2px;
letter-spacing:4pt;
line-height:1.5;
}
.about-big-blanc{
	font-family: 'Spectral', serif, italic;
font-weight:100;
font-size:30px;
text-align:center;
color:rgba(255,255,255,1);
padding: 100px 2px;
letter-spacing:4pt;
line-height:1.5;
}
.about-small-noir {
font-family: 'Spectral', serif, italic;
font-size:14px;
text-align:center;
color:rgba(0,0,0,1);
letter-spacing:5pt;
line-height:2;
padding-top:50px;
padding:0px;
float:left;
}
.spacing01 {
/*	font-family: 'Spectral', serif, italic;
*/
font-weight:100;
font-size:30px;
text-align:center;
color:rgba(0,0,0,1);
padding:2px;
margin-top:-100px;
margin-bottom:10px;
letter-spacing:4pt;
line-height:1.5;
z-index:200;
}
.about-big-noir {
font-family: 'Spectral', serif, italic;
font-weight:100;
font-size:30px;
text-align:center;
color:rgba(0,0,0,1);
padding:100px 2px;
margin-top:150px;
/*margin-bottom:50px;*/
letter-spacing:4pt;
line-height:1.5;
}
.box-title-about {
	padding-bottom: 70px;
}

.box-bottom-callygraphy {
margin-bottom:-5px;
}

.textbio-noir {
font-family: 'Spectral', serif, italic;
font-size:18px;
color:rgba(0,0,0,1);
letter-spacing:1.4pt;
line-height:1.6;
}

.textbio-noir-jp {
font-family: 'Spectral', serif, italic;
font-size:15px;
color:rgba(0,0,0,1);
letter-spacing:1.4pt;
line-height:1.8;
}

.video-linkbox{
	position:relative;
font-family: 'Spectral', serif, italic;
font-size:16px;
color:rgba(255,255,255,1);
letter-spacing:1.8pt;
line-height:1.8;
background-color:rgba(0,0,0,0.5);
border:1px solid rgba(255,255,255,1);
padding:10px 30px;
text-align:center;
max-width:300px;
float: left;
margin:auto;
}

.language-boxes{
font-family: 'Spectral', serif, italic;
font-size:14px;
color:rgb(0, 0, 0);
letter-spacing:1.8pt;
line-height:1.8;
border:1px solid rgb(0, 0, 0);
padding:10px 30px;
}
.language-boxes-w{
	font-family: 'Spectral', serif, italic;
	font-size:14px;
	color:rgba(255,255,255,1);
	letter-spacing:1.8pt;
	line-height:1.8;
	border:1px solid rgba(255,255,255,1);
	padding:10px 30px;
	}

.news-boxes{
font-family: 'Spectral', serif, italic;
font-size:16px;
color:rgba(255,255,255,1);
letter-spacing:1.8pt;
line-height:1.8;
/*border:1px solid rgba(255,255,255,0.3);*/
padding:10px 50px;
margin:30px;
}

.news-boxes-white{
	font-family: 'Spectral', serif, italic;
	font-size:16px;
	color:rgb(0, 0, 0);
	letter-spacing:1.8pt;
	line-height:1.8;
	text-align: center;
	/*border:1px solid rgba(255,255,255,0.3);
	max-width: 900px;
	margin:30px; */
padding:100px 50px;
	background-color: rgba(255,255,255,1);
	position: relative;
	/*max-width: fit-content;
  margin-left: auto;
  margin-right: auto;*/
	}

.txt-top{
	font-family: 'Spectral', serif, italic;
	font-size:16px;
	color:rgba(255,255,255,1);
	letter-spacing:1.8pt;
	line-height:1.8;
	padding:10px 10px;
	margin:30px;
	float: left;
	}

	.biobox{
		font-family: 'Spectral', serif, italic;
		font-size:12px;
		color:rgb(0, 0, 0);
		letter-spacing:1.8pt;
		line-height:1.8;
		padding:10px 10px;
		margin:10px;
		float: left;
		}

.news-boxes-noir{
font-family: 'Spectral', serif, italic;
font-size:16px;
color:rgba(255,255,255,1);
letter-spacing:1.8pt;
line-height:1.8;
/*border:1px solid rgba(255,255,255,0.3);*/
background-color:rgba(0,0,0,1);
padding:10px 50px;
margin:30px;
}

.biobox{
	position:relative;
margin:100px 0;
}

.oek-insta{
position:fixed;
bottom:15px;
left:15px;
z-index:20000;
}

.copyright{
	font-family: 'Spectral', serif, italic;
font-size:14px;
color:rgb(255, 255, 255);
text-align:center;
	line-height:1.5;
letter-spacing:1.4pt;
margin-bottom:0px;
padding-bottom: 50px;
}

.thumbnailoek{
		position:relative;
	padding:10px;
	font-family: 'Spectral', serif, italic;
font-size:14px;
	line-height:1.5;
text-align:center;
color:rgba(255,255,255,1);
}

#coverpict{
	display:none;
	}
	
	.item_top {
	top: -50px;
	padding-right: 0px;
	opacity: 0;
	position: relative;
}
.item_bottom {
	bottom: -50px;
	padding-left: 0px;
	opacity: 0;
	position: relative;
}
.item_left {
	left: -80px;
	padding-right: 0px;
	opacity: 0;
	position: relative;
}
.item_right {
	right: -80px;
	padding-left: 0px;
	opacity: 0;
	position: relative;
}
.item_fade_in {
	opacity: 0;
	position: relative;
	padding-left: 0px;
	right: 0px;
}


.news-boxes-noir{
/*font-family: 'Spectral', serif, italic;
*/font-size:16px;
color:rgba(255,255,255,1);
border-radius:20px;
letter-spacing:2pt;
line-height:2;
/*border:1px solid rgba(255,255,255,0.3);*/
background-color:rgba(0,0,0,1);
padding:10px 10px;
margin:30px;
text-align:center;
text-decoration:none;
		-webkit-transition: -webkit-transform 0.3s;
		-moz-transition: -moz-transform 0.3s;
		transition: transform 0.3s;

}


.news-boxes-noir a{
/*font-family: 'Spectral', serif, italic;
*/font-size:16px;
color:rgba(0,0,0,1);
letter-spacing:2pt;
line-height:2;
/*border:1px solid rgba(255,255,255,0.3);*/
background-color:rgba(0,0,0,1);
border-radius:20px;
padding:10px 10px;
margin:30px;
text-align:center;
text-decoration:none;
		-webkit-transition: -webkit-transform 0.3s;
		-moz-transition: -moz-transform 0.3s;
		transition: transform 0.3s;

}

.news-boxes-noir:hover{
/*font-family: 'Spectral', serif, italic;
*/font-size:16px;
color:rgba(255,255,255,1);
letter-spacing:2pt;
line-height:2;
/*border:1px solid rgba(255,255,255,0.3);*/
background-color:rgba(0,0,0,1);
border-radius:20px;
padding:10px 10px;
margin:30px;
text-align:center;
text-decoration:none;
		-webkit-transition: -webkit-transform 0.3s;
		-moz-transition: -moz-transform 0.3s;
		transition: transform 0.3s;

}

.VisualArtist{
position:absolute;
top:0;
right:0;
margin-top:300px;
margin-right:30px;
z-index: 100;
}

.KOUASSItitle{
	position:absolute;
	top:300px;
	left:30px;
	margin-top:0px;
	margin-left:0px;
	z-index: 100;	
}

.titleEvent{
	position:absolute;
	top:600px;
	left:0;
	margin-top:0px;
	margin-left:100px;
	z-index: 100;	
}