/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/open-sans-v40-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/open-sans-v40-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* quicksand-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/quicksand-v31-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* quicksand-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/quicksand-v31-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --color-yellow: #ECE747;
  --color-magenta: #DE3E88;
  --color-green: #A1FF4F;
  --color-black: #232323;
  --color-white: #FFFFFF;
  --color-grey: #e3e3e3;
}

html, body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background-color: var(--color-black);
  color: var(--color-white);
  font: 300 18px/1.5 "Open Sans", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
}
@media (max-width: 800px) {
  body {
    margin-top: 0;
  }
}

header {
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-grey);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  z-index: 10;
}
header ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
header ul li {
  margin: 0;
  padding: 0;
}
header ul li > a, header ul li > a:visited {
  border-bottom: 1px solid var(--color-grey);
  border-top: 1px solid var(--color-grey);
  display: block;
  color: var(--color-black);
  text-decoration: none;
  text-transform: uppercase;
}
header ul li > a:hover {
  border-bottom: 1px solid var(--color-black);
}
header ul li > span {
  border-bottom: 1px solid var(--color-black);
  border-top: 1px solid var(--color-grey);
  display: block;
  color: var(--color-black);
  text-decoration: none;
  text-transform: uppercase;
}
header .menu-button {
  display: none;
  width: 31px;
  height: 31px;
  margin: 1rem;
}
header .menu-button div {
  width: 31px;
  height: 5px;
  background-color: var(--color-white);
  transform: translateY(0) rotate(0deg);
  transform-origin: center center;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
header .menu-button div:nth-child(1) {
  margin-bottom: 8px;
}
header .menu-button div:nth-child(2) {
  margin-bottom: 8px;
}
header .menu-button div:nth-child(3) {
  margin-bottom: 0;
}
body.menu-open header .menu-button div:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
body.menu-open header .menu-button div:nth-child(2) {
  opacity: 0;
}
body.menu-open header .menu-button div:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
@media (max-width: 800px) {
  header {
    align-items: start;
    flex-direction: column;
    background-color: var(--color-black);
    position: relative;
    height: auto;
  }
  header ul {
    display: none;
    padding-bottom: 2rem;
    width: 100%;
  }
  header ul li > a, header ul li > a:visited {
    border-bottom: none;
    border-top: none;
    color: var(--color-white);
    display: block;
    width: 100%;
  }
  header ul li > a:hover {
    border-bottom: none;
  }
  header ul li > span {
    border-bottom: none;
    border-top: none;
    display: block;
    color: var(--color-white);
    text-decoration: underline;
    text-transform: uppercase;
  }
  body.menu-open header ul {
    display: flex;
    flex-direction: column;
    margin: 1rem;
  }
  header .menu-button {
    display: block;
  }
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.banner-squares {
  width: 1400px;
  max-width: calc(100vw - 10rem);
  margin: 5rem 5rem 3rem 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-template-areas: "text yellow magenta green";
}
@media (max-width: 800px) {
  section.banner-squares {
    width: auto;
    max-width: none;
    margin: 0;
    align-self: stretch;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: "yellow magenta" "green text";
  }
}
section.banner-squares > div {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
section.banner-squares > div.text {
  grid-area: text;
  background-color: var(--color-black);
  background-image: url("/assets/images/nonconform-square-logo.svg");
  display: flex;
  align-items: center;
  justify-content: right;
}
section.banner-squares > div.yellow, section.banner-squares > div.magenta, section.banner-squares > div.green {
  background-image: url("/assets/images/hans_hut.png");
  background-blend-mode: multiply;
}
section.banner-squares > div.yellow {
  grid-area: yellow;
  background-color: var(--color-yellow);
}
section.banner-squares > div.magenta {
  grid-area: magenta;
  background-color: var(--color-magenta);
}
section.banner-squares > div.green {
  grid-area: green;
  background-color: var(--color-green);
}

div.centered-layout {
  max-width: 1400px;
  margin: 0 5rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: auto;
  grid-template-areas: ". main aside";
}
@media (max-width: 800px) {
  div.centered-layout {
    padding: 1.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "main" "aside";
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  div.centered-layout {
    margin: 2rem 2rem;
  }
}
@media (max-width: 600px) {
  div.centered-layout {
    margin: 2rem 1rem;
  }
}
div.centered-layout > section {
  grid-area: main;
}
div.centered-layout > section h3 {
  font: 300 35px/1.5 Quicksand, sans-serif;
  -webkit-hyphens: auto;
  hyphens: auto;
  text-transform: uppercase;
}
div.centered-layout > section h4 {
  font: 300 25px/1.5 Quicksand, sans-serif;
  padding-bottom: 0;
  padding-top: 2em;
  text-transform: uppercase;
}
div.centered-layout > section a, div.centered-layout > section a:visited {
  color: var(--color-white);
}
div.centered-layout > section blockquote {
  border-left: 1px solid var(--color-white);
  padding-left: 1rem;
}
div.centered-layout > section .note-link {
  font-size: 70%;
  vertical-align: top;
}
div.centered-layout > section .footnotes {
  border-top: 1px solid var(--color-white);
  margin-top: 5rem;
}
div.centered-layout > section .footnotes > h4 {
  font-size: 90%;
}
div.centered-layout > section .footnotes > ol {
  font-size: 70%;
}
div.centered-layout > section .div_videos {
  clear: both;
}
div.centered-layout > section .div_videos > .div_video_frame {
  padding: 20px 0 40px 0;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video {
  border: 1px solid var(--color-grey);
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 0;
  position: relative;
  margin: 0;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > iframe, div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_a_youtube, div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_a_vimeo, div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > a span {
  display: none;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_a_youtube, div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_a_vimeo {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_a_youtube:before, div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_a_vimeo:before {
  background: rgba(0, 0, 0, 0.6) url(/assets/images/icon_play.svg) center center no-repeat;
  background-size: 30px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #fff;
  content: "";
  height: 60px;
  left: 50%;
  margin: -30px -50px;
  position: absolute;
  top: 50%;
  transition: background-color 0.1s linear;
  -webkit-transition: background-color 0.1s linear;
  -moz-transition: background-color 0.1s linear;
  -ms-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  width: 100px;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_a_youtube:hover:before, div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay_a_youtube:hover:before {
  background-color: #cc181e;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_a_vimeo:hover:before, div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay_a_vimeo:hover:before {
  background-color: #00a4ed;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 12px;
  line-height: 22px;
  overflow: hidden;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay.div_video_overlay_no_bg {
  background-color: var(--color-black);
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay div {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  left: 0;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  text-align: center;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay.div_video_overlay_no_bg div {
  background: transparent;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay div p {
  margin: 0;
  padding: 0;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay div a {
  color: #fff;
  display: inline-block;
  margin: 5px 0;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video > .div_video_overlay div a:before {
  background: rgba(0, 0, 0, 0.6) url(/assets/images/icon_play.svg) center center no-repeat;
  background-size: 30px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #fff;
  content: "";
  display: block;
  height: 60px;
  margin: auto;
  transition: background-color 0.1s linear;
  -webkit-transition: background-color 0.1s linear;
  -moz-transition: background-color 0.1s linear;
  -ms-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  width: 100px;
}
div.centered-layout > section .div_videos > .div_video_frame > .div_video_description {
  background-color: #fff;
  color: #2F2F2F;
  text-align: center;
}
div.centered-layout > aside {
  font-size: 83%;
  -webkit-hyphens: auto;
          hyphens: auto;
  line-height: 1.8em;
  margin-left: 8rem;
  margin-top: 6rem;
  grid-area: aside;
}
@media (max-width: 800px) {
  div.centered-layout > aside {
    margin-left: 0;
    margin-top: 0;
  }
}

.menu-mobile {
  align-items: center;
  display: flex;
  font-size: 80%;
  justify-content: center;
  margin: 0 2rem;
}
.menu-mobile ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 50px 0;
  padding: 0;
  gap: 1rem;
}
@media (max-width: 450px) {
  .menu-mobile ul {
    gap: 2.5rem;
  }
}
@media (max-width: 320px) {
  .menu-mobile ul {
    gap: 1rem;
  }
}
.menu-mobile ul li {
  flex-grow: 1;
  flex-shrink: 1;
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu-mobile ul li > a, .menu-mobile ul li > a:visited {
  display: block;
  color: var(--color-grey);
  text-decoration: none;
  text-transform: uppercase;
}
.menu-mobile ul li > span {
  display: block;
  color: var(--color-grey);
  text-decoration: underline;
  text-transform: uppercase;
}
@media (min-width: 800px) {
  .menu-mobile {
    display: none;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: right;
  height: 2rem;
  text-transform: uppercase;
}
footer > span {
  display: block;
  margin-right: 1rem;
  line-height: 2rem;
  font-size: 0.75rem;
}
footer a {
  color: var(--color-white);
  text-decoration: none;
}
footer > div {
  height: 2rem;
  width: 2rem;
}
footer > div.yellow {
  background-color: var(--color-yellow);
}
footer > div.magenta {
  background-color: var(--color-magenta);
}
footer > div.green {
  background-color: var(--color-green);
}/*# sourceMappingURL=index.css.map */