@charset "UTF-8";
/* INDEX.CSS */

/* RESET */
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}
html {
  height: 100%;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
li {
  list-style-type: none;
}
:focus {
    outline:none;
}

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border:0;
    padding:0;
    margin:0;
}

/**/
@font-face {
	font-family: "MuseoSans";
	src: url('../fonts/MuseoSans-300.otf');
}
@font-face {
	font-family: "MuseoSans";
    font-style: italic;
	src: url('../fonts/MuseoSans-300Italic.otf');
}
@font-face {
	font-family: "MuseoSans";
	font-weight: bold;
	src: url('../fonts/MuseoSans-700.otf');
}
@font-face {
	font-family: "MuseoSans";
    font-weight: bold;
    font-style: italic;
	src: url('../fonts/MuseoSans-700Italic.otf');
}

/**/

h1 {
    display: none;
}

span.hyphen {
    display: inline-block;
    height: 2px;
    width: 40px;
    background: #000;
    margin: 10px 0px 8px 0px;
}

header.project-like span.hyphen,
main span.hyphen {
    background: #fff;
}

/**/
html {
  font-size: 62.5%;
  font-family: 'MuseoSans', Helvetica, Arial, sans-serif;
}

/* html,
body,
header {
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
} */

html.allow-animation {
    overflow: hidden;
}

#intro-animation {
    display: none;
}

html.allow-animation #intro-animation {
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    background: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    animation-name: hideAnimation;
    animation-duration: 1s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
}

html.allow-animation #intro-animation .intro-animation-wrapper {
    position: relative;
    top: 50%;
    transform: translateY(calc(-50% - 20px));
}

html.allow-animation #intro-animation .intro-animation-wrapper svg {
    height: 200px;
    opacity: 0;
    animation-name: showLogo;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}

html.allow-animation #intro-animation .intro-animation-wrapper svg g {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    animation-name: rotating;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

html.allow-animation #intro-animation .intro-animation-wrapper span {
    display: block;
    opacity: 0;
    animation-name: showName;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes showLogo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes showName {
    from {
        opacity: 0;
        transform: translateY(40%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hideAnimation {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}

header {
    position: fixed;
    top: 0;
    height: 140px;
    width: 100%;
    background: #fff;
    z-index: 10;
}

header.project-like {
    background: transparent;
    pointer-events: none;
}

header.project-like * {
    color: #fff;
    pointer-events: all;
}

header,
header h2,
header h3,
header a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

header .title {
    position: absolute;
    top: 33px;
    left: calc(4vw + 100px);
    width: 150px;
}

header .title svg {
    position: absolute;
    top: -13px;
    left: -110px;
    height: 100px;
}

header .title svg .fill {
    fill: #000;
}

header.project-like .title svg .fill {
    fill: #fff;
}

header a.home-link {
    pointer-events: none;
}
header svg {
    pointer-events: all;
}

header .title svg g {
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@media screen and (min-width: 640px) {
    header .title svg:hover g {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

header .title svg g .background {
    display: none;
}

header .title h2 {
    line-height: 1.5rem;
}

header .title span.hyphen {
    margin-top: 10px;
    margin-bottom: 7px;
}

header .title h3 {
    line-height: 1.9rem;
}

header .links {
    position: absolute;
    top: 31px;
    right: 4vw;
    text-align: right;
}

header .links a {
    display: block;
}


header .links .switch {
    position: relative;
    display: block;
    left: calc(100% - 36px);
    width: 36px;
    height: 20px;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

header.project-like .links .switch {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}

header .links .switch.inactive {
    pointer-events: none;
}

header .links .switch.hide,
header .links .switch.hide * {
     opacity: 0;
     pointer-events: none;
}

header .links .switch input {
    display:none;
}

header .links .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    border: 2px solid #000;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}

header.project-like .links .slider {
    border: 2px solid #fff;
}

header .links .slider::before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  background-color: #000;
  -webkit-transition: transform .3s;
  transition: transform .3s;
}

header.project-like .links .slider::before {
    background-color: #fff;
}

header .links input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

main {
    padding-top: 140px;
}

.button-group {
    position: fixed;
    top: 140px;
    right: 0;
    height: calc(100% - 140px);
    width: calc(140px + 4vw);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
}
.button-group.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.button-group .button-wrapper {
    width: calc(100% - 4vw);
    width: 140px;
}

.button-group input {
    display: none;
}

.button-group .sorting {
    margin-bottom: 2vw;
}
.button-group .filter {
    text-align: right;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
}

.button-group .filter label,
.button-group .filter input {
    cursor: pointer;
}

.button-group .filter label::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    margin-bottom: -1px;
    height: 8px;
    width: 8px;
    border: 2px solid #000;
    border-radius: 50%;
}

.button-group .filter input:checked + label::after {
    background: #000;
}

.grid {
    font-size: 0;
    width: 92%;
    margin-left: 4%;
    transition: all 300ms ease;
    padding-bottom: 2vw;
}
.grid.stand-by {
    opacity: 0;
}
.grid.scaled {
    width: calc(91vw - 140px);
}

.grid-item,
.grid-sizer {
    width: calc( ( 100% - 2vw * 3 ) / 4 ) ;
}

.gutter-sizer {
    width: 2vw;
}
.grid.scaled .gutter-sizer {
    width: calc( 100% * 2vw / 100vw );
}

.grid .grid-item {
    position: relative;
    float: left;
    width: calc( ( 100% - 2vw * 3 ) / 4 );
    padding-bottom: calc( ( 100% - 2vw * 3 ) / 4 );
    margin-bottom: 2vw;
    overflow: hidden;
}

.grid .grid-item.one-by-two,
.grid .grid-item.two-by-two {
    width: calc( 50% - 1vw );
}
.grid .grid-item.two-by-two {
    padding-bottom: calc( 50% - 1vw );
}

.grid .grid-item a {
    position: absolute;
    display: block;
    height: calc(100% - 4vw);
    width: calc(100% - 4vw);
    padding: 2vw;
}

.grid.scaled .grid-item a {
    font-size: calc( (98vw - 180px) / 100 );
}

.grid .grid-item a img{
    pointer-events: none;
}

/* .grid .grid-item h2,
.grid .grid-item span.hyphen,
.grid .grid-item h3,
.grid .grid-item img {
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
} */

.grid .grid-item h2,
.grid .grid-item span.hyphen,
.grid .grid-item h3 {
    position: relative;
    font-size: 2.5rem;
    color: #fff;
    opacity: 0;
}

.grid .grid-item:hover h2,
.grid .grid-item:hover span.hyphen,
.grid .grid-item:hover h3 {
    opacity: 1;
}

.grid .grid-item:hover span.hyphen {
    margin-bottom: 12px;
}

.grid .grid-item h3 {
    font-size: 2rem;
}

.grid .grid-item h2,
.grid .grid-item h3 {
    white-space: normal;
}

.grid .grid-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.grid .grid-item:hover img {
    opacity: 0;
}

main#project {
    position: fixed;
    top: 0%;
    width: 60vw;
    min-height: calc(100vh - 115px - 4vw);
    padding-top: 115px;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-bottom: 4vw;
    overflow: hidden;
}

main#project * {
    color: #fff;
}

main#project h1 {
    display: block;
    font-weight: normal;
    text-transform: uppercase;
}

.project-wrapper {
    position: absolute;
    top: calc(50px + 50%);
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.project-wrapper.inactive {
    opacity: 0;
}

/* .project-wrapper * {
    transition: all .3s ease;
} */


#slider {
    width: 100%;
    height: 0;
    margin: auto;
    /* width: 60vw;
    height: calc((60vw * 2)/3); */
    /* max-width:600px;
    max-height: 400px; */
}

#slider div {
    height: 100%;
    background-size: cover!important;
    background-position: center!important;
    -webkit-transition: background .3s ease;
    -o-transition: background .3s ease;
    transition: background .3s ease;
}

#slider .slick-dots {
    position: absolute;
    top: -24px;
    height: 8px;
    width: 100%;
}

#slider .slick-dots li {
    display: inline-block;
    height: 8px;
    width: 8px;
    margin-right: 10px;
}

#slider .slick-dots li button {
    position: absolute;
    height: 12px;
    width: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: none;
    font-size: 0;
}

#slider .slick-dots li.slick-active button {
    background: #fff;
}

#slider div,
#slider .slick-dots li button {
    cursor: pointer;
}

#slider div.slide {
    position: relative;
}

#slider .prev-slide,
#slider .next-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    z-index: 1;
}

#slider .next-slide {
    left: 25%;
    width: 75%;
}

#slider .video-slide .prev-slide,
#slider .video-slide .next-slide {
    top: 40px;
    height: calc( 100% - 90px );
}

#slider .video-slide .next-slide {
    left: 75%;
    width: 25%;
}

#slider .video-slide {
    background: rgba(0,0,0,.1);
}

#slider .video-slide iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    pointer-events: all;
}

#slider .video-slide svg {
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#slider .video-slide svg g {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: rotating 1s ease-in-out infinite;
    -moz-animation: rotating 1s ease-in-out infinite;
    -ms-animation: rotating 1s ease-in-out infinite;
    -o-animation: rotating 1s ease-in-out infinite;
    animation: rotating 1s ease-in-out infinite;
}

#slider .video-slide svg g circle {
    fill: transparent;
    stroke: #fff;
    stroke-width: 2;
}

.text {
    width: 100%;
    padding-top: 20px;
}

.text h1 {
    font-size: 1.8rem;
}

.text p {
    font-size: 1.5rem;
}

.text .annotations p {
    margin-top: 0.2rem;
    font-style: italic;
    font-size: 1.2rem;
}

.navigation {
    position: fixed;
    bottom: 4vw;
    right: 4vw;
}

.navigation img {
    display: inline-block;
    height: 40px;
}

.navigation .next img {
    transform: rotate(180deg);
}

main#infos {
    min-height: calc(100vh - 140px);
    padding-top: 140px;
    color: #fff;
    font-size: 20px;
    overflow: hidden;
}

main#infos h1 {
    display: none;
}

main#infos .main-wrapper {
    position: relative;
    max-width: calc(1500px + 8vw );
    height: calc( 100vh - 140px );
    padding-left: 4vw;
    margin: auto;
    overflow: auto;
}

main#infos .main-wrapper {
    width: 92vw;
    padding-right: 4vw;
}

main#infos a,
main#infos a:hover,
main#infos a:focus {
    color: #fff;
}

.introduction {
    width: 100%;
    font-weight: bold;
    font-size: 2rem;
}

.introduction span.hyphen {
    display: block;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.column-wrapper {
    position: relative;
    padding-bottom: 4vw;
    -webkit-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 0;
    column-gap: 0;
}

.column-wrapper .column {
    margin-bottom: 4rem;
    font-size: 2rem;
    vertical-align: top;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.column-wrapper .column *:not(.hyphen) {
    width: 250px;
    /* -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid; */
}

.column-wrapper .column h2 {
    font-size: 3rem;
    margin-bottom: .5rem;
}

.column-wrapper .column h3 {
    font-size: 2.3rem;
    margin-top: 2rem;
}

.column-wrapper .column h3:first-of-type {
    margin-top: 0rem;
}

.column-wrapper .column p.spaced {
    margin-top: 1rem;
}

.column-wrapper .column p.break-pre-line {
    white-space: pre-line;
}

.column-wrapper .column span.hyphen.separator {
    display: block;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.defs-only {
  position: absolute;
  height: 0; width: 0;
  overflow: none;
  left: -100%;
}

@media screen and (max-width: 1800px) {
    main#infos .main-wrapper {
        max-width: none;
    }
}

@media screen and (max-width: 1200px) {
    .grid .grid-item h2 {
        font-size: 2rem;
    }
    .grid .grid-item h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .column-wrapper {
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media screen and (max-width: 1000px) {
    .grid .grid-item h2 {
        font-size: 1.5rem;
    }
    .grid .grid-item h3 {
        font-size: 1.3rem;
    }
    .grid .grid-item h2,
    .grid .grid-item h3 {
        white-space: pre-wrap;
    }
    .grid.scaled h3 {
        display: none;
    }
    .post.insta-link {
        font-size: 2rem;
    }
}

@media screen and (max-width: 880px) {
    .column-wrapper {
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media screen and (max-width: 640px) {
    header .links .switch,
    .filter-button-group,
    .grid .grid-item:hover h2,
    .grid .grid-item:hover span.hyphen,
    .grid .grid-item:hover h3 {
         opacity: 0;
         pointer-events: none;
    }
    .grid.scaled {
        width: 92%;
    }
    .column-wrapper {
        -webkit-column-count: 1;
        column-count: 1;
    }
    .column-wrapper .column {
        text-align: center;
    }
    .column-wrapper .column *:not(.hyphen) {
        width: 100%;
    }
    .column-wrapper .column p.break-pre-line {
        white-space: inherit;
    }
}

@media screen and (max-width: 640px) {
    main#project {
        width: 100vw;
        padding: 0;
        padding-top: 140px;
        min-height: calc(100vh - 140px);
    }
    .project-wrapper {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: auto;
        left: auto;
        height: calc(100vh - 140px - 10vw);
        width: 80vw;
        padding: 0 10vw 10vw 10vw;
        transform: none;
        overflow: auto;
    }
    .project-wrapper .text {
        order: 1;
    }
    #slider {
        order: 2;
        top: 25px;
        height: auto!important;
        width: 100%!important;
        pointer-events: block;

        padding-bottom: calc(4vw + 80px);
        /* background: blue; */
    }
    #slider .slick-dots {
        display: none!important;
    }
    #slider .slick-track {
         width: 100%!important;
         transform: none!important;
    }
    #slider .slick-track div {
        width: 100%!important;
        height: calc(80vw * ( 3 / 5 ) );
        margin-bottom: 4vw;
    }
    #slider .slick-track div:first-child,
    #slider .slick-track div:last-child {
        display: none;
    }
    .navigation {
        width: 96vw;
        bottom: 2vw;
        right: 2vw;
    }
    a.next {
        float: right;
    }
    #infos .column-wrapper .column span.hyphen.separator {
        display: inline-block;
    }

}

@media screen and (max-width: 640px) {
    .post {
        width: calc( 89vw / 2 );
        height: calc( 89vw / 2 );
    }
}

@media screen and (max-width: 380px) {
    header .title h3,
    header .links .hyphen {
        display: none;
    }
    header .links {
        top: 72px;
        right: auto;
        left: calc(4vw + 100px);
        text-align: left;
    }
    .post {
        width: 92vw;
        height: 92vw;
    }
}

@media screen and (max-height: 480px) {
    main#project {
        width: 100vw;
        padding: 0;
        padding-top: 140px;
        min-height: calc(100vh - 140px);
    }
    .project-wrapper {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: auto;
        left: auto;
        height: calc(100vh - 140px - 10vw);
        width: 80vw;
        padding: 0 10vw 10vw 10vw;
        transform: none;
        overflow: auto;
    }
    .project-wrapper .text {
        order: 1;
    }
    #slider {
        order: 2;
        top: 25px;
        height: auto!important;
        width: 100%!important;
        pointer-events: none;
    }
    #slider .slick-track div:first-child,
    #slider .slick-track div:last-child {
        display: none;
    }
    #slider .slick-dots {
        display: none!important;
    }
    #slider .slick-track {
         width: 100%!important;
         transform: none!important;
    }
    #slider .slick-track div {
        width: 100%!important;
        height: calc(80vw * ( 3 / 5 ) );
        margin-bottom: 4vw;
    }
    .navigation {
        width: 92vw;
    }
    a.next {
        float: right;
    }
}
