/* 26 mei 2021 */

@font-face {
    font-family: '29LT Zeyn';
    src: url('fonts/29LTZeyn-Regular.woff2') format('woff2'),
        url('fonts/29LTZeyn-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
  margin: 0 0 0 0;
}

h1 {
  font-family: '29LT Zeyn';
  font-weight: normal;
  font-style: normal;
  font-size: 3vw;
}

figcaption {
  font-family: '29LT Zeyn';
  font-size: 17px;
  text-align: center;
}

p {
  text-align: left;
  font-weight: 400;
  line-height: 115%;
  font-family: neue-haas-grotesk-text,sans-serif;
  font-style: normal;
}

img {
  width: 100%;
}


.show {
  /* border: solid 1px red; */
}

.hide {
  display: none;
}

.project-footer {
  background-color: white;
  border-top: solid 2px black;
  padding-left: 1rem;
  padding-top: 0.5rem;
}

.project-item {
  padding-top: 7.5rem; /* 120/16 */
  padding-bottom: 7.5rem; /* 120/16 */
}

.project-item article,
.project-item figure {
  padding-left: 1rem;
}

.project-item:hover article {
  display: block;
}

.col01 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 33.33vw;
  height: 100%;
  overflow-y: scroll;
  padding-top: 5rem;
}

.col02 {
  position: absolute;
  top: 0;
  left: 33vw;
  bottom: 0;
  width: 33.33vw;
  height: 100%;
  overflow-y: scroll;
  padding-top: 5rem;
}

.col03 {
  position: absolute;
  top: 0;
  left: 66vw;
  bottom: 0;
  width: 33.33vw;
  height: 100%;
  overflow-y: scroll;
  padding-top: 5rem;
  padding-right: 0.5rem;
}

/* ticker stuff */

.ticker-wrap01 {
  position: relative;
  bottom: 0;
  left: 0;
  width: 47vw;
  overflow: hidden;
  height: 4rem;
  background-color: transparent;
  padding-left: 5%;
}

.ticker-wrap02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 47vw;
  overflow: hidden;
  height: 4rem;
  background-color: transparent;
  padding-left: 5%;
}

.refresh-button {
  position: absolute;
  top: 5px;
  right: 46%;
  width: 8vw;
  height: 3.5rem;
  background-color: transparent;
  padding-left: 0;
}

#refresh-mobile {
 visibility: hidden;
}

#refresh-desktop {
 visibility: visible;
}

.refresh-button img {
  height: 100%;
  width: 100%;
  opacity: 1.0;
}

.refresh-button img:hover {
  /* -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;  */
  opacity: 0.6;
}

.return-button {
  position: absolute;
  top: 5px;
  bottom: 0;
  right: 46%;
  width: 8vw;
  height: 3.5rem;
  background-color: transparent;
  padding-left: 0;
}

.return-button img {
  height: 100%;
  width: 100%;
  opacity: 1.0;
}

.return-button img:hover {
  opacity: 0.6;
}

.ticker {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 0;
  width: 40vw;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
}

.ticker02 {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 0;
  width: 50vw;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  animation-direction: reverse;
}

.ticker_item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 2rem;
  color: #000;
  width: 100%;
}

.ticker_item a {
  color: #000;
  text-decoration: none;
}

.ticker_item a:hover {
  color: rgba(12, 0, 255, 1.0) ; 
  /* text-decoration: underline; */
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}


.project-footer {
  background-color: white;
  border-top: solid 2px black;
  padding-left: 1rem;
  padding-right: 1rem;
}


.project-footer01,
.project-footer02,
.project-footer03
 {
  width: 40%;
  display: block;
  position: fixed;
  bottom: 0;
  /* background-color: #fff;
  border-top: solid 2px black; */
}


/* animation stuff */

/*http://anicollection.github.io/#/

/*base code*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
/*the animation definition*/
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 1
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 1
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn
}




/* Small devices (landscape phones, 576px and up)*/
@media (max-width: 576px) {

  .col01 {
    width: 100vw;
    padding-top: 5.8rem;
    padding-right: 1rem;
  }

  .col02 {
    display: none;
  }

  .col03 {
    display: none;
  }

  .project-footer {
    width: 100vw;
    padding-left: 1rem;
  }

  .refresh-button {
    position: inline;
    /*display: block;*/
    top: 15px;
    right: 15px;
    height: 50px;
    background-color: transparent;
    padding-left: 0;
  }
  
#refresh-mobile {
 visibility: visible;
}

#refresh-desktop {
 visibility: hidden;
}
  
   .return-button {
    position: fixed;
    display: block;
    top: 88vh;
    bottom: 15px;
    right: 15px;
    height: 50px;
    background-color: transparent;
    padding-left: 0;
  }

  .ticker-wrap01 {
    top: 0;
    left: 0;
    width: 100vw;
    height: 4rem;
    padding-left: 0;
  }

  .ticker-wrap02 {
    position: absolute;
    top: 10vw;
    left: 0;
    width: 100vw;
    height: 4rem;
    padding-left: 0;
  }

  h1 {
    font-size: 10vw;
  }


  .ticker {
    height: 10vw;
    line-height: 10vw;
    padding-right: 0;
    width: 90vw;
  }

  .ticker02 {
    height: 10vw;
    line-height: 10vw;
    padding-right: 0;
    width: 120vw;
  }

  .ticker_item {
    padding: 0 5vw;
    font-size: 5vw;
    width: 100%;
  }


}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
}
