* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Format Grotesk";
  src: url('../fonts/FormatGrotesk-Fett.eot') format('eot'), url('../fonts/FormatGrotesk-Fett.woff') format('woff'), url('assets/fonts/FormatGrotesk-Fett.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Format Grotesk";
  src: url('../fonts/FormatGrotesk-Normal.eot') format('eot'), url('../fonts/FormatGrotesk-Normal.woff') format('woff'), url('assets/fonts/FormatGrotesk-Normal.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  background: #fff;
  font-size: 4.5vw;
  line-height: 4.5vw;
  font-weight: bold;
  letter-spacing: -0.1vw;
  font-family: "Format Grotesk", sans-serif;
  background: #fff;
  color: #000;
  width: 100%;
}

.text {
  padding: 2.2vw 8.5vw 0 3vw;
}

h1 {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.text p, h1 {
  margin-bottom: 5.5vw;
  opacity: 0;
  animation: fadein .2s forwards ease-out;
}

.text a {
  text-decoration: underline;
  text-decoration-skip: ink;
  color: inherit;
  padding-left: .5vw;
  padding-right: .5vw;
  margin-left: -.5vw;
  margin-right: -.5vw;
  cursor: pointer;
}

.text a:hover {
  text-decoration: none;
}

.text description {
  display: flex;
  font-size: 3vw;
  line-height: 3.4vw;
}

.noscroll {
  overflow: hidden;
}

.link-external:after {
  display: inline-block;
  content: 'â†—';
  padding-left: .8vw;
  font-weight: normal;
}

.link-external:after {
  display: none;
}

body.loading {
}

.masterclose {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,.5);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: all .1s ease-out;
}

.masterclose-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.popup {
  width: 95%;
  height: 100%;
  position: fixed;
  top: 0; bottom: 0;
  right: -100%;
  transition: right .6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.popup-visible {
  right: 0;
}

.popup-titlebar {
  height: 40px;
  background: #fff;
  font-size: 22px;
  line-height: 38px;
  font-weight: bold;
  letter-spacing: -.5px;

  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

body.loading .popup-titlebar {

}

h2:before {
  content: 'oC';
  position: absolute;
  margin-left: -25px;
  animation: circle infinite .8s;
  opacity: 0;
  transition: opacity .4s;
}

body.loading h2:before {
  opacity: 1;
}

@keyframes circle {
  0%, 100%  {transform: scale(1); margin-top: -2px}
  50%       {transform: scale(1.7); margin-top: -3px}
}

.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  appearance: none;
  height: 100%;
  width: 40px;
  font: inherit;
  font-weight: normal;
  font-size: 25px;
  color: inherit;
  background: none;
  border: none;
  text-align: center;
  color: #000;
  text-decoration: none;
  cursor: pointer;

  color: #fff;
  border-radius: 0px;
}

.btn-back {
  float: left;
}

.btn-external {
  float: left;
}

.cf {
  display: block;
  clear: both;
}

h2 {
  font: inherit;
  font-weight: normal;
  line-height: inherit;
  letter-spacing: inherit;
  width: calc(100% - 80px);
  float: left;
  text-align: center;
}

iframe {
  border: none;
  width: 100%;
  height: calc(100% - 40px);
  background: #fff;
}

.text a:focus {
  text-decoration: none;
  outline: solid 4px rgba(0,0,0,.4);
}

.btn:focus {
  background: #fff;
  color: #000;
  outline: none;
}

::selection {
  background: #000;
  background: rgba(0,0,0,.99);
  color: #fff;
}

@keyframes fadein {
  0% {
    opacity: 0;
    margin-top: 1.5vw;
  }

  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@media (max-width: 740px) {
  body {
    font-size: 5.5vw;
    line-height: 5.5vw;  
  }

  .text {
    padding: 2.2vw 3vw 0 3vw;
  }
}