@keyframes fade-in {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "Univers Next Pro";
  src: url("../typefaces/UniversNextPro-Regular.otf") format("truetype");
  font-display: block;
  font-weight: normal;
  font-style: normal;
}
body, h1, h2 {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-family: helvetica neue, sans-serif;
  cursor: default;
  font-weight: normal;
}
@media only screen and (max-width: 660px) {
  body, h1, h2 {
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
}

p {
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
}

video {
  width: 100%;
}

a {
  color: black;
}

.hide {
  display: none !important;
}

.sk-content-container {
  position: relative;
}

.sk-image-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100vh;
  width: 100vw;
  animation: fade-in 1s forwards;
  opacity: 0;
}
@media only screen and (max-width: 1100px) {
  .sk-image-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 660px) {
  .sk-image-grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.sk-image-grid-item img {
  height: 50vh;
  width: 33.33vw;
  object-fit: cover;
}
@media only screen and (max-width: 1100px) {
  .sk-image-grid-item img {
    height: auto !important;
    width: 50vw;
  }
}
@media only screen and (max-width: 660px) {
  .sk-image-grid-item img {
    height: auto !important;
    width: 100vw;
  }
}

.sk-image-grid-item--white {
  padding: 30px 0;
}

.sk-text-container {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1;
}

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