/* Fonts
-------------------------------------------------- */
@font-face {
	font-family: 'B612';
	font-style:  normal;
	font-weight: 400;
	src: url("../fonts/B612-Regular.woff2?v=2.3") format("woff2");
  }
  @font-face {
	font-family: 'B612';
	font-style:  italic;
	font-weight: 400;
	src: url("../fonts/B612-Italic.woff2") format("woff2");
  }
  
  @font-face {
	font-family: 'B612';
	font-style:  normal;
	font-weight: 700;
	src: url("../fonts/B612-Bold.woff2") format("woff2");
  }
  @font-face {
	font-family: 'B612';
	font-style:  italic;
	font-weight: 700;
	src: url("../fonts/B612-BoldItalic.woff2") format("woff2");
  }

  @font-face {
	font-family: 'KarmaticArcade';
	font-style:  normal;
	src: url("../fonts/KarmaticArcade.woff2") format("woff2");
  }
  


/* Reset
-------------------------------------------------- */
*, *:before, *:after {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font: inherit;
	color: inherit;
	line-height: inherit;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section, summary {
	display: block;
}


/* Browser Update
-------------------------------------------------- */
.browserupdate {
	display: block;
	margin-bottom: 3em;
	padding: 2em;
	color: #fff;
	background-color: red;
	text-align: center;
}
.browserupdate a {
	color: #fff;
	text-decoration: underline;
}
.browserupdate a:hover {
	color: #fff;
	font-weight: 700;
}


/* Media
-------------------------------------------------- */
img {
	border-style: none;
	display: block;
	max-width: 100%;
	height: auto;
}
figcaption {
	font-size: .75rem;
	line-height: 1.5rem;
	color: #999;
}
iframe { max-width: 100% }
figure.video {
	margin: 0 0 4%;
	position: relative;
	padding-bottom: 55%;
	height: auto;
	overflow: hidden;
}
figure.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* Links
-------------------------------------------------- */
a {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	transition: color .15s ease-out, background-color .15s ease-out;
}
a:hover {
	color: #9ba5a8;
}


/* Clearfix
-------------------------------------------------- */
.cf:after {
	content: "";
	display: table;
	clear: both;
}


/* Site
-------------------------------------------------- */
html,
body {
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}
html {
	font-family: "B612", sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	font-size: 100%;
	line-height: 1.5em;
	background: #fff;
	color: #000;
}
body.is-active-menu {
	overflow: hidden;
	touch-action: none;
}
.width {
	margin: 0 auto;
	padding: 1em;
	max-width: 65em;
}

@media screen and (min-width: 48em) {
	.width {
		padding: 3em 1em 0;
	}
}


/* Header
-------------------------------------------------- */
.header {
	padding: 1em 1em .5em;
	background-color: transparent;
	width: 100%;
	position: fixed;
	z-index: 3000;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.25s ease-in-out;
}

.header-scrolled {
	background-color: #fff;
}

.header-inner {
	flex: 0 0 auto;
	height: 64px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	align-items: center;
}

.logo {
	color: #000;
	width: 300px;
	font-size: 2em;
	font-weight: 700;
	line-height: 1;
	display: inline-block;
	flex: 0 0 auto;
}
.logo:hover {
	color: #000;
}
.btn.toggle {
	color: #000;
	background: #fff;
	display: block;
	position: absolute;
	top: 1em;
	right: 1em;
	cursor: pointer;
}
.btn-toggle {
	cursor: pointer;
	position: relative;
	z-index: 9999;
	float: right;
}
.btn-toggle span {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-toggle span:before, .btn-toggle span:after {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	border-top: 2px solid #fff;
	outline: 4px solid #000;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transform-origin: center center;
	transform-origin: center center
}
.btn-toggle span:before {
	transform: translate(0, -6px)
}
.btn-toggle span:after {
	transform: translate(0, 6px)
}
.btn-toggle:hover span:before {
	transform: translate(0, -7px)
}
.btn-toggle:hover span:after {
	transform: translate(0, 7px)
}
.btn-toggle.is-active span {
	transform: rotate(-90deg)
}
.btn-toggle.is-active span:before {
	transform: translate(0, 0) rotate(-45deg)
}
.btn-toggle.is-active span:after {
	transform: translate(0, 0) rotate(45deg)
}


/* Navigation
-------------------------------------------------- */
.navigation {
	position: fixed;
	z-index: 2000;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100dvh;
	width: 100%;
	margin: 0 auto;
	padding: 1em;
	background: rgba(255, 255, 255, 0.97);
	transition: opacity .25s ease, visibility .25s ease;
}
.navigation.is-active {
	opacity: 1;
	visibility: visible;
}
.menu {
	text-align: center;
}
.menu a {
	color: #9ba5a8;
	font-size: 2.5em;
	line-height: 1;
	margin: 2rem 0;
	font-weight: 400;
	display: inline-block;
	position: relative;
	transition: color 0.5s ease;
	transition-timing-function: cubic-bezier(0.2,1,0.3,1);
}
.menu a::before {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 50%;
	left: 0;
	bottom: 0;
	opacity: 0.75;
	transform: scale3d(0,1,1);
	transform-origin: 0% 50%;
	transition: transform 0.5s ease;
	transition-timing-function: cubic-bezier(0.2,1,0.3,1);
}
/* .menu a:focus::before,
.menu a:hover::before {
	background: #4400e3;
	transform: scale3d(1,1,1);
} */
.menu a:hover {
	color: #000;
	text-decoration: none;
}
.menu .active {
	color: #000;
	font-weight: 900;
}
.menu li {
	list-style: none;
	position: relative;
}
.navigation .copyright {
	font-weight: 400;
	color: #9ba5a8;
	text-align: center;
	position: absolute;
	bottom: 3em;
}
.navigation .copyright a {
	color: #9ba5a8;
	font-weight: 500;
}
.navigation .copyright a:hover {
	color: #000;
}

@media screen and (min-width: 48em) {
	.navigation {
		padding: 3em;
	}
	.menu a {
		font-size: 4em;
	}
}


/* Headings
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-size: 2em;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 1rem;
	word-wrap: break-word;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size: 1.17em;
}
h4 {
	font-size: 1em;
}
h5 {
	font-size: 0.83em;
}
h6 {
	font-size: 0.67em;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	border: 0 !important;
}


/* Main
-------------------------------------------------- */
.main {
	padding: 5em 0 1em;
}
.main hr {
	margin: 2em 0;
	height: 2px;
	background: #9ba5a8;
}
.main p,
.main figure,
.main ul,
.main ol {
	margin-bottom: 1em;
}
.main a {
	color: #9ba5a8;
	border-bottom: 2px solid transparent;
}
.main a:hover {
	color: #333;
	border-color: #ccd9dd;
}
.main figure {
	margin-left: -1em;
	margin-right: -1em;
}
.main strong,
.main b {
	font-weight: bold;
}
.main i, .main cite, .main em  {
	font-style: italic;
}

/* Text blocks */
.text ul,
.text ol {
	margin-left: 1em;
}

@media screen and (min-width: 48em) {
	.main {
		padding: 5em 0 1.5em;
	}
	.main p,
	.main figure,
	.main ul,
	.main ol {
		margin-bottom: 1.5em;
	}
	.main figure {
		margin-left: -3em;
		margin-right: -3em;
	}
}


/* Footer
-------------------------------------------------- */
.footer {
	margin: 3em 0 2em;
	font-weight: 500;
	text-align: center;
	height: 0px;
	margin: 0px;
	padding: 0px;
}
.heart {
	background: url("../images/heart.svg") no-repeat;
	display: inline-block;
	height: 12px;
	width: 14px;
	margin-bottom: -1px;
}

.brain {
	background: url("../images/brain.svg") no-repeat;
	display: inline-block;
	height: 12px;
	width: 14px;
	margin-bottom: 1px;
}

/* Boxs
-------------------------------------------------- */
.box-right {
	padding-top: 2em;
}

@media screen and (min-width: 48em) {
	.box-left,
	.box-right {
		width: 50%;
		float: left;
	}
	.box-left {
		text-align: right;
		padding-right: 2em;
	}
	.box-right {
		padding-left: 2em;
		padding-top: 0em;
	}
}