body,
html {
  margin: 0;
  padding: 0;
  width: 100vw;
}

#page {
  display: grid;
  grid-template-rows: 8vh 1fr auto;
}
#page #header {
  display: grid;
  grid-row: 1;
  background-color: #5100ea;
  width: 100vw;
  height: 8vh;
  min-height: 60px;
}
#page #main-wrapper {
  grid-row: 2;
}
#page #main-wrapper #main,
#page #main-wrapper main {
  display: grid;
}
#page #main-wrapper .region-content {
  display: grid;
}
#page #main-wrapper article {
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(14, 1fr [col-start]);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#page #main-wrapper article .field--name-field-background-image {
  z-index: -1000;
  grid-row: 1;
  grid-column: 1/13;
  overflow: hidden;
}
#page #main-wrapper article .field--name-field-background-image .field__item {
  min-height: 600px;
  height: calc(100vh - 60px);
}
@media (max-width: 900px) {
  #page #main-wrapper article .field--name-field-background-image .field__item {
    height: 50vh;
  }
}
#page #main-wrapper article .field--name-field-background-image .field__item img {
  filter: blur(8px);
  -webkit-filter: blur(8px);
  width: 110vw;
  height: 120vh;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: -5vw;
  margin-top: -10vh;
  margin-left: -5vw;
}

div[role=contentinfo] {
  display: grid;
  width: 100vw;
  height: 30px;
  font-family: EuclidCMedium;
  text-align: center;
  color: #5100ea;
  align-self: center;
}

.illustration {
  z-index: 1000;
}/*# sourceMappingURL=root.css.map */