* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  outline: none;
}

body {
  font-family: "NBInternationalPro-Lig", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: 400;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
}

.wrap {
  height: 100vh;
}

.block {
  position: relative;
  width: fit-content;
  float: left;
  height: 1.75em;
  color: white;
  background-color: black;
  border: 2px solid black;
  border-radius: 5em;
  font-size: 1.25em;
  padding: .25em .35em .4em;
  cursor: pointer;
  overflow: hidden;
  transition: border-radius .4s, height .4s, width .4s;
}

  .block:hover {
    color: black;
    background-color: white;
    border-color: black;
  }

  .block > h2 {
    padding-bottom: .5rem;
  }

  .block > p {
    max-width: 0;
    font-size: 1rem;
    line-height: 1.25em;
    letter-spacing: 0;
    text-transform: none;
    transition: max-width .4s;
  }

  .block > p a {
    font-family: "NBInternationalMonoWebfont", monospace;
    color: inherit;
  }

  .block .close {
    display: none;
  }

  .block.active {
    width: 25em !important;
    height: 20em !important;
    color: black;
    background-color: white;
    border-color: black;
    border-radius: 0;
    padding: .5em 1.25em;
    overflow: scroll;
    cursor: default;
  }

  .block.active .close {
    z-index: 1;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 3.75rem;
    padding: .35rem 1.25rem;
    cursor: pointer;
  }

  .block.active > p {
    max-width: 600px;
    padding-bottom: 1em;
  }


h1.block {
  color: black;
  background-color: transparent;
  border-color: transparent;
}

  h1.block:hover {
    border-color: transparent;
  }

section.block {
  height: 5em;
  border: 2px solid black;
  padding: .5em 1.25em;
}

  .bl-header.active h2,
  section.block h2 {
    font-size: 4em;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }

  section.block.active {
    width: 30em !important;
    height: 20em !important;
  }

figure.block {
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 5em !important;
  width: calc(50% - 1px);
  background-color: blue;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20em;
  outline: none;
  border-color: transparent;
  border: none;
}

  figure.block:hover {
    background-image: none !important;
    border: 2px solid;
  }

  figure.block > span {
    display: none;
  }

  figure.block:hover > span {
    display: block;
  }

section.block:first-of-type,
.first-image > figure.block {
  clear: left;
}

.navigation-block-is-active section.block:first-of-type {
  clear: none;
}

.navigation-block-is-active figure.block {
  width: 40%;
}



@media screen and (min-width: 2141px ) {
  body { font-size: 20px }
}
@media screen and (min-width: 1681px ) and (max-width: 2140px ) {
  body { font-size: 19px }
}
@media screen and (min-width: 1441px ) and (max-width: 1680px ) {
  body { font-size: 18px }
}
@media screen and (min-width: 1281px ) and (max-width: 1440px ) {
  body { font-size: 17px }
}
@media screen and (min-width: 961px ) and (max-width: 1280px ) {
  body { font-size: 16px }
}
@media screen and (min-width: 641px ) and (max-width: 960px ) {
  body { font-size: 15px }
}
@media screen and (max-width: 640px ) {
  body { font-size: 14px }
}
@media screen and (max-width: 480px ) {
  section.block { height: 3.75em }
  section.block h2 { font-size: 2.75em }
  section.block.active { width: 100% !important }
}