@font-face {
  font-family: "KoHo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "KoHo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "KoHo";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "KoHo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

#zgurd-loaded {
	position: relative;
	z-index: 2;
	width: 100%;
	min-height: calc(var(--vh, 1vh) * 100);
}

.fadein-4s {
	-webkit-animation: fadeIn ease 4s;
	-moz-animation: fadeIn ease 4s;
	-o-animation: fadeIn ease 4s;
	-ms-animation: fadeIn ease 4s;
	animation: fadeIn ease 4s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
.fadein-600ms {
	-webkit-animation: fadeIn ease 0.6s;
	-moz-animation: fadeIn ease 0.6s;
	-o-animation: fadeIn ease 0.6s;
	-ms-animation: fadeIn ease 0.6s;
	animation: fadeIn ease 0.6s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	15% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	15% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.noscript {
	display: flex;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: none;
}
.noscript .zgurd {
	height: 7.6vh;
	width: 7.6vh;
	min-height: 2.9rem;
	min-width: 2.9rem;
	max-height: 3.9rem;
	max-width: 3.9rem;
	margin-bottom: min(6vh, 3rem);
}
.noscript span {
	font-size: 0.875rem;
	font-weight: 600;
	font-style: normal;
	color: var(--white-primary);
	margin: 1rem 0 7vh;
}

header {
	display: flex;
	position: fixed;
	z-index: 9998;
	bottom: 0;
	width: 100%;
	height: calc(var(--vh, 1vh) * 13);
	min-height: 80px;
	box-sizing: border-box;
	padding: 0 max(4vh, 1.5rem) 0 max(3.5vh, 1.25rem);
	justify-content: space-between;
	align-items: center;
	background-color: var(--dark-primary);
	border-top: 0.25rem solid var(--dark-secondary);
}

main {
	background-color: var(--dark-primary);
}
@media (min-width: 64em) {
	main {
		display: flex;
		height: calc(var(--vh, 1vh) * 87);
		max-height: calc(var(--vh, 1vh) * 100 - 80px);
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
	}
}

h1 {
	display: flex;
	width: 80%;
	font-size: clamp(2rem, 6vh, 3.6rem);
	transform: rotate(180deg);
	margin: 0 auto;
	padding: 13vh 0 16vh;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	line-height: 1.143;
	cursor: default;
}
@media (min-width: 48em) {
	h1 {
		width: 60%;
	}
}
@media (min-width: 64em) {
	h1 {
		width: 85vw;
		box-sizing: border-box;
		padding: 0 0 0 38vw;
		height: 7vh;
		font-size: max(2rem, 7vh);
		align-items: center;
	}
}

.page-content {
	display: flex;
	margin: 0 auto 12vh auto;
	justify-content: center
}

p {
	line-height: 1.75;
	margin: 0 0 4vh 0;
	cursor: default;
}
p:last-child {
	margin: 0 0 1vh 0;
}
@media (min-width: 64em) {
	p:last-child {
		margin: 0 0 6vh 0;
	}
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

button {
	outline: none;
	background-color: transparent;
	text-transform: none;
	border: 0;
	cursor: url("../img/pointer1.svg") 10 0, pointer;
}

a {
	box-sizing: border-box;
	font-weight: 600;
	line-height: inherit;
	color: var(--white-primary);
	text-decoration: none;
	outline: none;
	background-color: transparent;
	cursor: url("../img/pointer1.svg") 10 0, pointer;
	transition: 0.2s ease-in-out;
	gap: 0.75rem;
}
.state-color-a:hover, .state-color-a:hover .link-icon path, .state-color-a:focus-visible, .state-color-a:focus-visible .link-icon path {
	color: var(--red-primary);
	fill: var(--red-primary);
}
.state-scale1-2:focus-visible {
	transform: scale(1.2);
	transform-origin: center center;
}
.state-scale1-5:focus-visible {
	transform: scale(1.5);
	transform-origin: center center;
}

svg path {
	transition: 0.2s ease-in-out;
}
.external-link-icon {
	margin-top: 0.1875rem;
	width: .625rem;
	height: .625rem;
}
.external-link-icon path {
	fill: var(--gray-aa-text);
}

.hide-overflow {
	overflow: hidden;
}

.remove-element {
	display: none!important;
}

.screen-reader-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	border: 0;
	white-space: nowrap;
}

/* logo */

.logo {
	width: calc(5.5vh + 1rem);
	height: calc(5.5vh + 1rem);
	min-width: 3rem;
	min-height: 3rem;
}
.logo a {
	display: flex;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0.2rem 0.3rem 0.4rem;
}
.logo g {
	transform-origin: 52.9% 52%;
	transition: 0.2s ease-in-out;
}
.logo a:hover g, .logo a:focus-visible g {
	transform: scale(0.75);
}
.logo .eye-iris {
	transform-origin: 52.7% 50.4%;
	transition: 0.2s ease-in-out;
}
.logo a:hover .eye-iris, .logo a:focus-visible .eye-iris {
	transform: scale(3.3);
}

/* menu button */

.mobile-menu-button {
	display: block;
}
#toggle-menu {
	height: 3rem;
	width: 3rem;
}
.hamburger {
	padding: 0.9rem 0.75rem;
	display: inline-block;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	outline: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.hamburger:focus-visible .hamburger-line-top, .hamburger:focus-visible .hamburger-line-bottom {
	background-color: var(--red-primary);
	transition: 0.2s ease-in-out;
}
.hamburger-box {
	width: 1.5rem;
	height: 1.2rem;
	display: inline-block;
	position: relative;
}
.hamburger-inner {
	height: 100%;
	display: block;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-line-top, .hamburger-line-bottom {
	content: "";
	display: block;
	width: 1.5rem;
	background-color: var(--white-primary);
	height: 0.18rem;
	border-radius: 0.25rem;
	position: absolute;
}
.hamburger-line-top {
	top: 0.16rem;
}
.hamburger-line-bottom {
	bottom: 0.16rem;
}
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-line-top {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-line-bottom {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(-225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-line-top {
	top: 42%;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-line-bottom {
	bottom: 42%;
	transform: rotate(90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 64em) {
	.mobile-menu-button {
		display: none;
	}
}

/* menu */

#mobile-menu {
	display: flex;
	position: fixed;
	z-index: 9997;
	width: 100%;
	height: calc(var(--vh, 1vh) * 100 - 76px)!important;
	height: 87vh;
	max-height:  calc(var(--vh, 1vh) * 87.5);	
	top: -2px;
	right: 0;
	flex-direction: column;
	justify-content: center;
	transform: translateX(100%);
	transition: transform 0.3s ease-in;
	background: var(--dark-primary);
	will-change: transform;
}
#mobile-menu.visible {
	transform: translateX(0);
	transition: transform 0.3s ease-out;
}
.main-navigation {
	width: 100%;
}
header .main-navigation {
	display: none;
}
#mobile-menu ul {
	width: 100%;
}
.main-navigation a {
	display: flex;
	width: 100%;
	height: 100%;
	padding: 0.9375rem;
	justify-content: center;
	align-items: center;
}
.socialize-icons {
	display: inline-flex;
	margin-top: 4vh;
	justify-content: center;
}
header .socialize-icons {
	display: none;
}
.socialize-icons .icon-wrap {
	display: flex;
	padding: 1.0625rem 1.25rem;
}
.copyright {
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0;
	color: var(--gray-aa-text);
	text-align: center;
	cursor: default;
}
header .copyright {
	display: none;
	position: absolute;
	right: 2vh;
	width: 9vh;
	min-width: 80px;
	transform: rotate(90deg) translateX(50%) translateY(50%);
	transform-origin: right;
	line-height: 110%;
}
main .copyright {
	padding-bottom: calc(80px + 8vh);
}
@media (min-width: 64em) {
	#mobile-menu {
		display: none;
	}
	.main-navigation {
		width: auto;
		height: 100%;
		margin-left: 0;
	}
	header ul {
		display: inline-flex;
		height: 100%;
		margin: 0;
	}
	.main-navigation a {
		padding: 0 2.5vw;
	}
	header .main-navigation {
		display: block;
	}
	header .socialize-icons {
		display: inline-flex;
		margin: 0 calc(1vw + 1rem) 0 0;
		align-items: center;
	}
	header .socialize-icons .icon-wrap {
		padding: 1vw;
	}
	header .copyright {
		display: block;
	}
	main .copyright {
		display: none;
	}
}
@media (min-width: 72em) {
	.main-navigation {
		margin-left: 5vw;
	}
}

/* intro */

#intro {
	height: calc(var(--vh, 1vh) * 87);
	max-height: calc(var(--vh, 1vh) * 100 - 80px);
}
#intro-img {
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	justify-content: center;
	outline: none;
}
#intro-img::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 0.25rem solid var(--red-primary);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}
#intro-img:focus-visible::after {
	opacity: 1;
}

/* explanation */
@media (min-width: 64em) {
	#explanation .page-content {
		width: 85vw;
		margin: 0 0 9vh 0;
		justify-content: flex-end;
	}
}

.text-wrapper {
	width: 80%;
}
@media (min-width: 48em) {
	.text-wrapper {
		width: 60%;
	}
}
@media (min-width: 64em) {
	.text-wrapper {
		position: relative;
		width: 55%;
		max-width: 40rem;
		max-height: 40vh;
		margin: 0 7vw 0 0;
		box-sizing: border-box;
		padding: 4vh 1.125rem 0 0;
		font-size: 1.125rem;
		overflow-y: scroll;
		scrollbar-color: var(--gray-aa-non-text) var(--dark-primary);
		outline: none;
		transition: 0.2s ease-in-out;
		--mask-image-content: linear-gradient(to bottom, transparent, black 10.5%, black 85%, transparent 100%);
		--mask-size-content: calc(100% - 17px) 100%;
		--mask-image-scrollbar: linear-gradient(black, black);
		--mask-size-scrollbar: 17px 100%;
		-webkit-mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
		-webkit-mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
		-webkit-mask-position: 0 0, 100% 0;
		-webkit-mask-repeat: no-repeat, no-repeat;
		-o-mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
		-o-mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
		-o-mask-position: 0 0, 100% 0;
		-o-mask-repeat: no-repeat, no-repeat;
		mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
		mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
		mask-position: 0 0, 100% 0;
		mask-repeat: no-repeat, no-repeat;
	}
	.text-wrapper:focus-visible {
		transform: scale(1.2);
		scrollbar-color: var(--gray-aaa-text) var(--dark-primary);
	}
}

.explanation-background {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vw;
	overflow: hidden;
	object-fit: cover;
	object-position: center;
}
@media (min-width: 64em) {
	.explanation-background {
		width: 58%;
		height: calc(var(--vh, 1vh) * 87);
		max-height: calc(var(--vh, 1vh) * 100 - 80px);
	}
}

/* punblook */

@media (min-width: 64em) {
	#punblook .page-content {
		width: 85vw;
		margin: 0 0 15vh 0;
	}
}

.gallery {
	width: 100%;
}
@media (min-width: 48em) {
	.gallery {
		width: 80%;
	}
}
@media (min-width: 56em) {
	.gallery {
		width: 60%;
	}
}
@media (min-width: 64em) {
	.gallery {
		position: relative;
		width: 100%;
	}
}

@media (min-width: 64em) {
	.gallery-mask {
		padding: 0 5.5vw;
		overflow: hidden;
	}
}

.gallery > button {
	display: none;
}
@media (min-width: 64em) {
	.gallery > button {
		display: flex;
		position: absolute;
		z-index: 1;
		top: -2px;
		bottom: -2px;
		width: 5.5vw;
		margin: 0;
		justify-content: flex-start;
		background: linear-gradient(90deg, rgba(2, 3, 5, 1) 0%, rgba(2, 3, 5, 0.7) 50%, rgba(2, 3, 5, 0) 100%);
		transition: opacity 0.4s ease-out;
	}
	.gallery > button::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg, rgba(2, 3, 5, 1) 75%, rgba(2, 3, 5, 0) 100%);
		opacity: 0;
		transition: opacity 0.2s ease-in-out;
	}
	.gallery > button:hover::before, .gallery > button:focus-visible::before {
		opacity: 0.4;
	}
	.gallery > button img {
		position: relative;
		left: 1.5vw;
		opacity: 0;
		transition: 0.2s ease-in-out;
	}
	.gallery > button:hover img, .gallery > button:focus-visible img {
		left: 1vw;
		opacity: 1;
	}
	.previous {
		left: -2px;
	}
	.next {
		right: -2px;
		transform: rotate(180deg);
	}
	.gallery > button img {
		width: min(1.2vw, 0.875rem);
	}
}

@media (min-width: 64em) {
	.image-wrapper {
		display: flex;
		user-select: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
	}
}

.gallery .tile {
	position: relative;
	width: 100%;
	margin: 0 0 1vh 0;
	overflow: hidden;
}
.gallery .tile img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.5s ease-out;
}
@media (min-width: 64em) {
	.gallery .tile {
		flex-shrink: 0;
		width: 18vw;
		height: 18vw;
		margin: 0 0.25vw;
		cursor: url("../img/pointer2.svg") 9 14, pointer;
	}
	.gallery .tile img {
		height: 100%;
		object-fit: cover;
	}
}

.pagination {
	display: none;
}
@media (min-width: 64em) {
	.pagination {
		display: flex;
		position: absolute;
		right: -3.95vw;
		bottom: -21vh;
		width: 34vw;
		height: 7vh;
		justify-content: center;
		align-items: center;
	}
	.pagination li button {
		padding: 1rem;
		margin: 0;
		transition: 0.2s ease-in-out;
	}
	.pagination button span {
		display: block;
		width: 1rem;
		height: 1rem;
		border: 0.09375rem solid var(--white-primary);
    	border-radius: 50%;
		box-sizing: border-box;
		transition: 0.2s ease-in-out;
	}
	.pagination button:hover span, .pagination button:focus-visible span {
		background-color: var(--white-primary);
	}
	.pagination li .active {
		cursor: default;
	}
	.pagination li .active span {
		border: 0.375rem solid var(--white-primary);
		background-color: var(--dark-primary);
	}
}

/* 404 page */

@media (min-width: 64em) {
	#error-404 .page-content {
		width: 85vw;
		margin: 0 0 11vh 0;
	}
}

#error-404 .page-content > div {
	width: 80%;
}
@media (min-width: 48em) {
	#error-404 .page-content > div {
		width: 60%;
	}
}
@media (min-width: 64em) {
	#error-404 .page-content > div {
		position: relative;
		width: 100%;
	}
}

#error-404 .page-content p {
	margin: 0 0 13vh 0;
	text-align: center;
}
@media (min-width: 64em) {
	#error-404 .page-content p {
		margin: 0 0 4vh 0;
	}
}

.cta-button {
    position: relative;
	width: 100%;
	--button-height: clamp(3.625rem, 10vh, 4.75rem);
	height: var(--button-height);
	--corner-radius: calc(var(--button-height) * 0.3);
	box-sizing: border-box;
    padding: 0.125rem;
    border-radius: 0;
    transition: border-radius 0.2s ease-in-out;
    pointer-events: none;
}
.cta-button:has(a:hover), .cta-button:has(a:focus-visible) {
    border-radius: 0 0 var(--corner-radius) 0;
}
.cta-button::before,
.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: 0.2s ease-in-out;
    pointer-events: none;
}
.cta-button::before {
    background: linear-gradient(30deg, var(--white-primary), var(--white-primary));
}
.cta-button:has(a:hover)::before, .cta-button:has(a:focus-visible)::before {
    border-radius: 0.125rem 0.125rem calc(var(--corner-radius) + 0.125rem) 0.125rem;
}
.cta-button::after {
    background: linear-gradient(30deg, var(--violet-primary), var(--red-primary));
    opacity: 0;
}
.cta-button:has(a:hover)::after, .cta-button:has(a:focus-visible)::after {
    opacity: 1;
}
.cta-button a {
	display: flex;
	position: relative;
	z-index: 1;
	height: 100%;
	border-radius: 0 0 var(--corner-radius) 0;
	padding: 0 6vw 0.4rem 6vw;
	font-size: clamp(1.125rem, 4vh, 1.875rem);
	font-weight: 500;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	background-color: var(--dark-primary);
	transition: color 0.2s ease-in-out;
	cursor: url("../img/pointer2.svg") 9 14, pointer;
	pointer-events: auto;
}
.cta-button a:hover, .cta-button a:focus-visible {
    color: var(--red-primary);
}
@media (min-width: 64em) {
	.cta-button {
		position: absolute;
        --button-height: clamp(3.625rem, 7.85vh, 4.75rem);
		bottom: -14vh;
		right: 24vw;
		transform: translate(50%, 50%);
		width: fit-content;
	}
}
@media (min-width: 64em) {
	.cta-button a {
		padding: 0 4vw 0.4rem 4vw;
	}
}