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

:root {
	font-size: 13px;
}


body {
	margin: 0;
	--color-text: #fff;
	--color-bg: #72cde5;
	--color-link: #000;
	--color-link-hover: #000;
	--color-heading: #111;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: gooddog-new, sans-serif;
	font-weight: 400;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	--ratio: 0.75;
	--grid-item-height: 32vw;
	--grid-item-width: calc(var(--grid-item-height) * var(--ratio));
	--thumb-height: 5vw;
	--thumb-width: calc(var(--thumb-height) * var(--ratio));
}

.oh {
	overflow: hidden !important;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 5000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	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);
	}
}

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

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

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
	background: lightgrey;
}

a:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
	background: transparent;
}

a:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid red;
	background: transparent;
}

.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
}

.unbutton:focus {
	outline: none;
}

main {
	overflow: hidden;
	position: relative;
}

main::after {
	content: '';
	z-index: 1000;
	pointer-events: none;
	background: linear-gradient(to bottom, var(--color-bg), transparent);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 50vh;
}

.frame {
	padding: 1.5rem;
	position: relative;
	z-index: 5000;
	text-transform: uppercase;
	display: grid;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr auto;
	grid-template-areas: 'title menu'
						'links links';
}

.frame__title {
	font-size: 1rem;
	margin: 0 auto;
	font-weight: normal;
	grid-area: title;
}
.frame__title img {
	max-height: 60px;
}
.frame__links {
	grid-area: links;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}


.mint_btn_mobile{
	display: block;
}
.frame__links a {
	margin: 0 0.5rem 5px 0;
}

.button-menu {
	grid-area: menu;
	position: relative;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	width: 30px;
	height: 15px;
	cursor: not-allowed;
}

.button-menu span {
	display: block;
	position: relative;
	height: 1px;
	background: #000;
}

.heading {
	color: var(--color-heading);
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	margin-top: -5vw;
	width: 100%;
	font-size: 16vw;
	z-index: 1000;
	pointer-events: none;
	font-family: gandur-new, sans-serif;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
	will-change: transform, opacity;
	transform-origin: 50% 40%;
	-webkit-text-stroke: 1px #e5e516;
    -webkit-text-fill-color: rgba(95,145,255,0.5);
}

.heading--up {
	display: none;
}

.heading--down {
	bottom: 0;
	top: auto;
	margin-top: 0;
	margin-bottom: -1vw;
	transform-origin: 50% 60%;
}

.columns {
	width: 100%;
	position: relative;

	display: flex;
	justify-content: space-around;
}

.column-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding: 5vh 0 15vh;
}

.column-wrap--height {
	height: 100vh;
	flex-direction: column-reverse;
}

.column {
	position: relative;
	display: block;
	will-change: transform;
}

.view-content .columns,
.view-content .column {
	pointer-events: none !important;
}

.column-wrap--height .column {
	flex-direction: column-reverse;
	display: flex;
}

.column__item {
	margin: 0;
	position: relative;
	z-index: 1;
}

.column__item-imgwrap {
	width: var(--grid-item-width);
	height: var(--grid-item-height);
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
	margin: 8vh 1vw 0;
	border: 2px solid #000;
}

.column__item-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 20%;
	backface-visibility: hidden;
	border: 2px solid #e5e516;
}

.column__item-caption {
	text-transform: uppercase;
	padding: 0.75vw 1vw 0.5vw 1vw;
    position: absolute;
    color: #000;
    margin-top: -1em;
    background: #e5e516;
    border: 2px solid #000;
    border-radius: 1em;
}
.mint_btn {
	display: none;
	margin-top: 4em;
}
.content {
	position: fixed;
	pointer-events: none;
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: grid;
	grid-template-rows: 9rem 1fr calc(70vh - var(--thumb-height) - 1.6rem) 1fr;
	grid-template-columns: 100%;
	grid-template-areas: '...'
		'back'
		'content'
		'nav';
}

.view-content .content {
	pointer-events: auto;
	opacity: 1;
	z-index: 2000;
}

.content__item {
	position: absolute;
	opacity: 0;
	height: 0;
	grid-area: content;
	display: flex;
	flex-direction: column;
}

.content__item--current {
	opacity: 1;
	position: absolute;
	bottom: 60%;
	width: 100%;
}

.content__item-title {
	opacity: 0;
	grid-area: title;
	margin: 1rem 0 0 1.5rem;
	justify-self: center;
	font-weight: 400;
	font-style: italic;
	text-transform: uppercase;
	font-size: 3em;
    white-space: break-spaces;
    text-align: center;
	transform-origin: 50% 80%;
	will-change: transform, opacity;
	-webkit-text-stroke: 1px #000;
    -webkit-text-fill-color: #e5e516;
}

.content__item-text {
	opacity: 0;
	grid-area: text;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 2em;
	text-align: center;
	margin: 0;

}

.content__item-text::before {
	content: '';
	z-index: 1000;
	pointer-events: none;
	background: linear-gradient(to top, var(--color-bg), transparent);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.content__item-text span {
	padding: 1em;
	background: #e4e51d;
	color: #000;
	border: 2px solid #000;
	border-radius: 1em;
}
.content__item-text span:last-child {
	display: block;
	margin-top: 1rem;
}

.content__nav {
	opacity: 0;
	grid-area: nav;
	align-self: end;
	position: relative;
	overflow: hidden;
	padding: 0 1rem 1rem;
	display: flex;
}

.content__nav-wrap {
	position: relative;
	display: flex;
	margin: 0 auto;
	flex-wrap: wrap;
	height: calc(var(--thumb-height) + 0.6rem);
	overflow: hidden;
	justify-content: center;
	padding: 0 10px;
}

.content__nav-wrap:hover {
	cursor: not-allowed;
}

.content__nav-wrap::before,
.content__nav-wrap::after {
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -5px;
	width: 7px;
	height: 10px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNiAwIDEgNWw1IDUiIHN0cm9rZT0iIzAwMCIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==");
}

.content__nav-wrap::before {
	left: 0;
}

.content__nav-wrap::after {
	right: 0;
	transform: rotate(180deg);
}

.content__nav-item {
	flex: none;
	height: var(--thumb-height);
	width: var(--thumb-width);
	margin: 0.3rem;
	background-size: cover;
	background-position: 50% 20%;
	will-change: transform, opacity;
}

.button-back {
	opacity: 0;
	stroke: #000;
	z-index: 1000;
	cursor: pointer;
	grid-area: back;
	align-self: start;
	justify-self: start;
	margin-left: 1.5rem;
	transform: rotate(-30deg);
	position: absolute;
    top: 70px;
}
.button-back img{
	max-width: 150px;
}
.button-back svg {
	stroke-linecap: round;
}

.button-back:hover,
.button-back:focus {
	outline: none;
	stroke: #823725;
}

.modal {
	display: none;
	position: fixed;
	left: 0; 
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(256,256,256,0.65);
	padding-top: 150px;
}


@media screen and (min-width: 53em) {
	:root {
		font-size: 16px;
	}

	body {
		--ratio: 0.95;
		--grid-item-height: 25vw;
		--thumb-height: 7vh;
	}
	.button-back {
		position: static;
	}
	.button-back img {
		max-width: none;
	}
	main::after {
		display: none;
	}
	.columns {
		padding: 0 3rem;
	}
	.content__item-title {
		font-size: 10vh;
		white-space: nowrap;
		text-shadow: 3px 3px #fff, 4px 4px #000, 4px 2px #000, 2px 4px #000;
	}
	.mint_btn {
		display: block;
	}
	.mint_btn_mobile{
		display: none;
	}
	
	.frame {
		position: fixed;
		text-align: left;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100%;
		padding: 1.5rem 0 1.5rem 1rem;
		pointer-events: none;
		grid-template-columns: 50% 50%;
		grid-template-rows: auto auto;
		grid-template-areas:
			'title menu'
			'links ...';
	}

	.frame__title {
		margin: 0;
		white-space: nowrap;
	}
	.frame__title img {
		max-height: none;
	}

	.frame__links {
		text-align: center;
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
		transform: rotate(180deg);
		margin: 0;
		white-space: nowrap;
		display: block;
	}
	
	.frame__links a {
		border-bottom: 0;
		margin: 0.5rem 0;
	}

	.frame a,
	.frame button {
		pointer-events: auto;
	}

	.button-menu {
		grid-area: menu;
		justify-self: end;
		margin-right: 1rem;
	}

	.heading--up {
		display: block;
	}
	.heading {

		font-size: 12.25vw;
		-webkit-text-stroke: 3px #e5e516;
		-webkit-text-fill-color: rgba(95,145,255,0.5);
	}

	.column__item-imgwrap {
		margin: 5vw 2.75vw 0;
	}

	.column__item-caption {
		display: flex;
		justify-content: flex-start;
		font-size: 1.75em;
		-webkit-text-stroke: 1px #000;
		-webkit-text-fill-color: #e5e516;
	}

	.view-content .content {
		z-index: 10;
	}

	.content {
		padding: 0;
		grid-template-rows: 15vh 70vh 1fr;
		grid-template-columns: 1fr 1fr calc(70vh * var(--ratio)) 1fr 1fr;
		grid-template-areas: '... ... content content content'
			'... back content content content'
			'... nav nav nav ...';

	}
	.modal {
		padding-top: 0;
	}
	.content__item {
		display: grid;
		grid-template-rows: 15vh 1fr 35%;
		grid-template-columns: calc(70vh * 0.95) 1fr;
		grid-template-areas: 'title ...'
			'image text'
			'image text';
		text-align: left;
	}

	.content__item-title {
		margin: 0;
		align-self: center;
	}
	.content__item--current {
		opacity: 1;
		position: relative;
		height: 100%;
		bottom: auto;
	}
	.content__item-text {
		padding: 0 0 1vw 1vw;
		margin: 0;
		max-width: 20ch;
		text-align: left;
	}
	
	.content__item-text::before {
		display: none;
	}

	.content__item-text span:last-child {
		display: block;
		margin-top: 10vh;
	}

	.content__nav {
		padding: 0 0 1rem 0;
	}

	.button-back {
		margin-left: 0;
		margin-right: 5vw;
		justify-self: end;
	}
	.mint_btn .column__item-caption {
		margin: 0.5em auto;
		position: relative;
		justify-content: center;
	}
}

/*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
	overflow: hidden;
}

html.has-scroll-dragging {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.has-scroll-smooth body {
	overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
	min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
	height: 100vh;
	display: inline-block;
	white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
	height: 100%;
}

.c-scrollbar {
	position: absolute;
	right: 0;
	top: 0;
	width: 11px;
	height: 100%;
	transform-origin: center right;
	transition: transform 0.3s, opacity 0.3s;
	opacity: 0;
}

.c-scrollbar:hover {
	transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
	opacity: 1;
}

[data-scroll-direction="horizontal"] .c-scrollbar {
	width: 100%;
	height: 10px;
	top: auto;
	bottom: 0;
	transform: scaleY(1);
}

[data-scroll-direction="horizontal"] .c-scrollbar:hover {
	transform: scaleY(1.3);
}

.c-scrollbar_thumb {
	position: absolute;
	top: 0;
	right: 0;
	background-color: black;
	opacity: 0.5;
	width: 7px;
	border-radius: 10px;
	margin: 2px;
	cursor: -webkit-grab;
	cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

[data-scroll-direction="horizontal"] .c-scrollbar_thumb {
	right: auto;
	bottom: 0;
}

.landing-background {
    position: absolute;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    background-image: url('../img/bg-overlay.png');
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: repeat;
	opacity: .65;
}
.btn {
    position: relative;
    display: inline-block;
    color: transparent;
    white-space: nowrap;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 7px 15px;
}
.btn:before {
    content: "";
    background-color: #fff;
    -webkit-transform: translate(4px,5px);
    -o-transform: translate(4px,5px);
    transform: translate(4px,5px);
}
.btn:after, .btn:before, .btn__after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12.17857vh;
    border: 1px solid #000;
}
.btn:not(.btn--aftered):after {
    content: attr(data-title);
}
.btn:after, .btn__after {
    z-index: 1;
    color: #000;
    background-color: #e5e516;
    padding: inherit;
    -webkit-transition: background-color .125s linear,-webkit-transform .125s ease-out;
    transition: background-color .125s linear,-webkit-transform .125s ease-out;
    -o-transition: background-color .125s linear,-o-transform .125s ease-out;
    transition: background-color .125s linear,transform .125s ease-out;
    transition: background-color .125s linear,transform .125s ease-out,-webkit-transform .125s ease-out,-o-transform .125s ease-out;
}

.btn--active, .btn:hover, .site-header__languages:hover>.btn {
    text-decoration: none;
}
.btn--cc.btn--active .btn__after, .btn--cc.btn--active:after, .btn--cc:hover .btn__after, .btn--cc:hover:after {
    background-color: var(--hover-color);
}
.btn--active .btn__after, .btn--active:after, .btn:hover .btn__after, .btn:hover:after, .site-header__languages:hover>.btn .btn__after, .site-header__languages:hover>.btn:after {
    -webkit-transform: translate(0.42857vh,0.42857vh);
    -o-transform: translate(.42857vh,.42857vh);
    transform: translate(0.42857vh,0.42857vh);
}

.bg_image {
    position: absolute;
    max-width: 60%;
    margin-top: -5em;
}
.bg_image img {
	width: 100%;
}

.modal {
	display: none;
	position: fixed;
	left: 0; 
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(256,256,256,0.65);
}

.modal_wrapper {
		display: flex;
		width: 75%;
		margin: auto;
		height: auto;
		position: relative;
	}
  .info-content {
	position: relative; 
	background-color: #e5e516;
	border: 2px solid #000;
	border-radius: 2em;
	padding: 20px; 
	margin: auto; 
	width: 100%;  
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s
  }
  .info-content-behind {
	  position: absolute;
      width: 100%;
	  height: 100%;
	  border: 2px solid #000;
	  border-radius: 2em;
	  background: #fff;
	  -webkit-transform: translate(7px, 7px);
	  -o-transform: translate(7px, 7px);
	  transform: translate(7px, 7px);
	  -webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s
  }
  .close_btn_wrapper {
	position: absolute;
	top: -20px;
	right: 0;
 }
  .close-btn:hover {
	color: darkgray;
  }
  @-webkit-keyframes animatetop {
	from {opacity:0} 
	to {opacity:1}
  }
  @keyframes animatetop {
	from {opacity:0}
	to {opacity:1}
  }

  .in_modal {
	opacity: 1;
    text-align: center;
    margin-top: -0.75em;
    text-shadow: 5px 5px #e5e516, 6px 6px #000, 6px 4px #000, 4px 6px #000;
	-webkit-text-fill-color: #a02322;
}
.info-content p {
	color: #000;
	text-align: center;
	font-size: 1.25em;
}
.actionBtn_wrapper {
    display: flex;
    justify-content: space-around;
}