html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

html {
    font-size: 22px;
    overflow-x: hidden;
    --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
    --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
    --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
    --headerHeight: 3.6818181818rem;
    --siteMaxWidth: 68rem
}

@media only screen and (max-width: 720px) {
    html {
        font-size: 20px
    }
}

body {
    font-size: 1rem;
    color: #fff;
    --background: #000;
    background-color: #000;
    font-family: "NBInternational", Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1.2272727273;
    transition: background 400ms cubic-bezier(0.19, 1, 0.22, 1), color 400ms cubic-bezier(0.19, 1, 0.22, 1)
}

img,
video,
iframe {
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    max-width: var(--siteMaxWidth);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.2272727273rem;
    padding-right: 1.2272727273rem
}

.row {
    margin-left: -.6136363636rem;
    margin-right: -.6136363636rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.row--noflex {
    display: block
}

.row--noflex:before,
.row--noflex:after {
    content: '';
    display: table
}

.row--noflex:after {
    clear: both
}

.col {
    float: left;
    box-sizing: border-box;
    padding-left: .6136363636rem;
    padding-right: .6136363636rem
}

.col--right {
    float: right
}

.col.full {
    width: 100%
}

.col.stacked {
    position: relative
}

.col.stacked:before {
    content: '';
    position: absolute;
    top: calc(50% - 1.2272727273rem);
    border-top: .6136363636rem solid #000;
    border-bottom: .6136363636rem solid #000;
    width: 100%;
    z-index: 0
}

.col.half,
.col.stacked {
    width: 50%
}

@media only screen and (max-width: 720px) {

    .col.half,
    .col.stacked {
        width: 100%
    }
}

h1,
.stats__title,
h2 {
    margin-bottom: .8636363636rem
}

@media only screen and (min-width: 721px) {

    h1,
    .stats__title,
    h2 {
        text-rendering: optimizeLegibility
    }
}

@media only screen and (min-width: 721px) {

    h1,
    .stats__title {
        font-size: 1.3636363636rem;
        line-height: 1.1666666667
    }
}

@media only screen and (min-width: 721px) {

    h2 {
        font-size: 1.3636363636rem;
        line-height: 1.1666666667
    }
}

h3,
h4,
h5,
h6,
p,
ol,
ul,
pre,
blockquote {
    margin-bottom: 1.2272727273rem
}

li p {
    margin-bottom: .8181818182rem
}

hr {
    border: 0;
    height: 1px;
    background-color: #292622;
    margin-top: 2.4545454545rem;
    margin-bottom: 2.4545454545rem
}

code {
    background-color: #776b62
}

.bc {
    max-width: 30rem;
    padding-bottom: 1rem
}

.bc ul {
    padding-left: 1rem;
    list-style-type: square
}

.bc ol {
    padding-left: 2rem;
    counter-reset: decimal-counter
}

.bc ol li:before {
    box-sizing: border-box;
    width: 1rem;
    margin-left: -1rem;
    position: absolute;
    color: var(--accent-color, #776b62)
}

.bc ol li:before {
    content: counter(decimal-counter, decimal-leading-zero);
    counter-increment: decimal-counter;
    width: 2rem;
    margin-left: -2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bc ul li::marker {
    color: var(--accent-color, #776b62)
}

.st,
.contact__subsection.col p {
    color: #776b62
}

.st a:hover,
.contact__subsection.col p a:hover {
    color: #fff;
    border-bottom-color: #fff
}

.underline,
.bc a,
.st a,
.contact__subsection.col p a,
.underline-wrap a,
.footer__links a,
a.hover:hover {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #fff;
    -webkit-transition: all 150ms;
    -o-transition: all 150ms;
    transition: all 150ms
}

.underline--gray-light,
.st a,
.contact__subsection.col p a,
.underline-wrap--gray-light a {
    border-bottom-color: #776b62
}

.transition-fade {
    transition: opacity 0.5s ease-out;
    opacity: 1
}

html.is-animating .transition-fade {
    opacity: 0
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    background-color: var(--background);
    height: var(--headerHeight);
    transition: background 400ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10000;
}

body:not(.is-modal-open).is-story-header-visible .header {
    background: transparent;
    color: #fff
}

body:not(.is-modal-open).is-story-header-visible .header .header__link:hover,
body:not(.is-modal-open).is-story-header-visible .header .header__link:focus-within {
    color: inherit
}

body:not(.is-modal-open).is-story-header-visible .header .header__link:not(.header__link--active) {
    color: rgba(255, 255, 255, 0.6)
}

body:not(.is-modal-open).is-story-header-visible .header .header__link:not(.header__link--active):hover,
body:not(.is-modal-open).is-story-header-visible .header .header__link:not(.header__link--active):focus-within {
    color: #fff
}

.header__inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.header__nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center
}

.header__nav.row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap
}

.header__logo {
    padding-top: 2px;
    padding-bottom: 2px
}

.header__logo svg {
    fill: currentColor;
    overflow: visible;
    display: block;
    width: 6rem
}

.header__items {
    text-align: right
}

.header__item {
    display: inline-block;
    margin-right: 2rem
}

@media only screen and (max-width: 720px) {
    .header__item:not(.header__item--toggle) {
        display: none
    }
}

.header__item:last-of-type {
    margin-right: 0
}

.header__item--toggle {
    margin-right: 0;
    display: none
}

@media only screen and (max-width: 720px) {
    .header__item--toggle {
        display: block
    }
}

.header__link {
    -webkit-transition: color 150ms;
    -o-transition: color 150ms;
    transition: color 150ms
}

.header__link:hover,
.header__link:focus-within {
    color: #fff
}

body.index .header__link {
    color: inherit
}

body.index .header__link {
    color: inherit
}

.header__link:not(.header__link--active) {
    color: #776b62
}

.header__link:not(.header__link--active):hover,
.header__link:not(.header__link--active):focus-within {
    color: #fff
}

.modal-toggle {
    cursor: pointer;
    padding: .5rem;
    position: relative;
    right: -.5rem;
    top: -1px
}

.is-modal-open,
.is-work-info-open {
    overflow: hidden
}

.modal .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: calc(100% - var(--headerHeight));
    margin-top: var(--headerHeight)
}

@media only screen and (max-width: 720px) {
    .is-modal-open .modal {
        z-index: 888;
        position: fixed;
        visibility: visible;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: 1;
        overflow: auto
    }
}

.modal__items {
    padding-top: 20px;
}

.modal__link {
    font-size: 1rem;
    /* font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em; */
    color: white;
    display: inline-block;
    margin: 20px 0;
    transition: opacity 0.2s ease;
    opacity: 0.8;
}

.modal__link:hover {
    opacity: 1;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger .bar {
    height: 2px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.hamburger.open .top-bar {
    transform: rotate(45deg) translateY(6px);
}

.hamburger.open .bottom-bar {
    transform: rotate(-45deg) translateY(-6px);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /* Above everything */
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modal[status="visible"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: currentColor;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 150ms;
    -o-transition: 150ms;
    transition: 150ms;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

.hamburger span:nth-child(1) {
    top: 4px
}

.hamburger span:nth-child(2) {
    top: 13px
}

.is-modal-open .hamburger span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 2px;
    left: 3px
}

.is-modal-open .hamburger span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 16px;
    left: 3px
}

.modal__footer {
    margin-bottom: 1.8409090909rem
}

.footer {
    padding-top: 2.4545454545rem;
    margin-bottom: 1.8409090909rem;
    border-top: 1px solid #292622
}

.footer:before,
.footer:after {
    content: '';
    display: table
}

.footer:after {
    clear: both
}

body.index.is-scrolled-down .footer {
    position: sticky;
    bottom: 0;
    background: #000
}

body.index.is-scrolled-down:not(.is-scrolled-bottom) .footer {
    padding-top: 1.2272727273rem
}

@media only screen and (min-width: 721px) {
    .footer__text {
        float: left
    }

    .footer__text p {
        display: inline-block
    }
}

@media only screen and (min-width: 721px) {
    .footer__links {
        float: right;
        text-align: right
    }
}

@media only screen and (min-width: 881px) {
    .footer__links br {
        display: none
    }

    .footer__links br+a {
        margin-left: 4rem
    }
}

.main {
    padding-top: 2.3rem;
    margin-top: 0;
    margin-bottom: 4.9090909091rem
}

@media only screen and (max-width: 720px) {
    .main {
        padding-top: 1.2272727273rem
    }
}

body.index .main {
    padding-top: 0
}

body.contact .main {
    margin-bottom: .6136363636rem
}

body.works .main {
    margin-top: -.1840909091rem
}

@media only screen and (max-width: 720px) {
    body.works .main {
        margin-top: 0
    }
}

body.about .main {
    --accent-color: #FF800C;
    margin-top: 7.3636363636rem;
    margin-bottom: 7.3636363636rem
}

@media only screen and (min-width: 2001px) {
    body.about .main {
        margin-top: 9.8181818182rem
    }
}

@media only screen and (max-width: 720px) {
    body.about .main {
        margin-top: 2.4545454545rem;
        margin-bottom: 2.4545454545rem
    }
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100vh - var(--headerHeight))
}

.hero__main-text {
    font-style: normal;
    font-weight: 300;
    font-size: 2.8181818182rem;
    line-height: 1;
    letter-spacing: -0.035em;
    display: grid;
    font-size: 2rem;
    margin-block-end: 4rem
}

@media only screen and (min-width: 641px) {
    .hero__main-text {
        font-size: 2.8181818182rem
    }
}

@media only screen and (min-width: 1081px) {
    .hero__main-text {
        font-style: normal;
        font-weight: 300;
        font-size: 3.9rem;
        line-height: 1;
        letter-spacing: -0.045em;
        max-width: 26ch
    }
}

@media only screen and (min-width: 1081px) {
    .hero__subtitles-wrapper {
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr 1fr
    }
}

@media only screen and (min-width: 1081px) {
    .hero__subtitles {
        display: grid;
        gap: 1rem;
        grid-column: 2;
        grid-template-columns: 1fr 1fr
    }
}

.hero__subtitles p {
    margin-block-end: 0.5rem
}

@media only screen and (max-width: 720px) {
    .carousel {
        margin-bottom: 1.2272727273rem
    }
}

.stats {
    margin-block: 7rem;
    margin-bottom: 5rem;
}

@media only screen and (min-width: 1081px) {
    .stats {
        margin-block: 0;
        min-height: calc(100vh - var(--headerHeight));
        display: flex;
        flex-direction: column;
        justify-content: center
    }
}

.stats__title {
    margin-block-end: 2rem
}

@media only screen and (min-width: 1081px) {
    .stats__title {
        font-style: normal;
        font-weight: 300;
        font-size: 2.8181818182rem;
        line-height: 1;
        letter-spacing: -0.035em;
        margin-block-end: 3.5rem
    }
}

.stats__content {
    display: grid;
    gap: 2rem 1rem
}

@media only screen and (min-width: 641px) {
    .stats__content {
        grid-template-columns: 1fr 1fr
    }
}

@media only screen and (max-width: 641px) {
    .stats .stat__number {
        width: 100px;
    }
}

.stats .stat {
    display: inline-flex;
    align-items: anchor-center;
    gap: 4rem;
    grid-template-columns: 8ch 1fr
}

@media only screen and (min-width: 721px) {
    .stats .stat {
        grid-template-columns: repeat(3, 1fr)
    }
}

.stats .stat__number {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    margin-right: -2rem
}

@media only screen and (min-width: 1081px) {
    .stats .stat__number {
        margin-top: -0.02em;
        font-size: 3rem
    }
}

@media only screen and (min-width: 1441px) {
    .stats .stat__number {
        font-size: 4.0909090909rem
    }
}

.stats .stat__text {
    margin-bottom: 0;
    max-width: 23ch;
    text-wrap: balance
}

@media only screen and (min-width: 721px) {
    .stats .stat__text {
        grid-column: span 2;
        max-width: 17ch
    }
}

.stats .stat__text.hanging-quote {
    text-indent: -0.35em
}

.stats .stat__text.larger-line-width {
    max-width: 21ch
}

.feed-item {
    margin-bottom: 5rem;
    width: 100%
}

@media only screen and (min-width: 721px) {
    .feed-item {
        width: 50%
    }
}

@media only screen and (min-width: 1081px) {
    .feed-item {
        width: 33.3333333333%
    }
}

@media only screen and (min-width: 721px) {
    .feed-item--active {
        width: 100%
    }
}

@media only screen and (min-width: 1081px) {
    .feed-item--active {
        width: 66.6666666667%
    }
}

.feed-item__image {
    width: 100%;
    height: 300px;
    /* or whatever fixed height you want */
    background-size: cover;
    background-position: top;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.is-video .feed-item__image+.fluid-width-video-wrapper {
    display: none
}

body.is-touch .is-video .feed-item__image {
    display: none
}

body.is-touch .is-video .feed-item__image+.fluid-width-video-wrapper {
    display: block
}

.is-video-shown .feed-item__image {
    display: none
}

.is-video-shown .feed-item__image+.fluid-width-video-wrapper {
    display: block
}

.feed-footer {
    visibility: hidden
}

.lazy-loader {
    text-align: center
}

.overlay {
    position: fixed;
    max-width: calc(100% - 4rem);
    max-height: calc(100% - 10rem);
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition-duration: 150ms;
    pointer-events: none;
    z-index: 1
}

.has-link-hover:hover .link-hover,
.has-link-hover:focus-within .link-hover {
    opacity: 1
}

.link-hover {
    opacity: 0;
    pointer-events: none;
    max-width: 12rem;
    height: auto;
    z-index: 1
}

@keyframes highlight-fade-in {
    0% {
        color: #000
    }
}

.image-loaded .work-card__link {
    opacity: 0
}

.image-loaded .work-card__link:hover {
    opacity: 1
}

.hover__image {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-animation: slide-up 300ms;
    -o-animation: slide-up 300ms;
    animation: slide-up 300ms;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 50%
}

body.about .main {
    margin-top: 0;
    padding-top: 0
}

.contact__copyright {
    position: absolute;
    bottom: 0
}

.white {
    color: #fff
}

.mb0,
.contact__subsection.col h4 {
    margin-bottom: 0
}

.mb0-wrap>*:last-child {
    margin-bottom: 0
}

.hidden {
    display: none
}

.no-scroll {
    overflow-y: hidden
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

::selection,
::-moz-selection {
    background-color: #ff3000;
    color: #fff;
    color: rgba(0, 0, 0, 0.666667)
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Optional delay modifiers */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.background-video {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    opacity: 0.55;
    pointer-events: none;
    /* filter: blur(8px) brightness(1.2); */
}

.background-video::after,
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to top, transparent 20%, black 100%);
    z-index: -1;
    pointer-events: none;
}

/* SYSTEMS PAGE */

.systems-list {
  padding: 180px 20px 80px 20px;
}

.systems__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.system h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25em;
}

.system p {
  margin-bottom: 0.5em;
  font-size: 1rem;
  line-height: 1.6;
}

/* REQUEST ACCESS PAGE */

.request {
  padding-top: 140px;
  padding-bottom: 100px;
  padding-left: 24px;
  padding-right: 24px;
}

.request h1 {
  font-size: 32px;
  margin-bottom: 24px;
}

.request .lead {
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}

.request__block {
  border-left: 2px solid #444;
  padding-left: 20px;
}

.request__section-title {
  font-size: 18px;
  margin-bottom: 16px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.request__list {
  list-style: none;
  padding-left: 0;
}

.request__list li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.request .highlight {
  text-decoration: underline;
  color: #fff;
}

.request .dim {
  color: #666;
  font-size: 15px;
  margin-top: 48px;
}

/* ENTER PAGE */

.enter {
  padding-top: 140px;
  padding-bottom: 100px;
  padding-left: 24px;
  padding-right: 24px;
}

.enter h1 {
  font-size: 32px;
  margin-bottom: 24px;
}

.enter .lead {
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #111;
  color: #fff;
  margin-bottom: 24px;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: #888;
  outline: none;
}

.form-button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-button:hover {
  background-color: #ddd;
}

.error-message {
  color: #ff5e5e;
  font-size: 14px;
  margin-top: 16px;
}
