*,
:after,
:before {
	box-sizing: border-box;
}

:root {
	font-size: 14px;
}

@font-face {
	font-family: 'Asian Food';
	src: url('../fonts/AsianFood.woff2') format('woff2'),
		url('../fonts/AsianFood.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'quiche-sans';
	src: url('../fonts/quiche.woff2') format('woff2'),
		url('../fonts/quiche.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #fff rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar {
	width: 10px;
}

*::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 20px;
	border: 3px solid transparent;
}

body,
html {
	height: 100vh;
	width: 100%;
}

body {
	--color-text: #100e02;
	--color-text-alt: #100e02;
	--color-bg: #edeade;
	--color-link: #100e02;
	--color-link-hover: #100e02;
	--color-link-alt: #100e02;
	--color-type: #100e02;
	--type-line-opacity: 0.05;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	margin: 0;
}

.js .loading:after,
.js .loading:before {
	content: "";
	position: fixed;
	z-index: 1000;
}

.js .loading:before {
	background: var(--color-bg);
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
}

.js .loading:after {
	animation: loaderAnim 0.7s linear infinite alternate forwards;
	background: var(--color-link);
	border-radius: 50%;
	height: 60px;
	left: 50%;
	margin: -30px 0 0 -30px;
	opacity: 0.4;
	top: 50%;
	width: 60px;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5, 0.5, 1);
	}
}

.slider-1,
.slider-2,
.slider-3,
.slider-4 {
	height: 100%;
}

/*! Flickity v2.2.2
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
	position: relative;
}

.flickity-enabled:focus {
	outline: none;
}

.flickity-viewport {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.flickity-slider {
	position: absolute;
	width: 100%;
	height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
	position: absolute;
	background: hsla(0, 0%, 100%, 0.75);
	border: none;
	color: #333;
}

.flickity-button:hover {
	background: white;
	cursor: pointer;
}

.flickity-button:focus {
	outline: none;
	box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
	opacity: 0.6;
}

.flickity-button:disabled {
	opacity: 0.3;
	cursor: auto;
	/* prevent disabled button from capturing pointer up event. #716 */
	pointer-events: none;
}

.flickity-button-icon {
	fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
	top: 50%;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	/* vertically center */
	transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
	left: 10px;
}

.flickity-prev-next-button.next {
	right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
	left: auto;
	right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
	right: auto;
	left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
	position: absolute;
	left: 20%;
	top: 20%;
	width: 60%;
	height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
	position: absolute;
	width: 100%;
	bottom: -25px;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	line-height: 1;
}

.flickity-rtl .flickity-page-dots {
	direction: rtl;
}

.flickity-page-dots .dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	background: #333;
	border-radius: 50%;
	opacity: 0.25;
	cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
	opacity: 1;
}

/* glitch */
.glitch {
	position: relative;
	color: transparent;
	font-size: 4em;
	/*
	animation: glitch-skew 1s infinite linear alternate-reverse;
	*/
}

.glitch::before {
	/*
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	left: 2px;
	text-shadow: -2px 0 transparent;
	clip: rect(44px, 450px, 56px, 0);
	animation: glitch-anim 5s infinite linear alternate-reverse;
	*/
}

.glitch::after {
	/*
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	left: -2px;
	text-shadow: -2px 0 transparent, 2px 2px transparent;
	animation: glitch-anim2 1s infinite linear alternate-reverse;
	*/
}

@keyframes glitch-anim {
	0% {
		clip: rect(65px, 9999px, 61px, 0);
		transform: skew(0.59deg);
	}

	5% {
		clip: rect(79px, 9999px, 95px, 0);
		transform: skew(0.3deg);
	}

	10% {
		clip: rect(83px, 9999px, 12px, 0);
		transform: skew(0.18deg);
	}

	15% {
		clip: rect(26px, 9999px, 89px, 0);
		transform: skew(0.3deg);
	}

	20% {
		clip: rect(55px, 9999px, 50px, 0);
		transform: skew(0.45deg);
	}

	25% {
		clip: rect(30px, 9999px, 64px, 0);
		transform: skew(0.64deg);
	}

	30% {
		clip: rect(84px, 9999px, 97px, 0);
		transform: skew(0.2deg);
	}

	35% {
		clip: rect(6px, 9999px, 31px, 0);
		transform: skew(0.36deg);
	}

	40% {
		clip: rect(25px, 9999px, 10px, 0);
		transform: skew(0.21deg);
	}

	45% {
		clip: rect(74px, 9999px, 47px, 0);
		transform: skew(0.83deg);
	}

	50% {
		clip: rect(73px, 9999px, 84px, 0);
		transform: skew(0.69deg);
	}

	55% {
		clip: rect(17px, 9999px, 23px, 0);
		transform: skew(1deg);
	}

	60% {
		clip: rect(23px, 9999px, 77px, 0);
		transform: skew(0.25deg);
	}

	65% {
		clip: rect(96px, 9999px, 86px, 0);
		transform: skew(0.04deg);
	}

	70% {
		clip: rect(60px, 9999px, 58px, 0);
		transform: skew(0.89deg);
	}

	75% {
		clip: rect(33px, 9999px, 94px, 0);
		transform: skew(0.12deg);
	}

	80% {
		clip: rect(19px, 9999px, 76px, 0);
		transform: skew(0.6deg);
	}

	85% {
		clip: rect(64px, 9999px, 77px, 0);
		transform: skew(0.94deg);
	}

	90% {
		clip: rect(9px, 9999px, 38px, 0);
		transform: skew(0.6deg);
	}

	95% {
		clip: rect(18px, 9999px, 87px, 0);
		transform: skew(0.18deg);
	}

	100% {
		clip: rect(77px, 9999px, 73px, 0);
		transform: skew(0.08deg);
	}
}

@keyframes glitch-anim2 {
	0% {
		clip: rect(43px, 9999px, 47px, 0);
		transform: skew(0.71deg);
	}

	5% {
		clip: rect(23px, 9999px, 30px, 0);
		transform: skew(0.03deg);
	}

	10% {
		clip: rect(87px, 9999px, 40px, 0);
		transform: skew(0.83deg);
	}

	15% {
		clip: rect(61px, 9999px, 15px, 0);
		transform: skew(0.22deg);
	}

	20% {
		clip: rect(11px, 9999px, 93px, 0);
		transform: skew(0.16deg);
	}

	25% {
		clip: rect(12px, 9999px, 5px, 0);
		transform: skew(0.07deg);
	}

	30% {
		clip: rect(38px, 9999px, 42px, 0);
		transform: skew(0.49deg);
	}

	35% {
		clip: rect(10px, 9999px, 54px, 0);
		transform: skew(0.82deg);
	}

	40% {
		clip: rect(26px, 9999px, 56px, 0);
		transform: skew(0.96deg);
	}

	45% {
		clip: rect(49px, 9999px, 44px, 0);
		transform: skew(0.2deg);
	}

	50% {
		clip: rect(51px, 9999px, 42px, 0);
		transform: skew(0.62deg);
	}

	55% {
		clip: rect(92px, 9999px, 16px, 0);
		transform: skew(0.24deg);
	}

	60% {
		clip: rect(85px, 9999px, 52px, 0);
		transform: skew(0.7deg);
	}

	65% {
		clip: rect(99px, 9999px, 80px, 0);
		transform: skew(0.44deg);
	}

	70% {
		clip: rect(29px, 9999px, 53px, 0);
		transform: skew(0.52deg);
	}

	75% {
		clip: rect(68px, 9999px, 86px, 0);
		transform: skew(0.96deg);
	}

	80% {
		clip: rect(87px, 9999px, 39px, 0);
		transform: skew(0.08deg);
	}

	85% {
		clip: rect(76px, 9999px, 17px, 0);
		transform: skew(0.14deg);
	}

	90% {
		clip: rect(47px, 9999px, 20px, 0);
		transform: skew(0.8deg);
	}

	95% {
		clip: rect(75px, 9999px, 51px, 0);
		transform: skew(0.68deg);
	}

	100% {
		clip: rect(82px, 9999px, 6px, 0);
		transform: skew(0.2deg);
	}
}

@keyframes glitch-skew {
	0% {
		transform: skew(1deg);
	}

	10% {
		transform: skew(-1deg);
	}

	20% {
		transform: skew(5deg);
	}

	30% {
		transform: skew(-2deg);
	}

	40% {
		transform: skew(5deg);
	}

	50% {
		transform: skew(-1deg);
	}

	60% {
		transform: skew(1deg);
	}

	70% {
		transform: skew(2deg);
	}

	80% {
		transform: skew(3deg);
	}

	90% {
		transform: skew(1deg);
	}

	100% {
		transform: skew(-2deg);
	}
}

a {
	color: var(--color-link);
	text-decoration: underline;
}

a,
a:hover {
	outline: none;
}

a:hover {
	color: var(--color-link-hover);
}

a.link-alt,
a:hover {
	text-decoration: none;
}

a.link-alt {
	color: var(--color-link-alt);
}

a:focus {
	background: #d3d3d3;
	outline: none;
}

a:focus:not(:focus-visible) {
	background: transparent;
}

a:focus-visible {
	background: transparent;
	outline: 2px solid red;
}

main {
	overflow-x: hidden;
	position: relative;
}

.frame__links .social {
	width: 64px;
	height: 64px;
	display: block;
	margin: 0 1rem;
}

.circle-wrapper {
	position: relative;
	width: 64px;
	height: 64px;
}

.icon {
	position: absolute;
	display: flex;
	top: 5px;
	left: 5px;
}

#icon-email,
#icon-instagram,
#icon-tel {
	width: 54px;
	height: 54px;
	fill: none;
	stroke: var(--color-link);
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke-linecap: round;
}

.circle {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	padding: 2.5px;
	background-clip: content-box;
	animation: spin 10s linear infinite;
}

.circle-wrapper:active .circle {
	animation: spin 2s linear infinite;
}

.success {
	border: 2px dashed var(--color-link);
}

@keyframes spin {
	100% {
		transform: rotateZ(360deg);
	}
}

.unbutton {
	background: none;
	border: 0;
	font: inherit;
	margin: 0;
	padding: 0;
}

.unbutton:focus {
	outline: none;
}

.frame {
	margin-bottom: 2rem;
	text-transform: uppercase;
	display: block;
	padding: 1rem 2vw;
	text-align: center;
	width: 100%;
}

.frame__title {
	font-size: 1rem;
	margin: 0 0 0;
}

.frame__title img {
	height: auto;
	max-width: 255px;
	width: 76%;
}

.frame__tagline {
	color: var(--color-text-alt);
	display: none;
}

.frame__links {
	display: inline;
}

.frame__links {
	margin-top: 2rem;
	grid-area: links;
	justify-self: center;
	padding: 0;
	display: flex;
	justify-content: center;
}

.item-wrap {
	display: block;
	text-transform: uppercase;
}

.item {
	--base: 5vh;
	--interval: 0vh;
	cursor: pointer;
	flex: none;
	margin: 1rem 0 0;
	padding: 1rem 1rem 0;
	position: relative;
	width: 100%;
	mix-blend-mode: luminosity;
	transition: all .2s ease-in-out;
	will-change: transform, opacity;
}

.item:hover {
	mix-blend-mode: unset;
}

.item:before {
	content: "";
	border: 5px solid var(--color-type);
	position: absolute;
	top: 30px;
	left: 30px;
	width: 88%;
	height: 315px;
	border-radius: 30px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.item__img {
	width: 95%;
	will-change: transform;
	filter: grayscale(100%);
	transition: all .2s ease-in-out;
	border-radius: 30px;
}

.item__img:hover {
	filter: grayscale(0%);
}

.item__caption-title {
	font-size: 36px;
	font-family: quiche-sans, sans-serif;
	font-weight: 100;
	margin-bottom: 0rem;
	text-transform: capitalize;
}

.item__caption-description {
	display: block;
}

.type {
	align-content: center;
	display: grid;
	height: 100vmax;
	justify-content: center;
	margin-top: -50vmax;
	position: fixed;
	text-align: center;
	text-transform: uppercase;
	top: 50%;
	width: 100vmax;
	will-change: transform;
}

.type__line {
	-webkit-touch-callout: none;
	color: var(--color-type);
	font-family: quiche-sans, sans-serif;
	font-size: 20vh;
	font-size: clamp(7rem, 18.75vh, 15rem);
	font-weight: 700;
	line-height: 0.85;
	opacity: var(--type-line-opacity);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	will-change: transform, opacity;
}

.type__line span {
	font-size: 18vh;
	font-size: clamp(6rem, 18.75vh, 12rem);
	font-family: 'Asian Food';
	font-weight: 100;
}

.article-wrap {
	align-self: end;
	justify-self: center;
	padding: 0 1rem;
	top: 5vh;
}

.article,
.article-wrap {
	pointer-events: none;
	position: absolute;
	width: 100%;
}

.article-wrap {
	/*pointer-events: auto;*/
	height: auto;
	top: 0;
}

.article {
	align-items: start;
	display: grid;
	grid-template-areas: "img img""number title""intro intro""desc desc";
	grid-template-columns: 1rem 1fr;
	opacity: 0;

	/*
	height: 0;
    overflow: hidden;
	display: none;
	*/
}

.article--current {
	opacity: 1;
	pointer-events: auto;
	position: relative;
	display: block;

	/*
	height: auto;
	overflow: initial;
	display: grid;
	*/
}

.article__img-wrap {
	grid-area: img;
	height: 320px;
	margin-bottom: 1rem;
	/*overflow: hidden;*/
	transform-origin: 50% 100%;
	width: 95%;
}

.article__img {
	background-position: 50% 35%;
	background-size: cover;
	height: 100%;
	width: 100%;
	border-radius: 30px;
}

.article__img-wrap:before {
	content: "";
	border: 5px solid var(--color-type);
	position: absolute;
	top: 15px;
	left: 15px;
	width: 100%;
	height: 100%;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	/* z-index: 100; */
	border-radius: 30px;
}

#article-4 .article__img-wrap:before {
	display: none;
}

.article__number {
	font-weight: 700;
	grid-area: number;
}

.article__title {
	pointer: default;
	color: var(--color-type);
	font-family: quiche-sans, sans-serif;
	font-size: 15vw;
	/*font-weight: 700;*/
	font-weight: 100;
	grid-area: title;
	line-height: 0.85;
	margin: 3rem 0 1.5rem;
	position: relative;
	white-space: nowrap;
}

.article__description {
	grid-area: desc;
}

.article__description h3 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 1rem;
	font-family: quiche-sans, sans-serif;
	letter-spacing: -1px;
}

.back {
	stroke: #100e02;
	background: none;
	border: 0;
	cursor: pointer;
	left: 0;
	margin: 1rem 0;
	opacity: 0;
	padding: 0;
	pointer-events: none;
	top: 0;
	width: 50px;
	z-index: 1000;
}

.back svg {
	stroke-linecap: round;
	fill: none;
	stroke: var(--color-type);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-miterlimit: 10;
}

.back:focus,
.back:hover {
	stroke: #666666;
	outline: none;
}

#article-4 .video-js:before {
	content: "";
	border: 5px solid var(--color-type);
	position: absolute;
	top: 15px;
	left: 15px;
	width: 100%;
	height: 100%;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	/* z-index: 100; */
	border-radius: 30px;
}

#article-4 .video-js,
#article-4 .video-js .vjs-tech {
	border-radius: 30px;
}

#article-4 .vjs-poster {
	background-color: transparent;
	border-radius: 30px;
	overflow: hidden;
}

@media screen and (min-width: 768px) {
	.item-wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		position: relative;
		width: 100vw;
	}

	.item {
		margin: auto 3vw var(--base);
		padding: 0;
		width: calc(50% - 6vw);
	}

	.item:before {
		left: 47px;
		width: 88%;
	}
	.article__img-wrap {
		height: 93vw;
		width: 93vw;
	}
	.article__description h3 {
		font-size: 30px;
	}
	.article__description,
	.item__caption-description {
		font-size: 20px;
	}
}

@media screen and (min-width: 53em) {
	:root {
		font-size: 16px;
	}

	body,
	html {
		overflow: hidden;
	}

	main {
		height: 100vh;
		overflow-y: hidden;
	}

	.frame {
		align-content: space-between;
		align-items: center;
		display: grid;
		grid-template-areas: "... ... title ... links";
		grid-template-columns: 20% 20% 20% 20% 20%;
		left: 0;
		margin: 0;
		max-width: none;
		padding: 1rem 2vw;
		position: fixed;
		text-align: left;
		top: 0;
		width: 100%;
		z-index: 100;
	}

	.frame__title-wrap {
		grid-area: title;
		text-align: center;
	}

	.frame__title {
		margin: 0;
	}

	.frame__title img {
		height: auto;
		max-width: initial;
		width: calc(100% - 3vw);
	}

	.frame__tagline {
		position: relative;
	}

	.frame__links {
		display: flex;
		grid-area: links;
		justify-self: end;
		margin-top: 0;
		padding: 0;
	}

	.frame__links .social {
		margin: 0 0 0 1.5rem;
	}

	.article__description,
	.item__caption-description {
		font-size: 16px;
	}

	.item__img {
		width: 100%;
	}

	.item:before {
		border: 5px solid transparent;
		top: 0;
		left: 0;
		width: 100%;
		height: 70%;
	}


	.item:hover:before {
		border-color: var(--color-type);
		top: -1vw;
		left: 1vw;
	}

	.item-wrap {
		align-items: center;
		display: flex;
		height: 100vh;
		justify-content: flex-start;
		overflow: hidden;
		position: relative;
		width: 100vw;
	}

	.item {
		margin: auto 1.5vw var(--base);
		padding: 0;
		width: 17vw;
	}

	.item:nth-child(2) {
		margin-bottom: calc(var(--base) + var(--interval));
	}

	.item:nth-child(3) {
		margin-bottom: calc(var(--base) + var(--interval) * 2);
	}

	.item:nth-child(4) {
		margin-bottom: calc(var(--base) + var(--interval) * 3);
	}

	.back {
		left: calc(28vw - 250px + 1.5rem);
		position: absolute;
	}

	.article-wrap {
		height: 90vh;
		padding: 0;
		top: 10vh;
		overflow-y: hidden;
		overflow-x: hidden;
		pointer-events: none;
	}

	.article--current {
		display: grid;
	}

	.article {
		grid-template-areas: "... ... img ...""number ... img ...""... title img ...""... desc img ...";
		grid-template-columns: 0 35% 1fr 0;
		grid-template-rows: 3vw 0 8vw auto;
		height: 100%;
		margin: 0 auto;
		/*width: calc(38vw + 280px);*/
		width: calc(45vw + 450px);
	}

	#article-4.article {
		grid-template-columns: 0 0 1fr 0;
	}

	#article-4 .article__img-wrap {
		padding: 22vh 10vw;
		transition: padding .2s ease-in-out;
	}

	#article-4 .article__img-wrap.active {
		padding: 6vh 4vw;
	}

	.article__title {
		font-size: 8vw;
		grid-column-end: 4;
		margin: 0;
		margin: 1rem 0 0.5rem;
		margin-left: -7vw !important;
	}

	.article__description h3 {
		font-size: 26px;
	}

	.article__intro {
		margin: 1.5rem 0;
	}

	.article__img-wrap {
		align-self: end;
		height: 100%;
		margin: 0;
		width: 100%;
		margin-top: -2rem;
	}

	.article__img {
		background-position: 50% 50%;
		height: 95%;
	}

	.article__img-wrap:before {
		top: 2rem;
		left: 2rem;
		height: 78vh;
	}

	#article-4 .video-js:before {
		top: 2rem;
		left: 2rem;
		height: 60vh;
	}

	.article__description {
		grid-area: desc;
		overflow: auto;
		padding-right: 2rem;
		height: 100%;
	}

	.item__caption-title {
		font-size: 2vw;
	}
}