@import url('https://fonts.googleapis.com/css?family=Inconsolata:400,700');
@import url("font-awesome/css/font-awesome.min.css");
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:monospace,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;
}
:root{
	--color-text: #cfff49;
	--color-bg:  #131313;
	--color-link: #c7a484; 
	--color-link-hover: rgb(46, 252, 5);
	--color-logo-bg:  #D7D9CE;
	/* --color-intro__logo: rgba(189, 94, 31, 0.877); */
	--color-intro__logo: #ff3c00;
	--color-pome: #2b1722;
}
body {
    overflow: hidden;
	font-family: 'Inconsolata', monospace;
	height: 100vh;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

a:hover,
a:focus {
	outline: none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: 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;
    cursor: default;
}

/*============================================= background experiment */

#experiments {
	margin: 0 auto;
	padding-bottom: 40px;
	width: 100%;
  }
  
  .experiment {
	overflow: hidden;
  }
  
  .experiment-link {
	cursor: pointer;
	color: var(--color-link);
  }
  
  .experiment-link:hover {
	/* color: var(--color-link-hover); 
	background: var(--color-link-hover);*/
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .experiment-link.visible {
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  #background {
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	transition: all 2000ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  #background.visible {
	opacity: 1;
  }
/*============================================= icons */

.intro__logo {
	background: transparent;
	display: flex;
	align-items: center;
	color: var(--color-intro__logo);
	pointer-events: auto;
	cursor: pointer;
}

.icon {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	margin: 0 auto;
	fill: currentColor;
}

.icon--inline {
	display: inline-block;
	width: 0.75em;
	height: 0.65em;
}

.icon--light {
	color: #5cad7c;
}

.icon--arrow {
	margin: 0.5rem auto;
	/* -webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	transform: rotate3d(0,0,1,270deg); */
	display: flex;
	width: 2rem;
	height: auto;
}
.icon--arrow:hover {
	fill:var(--color-pome);
}

.icon--arrowup {
	width: 1.25rem;
	height: 1.25rem;
}

.icon--arrowup:hover {
	fill:var(--color-pome);
}

.eris{
	color: var(--color-link);
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	transform: rotate3d(0,0,1,180deg);
	font-size: 1em;
	position:relative;
	top: 0;
	right: 0;

}

.enter-arrow {
	color: var(--color-link);
	display: inline-block;
}


/*=============================================Icon Fade */

.hvr-icon-fade {
font-size: 0.8em;
position: relative;
z-index: 1
;
  }
  .hvr-icon-fade:before {

      transition: color 0.5s ease-in-out;
      -webkit-transition: color 0.5s ease-in-out;
  }
  .hvr-icon-fade:hover:before, .hvr-icon-fade:focus:before, .hvr-icon-fade:active:before {
	color: var(--color-pome);
	
  }
  

/*============================================= intro */

.no-js .intro {
	position: absolute;
}

.intro__box,
.intro__logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	background: var(--color-pome);
	opacity: 1;
}

.intro__box {
	transform-origin: 0 0;
	z-index: 0;
}

.no-js .intro__box {
	width: 100%;
	height: 100vh;
}

.intro__logo-text {
	font-weight: normal;
	position: absolute;
	width: 100%;
	top: 100%;
	text-align: center;
	margin: 0;
	padding: 0.25rem 0 0 0;
	font-size: 0.85rem;
	opacity: 0;
}

.intro {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.intro__title {
	font-size: 10vw;
	letter-spacing: -0.15rem;
	margin: 0 0 1.5rem;
	line-height: 0.5;
	text-transform: lowercase;
}

.intro__title-wrap {
	text-align: center;
	position: relative;
	z-index: 100;
	margin-top: 6rem;
}

.intro__title__type {
	font-size: 2rem;
	letter-spacing: -0.15rem;
	margin: 0;
	line-height: 0;
	text-transform: lowercase;
}

.intro__subtitle {
	margin: 1.25rem 0;
	font-size: 0.85rem;
}

.intro__subtitle-wrap {
	text-transform: lowercase;
}

.intro__info {
	margin: 1.25rem 0;
	font-size: 0.85rem;
}

.no-js .intro__enter {
	display: none;
}

.intro__content {
	position: relative;
	text-align: center;
	max-width: 300px;
	margin: 0 auto;
}

.intro__content--second {
	display: none;
}

.intro__content-title {
	text-transform: lowercase;
	font-size: 1.5rem;
	line-height: 0.5;
	font-weight: normal;
	display: none;
	margin: 0;
}

.intro__content-title::before {
	content: '\2015';
	margin: 0 1rem 0;
	font-size: 1.25rem;
}

.intro__content-text {
	font-size: 0.85rem;
}

.intro__location {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 0.85rem;
}


/*============================================= intro */
@media screen and (min-width: 67em) {

	.intro {
		display: grid;
		align-items: start;
		grid-template-columns: repeat(4,25%);
		grid-template-rows: 40% 60%;
	}
	
	.intro__title {
		font-size: 5rem;
	}
	
	.intro__title-wrap {
		grid-area: 2 / 1 / 2 / 3;
		justify-self: end;
		align-self: stretch;
		text-align: right;
		margin: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.intro__enter {
		margin: auto 0 0 0;
	}

	.intro__content {
	max-width: none;
	text-align: right;
	}

	.intro__content--second {
		grid-area: 1 / 2 / 1 / 3;
		display: block;
	}

	.intro__content-title {
		display: block;
	}

	.intro__location {
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
		grid-area: 2 / 4 / 2 / 4;
		align-self: start;
		justify-self: end;
		margin-bottom: 3rem;
	}
	
	.intro__content--forth {
			grid-area: 1 / 4 / 1 / 5;
		}
}	
/*============================================= grid */

main {
	position: relative;
	width: 100%;
}

.content {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	margin: auto;
	max-width: 1920px;
	min-height: 600px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-flex: 0;
	-ms-flex: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	flex: none;
	position: relative;
}

.no-js .content {
    top: 100vh;
}

/*============================================= main page */
.section {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 4.20rem auto;
	width: 90%;
	height: 90%;
	max-width: 1024px; 
	text-align: center;
}

.slideshow-img {
	overflow: visible;
	width: 50%;
	right: 0;
	position: absolute;
	/* border: 10px solid black;
	border-radius: calc(11.0704225352px + 420px * .0131455399); */
}

.text-left {
	left: 0%;
	text-align:right;
	position: absolute;
	font-size: clamp(1.2rem, 4.8vw, 2.4rem);
	width: 62%;
	bottom: 7.5%;
	letter-spacing: 0.2rem;
	word-spacing: 0.8rem;
}
/* Adjust the layout for smaller screens */
@media screen and (max-width: 50em) {
	.text-left {
		width: 80%;
		left: 7%;
		top: 2.25rem;
	}

	.slideshow-img {
		left: 4.20%;
	}
}
.text-left::before {
	content: '█  bgall	▓';
	position: relative;
	top: 0;
	left: 0;
	margin: 0 1rem 0;
	height: 4.20rem;
	width: 4.20rem;
	background: #131313;
} 

.text-left::after {
	content: '░▒░▒░ ░▓';
	position: relative;
	bottom: 0;
	right: calc(5vh + 4rem);
	margin: 1rem;
	font-size: 7em;
	line-height: 0.5;
	color: #131313;
	word-spacing: 2em;
} 

.deco-bg {
	line-height: 1.6;
}

.deco-bg--color-2 {
	background: -webkit-linear-gradient(bottom, #303035 90%, transparent 90%, transparent);
	background: linear-gradient(to top, #303035 90%, transparent 90%, transparent);
}

.deco-bg--color-4 {
	background: -webkit-linear-gradient(bottom, #0c1d0b 90%, transparent 90%, transparent);
	background: linear-gradient(to top, #0c1d0b 90%, transparent 90%, transparent);
}

/*============================================= social menu */

.big {
	font-size: 1.82em;
	letter-spacing: 0.42em;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	text-align:right; 
}

.big::after {
	content: 'π';
	position: relative;
	top: 35%;
	left: 180%;
	margin: 1rem;
	font-size: 1.420rem;
	letter-spacing: normal;
	color: #11420b;
} 

/*============================================= image fragments */
.fragment-wrap {
	width: 42vw;
	height: 80vh;
	max-width: 800px;
	max-height: 1000px;
	min-height: 550px;
	position: relative;
	margin: 0 0 0 1.2vw;
}

.fragment,
.fragment__piece {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.fragment {
	transition: transform 0.2s ease-out;
}

.fragment-wrap,
.fragment__piece {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 0%;
}

@media screen and (max-width: 50em) {
	.fragment-wrap {
		width: 80vw;
		margin: 0;
	}
}