/* Font Face */
@font-face {
	font-family: 'VCR_M';
	src:
		url('/assets/fonts/VCROSDMono.woff2') format('woff2'),
		url('/assets/fonts/VCROSDMono.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'S_M';
	src:
		url('/assets/fonts/SuisseIntlMono-Regular.woff2') format('woff2'),
		url('/assets/fonts/SuisseIntlMono-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'H_G_D';
	src:
		url('/assets/fonts/HaasGrotDisp-45Light.woff2') format('woff2'),
		url('/assets/fonts/HaasGrotDisp-45Light.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'C';
	src:
		url('/assets/fonts/Canela-Thin.woff2') format('woff2'),
		url('/assets/fonts/Canela-Thin.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'B_S';
	src:
		url('/assets/fonts/Brokenscript-BoldCond.woff2') format('woff2'),
		url('/assets/fonts/Brokenscript-BoldCond.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* Theme */
:root {
	--theme-font-type_01: 'H_G_D', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
	--theme-font-type_02: 'S_M', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
	--theme-font-type_03: 'VCR_M', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
	--theme-font-type_04: 'C', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
	--theme-font-type_05: 'B_S', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;

	--theme-color_01: #000000;
	--theme-color_02: #ffffff;
	--theme-color_03: #fbff96;
	--theme-color_04: #484747;
	--theme-color_05: #000000;

	--theme-web_margin: 24px;
	--theme-radius_8: 8px;
	--theme-overlay-background: rgba(0, 0, 0, 0.5);
	--theme-overlay-blur: 12px;
	--theme-transition-duration: 0.25s;

	--theme-font_size_8: 0.6vw;
	--theme-font_size_16: 0.75vw;
	--theme-font_size_20: 1vw;
	--theme-font_size_24: 1vw;
	--theme-font_size_32: 1.25vw;
	--theme-font_size_40: 1.5vw;
	--theme-font_size_42: 1.75vw;
	--theme-font_size_56: 2.5vw;
}

@media only screen and (max-width: 767px) {
	:root {
		--theme-font_size_8: 2.5vw;
		--theme-font_size_16: 2.75vw;
		--theme-font_size_20: 4vw;
		--theme-font_size_24: 4vw;
		--theme-font_size_32: 4.25vw;
		--theme-font_size_40: 4.5vw;
		--theme-font_size_42: 4.75vw;
		--theme-font_size_56: 5.25vw;
	}
}

/* General */
::-moz-selection {
	background: transparent !important;
	color: var(--theme-color_03) !important;
}

::selection {
	background: transparent !important;
	color: var(--theme-color_03) !important;
}

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	box-sizing: border-box;
	-webkit-user-drag: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-overflow-scrolling: touch;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: 100%;
}

:after,
:before {
	box-sizing: border-box;
}

html,
body {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	overflow: hidden !important;

	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

html {
	background: var(--theme-color_01);
	color: var(--theme-color_02);
}

html:not(.yes-touch) * {
	cursor: none !important;
}

html.yes-touch {
	-webkit-user-select: none;
}

html {
	font-size: 14px;
	line-height: 1.6em;
	background: var(--theme-color_01);
}

body {
	font-family: var(--theme-font-type_01) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
}

a {
	position: relative;
	display: inline-block;
	cursor: pointer;
	border: none;
	-webkit-appearance: none;
	outline: none;
	color: var(--theme-color_02);
	text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
	a:hover,
	a.shuffle-effect:hover > span:last-child {
		color: var(--theme-color_03);
	}
}

a:focus-visible,
button:focus-visible {
	outline: 1px solid var(--theme-color_02);
	outline-offset: 2px;
}

img {
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::after,
	*::before {
		scroll-behavior: auto !important;
		-webkit-animation-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Shuffle effect */
.shuffle-effect > span:first-child {
	position: relative;
	color: transparent !important;
	white-space: nowrap;
}

.shuffle-effect > span:last-child {
	position: absolute;
	bottom: 0px;
	left: 0px;
	color: var(--theme-color_02);
	white-space: nowrap;
}

/* Swiper - Lazyload */
.swiper-lazy-preloader {
	display: none !important;
}

/* Canvas Cursor */
html.yes-touch #canvas-cursor {
	display: none !important;
}

#canvas-cursor {
	position: absolute;
	pointer-events: none;
	width: 1px;
	height: 1px;
	z-index: 9999999;

	mix-blend-mode: difference;

	display: none;
}

html.no-touch.template-loaded #canvas-cursor.active {
	display: block !important;
}

#cursor-pointer {
	position: fixed;
	pointer-events: none;
	left: 0;
	top: 0;
	width: 1px;
	height: 1px;
	background-position: center center;
	display: block;

	transition: transform 0.15s;

	transform: rotate(-20deg);
}

#cursor-pointer:before {
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -2vw;
	top: 0px;
	width: 4vw;
	height: 4vw;
	background-position: center center;
	display: block;

	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('/assets/img/JPuche-Cursor_Default-Alt_05.svg?v=1.0');
}

html.cursor-link #cursor-pointer {
	transform: rotate(0deg);
}

html.cursor-right #cursor-pointer {
	transform: rotate(90deg);
}

html.cursor-left #cursor-pointer {
	transform: rotate(90deg) scaleY(-1);
}

/* Canvas Site */
#canvas-site {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	overflow: hidden;
}

/* Canvas loader */
html.template-loading {
	pointer-events: none !important;
}

#canvas-loader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	overflow: hidden;

	z-index: 9999999999;
	pointer-events: none;

	background: rgba(0, 0, 0, 0.7);
}

.canvas-loader-part {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;

	z-index: 9999999;
	mix-blend-mode: difference;
	transform: translate(-50%, -50%);
}

.canvas-loader-part img {
	position: relative;
	display: block;
	width: 90%;
	max-width: 1024px;
	margin: auto;
}

#canvas-loader-progress {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background: var(--theme-color_02);
}

#canvas-loader-progress-tag {
	position: absolute;
	bottom: 24px;
	left: 24px;

	font-family: var(--theme-font-type_02) !important;
	font-size: var(--theme-font_size_16);
	line-height: var(--theme-font_size_20);
	text-transform: uppercase;
	white-space: nowrap;

	color: var(--theme-color_01);
}

/* Canvas Top */
#canvas-top {
	position: absolute;
	z-index: 99999;
}

#top-logo {
	position: fixed;
	left: var(--theme-web_margin);

	display: flex;
}

#top-logo img {
	width: auto;
	height: var(--theme-font_size_20);
}

#top-target-link {
	position: absolute;
	left: 0px;
	width: 100%;

	top: var(--theme-web_margin);
	font-family: var(--theme-font-type_04) !important;
	font-size: var(--theme-font_size_56);
	line-height: var(--theme-font_size_56);

	color: var(--theme-color_03);
	white-space: nowrap;

	display: none !important;
}

#top-logo.active-target-link a {
	display: none !important;
}

#top-logo.active-target-link #top-target-link {
	display: block !important;
}

#top-menu {
	position: fixed;
	right: var(--theme-web_margin);

	font-family: var(--theme-font-type_02) !important;
	font-size: var(--theme-font_size_16);
	line-height: var(--theme-font_size_20);

	text-transform: uppercase;
}

#top-menu ul {
	list-style: none !important;
}

#top-menu ul li {
	display: inline;
	text-align: right;
}

#top-logo a,
#top-menu a {
	padding-top: var(--theme-web_margin);
	padding-bottom: var(--theme-web_margin);
}

#top-menu a.shuffle-effect > span:last-child {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
}

@media (hover: hover) and (pointer: fine) {
	#top-menu ul li:hover a {
		color: var(--theme-color_03);
	}
}

#top-menu ul li a:after,
.content[data-barba-namespace='templateAbout'] a:after {
	position: absolute;
	display: block;
	content: '';

	bottom: -0.01em;
	width: 100%;
	height: 1px;
	background: var(--theme-color_02);
}

#top-menu ul li a:after {
	top: 50%;
	bottom: auto;
	margin-top: 0.6em;
}

body.templatePortfolio #top-menu #menu-link-portfolio,
body.templateAbout #top-menu #menu-link-about {
	pointer-events: none !important;
}

body.templatePortfolio #top-menu #menu-link-portfolio.shuffle-effect > span:last-child,
body.templateAbout #top-menu #menu-link-about.shuffle-effect > span:last-child {
	color: var(--theme-color_03) !important;
}

#top-timer {
	position: fixed;
	right: var(--theme-web_margin);
	bottom: var(--theme-web_margin);

	font-family: var(--theme-font-type_02) !important;
	font-size: var(--theme-font_size_16);
	line-height: var(--theme-font_size_20);
}

body.templatePortfolio #top-timer {
	top: var(--theme-web_margin);
	right: auto;
	bottom: auto;
	left: 50%;
	transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
	#top-timer,
	body.templatePortfolio #top-timer {
		top: auto;
		left: 50%;
		right: auto;
		bottom: var(--theme-web_margin);
		transform: translateX(-50%);
	}
}

/* Canvas Bottom */
#canvas-bottom {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 1;
}

#bottom-glitch,
#bottom-glitch:before {
	position: absolute;
	width: 1500%;
	height: 100%;
	top: 0px;
	left: 0%;
	bottom: 0px;

	z-index: 2;
}

#bottom-glitch:before {
	content: '';
	display: block;
	background-repeat: repeat;
	background-size: 200px;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	-webkit-animation: backgroundMeme 0.075s infinite;
	animation: backgroundMeme 0.075s infinite;
}

#bottom-glitch {
	opacity: 0;
	background: var(--theme-color_01);
	pointer-events: none;
}

html.transition-active #canvas-mid {
	opacity: 0;
}

html.transition-active #bottom-glitch {
	opacity: 1;
}

@media only screen and (max-width: 767px) {
	#bottom-glitch:before {
		background-size: 75px;
	}
}

/* Canva Mid */
#canvas-mid,
.content {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	overflow: hidden;
	visibility: visible !important;
	z-index: 2;
}

/* Content */

/* Portfolio */
.content[data-barba-namespace='templatePortfolio'] {
	background-size: 200px;
	background-position: center center;
	overflow-x: hidden;
	overflow-y: auto;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--theme-web_margin);
	width: calc(100% - (var(--theme-web_margin) * 2));
	max-width: 1848px;
	margin: 0 auto;
	padding-top: 144px;
	padding-bottom: 288px;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card {
	position: relative;
	aspect-ratio: 600 / 750;
	overflow: hidden;
	background: var(--theme-color_05);
	border-radius: var(--theme-radius_8);
	box-shadow: 0 0 0 1px #202020;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper {
	position: relative;
	width: 100%;
	height: 100%;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info {
	position: absolute;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 86px var(--theme-web_margin);
	z-index: 9;

	background: rgba(0, 0, 0, 0.75);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--theme-transition-duration);
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info h2 {
	font-family: var(--theme-font-type_04) !important;
	font-size: var(--theme-font_size_32);
	line-height: 1.15;
	text-wrap: balance;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info p {
	margin-top: var(--theme-web_margin);
	font-size: var(--theme-font_size_24);
	line-height: 1.15;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-toggle {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: auto;
	right: var(--theme-web_margin);
	bottom: var(--theme-web_margin);
	padding-top: 11px;
	padding-bottom: 13px;
	z-index: 11;

	border: 0;
	border-radius: var(--theme-radius_8);
	background: var(--theme-overlay-background);
	-webkit-backdrop-filter: blur(var(--theme-overlay-blur));
	backdrop-filter: blur(var(--theme-overlay-blur));
	color: var(--theme-color_02);

	font-family: var(--theme-font-type_02) !important;
	font-size: 12px;
	line-height: 1em;
	transition: opacity var(--theme-transition-duration);
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-toggle-symbol {
	display: inline-block;
	width: 1ch;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-toggle-symbol:before {
	content: '+';
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-toggle:active {
	outline: none;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-toggle:after {
	display: none;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-toggle[aria-expanded='true'] .portfolio-card-info-toggle-symbol:before {
	content: 'x';
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-active .portfolio-card-info {
	opacity: 1;
	pointer-events: auto;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	left: 50%;
	bottom: var(--theme-web_margin);
	padding: 0px 8px;
	transform: translateX(-50%);
	z-index: 10;

	background: var(--theme-overlay-background);
	-webkit-backdrop-filter: blur(var(--theme-overlay-blur));
	backdrop-filter: blur(var(--theme-overlay-blur));
	border-radius: var(--theme-radius_8);

	font-family: var(--theme-font-type_02) !important;
	font-size: 12px;
	line-height: 1em;
	white-space: nowrap;
	transition: opacity var(--theme-transition-duration);
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination .swiper-pagination-bullet {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	max-width: 24px;
	min-width: 0;
	margin: 0 !important;
	border-radius: 0;
	background: none;
	opacity: 1;
	color: var(--theme-color_02);
	overflow: hidden;
	padding-top: 11px;
	padding-bottom: 13px;
	transform: translateX(0);
	transition:
		max-width var(--theme-transition-duration),
		opacity var(--theme-transition-duration),
		transform var(--theme-transition-duration);
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination .portfolio-card-pagination-bullet-hidden {
	max-width: 0;
	opacity: 0;
	pointer-events: none;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination .portfolio-card-pagination-bullet-previous {
	transform: translateX(-4px);
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination .portfolio-card-pagination-bullet-next {
	transform: translateX(4px);
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination .swiper-pagination-bullet::after,
.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination .swiper-pagination-bullet::before {
	position: relative;
	opacity: 0;
	content: '(';
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination .swiper-pagination-bullet::after {
	content: ')';
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination .swiper-pagination-bullet-active::after,
.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination .swiper-pagination-bullet-active::before {
	opacity: 1;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-active .portfolio-card-pagination {
	opacity: 0;
	pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
	.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-toggle,
	.content[data-barba-namespace='templatePortfolio'] .portfolio-card-pagination {
		opacity: 0;
		pointer-events: none;
	}

	.content[data-barba-namespace='templatePortfolio'] .portfolio-card:hover .portfolio-card-info-toggle,
	.content[data-barba-namespace='templatePortfolio'] .portfolio-card:hover .portfolio-card-pagination,
	.content[data-barba-namespace='templatePortfolio'] .portfolio-card:focus-within .portfolio-card-info-toggle,
	.content[data-barba-namespace='templatePortfolio'] .portfolio-card:focus-within .portfolio-card-pagination {
		opacity: 1;
		pointer-events: auto;
	}

	.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-active:hover .portfolio-card-pagination,
	.content[data-barba-namespace='templatePortfolio'] .portfolio-card-info-active:focus-within .portfolio-card-pagination {
		opacity: 0;
		pointer-events: none;
	}
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper .swiper-slide {
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;

	z-index: 8;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper .swiper-slide .project-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper .swiper-slide .project-wrapper .project-image,
.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper .swiper-slide .project-wrapper .project-video {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center center;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper .swiper-slide .project-wrapper .project-video .project-video-background {
	position: absolute;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	-o-object-fit: contain;

	object-fit: contain;
	height: 100%;
	width: 100%;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper .swiper-slide .project-wrapper .project-video-iframe {
	position: absolute;
	width: 90%;
	max-width: 640px;
	height: 0px;
	padding-top: 56.25%;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper .swiper-slide .project-wrapper .project-video-iframe iframe {
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper .swiper-slide .project-wrapper .project-video > div {
	background-size: contain !important;
	background-position: center center !important;
}

.content[data-barba-namespace='templatePortfolio'] .portfolio-card-swiper .swiper-slide .project-wrapper .project-image.project-image-repeat {
	background-repeat: repeat-x;
}

@media only screen and (max-width: 1024px) {
	.content[data-barba-namespace='templatePortfolio'] .portfolio-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 767px) {
	.content[data-barba-namespace='templatePortfolio'] .portfolio-grid {
		grid-template-columns: minmax(0, 1fr);
		padding-top: 120px;
		padding-bottom: 240px;
	}
}

/* About */
.content[data-barba-namespace='templateAbout'] .content-wrapper {
	position: absolute;
	width: 100%;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding: var(--theme-web_margin);
	z-index: 2;
}

.content[data-barba-namespace='templateAbout'] a {
	font-family: var(--theme-font-type_04) !important;
	text-decoration: none;
}

.content[data-barba-namespace='templateAbout'] h3 {
	font-family: var(--theme-font-type_03) !important;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 12px;

	margin-bottom: 16px;
}

.content[data-barba-namespace='templateAbout'] ul {
	list-style: none;
}

.content[data-barba-namespace='templateAbout'] #about-description {
	font-size: var(--theme-font_size_56);
	line-height: var(--theme-font_size_56);

	padding-right: 5rem;
}

.content[data-barba-namespace='templateAbout'] #about-contact,
.content[data-barba-namespace='templateAbout'] #about-publications {
	font-size: var(--theme-font_size_32);
	line-height: var(--theme-font_size_32);
}

.content[data-barba-namespace='templateAbout'] #about-selected-work,
.content[data-barba-namespace='templateAbout'] #about-social {
	font-size: var(--theme-font_size_42);
	line-height: var(--theme-font_size_42);
}

.content[data-barba-namespace='templateAbout'] #about-contact p,
.content[data-barba-namespace='templateAbout'] #about-publications ul li {
	line-height: 1.1;
}

.content[data-barba-namespace='templateAbout'] #about-selected-work ul li:not(:first-child) a,
.content[data-barba-namespace='templateAbout'] #about-social ul li:not(:first-child) a {
	padding-top: 0.35em;
}

.content[data-barba-namespace='templateAbout'] #about-thanks,
.content[data-barba-namespace='templateAbout'] #about-thanks-mobile {
	font-family: var(--theme-font-type_05) !important;
	text-transform: uppercase;
	font-size: var(--theme-font_size_40);
	line-height: var(--theme-font_size_40);
}

.content[data-barba-namespace='templateAbout'] #about-thanks-mobile {
	display: none !important;
}

.content[data-barba-namespace='templateAbout'] #about-thanks h3 {
	opacity: 0;
	pointer-events: none;
}

.content[data-barba-namespace='templateAbout'] #about-thanks-trigger {
	display: inline-block;
}

.content[data-barba-namespace='templateAbout'] #about-thanks #about-thanks-meme {
	font-family: var(--theme-font-type_01) !important;
	font-size: var(--theme-font_size_24);
	line-height: var(--theme-font_size_24);
	margin-top: 8px;
}

.content[data-barba-namespace='templateAbout'] #about-thanks #about-thanks-meme:before {
	position: relative;
	display: block;
	content: attr(data-state-default);
}

html.about-thanks-active .content[data-barba-namespace='templateAbout'] #about-thanks-trigger #about-thanks-meme:before {
	-webkit-animation: spriteMeme 0.25s infinite;
	animation: spriteMeme 0.25s infinite;
}

@-webkit-keyframes spriteMeme {
	0% {
		content: attr(data-state-01);
	}

	50% {
		content: attr(data-state-02);
	}

	100% {
		content: attr(data-state-01);
	}
}

@keyframes spriteMeme {
	0% {
		content: attr(data-state-01);
	}

	50% {
		content: attr(data-state-02);
	}

	100% {
		content: attr(data-state-01);
	}
}

.content[data-barba-namespace='templateAbout'] #about-extra-mobile {
	display: none !important;
}

.content[data-barba-namespace='templateAbout'] #about-extra,
.content[data-barba-namespace='templateAbout'] #about-extra a,
.content[data-barba-namespace='templateAbout'] #about-extra-mobile,
.content[data-barba-namespace='templateAbout'] #about-extra-mobile a,
.content[data-barba-namespace='templateAbout'] #about-update,
.content[data-barba-namespace='templateAbout'] #about-location {
	font-family: var(--theme-font-type_02) !important;
	font-size: var(--theme-font_size_16);
	line-height: var(--theme-font_size_20);

	text-transform: uppercase;
}

.content[data-barba-namespace='templateAbout'] #about-extra {
	margin-top: 4vw;
	margin-bottom: 1vw;
}

.content[data-barba-namespace='templateAbout'] #about-description,
.content[data-barba-namespace='templateAbout'] #about-selected-work,
.content[data-barba-namespace='templateAbout'] #about-social,
.content[data-barba-namespace='templateAbout'] #about-extra-mobile {
	margin-bottom: 2vw;
}

.content[data-barba-namespace='templateAbout'] #about-description,
.content[data-barba-namespace='templateAbout'] #about-selected-work,
.content[data-barba-namespace='templateAbout'] #about-social {
	margin-bottom: 4vw;
}

.content[data-barba-namespace='templateAbout'] #about-contact,
.content[data-barba-namespace='templateAbout'] #about-publications,
.content[data-barba-namespace='templateAbout'] #about-thanks {
	margin-top: 1vw;
	margin-bottom: 1vw;
}

.content[data-barba-namespace='templateAbout'] #about-contact {
	margin-bottom: 0vw;
}

.content[data-barba-namespace='templateAbout'] #about-update,
.content[data-barba-namespace='templateAbout'] #about-location {
	margin-top: 2vw;
}

.content[data-barba-namespace='templateAbout'] #about-selected-work-background-helper,
.content[data-barba-namespace='templateAbout'] #about-selected-work-background-helper .selected-work-background,
.content[data-barba-namespace='templateAbout'] #about-thanks-background-helper,
.content[data-barba-namespace='templateAbout'] #about-thanks-background-helper .thanks-background {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	overflow: hidden;
	visibility: visible !important;
	z-index: 1;

	pointer-events: none;
}

.content[data-barba-namespace='templateAbout'] #about-selected-work-background-helper .selected-work-background,
.content[data-barba-namespace='templateAbout'] #about-thanks-background-helper .thanks-background {
	opacity: 0;

	background-position: center center;
	background-size: contain;
}

.content[data-barba-namespace='templateAbout'] #about-selected-work-background-helper .selected-work-background.background-image-repeat {
	background-repeat: repeat-x;
}

.content[data-barba-namespace='templateAbout'] #about-thanks-background-helper .thanks-background {
	background-position: center center;
	background-repeat: repeat;
	background-size: auto;
}

.content[data-barba-namespace='templateAbout'] #about-selected-work-background-helper .selected-work-background.active,
.content[data-barba-namespace='templateAbout'] #about-thanks-background-helper .thanks-background.active {
	opacity: 1;
}

.content[data-barba-namespace='templateAbout'] #about-thanks-background-helper .thanks-background.active {
	-webkit-animation: backgroundMeme 0.075s infinite;
	animation: backgroundMeme 0.075s infinite;
}

@-webkit-keyframes backgroundMeme {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes backgroundMeme {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@media only screen and (max-width: 767px) {
	.content[data-barba-namespace='templateAbout'] .content-wrapper-scroll {
		position: relative;
		width: 120%;
		height: 100%;
		margin: auto -10%;
		overflow-x: hidden;
		overflow-y: scroll;
		z-index: 2;
	}

	.content[data-barba-namespace='templateAbout'] .content-wrapper {
		position: relative;
		width: 100vw;
		margin: auto;
		padding-left: var(--theme-web_margin);
		padding-right: var(--theme-web_margin);
		padding-top: 24vh;
		padding-bottom: 12vh;
		bottom: auto !important;
	}

	.content[data-barba-namespace='templateAbout'] #about-extra {
		display: none !important;
	}

	.content[data-barba-namespace='templateAbout'] #about-extra-mobile {
		display: block !important;
	}

	.content[data-barba-namespace='templateAbout'] #about-extra-mobile,
	.content[data-barba-namespace='templateAbout'] #about-selected-work,
	.content[data-barba-namespace='templateAbout'] #about-social,
	.content[data-barba-namespace='templateAbout'] #about-contact,
	.content[data-barba-namespace='templateAbout'] #about-publications,
	.content[data-barba-namespace='templateAbout'] #about-thanks {
		margin-top: 3vh;
		margin-bottom: 3vh;
	}

	.content[data-barba-namespace='templateAbout'] #about-contact,
	.content[data-barba-namespace='templateAbout'] #about-description {
		line-height: 1.3;
	}

	.content[data-barba-namespace='templateAbout'] #about-description {
		padding-right: 2rem;
	}

	.content[data-barba-namespace='templateAbout'] #about-update,
	.content[data-barba-namespace='templateAbout'] #about-location {
		margin-top: 3vh;
	}

	.content[data-barba-namespace='templateAbout'] #about-description,
	.content[data-barba-namespace='templateAbout'] #about-selected-work,
	.content[data-barba-namespace='templateAbout'] #about-social {
		margin-bottom: 3vh;
	}

	.content[data-barba-namespace='templateAbout'] #about-thanks {
		display: none !important;
	}

	.content[data-barba-namespace='templateAbout'] #about-thanks-mobile {
		display: flex !important;
		font-size: var(--theme-font_size_56);
		line-height: var(--theme-font_size_56);

		margin-top: 6vh;
		margin-bottom: 3vh;
	}
}
