/* ----------------------------------------------------------------------------------------------------

SCSS Form Reset Helpers - Forked from: https://gist.github.com/anthonyshort/552543

Intended usage:
- MIXINS: for very specific use cases, when you dont want to reset absolutly all the forms, very verbose output.
- PLACEHOLDER SELECTORS: use as extending classes. Less verbose, more generic overrides.

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
@import "fonts/stylesheet.css";
textarea, button, select, label, input {
  display: inline-block;
  margin: 0;
  border: 0;
  padding: 0;
  width: auto;
  vertical-align: middle;
  white-space: normal;
  line-height: inherit;
  background: none;
  /* Browsers have different default form fonts */
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

select, input[type=reset], input[type=button], input[type=submit], input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input {
  /* Make webkit render the search input like a normal text field */
  /* Turn off the recent search for webkit. It adds about 15px padding on the left */
  /* Fix IE7 display bug */
  /* These elements are usually rendered a certain way by the browser */
}
input:focus {
  outline: 0;
}
input[type=checkbox], input[type=radio] {
  width: 13px;
  height: 13px;
}
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}
::-webkit-search-decoration {
  display: none;
}

input[type=reset], input[type=button], input[type=submit] {
  overflow: visible;
}
select {
  /* Move the label to the top */
}
select[multiple] {
  vertical-align: top;
}

button {
  background: none;
  border: 0;
  outline: none;
  /* IE8 and FF freak out if this rule is within another selector */
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button:hover, button:active, button:focus {
  outline: 0;
}
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* RESET/GLOBAL */
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* Now 10px = 1rem! */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--main-color);
}

ul {
  list-style-type: none;
}

strong, b {
  font-weight: bold;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.text p, .text figure, .text ul, .text ol {
  margin-top: 1em;
}
.text hr {
  display: none;
}
.text blockquote {
  padding-left: 4em;
  padding-right: 4em;
}
.text *:first-child {
  margin-top: initial;
}
.text a {
  color: var(--highlight-color);
}
.text sup {
  font-size: 0.6em;
}
.text .footnotes ol li {
  font-size: 0.75em;
}
.text .footnotes ol li .footnote-backref {
  font-size: 0.6em;
}

html {
  --margin: 2rem;
  --font-size-primary: 1.6rem;
  --font-size-secondary: 1.5rem;
  --padding: 3rem;
  font-family: sans-serif;
  --color--space: #ff5eff;
  --color--exhibition: #49f500;
  --color--object: #30eaff;
  --color--research: #ffe600;
}
@media screen and (max-width: 700px) {
  html {
    --margin: 1.0rem;
    --font-size-primary: 1.6rem;
    --font-size-secondary: 1.6rem;
    width: 100vw;
    padding: 0;
  }
}
html .stop-scrolling {
  height: 100%;
  overflow: hidden;
}
html button {
  text-align: left;
}
html body {
  margin: var(--margin);
  position: relative;
}
html body h2 {
  font-size: var(--font-size-primary);
  text-align: left;
  font-weight: normal;
}
html body .colorControl {
  display: none;
}
html body .colorControl.active {
  cursor: pointer;
  font-family: courier;
  font-size: calc(.9 * var(--font-size-primary));
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  margin: var(--margin);
  z-index: 4;
}
@media screen and (max-width: 700px) {
  html body .colorControl {
    font-size: 1.4em !important;
  }
}
html body .credit {
  font-family: courier;
  font-size: 1 em;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  margin: var(--margin);
}
html body .credit a:hover {
  color: blue;
}
html body .project_wrapper {
  display: flex;
  flex-direction: column;
  color: black;
  padding-bottom: initial;
  font-size: calc(1.1 * var(--font-size-primary));
}
html body .project_wrapper .project {
  display: flex;
  flex-direction: column;
  font-size: calc(1.1 * var(--font-size-primary));
  padding-bottom: calc(3 * var(--padding));
  line-height: 1.3;
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .project {
    padding-bottom: 0px;
  }
}
html body .project_wrapper .project .project_title {
  padding-bottom: calc(.45 * var(--padding));
  padding-top: calc(.2 * var(--padding));
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .project .project_title {
    color: blue;
  }
}
html body .project_wrapper .project .project_description {
  padding-bottom: calc(0.5 * var(--padding));
}
html body .project_wrapper .image_opener {
  padding-top: calc(0.5 * var(--padding));
  font-size: calc(1.4 * var(--font-size-primary));
  transform: rotate(180deg);
  color: var(--color);
  justify-content: left;
}
html body .project_wrapper .grid1 {
  display: grid;
  pointer-events: none;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-left: calc(2 * var(--margin));
  margin-right: calc(2 * var(--margin));
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .grid1 {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }
}
html body .project_wrapper .grid2 {
  grid-column: var(--grid-column);
  pointer-events: auto;
  border-top: 2.8px dotted black;
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .grid2 {
    grid-column: 1;
  }
}
html body .project_wrapper .grid1:hover > .grid2:not(.active) {
  color: var(--color);
  border-top: 2.8px dotted var(--color);
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .grid1:hover > .grid2:not(.active) {
    border-top: 2.8px dotted black;
  }
}
html body .project_wrapper .grid1:hover ~ .grid3 > .grid4 > .project_tag {
  color: var(--color);
  border-bottom: 2.8px dotted var(--color);
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .grid1:hover ~ .grid3 > .grid4 > .project_tag {
    border-bottom: 0px;
  }
}
html body .project_wrapper .image__wrapper {
  display: none;
  margin: auto;
}
html body .project_wrapper .image__wrapper.active {
  padding-top: calc(.3 * var(--padding));
  display: block;
  position: relative;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .image__wrapper.active {
    width: 100%;
  }
}
html body .project_wrapper .image__wrapper .carousel-inner .image__item {
  display: none;
}
html body .project_wrapper .image__wrapper .carousel-inner .image__item.active {
  display: block;
  text-align: center;
  width: 85%;
  margin: auto;
}
html body .project_wrapper .image__wrapper .carousel-inner .image__item .image__item__image {
  height: 400px;
  object-fit: contain;
  margin: auto;
  display: relative;
  width: 100%;
  object-position: center;
  margin: auto;
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .image__wrapper .carousel-inner .image__item .image__item__image {
    height: 350px;
  }
}
html body .project_wrapper .image__wrapper .carousel-inner .image__item__caption {
  font-family: courier;
  color: black;
  text-align: center;
  font-size: calc(.9 * var(--font-size-primary));
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .image__wrapper .carousel-inner .image__item__caption {
    font-size: 0.92em;
  }
}
html body .project_wrapper .image__wrapper .arrows {
  cursor: pointer;
  font-family: courier;
  font-size: 5em;
  color: var(--color);
  width: 100%;
  margin: auto;
  flex-direction: row;
}
html body .project_wrapper .image__wrapper .arrows .carousel-control-prev {
  position: absolute;
  bottom: 40%;
  left: 0;
  color: blue;
}
html body .project_wrapper .image__wrapper .arrows .carousel-control-next {
  position: absolute;
  bottom: 40%;
  right: 0;
  color: blue;
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .image__wrapper .arrows {
    font-size: 4em;
  }
}
html body .project_wrapper .closingButton {
  font-family: courier;
  position: absolute;
  top: 0;
  right: 0;
  color: blue;
  font-size: calc(.9 * var(--font-size-primary));
}
html body .project_wrapper .grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-left: calc(2 * var(--margin));
  margin-right: calc(2 * var(--margin));
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .grid3 {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }
}
html body .project_wrapper .grid4 {
  grid-column: var(--grid-column);
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .grid4 {
    grid-column: 1;
  }
}
html body .project_wrapper .grid4 .project_tag {
  color: var(--color);
  font-family: courier;
  padding-top: var(--padding);
  border-bottom: 2.8px dotted black;
  font-size: calc(.9 * var(--font-size-primary));
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .grid4 .project_tag {
    border-bottom: 0px;
    padding-top: 0px;
  }
}
html body .project_wrapper .project_additional_info {
  display: none;
}
html body .project_wrapper .project_additional_info.active {
  display: block;
  cursor: pointer;
  position: relative;
  grid-column: 1/-1;
  width: 50%;
  margin: auto;
  padding-top: var(--padding);
}
@media screen and (max-width: 700px) {
  html body .project_wrapper .project_additional_info.active {
    width: 100%;
    padding-bottom: calc(.5 * var(--padding));
  }
}

.header {
  font-family: sans-serif;
  font-size: var(--font-size-primary);
  padding-bottom: calc(2 * var(--padding));
  color: blue;
  position: relative;
  z-index: 10;
  line-height: 1.3;
}
@media screen and (max-width: 700px) {
  .header {
    padding-bottom: calc(1 * var(--padding));
    color: black;
  }
}
.header .name {
  position: fixed;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .header .name {
    display: none;
  }
}
.header .contact {
  position: fixed;
  cursor: pointer;
  top: var(--margin);
  right: var(--margin);
}
@media screen and (max-width: 700px) {
  .header .contact {
    display: none;
  }
}
.header .about_mobile {
  display: none !important;
  padding-bottom: var(--padding/2);
}
@media screen and (max-width: 700px) {
  .header .about_mobile {
    display: block !important;
  }
}
.header .about_mobile .info {
  padding-bottom: calc(1.5 * var(--padding));
}
.header .contact__address {
  display: none;
  cursor: pointer;
}
.header .contact__address.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.about {
  display: none;
  cursor: pointer;
}
.about.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .about.active {
    display: none;
  }
}
.about .info {
  font-family: sans-serif;
  background-color: white;
  line-height: 1.3;
  overflow-y: auto;
  color: black;
  position: absolute;
  display: fixed;
  top: 0;
  left: 0;
  pointer-events: auto;
  width: 400px;
  margin: var(--margin);
  border: 2.8px dotted black;
  padding: var(--padding);
}
.about .info :hover {
  color: blue;
}

.contact__item {
  display: none;
}
.contact__item.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .contact__item.active {
    display: none;
  }
}
.contact__item .contact__item__info {
  background-color: white;
  line-height: 1.3;
  overflow-y: auto;
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  margin: var(--margin);
  border: 2.8px dotted black;
  padding: var(--padding);
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: all;
}

/*# sourceMappingURL=main.css.map */
