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{-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-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-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;
}

html, body {
	height: 100%;
}

@font-face {
	font-family: 'GT Walsheim Regular';
	src: url('/public/fonts/GT-Walsheim-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

body {
	--color-text: #31DA0B;
	background-image: url("/public/images/bg.jpg");
	background-size: cover;
	--color-link: #31DA0B;
	--color-title: #31DA0B;
	--img-maxwidth: 250px;
	--blendmode-title: difference;
	--filter-img: none;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: 'GT Walsheim Regular', sans-serif !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 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);
	}
}

.frame {
	padding: 1rem;
	text-align: center;
	position: relative;
	z-index: 1000;
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
		'pagetitle'
		'...'
		'title'
		'footer';
	align-self: start;
}

.frame__title {
	font-size: 24px;
	margin: 0 0 1rem;
}

.content {
	height: 300px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	isolation: isolate;
}

.content__title {
	font-family: 'GT Walsheim Regular', sans-serif;
	font-weight: 700;
	position: relative;
	z-index: 10000;
	font-size: 23vw;
	mix-blend-mode: var(--blendmode-title);
	-webkit-text-stroke: 2px var(--color-title);
	text-stroke: 2px var(--color-title);
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
	pointer-events: none;
}

.content__img {
	max-width: var(--img-maxwidth);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	will-change: transform;
	filter: var(--filter-img);
}

.content__img--full {
	width: 100%;
	height: 100%;
	background-size: cover;
}

.auto {
	height: 100%;
	width: 100%;
	padding: 0 80px 0 80px;
	position: relative;
	z-index: 10000;
	-webkit-text-stroke: 2px var(--color-title);
	text-stroke: 2px var(--color-title);
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}



.left {
	text-align: left;
}
.left a {
	text-align: left;
	color: var(--color-text);
	text-decoration: none !important;
}
.left a:hover {
	text-decoration: underline !important;
}

.right {
	text-align: right;
	color: #00000066;
}

.frame__footer-wrap {
	align-items: flex-start;
}

.frame__footer-wrap .right {
	text-align: right;
	width: 100%;
}


@media only screen and (max-width: 850px) {

	:root {
		font-size: 18px;
	}

	body {
		overflow: hidden;
	}

	.message {
		display: none;
	}

	.frame {
		position: fixed;
		text-align: left;
		z-index: 10000;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100vh;
		padding: 2rem;
		pointer-events: none;
		grid-template-rows: auto 1fr auto;
		grid-template-areas:
			'pagetitle'
			'content'
			'title'
			'footer';
	}

	.frame__pagetitle {
		grid-area: pagetitle;
		margin: 0;
	}

	.frame__title-wrap {
		grid-area: title;
		display: flex;
		font-size: 24px;
	}

	.frame__footer-wrap {
		grid-area: footer;
		display: flex;
	}

	.frame__title {
		margin: 0;
		font-weight: normal;
	}

	.content {
		grid-area: content;
		height: 100vh;
		overflow: hidden;
	}

	.finger-message {
		display: none;
	}
}
@media screen and (orientation: landscape) and (max-width: 1050px) {
	.auto {
		height: 100%;
		width: 400px;
		padding: 0 80px 0 80px;
		position: relative;
		z-index: 10000;
		-webkit-text-stroke: 2px var(--color-title);
		text-stroke: 2px var(--color-title);
		-webkit-text-fill-color: transparent;
		text-fill-color: transparent;
		color: transparent;
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.3s ease-in-out;
	}

	.frame {
		position: fixed;
		text-align: left;
		z-index: 10000;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100%;
		padding-bottom: 0px;
		pointer-events: none;
		grid-template-rows: auto 1fr auto;
		grid-template-areas: 'pagetitle' 'content' 'title' 'footer';
	}
	.content {
		grid-area: content;
		display: flex;
		justify-content: center;
		align-items: center;
		height: calc(100vh - 4rem);
		overflow: hidden;
	}
	.content__img {
		max-width: 125px;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		will-change: transform;
		filter: var(--filter-img);
	}

	.finger-message {
		position: fixed;
		top: -60px;
		left: 50%;
		transform: translateX(-50%);
		color: var(--color-title);
		padding: 15px 30px;
		font-size: 20px;
		opacity: 0;
		pointer-events: none;
		z-index: 1000;
		transition: opacity 1s ease-in-out, transform 1s ease-in-out;
	}

	.finger-message.show {
		opacity: 1;
		transform: translateX(-50%) translateY(100px);
	}

	.finger-message.remove {
		opacity: 0;
		transform: translateX(-50%) translateY(-60px);
		transition: opacity 1s ease-out, transform 1s ease-out;
	}

	.finger-message {
		display: block;
	}

	.frame__title-wrap {
		font-size: 12px;
	}

	.frame__title {
		margin: 0;
		font-weight: normal;
		font-size: 16px;
	}

	.frame__footer-wrap {
		align-items: flex-start;
		font-size: 10px;
	}

	.frame__footer-wrap .right {
		text-align: right;
		width: 100%;
	}

}
@media only screen and (max-width: 650px) {

	:root {
		font-size: 16px;
	}

	body {
		overflow: hidden;
	}

	.message {
		display: none;
	}

	.frame {
		position: fixed;
		text-align: left;
		z-index: 10000;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100%;
		padding: 2rem;
		padding-bottom: 0px;
		pointer-events: none;
		grid-template-rows: auto 1fr auto;
		grid-template-areas: 'pagetitle' 'content' 'title' 'footer';
	}

	.frame__pagetitle {
		grid-area: pagetitle;
		margin: 0;
		
	}

	.frame__title-wrap {
		grid-area: title;
		font-size: 16px;
	}

	.frame__footer-wrap {
		grid-area: footer;
	}
	.frame__footer-wrap {
		align-items: flex-start;
		font-size: 12px;
	}
	.frame__footer-wrap .right {
		text-align: right;
		width: 100%;
	}

	.frame__footer-wrap .left {
		text-align: left;
		width: 100%;
	}

	.frame__title {
		margin: 0;
		font-weight: normal;
		font-size: 16px;
	}

	.content {
		grid-area: content;
		display: flex;
		justify-content: center;
		align-items: center;
		height: calc(100vh - 4rem);
		overflow: hidden;
	}

	.content__img {
		max-width: 125px;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		will-change: transform;
		filter: var(--filter-img);
	}
	.finger-message {
		position: fixed;
		top: -60px;
		left: 50%;
		transform: translateX(-50%);
		color: var(--color-title);
		padding: 15px 30px;
		font-size: 20px;
		opacity: 0;
		pointer-events: none;
		z-index: 1000;
		transition: opacity 1s ease-in-out, transform 1s ease-in-out;
	}

	.finger-message.show {
		opacity: 1;
		transform: translateX(-50%) translateY(100px);
	}

	.finger-message.remove {
		opacity: 0;
		transform: translateX(-50%) translateY(-60px);
		transition: opacity 1s ease-out, transform 1s ease-out;
	}
	.finger-message {
		display: block;
	}
}


@media screen and (min-width: 53em) {

	body {
		overflow: hidden;
	}

	.message {
		display: none;
	}

	.frame {
		position: fixed;
		text-align: left;
		z-index: 10000;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100vh;
		padding: 2rem;
		pointer-events: none;
		grid-template-rows: auto 1fr auto;
		grid-template-areas:
			'pagetitle'
			'...'
			'title'
			'footer';
	}
	.frame__pagetitle {
		grid-area: pagetitle;
		margin: 0;
	}	

	.frame__title-wrap {
		grid-area: title;
		display: flex;
	}

	.frame__footer-wrap {
		grid-area: footer;
		display: flex;
	}

	.frame__title {
		margin: 0;
		font-weight: normal;
	}

	.content {
		height: 100vh;
		overflow: hidden;
	}
	.finger-message {
		display: none;
	}
}
