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 {
  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;
}

.centerXY {
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.centerX {
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.centerY {
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "HB";
  font-style: normal;
  font-weight: normal;
  src: local("HB"), url("../../fonts/HB.woff") format("woff");
}
@font-face {
  font-family: "Zuume";
  src: url("Zuume-Bold.eot");
  src: url("../../fonts/Zuume-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/Zuume-Bold.woff2") format("woff2"), url("../../fonts/Zuume-Bold.woff") format("woff"), url("../../fonts/Zuume-Bold.ttf") format("truetype"), url("../../fonts/Zuume-Bold.svg#Zuume-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
html, body {
  font-family: "Zuume", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

p {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 22px;
  text-transform: none;
}

*::selection {
  background: rgba(255, 0, 0, 0.99);
  color: #000;
}

*::-moz-selection {
  background: rgba(255, 0, 0, 0.99);
  color: #000;
}

*::-webkit-scrollbar {
  width: 3px;
}

*::-webkit-scrollbar-track {
  background: #FFF;
}

*::-webkit-scrollbar-thumb {
  background: #000;
  border: none;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

main {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}
main.active {
  opacity: 1;
  pointer-events: all;
}

button {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
}

.about__container {
  width: calc(100% - 140px);
  height: calc(100vh - 200px);
  padding: 100px 70px;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  display: none;
}
.about__container.active {
  opacity: 1;
  pointer-events: all;
}
.about__left-wrapper {
  width: 33.33%;
  margin-right: 30px;
}
.about__right-wrapper {
  flex: 1;
  padding: 0 30px 100px 0;
  overflow-y: auto;
  max-width: 600px;
}
.about__right-wrapper p {
  margin-bottom: 10px;
}
.about__right-wrapper strong {
  font-weight: bold;
}
.about__right-wrapper em {
  font-style: italic;
}
.about__right-wrapper a {
  text-decoration: underline;
}
.about__press-shot {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .about__container {
    width: calc(100% - 60px);
    height: calc(100vh - 140px);
    padding: 70px 30px;
    display: block;
  }
  .about__left-wrapper {
    width: 100%;
    margin-right: 0;
  }
  .about__right-wrapper {
    flex: auto;
    padding: 30px 0 100px 0;
    max-width: none;
  }
}
.logo__container {
  width: calc(100% - 100px);
  height: calc(100vh - 100px);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: height 0.4s ease-in-out;
  background-color: #FFF;
  z-index: 2;
}
.logo__container.hidden {
  display: none;
}
.logo__image-wrapper {
  position: relative;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 100px);
}
.logo__image {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.logo__period {
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
  transition: right 0.8s ease-in-out;
  right: -50%;
  z-index: 3;
}
.logo__period.active {
  transition: none;
}
.logo__arrow {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: #FFF;
  border: 3px solid #000;
  z-index: 2;
  display: none;
  animation: pulse 2s linear infinite;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}
.logo__arrow.active {
  display: flex;
}

.sidebar__left, .sidebar__right {
  position: fixed;
  text-align: center;
  height: 50px;
  width: 100vh;
  padding-top: 20px;
  top: 100%;
  z-index: 4;
}
.sidebar__left {
  left: 0;
  transform: rotate(-90deg);
  transform-origin: top left;
  pointer-events: none;
}
.sidebar__left button {
  pointer-events: all;
}
.sidebar__right {
  right: 0;
  transform: rotate(90deg);
  transform-origin: top right;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .sidebar__left, .sidebar__right {
    height: auto;
    width: 100%;
    padding: 20px 0;
    top: auto;
  }
  .sidebar__left {
    left: 0;
    transform: none;
    top: 0;
  }
  .sidebar__right {
    right: 0;
    transform: none;
    bottom: 0;
    display: inline-block;
    margin: 0 auto;
    pointer-events: none;
  }
  .sidebar__right a {
    pointer-events: all;
  }
}
.focus__close {
  pointer-events: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
}
.focus__close img {
  display: block;
  width: 100;
  height: 100%;
}
.focus__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 30;
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}
.focus__container.active {
  opacity: 1;
  pointer-events: all;
}
.focus__image-wrapper, .focus__video-wrapper {
  width: calc(66.66% - 50px);
  height: calc(100% - 100px);
  padding: 50px 50px 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: none;
}
.focus__image-wrapper img, .focus__video-wrapper img {
  max-width: 100%;
  max-height: 100%;
  justify-self: center;
  margin: 0 auto;
  display: block;
}
.focus__image-wrapper.active, .focus__video-wrapper.active {
  display: flex;
}
.focus__video {
  width: 100%;
  height: 100%;
}
.focus__info-wrapper {
  width: calc(33.33% - 80px);
  height: calc(100% - 100px);
  margin: 50px 30px 50px 50px;
  padding-right: 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.focus__info-wrapper p {
  margin-bottom: 20px;
}
.focus__info-wrapper strong {
  font-weight: bold;
}
.focus__info-wrapper em {
  font-style: italic;
}
.focus__info-wrapper a {
  text-decoration: underline;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .focus__close {
    position: fixed;
    width: 20px;
    height: 20px;
  }
  .focus__container {
    display: block;
    overflow-y: scroll;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .focus__image-wrapper, .focus__video-wrapper {
    width: calc(100% - 40px);
    height: 60vh;
    padding: 50px 20px 50px 20px;
    position: absolute;
    top: 0;
  }
  .focus__info-wrapper {
    width: calc(100% - 40px);
    height: auto;
    margin: 0;
    padding: 50px 20px 150px 20px;
    position: absolute;
    top: 60vh;
    display: block;
  }
}
.grid__container {
  width: calc(100% - 140px);
  margin: 20px 70px 50px 70px;
}
.grid__item-wrapper {
  width: calc(33.33333% - 10px);
  margin: 5px;
  position: relative;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .grid__item-wrapper:hover {
    opacity: 0.6;
  }
}
.grid__item-wrapper:active {
  opacity: 0.6;
}
.grid__text-wrapper {
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  color: #FFF;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .grid__text-wrapper:hover {
    opacity: 1;
  }
}
.grid__text-wrapper:active {
  opacity: 1;
}
.grid__text-wrapper h2, .grid__text-wrapper p {
  margin-bottom: 5px;
  color: #FFF;
}
.grid__image {
  display: block;
  width: 100%;
  height: auto;
}
.grid__info-wrapper {
  display: none;
}

@media screen and (max-width: 1000px) and (min-width: 751px) {
  .grid__item-wrapper {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 750px) and (min-width: 1px) {
  .grid__container {
    width: calc(100% - 40px);
    margin: 20px 20px 50px 20px;
  }
  .grid__item-wrapper {
    width: calc(100% - 10px);
  }
  .grid__text-wrapper {
    width: calc(100% - 40px);
    height: auto;
    padding: 20px;
    display: block;
    top: auto;
    bottom: 0;
    opacity: 1;
  }
  .grid__text-wrapper h2, .grid__text-wrapper p {
    margin-bottom: 0;
  }
  .grid__text-wrapper p {
    display: none;
  }
}
.footer__wrapper {
  width: 100%;
  height: auto;
  padding: 20px 0 30px 0;
  text-align: center;
}
.footer__back-to-top {
  display: inline-block;
  margin: 0 auto;
  cursor: pointer;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .footer__wrapper {
    padding: 20px 0 100px 0;
  }
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  width: 100%;
  height: 100vh;
  transition: opacity 0.2s ease-in-out;
}
.swiper-container.active {
  opacity: 1;
  pointer-events: all;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-slide {
  flex-shrink: 0;
  height: 100%;
  width: 100%;
  position: relative;
  transition-property: transform;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-image {
  display: block;
  max-width: calc(100% - 200px);
  max-height: calc(100% - 120px);
  height: auto;
  width: auto;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .swiper-image {
    display: block;
    max-width: calc(100% - 120px);
    max-height: calc(100% - 120px);
  }
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 0;
  z-index: 2;
  padding: 20px;
  height: calc(100% - 40px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: font-size 0.2s ease-in-out;
}
@media (hover: hover) {
  .swiper-button-prev:hover,
.swiper-button-next:hover {
    font-size: 14px;
  }
}
.swiper-button-prev:active,
.swiper-button-next:active {
  font-size: 14px;
}
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .swiper-button-next {
    padding: 20px 20px 20px 0;
  }

  .swiper-button-prev {
    padding: 20px 0 20px 20px;
  }
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0;
  right: auto;
  text-align: left;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0;
  left: auto;
  text-align: right;
}

.swiper-pagination {
  position: fixed;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  bottom: 20px;
  right: 20px;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 60%;
  margin-left: -5px;
  margin-top: -5px;
  animation: swiper-preloader-pulse 1s infinite linear;
  box-sizing: border-box;
  background-color: #000;
  border-radius: 50%;
}

@keyframes swiper-preloader-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.animation__wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.animation-one__wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
}
.animation-one.line {
  position: absolute;
  width: 100%;
  height: 2.5%;
  background-color: #e52629;
  transition: left 0.8s ease-in-out, right 0.8s ease-in-out;
}
.animation-one.line.top {
  top: 14%;
  left: 200%;
}
.animation-one.line.top.active {
  left: 0;
}
.animation-one.line.center {
  top: 48.75%;
  right: 200%;
}
.animation-one.line.center.active {
  right: 0;
}
.animation-one.line.bottom {
  bottom: 15%;
  left: 200%;
}
.animation-one.line.bottom.active {
  left: 0;
}

.animation-two__wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
}
.animation-two.line {
  position: absolute;
  background-color: #e52629;
  width: 0;
  height: 0;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
.animation-two.line.done {
  transition: none;
}
.animation-two.line.top, .animation-two.line.bottom {
  height: 2vh;
}
.animation-two.line.top.active, .animation-two.line.bottom.active {
  width: 108%;
}
.animation-two.line.top {
  top: -4%;
  right: -4%;
}
.animation-two.line.bottom {
  bottom: -4%;
  left: -4%;
}
.animation-two.line.left, .animation-two.line.right {
  width: 2vh;
}
.animation-two.line.left.active, .animation-two.line.right.active {
  height: 108%;
}
.animation-two.line.left {
  top: -4%;
  left: -4%;
}
.animation-two.line.right {
  bottom: -4%;
  right: -4%;
}
.animation-two.slash-wrapper {
  display: block;
  width: 100%;
  height: 0;
  transition: height 0.8s ease-in-out;
  overflow: hidden;
}
.animation-two.slash-wrapper.active {
  height: 100%;
}
.animation-two.slash {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .animation-two.line.top, .animation-two.line.bottom {
    height: 2vw;
  }
  .animation-two.line.top.active, .animation-two.line.bottom.active {
    width: 107%;
  }
  .animation-two.line.top {
    top: -3.5%;
    right: -3.5%;
  }
  .animation-two.line.bottom {
    bottom: -3.5%;
    left: -3.5%;
  }
  .animation-two.line.left, .animation-two.line.right {
    width: 2vw;
  }
  .animation-two.line.left.active, .animation-two.line.right.active {
    height: 107%;
  }
  .animation-two.line.left {
    top: -3.5%;
    left: -3.5%;
  }
  .animation-two.line.right {
    bottom: -3.5%;
    right: -3.5%;
  }
}
.project__back-button {
  position: fixed;
  bottom: 30px;
  left: 20px;
  z-index: 2;
}
.project__title {
  width: calc(100% - 60px);
  padding: 30px;
  position: fixed;
  top: 0;
  left: 0;
}
.project__image-wrapper {
  width: calc(100% - 140px);
  margin: 100px auto 100px auto;
  max-width: 1000px;
  display: block;
}
.project__image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .project__back-button {
    bottom: 20px;
  }
  .project__title {
    width: calc(100% - 60px);
    padding: 70px 30px 30px 30px;
    text-align: center;
  }
  .project__image-wrapper {
    width: calc(100% - 60px);
    margin: 150px auto 100px auto;
    max-width: none;
  }
}

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