/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  font-family: helvetica;
  font-weight: 100;
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --spacingUnit: calc(100vw / 15);
}

@media screen and (min-width: 415px) {
  :root {
    --spacingUnit: 24px;
  }
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #000;
  text-decoration: underline;
}

button {
  border: 0;
  background: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

html,
body,
body > div {
  height: 100%;
}

.base__container {
  padding: var(--spacingUnit);
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 100%;
}

@media screen and (min-width: 1024px) {
  .base__container {
    padding: calc(var(--spacingUnit) * 2);
  }
}

.nav__container {
  text-transform: uppercase;
  line-height: 1;
  display: block;
}

.nav__item {
  display: block;
  color: #9b9b9b;
  text-decoration: none;
  letter-spacing: 0.1em;
  margin: var(--spacingUnit) 0;
  line-height: var(--spacingUnit);
}

.nav__item:hover,
.nav__item.nav__is-selected {
  color: #000;
}

@media screen and (min-width: 280px) {
  .nav__container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }

  .nav__item {
    margin: 0;
    padding: var(--spacingUnit) 0;
    font-size: 4.6vw;
  }

  .nav__logoHolder {
    width: 100%;
  }
}

@media screen and (min-width: 415px) {
  .nav__logoHolder {
    margin-right: 2vw;
  }

  .nav__logoHolder svg {
    max-width: 312px;
  }

  .nav__item {
    padding: 24px 0;
  }
}

@media screen and (min-width: 640px) {
  .nav__container {
    align-items: flex-end;
    margin-bottom: 24px;
  }

  .nav__logoHolder {
    width: 312px;
  }

  .nav__item {
    padding: 0;
    line-height: 0.7;
    font-size: 2.4vw;
  }
}

@media screen and (min-width: 1024px) {
  .nav__container {
    margin-bottom: 72px;
  }
}

@media screen and (min-width: 1600px) {
  .nav__item {
    font-size: 38.4px;
  }
}

.about__container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about__textContainer {
  max-width: 35em;
  line-height: 1.4;
  margin: auto;
}

.about__textContainer p:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (min-width: 1024px) {
  .about__textContainer {
    font-size: 24px;
  }
}

.contact__container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact__textContainer {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  font-size: 20px;
}

@media screen and (min-width: 1024px) {
  .contact__textContainer {
    font-size: 24px;
  }
}

.items__itemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-right: calc(var(--spacingUnit) * -1);
}

.items__item {
  --itemsPerRow: 4;
  width: calc(
    (100% - var(--spacingUnit) * (var(--itemsPerRow))) / var(--itemsPerRow)
  );
  margin-bottom: var(--spacingUnit);
  margin-right: var(--spacingUnit);
}

.items__itemLink {
  display: block;
  padding-bottom: 100%;
  display: block;
  position: relative;
}

.items__itemImg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-height: 100%;
  mix-blend-mode: multiply;
}

.items__itemText {
  position: absolute;
  bottom: -1em;
  text-align: center;
  width: 100%;
  left: 0;
  font-size: 12px;
}

@media screen and (min-width: 688px) and (max-width: 1023px) {
  .items__item {
    --itemsPerRow: 5;
  }
}

@media screen and (min-width: 1200px) {
  .items__item {
    --itemsPerRow: 5;
  }
}

.categories__catList {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.95);
  padding: calc(var(--spacingUnit) / 2) 0;
  margin-bottom: var(--spacingUnit);
  z-index: 10;
  line-height: 1.2;
}

.categories__cat {
  display: block;
}

.categories__catLink {
  display: block;
  padding: calc(var(--spacingUnit) / 4) 0;
  text-decoration: none;
  color: #9b9b9b;
  border: 0;
  background: none;
  text-align: left;
  font-size: inherit;
  font-weight: inherit;
}

.categories__catLink:hover,
.categories__catLink:focus,
.categories__catLinkSelected {
  color: #000;
  outline: 0;
}

@media screen and (min-width: 640px) {
  .categories__catList {
    display: flex;
    position: sticky;
    top: -1px;
    padding: 0;
    align-items: center;
    justify-content: space-between;
  }

  .categories__cat:nth-child(1) {
    width: 2.8em;
  }
  .categories__cat:nth-child(2) {
    width: 5.9em;
  }
  .categories__cat:nth-child(3) {
    width: 5.9em;
  }
  .categories__cat:nth-child(4) {
    width: 6.1em;
  }
  .categories__cat:nth-child(5) {
    width: 8.3em;
  }

  .categories__catLink {
    padding: calc(var(--spacingUnit) / 2) 0;
  }
}

@media screen and (min-width: 1024px) {
  .categories__catList {
    position: sticky;
    top: 48px;
    display: block;
    font-size: 24px;
    width: 312px;
    float: left;
    border: none;
    margin: 0;
    padding: 0;
    background: none;
  }
  .categories__cat {
    display: block;
    margin: 0;
    width: auto;
  }
  .categories__catLink {
    padding: 0 0 2em;
  }
}

.folio-item__container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.folio-item__itemsContainer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.folio-item__itemsContainer > div {
  height: 100%;
}

.folio-item__itemContainer {
  position: relative;
  height: 100%;
}

.folio-item__details {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
  left: 100%;
  padding: calc(var(--spacingUnit) * 3) var(--spacingUnit);
  opacity: 0;
  transform: translateX(-50%);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  line-height: 1.5;
}

[aria-hidden="true"] .folio-item__details {
  display: none;
}

@media screen and (min-width: 640px) {
  .folio-item__details {
    width: calc(var(--spacingUnit) * 15);
  }
}

.folio-item__detailsVisible {
  transform: translateX(-100%);
  opacity: 1;
}

.folio-item__logo {
  color: #d8d8d8;
}

.folio-item__title {
  font-weight: normal;
}

.folio-item__imageContainer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.folio-item__image {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

@supports (object-fit: contain) {
  .folio-item__image {
    transform: none;
    left: 0;
    top: 0;
    position: static;
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

.folio-item__control {
  position: absolute;
  padding: var(--spacingUnit);
  color: #9b9b9b;
  z-index: 2;
}

.folio-item__control:hover,
.folio-item__control:focus {
  color: #000;
  outline: 0;
}

.folio-item__control svg {
  height: var(--spacingUnit);
  display: block;
  fill: currentColor;
}

.folio-item__exit {
  left: 0;
  top: 0;
}

.folio-item__info {
  right: 0;
  top: 0;
  border: 0;
  background: none;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: inherit;
}

.folio-item__next {
  right: 0;
  bottom: 0;
}

.folio-item__prev {
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 1024px) {
  .folio-item__control svg {
    height: 40px;
  }

  .folio-item__info {
    font-size: 40px;
  }
}

.home__container {
  display: flex;
  flex-direction: column;
}

.home__imgHolder {
  position: relative;
  flex-grow: 1;
  margin: 0 calc(-1 * var(--spacingUnit));
}

@media screen and (min-width: 1024px) {
  .home__imgHolder {
    margin: 0 calc(-2 * var(--spacingUnit));
  }
}

.home__img {
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home__tagline {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  top: 0.1em;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

@media screen and (min-width: 280px) {
  .home__tagline {
    font-size: 4.6vw;
  }
}

@media screen and (min-width: 640px) {
  .home__tagline {
    font-size: 2.4vw;
  }

  .home__tagline br {
    display: none;
  }
}

@media screen and (min-width: 1600px) {
  .home__tagline {
    font-size: 38.4px;
  }
}

.home__nico {
  /*font-weight: 500;*/
}


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