@charset "UTF-8";
@font-face {
  font-family: "Maxima";
  src: url("../type/MaximaEFMediumRegular.woff");
  font-style: normal;
}
@font-face {
  font-family: "Maxima";
  src: url("../type/MaximaEFMediumOblique.woff");
  font-style: italic;
}
@font-face {
  font-family: "Mono";
  src: url("../type/ElementaBold.woff");
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: black;
}

html {
  font-size: 0.7vw;
  --large: 6rem;
  --main: 2.3rem;
  --medium: 2.4rem;
  --small: 1.6rem;
}
@media (max-width: 670px) {
  html {
    font-size: 4.5px;
    --medium: 3rem;
    --main: 3.2rem;
    --small: 2.4rem;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 4.5px;
    --medium: 2.7rem;
    --main: 2.7rem;
    --small: 2.7rem;
  }
}

body {
  font-family: "Maxima", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -1px;
  padding: 2em;
  padding-top: 0;
  counter-reset: line-count;
}
@media (max-width: 670px) {
  body {
    padding: 1em;
  }
}
body.fix #projects-clients .text figure {
  max-width: 480px;
  display: none;
}
figure {
  margin-bottom: 1.5em;
}

h1 {
  z-index: 20;
  top: 0.5em;
}

h1,
h2,
h3,
p,
li {
  font-weight: normal;
}

h1,
nav a {
  font-size: var(--large);
  line-height: 0.9;
}

a:hover {
  color: #ccc;
}

sup,
.details li {
  font-size: var(--small);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  line-height: 1;
}
@media (max-width: 670px) {
  sup,
.details li {
    font-size: var(--medium);
  }
}

.details {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 4em;
  position: relative;
}
.details div {
  flex: 1;
}
.details div ul li span {
  margin-right: 1em;
}
.details div.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 670px) {
  .details div.double {
    display: block;
  }
}

ul {
  list-style: none;
}

.dot {
  height: 2em;
  width: 2em;
  border-radius: 50%;
  background: black;
  position: absolute;
  right: 0;
  bottom: 0;
}

header {
  padding-top: 2em;
  position: relative;
  transition: all 0.5s ease-in-out;
}
header .header-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 670px) {
  header .header-wrap {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 670px) {
  header {
    display: block;
  }
}
header .content-left {
  width: 100%;
  position: relative;
}
@media (max-width: 670px) {
  header .content-left {
    width: 100%;
  }
}
@media (max-width: 670px) {
  header .content-left h1 a br {
    display: none;
  }
}
@media (max-width: 670px) {
  header .content-right {
    width: 100%;
    padding-top: 2.2em;
  }
  header .content-right aside {
    display: none !important;
  }
}
header aside {
  width: 100%;
}
header aside figure img {
  margin-bottom: 1em;
}
@media (max-width: 670px) {
  header aside figure img {
    margin-bottom: 2em;
  }
}
@media (max-width: 670px) {
  header aside {
    position: static;
    display: table !important;
    empty-cells: none;
    transform: none;
    max-width: 70%;
    margin: 4em auto;
  }
}
@media (max-width: 670px) {
  header .content.current aside {
    display: block !important;
  }
}

nav a {
  display: block;
}
nav a:not(:last-of-type):after {
  content: ",";
}
nav a:last-of-type:after {
  content: ".";
}

.content {
  max-width: 100%;
  margin: 1.5em 0;
  display: none;
  position: relative;
  flex-wrap: wrap;
}
@media (max-width: 670px) {
  .content {
    max-width: 100%;
    flex-direction: column-reverse;
  }
}
.content .sticky {
  position: sticky;
  top: 6.5em;
}
.content-single {
  max-width: 65%;
}
.content .text {
  position: relative;
  padding-bottom: 1.5rem;
}
@media (max-width: 670px) {
  .content .text {
    padding-left: 15%;
  }
}
.content .text figure {
  position: absolute;
  left: -100%;
  max-width: 480px;
  display: none;
}
@media (max-width: 1024px) {
  .content .text figure {
    max-width: 300px;
  }
}
@media (max-width: 670px) {
  .content .text figure {
    position: relative;
    left: 0;
    max-width: 100%;
  }
}
.content .text ul {
  margin: 1.5em 0 1.5em 0;
  padding: 1em 2em 1em 4em;
}
@media (max-width: 670px) {
  .content .text ul {
    max-width: 100%;
    padding-right: 10%;
    padding-left: 40%;
  }
}
.content .text ul li {
  font-size: var(--small);
  letter-spacing: 0;
  line-height: 1.1;
  text-indent: -0.9em;
  padding-left: 1em;
}
.content .text ul li:before {
  content: "•";
  padding-right: 4px;
}
@media (max-width: 670px) {
  .content .text ul li br {
    display: none;
  }
}
.content .text .lists {
  margin: 1.5em 0;
}
.content .text .lists h2 {
  line-height: 1.1;
}
.content .text .lists h2::before {
  content: attr(data-before) "";
  font-variant-numeric: normal;
  padding-right: 0.25em;
  font-size: 95%;
}
.content .text .lists h2:hover {
  cursor: pointer;
  opacity: 0.25;
}
.content .text .lists-content {
  display: none;
  margin: 0 0 2em 0;
}
.content .text .lists-content p {
  font-size: var(--main);
  padding: 1em 1em 0 4em;
}
@media (max-width: 670px) {
  .content .text .lists-content p {
    padding-left: 2em;
  }
}
.content .text .lists-content p a {
  font-size: var(--main);
}
.content .text .lists-content ul {
  margin: 1.5em 0 1.5em 0;
  padding: 0 2em 0 10em;
  max-width: 90%;
}
@media (max-width: 670px) {
  .content .text .lists-content ul {
    max-width: 100%;
    padding: 0 3em 0 8em;
  }
}
.content .text .lists-content ul li {
  font-size: var(--small);
  letter-spacing: 0;
  line-height: 1.1;
  text-indent: -0.9em;
  padding-left: 1em;
}
.content .text .lists-content ul li:before {
  content: "•";
  padding-right: 4px;
}
@media (max-width: 670px) {
  .content .text .lists-content ul li br {
    display: none;
  }
}
.content p a {
  font-size: var(--main);
  display: inline-block;
  border-bottom: 2px solid;
}
.content p a:after {
  content: "";
}
.content .people {
  margin-top: 4em;
}
.content .people h2 {
  padding-bottom: 0.5em;
}
.content .people .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.5em;
}
@media (max-width: 670px) {
  .content .people .cols {
    display: block;
    padding-left: 20%;
  }
}
.content .people .cols .person:nth-of-type(odd) {
  padding-right: 1em;
}
@media (max-width: 670px) {
  .content .people .cols .person:nth-of-type(odd) {
    padding-right: 1.85em;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 670px) {
  .content .people .cols .person {
    padding-right: 1.85em;
  }
}
.content .people .cols .person p {
  font-size: var(--small);
  line-height: 1.05;
  letter-spacing: 0;
}
.content .people .cols .person p strong {
  font-weight: normal;
  text-indent: 2em;
  display: block;
}
.content .people .cols .person p a {
  border-bottom: 2px solid;
  font-size: var(--small);
  letter-spacing: 0;
  display: inline-block;
}
.content .people .cols .person p span {
  margin-right: 1em;
}
.content p {
  font-size: var(--main);
  line-height: 1.1;
  letter-spacing: 0;
}
.content p + p, .content p + h2 {
  margin-top: 1em;
}
.content h2,
.content h3 {
  font-size: var(--main);
  line-height: 1.05;
  letter-spacing: 0;
}
.content h3 {
  font-size: var(--small);
}
.content h3:before {
  content: "";
}

[data-slug=services] .text figure {
  bottom: -9em;
}
@media (max-width: 670px) {
  [data-slug=services] .text figure {
    bottom: 0;
  }
}

[data-slug=standards] .text figure {
  bottom: -6em;
}
@media (max-width: 670px) {
  [data-slug=standards] .text figure {
    bottom: 0;
  }
}

@media (max-width: 670px) {
  [data-slug=projects-clients] {
    flex-direction: column !important;
  }
}

@media (max-width: 670px) {
  [data-slug=services] .text,
[data-slug=standards] .text,
[data-slug=projects-clients] .text {
    max-width: 100%;
  }
}
@media (max-width: 670px) {
  [data-slug=services] .content,
[data-slug=standards] .content,
[data-slug=projects-clients] .content {
    display: flex;
    flex-direction: column-reverse;
  }
}

.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 670px) {
  .double ul:last-of-type {
    display: none;
  }
}

[data-template=backend] h2 {
  line-height: 0.9;
  margin: 0;
}

.projects {
  display: none;
  flex-direction: row;
  padding: 1em 0;
}
.projects .images {
  max-width: calc(50% - 1em);
  margin-right: 1em;
  margin-bottom: 1em;
  opacity: 0;
}
@media (max-width: 670px) {
  .projects .images {
    max-width: calc(50% - 2em);
  }
}
.projects figure:not(:first-of-type) {
  display: none;
}
@media (max-width: 670px) {
  .projects figure {
    max-width: 100%;
  }
}
.projects figure figcaption {
  font-size: var(--small);
  padding: 0.25em 0;
  letter-spacing: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.projects figure img {
  max-width: 100%;
  display: block;
}

address {
  font-style: normal;
  margin-bottom: 1.5em;
}

figure img {
  max-width: 100%;
  display: block;
}

[data-slug=standards] figure figcaption {
  padding: 0.5em 0;
  letter-spacing: 0;
}

.button {
  font-family: "Maxima", sans-serif;
  font-size: var(--main);
  background: white;
  border: 2px solid;
  padding: 0.25em 0.5em;
  border-radius: 2.5em;
  letter-spacing: 0;
  max-width: 45%;
  margin: 1em auto 0;
  text-align: center;
}
.button:after {
  content: "" !important;
}
@media (max-width: 670px) {
  .button {
    padding: 0.5em 1em;
    border: 1px solid;
    border-radius: 3.6rem;
    font-size: var(--main);
    max-width: 45%;
  }
}

.client {
  font-family: "Maxima", sans-serif;
  font-size: var(--main);
  line-height: 1.1;
  letter-spacing: 0;
  display: block;
}
.client a {
  font: inherit;
}
.client a:after {
  content: ", " !important;
}
.client:last-of-type {
  color: red;
}
.client:last-of-type a:after {
  content: "." !important;
}

.updates {
  position: absolute;
  bottom: 1em;
  left: 1.5em;
  font-size: var(--medium);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  line-height: 1.1;
}

.files {
  margin-top: 2em;
}
.files h3 {
  font-size: var(--main);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  line-height: 1;
}
.files h3:before {
  content: "•";
  padding-right: 4px;
}
.files .filename {
  width: 85%;
  margin-right: 1em;
}
@media (max-width: 670px) {
  .files .filename {
    max-width: 70%;
  }
}
.files .function {
  text-align: right;
  display: inline-block;
  margin-left: auto;
}
.files .function span:hover {
  cursor: pointer;
  opacity: 0.25;
}
.files ul {
  font-size: var(--main);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  line-height: 1.1;
  margin-top: 0.25em;
  max-width: 100%;
}
@media (max-width: 670px) {
  .files ul {
    max-width: 100%;
  }
}
.files ul li {
  font: inherit;
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid;
  padding: 0.25em 0 0.15em;
}
.files ul li.header-row {
  font-size: var(--small);
  padding: 0.25em 0;
  border-bottom: 2px solid;
}
@media (max-width: 670px) {
  .files ul li.header-row {
    border-bottom: 1px solid;
  }
}
.files ul li.header-row .filename {
  margin-right: 1.25em;
}
.files ul li a {
  width: 50%;
  margin-right: 1em;
}
.files ul li a:hover span {
  color: #ccc;
}
.files ul li .checkbox {
  padding-left: 2.5rem;
  position: relative;
}
@media (max-width: 670px) {
  .files ul li .checkbox {
    padding-left: 1.5rem;
  }
}
.files ul li .checkbox input {
  position: absolute;
  height: 20px;
  width: 20px;
  top: 3px;
}
@media (max-width: 670px) {
  .files ul li .checkbox input {
    top: -4px;
  }
}

.client-name {
  font-size: var(--main);
  line-height: 1.1;
  letter-spacing: 0;
}

button {
  padding: 0.25em 0.5em;
  border: 2px solid;
  background: white;
  border-radius: 10px;
  margin-top: 1em;
  font: inherit;
  font-size: var(--medium);
}
@media (max-width: 670px) {
  button {
    border: 1px solid;
  }
}
button:hover {
  color: #ccc;
  cursor: pointer;
}

.no-link {
  pointer-events: none;
}

.files {
  padding-bottom: 4em;
}

.client-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 0.5em 1em 1em;
  box-shadow: 0px -11px 12px 0px rgb(255, 255, 255);
  background: white;
  font-size: var(--medium);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  line-height: 1.1;
}
.client-nav .logged-in:before {
  content: "•";
}
.client-nav a {
  font: inherit;
}

main {
  margin-top: 2em;
  position: relative;
}
main h2 {
  font-family: "Maxima", sans-serif;
  font-size: var(--large);
  margin: 0.5em 0;
}

.login {
  margin: 2em 0 1em;
  display: none;
}
.login form .double {
  margin-top: 2px;
}
.login form input {
  font-family: "Maxima", sans-serif;
  font-size: var(--main);
  border: 0;
  outline: 0;
  background: white;
  position: relative;
  margin-right: 0.5em;
  filter: none;
}
@media (max-width: 670px) {
  .login form input {
    display: block;
    margin-top: 0.5em;
  }
}
.login form input:-webkit-autofill, .login form input:-webkit-internal-autofill-selected, .login form input:-webkit-autofill:hover, .login form input:-webkit-autofill:focus, .login form input:-webkit-autofill:active {
  background-color: white !important;
  background: white !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0);
}
.login form input::placeholder {
  color: #ccc;
}
.login form input.submit {
  background: white;
  border: 2px solid;
  padding: 2px 1em;
  border-radius: 2rem;
  margin-top: 1em;
}
@media (max-width: 670px) {
  .login form input.submit {
    display: block;
    margin-top: 1em;
    border: 1px solid;
    border-radius: 2.4rem;
  }
}
.login form input.submit:hover {
  cursor: pointer;
  color: #ccc;
}

.header {
  margin-top: 2em;
  height: calc(100vh - 4em);
  position: relative;
}
@media (max-width: 670px) {
  .header {
    margin-top: 0.5em;
    height: calc(100vh - 2.5em);
  }
}
.header.home {
  height: calc(100vh - 4em);
}
.header.home .message {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: var(--medium);
  letter-spacing: 0;
}
.header nav {
  opacity: 0.085;
}
.header .content-trigger,
.header h1 a {
  pointer-events: none;
}

.download[disabled] {
  opacity: 0.2;
  pointer-events: none;
  border-radius: 24px;
  padding: 4px 0.5em;
}
@media (max-width: 670px) {
  .download[disabled] {
    padding: 4px 1em;
  }
}

.wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#projects-clients .text figure {
  position: absolute;
  left: -48vw;
  max-width: 480px;
  display: none;
}

.marquee {
  width: 100%;
  background: yellow;
  font-family: "Mono", monospace;
  letter-spacing: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  padding: 0.75em 0;
  white-space: nowrap;
  transition: transform 1s var(--ease);
  display: flex;
  align-items: center;
  overflow-x: hidden;
}
.marquee span {
  font-size: var(--small);
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
  transform-origin: bottom left;
  position: relative;
  color: black;
}
.marquee span a {
  color: black;
}
.marquee span a:hover {
  color: blue;
}

@keyframes marquee {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
[data-template=backend] .marquee {
  display: none;
}

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