* {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: auto;
          font-feature-settings: auto;
  -webkit-font-kerning: auto;
          font-kerning: auto;
}

html {
  box-sizing: border-box;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

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-family: 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;
}

@font-face {
  font-family: 'Neue Haas Grotesk Txt W04 55Rm';
  src: 
    url(../fonts/neue-haas-grotesk-text-pro-55-roman.woff2) format('woff2'),
    url(../fonts/neue-haas-grotesk-text-pro-55-roman.woff) format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'NeueHaasGroteskDisp W01 Bd';
  src: 
    url(../fonts/neue-haas-grotesk-display-std-bold.woff2) format('woff2'),
    url(../fonts/neue-haas-grotesk-display-std-bold.woff) format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
  /** Colors */
  --black: #000;
  --white: #fff;
  --grey: #999;
  --dark-grey: #666;
  --red: #ed1d24;

  /** Fonts */
  --regular: 'Neue Haas Grotesk Txt W04 55Rm', sans-serif;
  --bold: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
}

.body-text {
  font-size: 1rem;
  line-height: 1
}

@media (min-width: 1000px) {

.body-text {
    font-size: 1.25rem;
    line-height: 0.95
}
  }

.body-text p {
    margin-bottom: 1.375rem
  }

.body-text p:last-of-type {
      margin-bottom: 0;
    }

.body-text h5 {
    display: block;
    font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
    font-family: var(--bold);
    margin-bottom: 0.625rem;
  }

.body-text a {
    color: #000;
    color: var(--black);
    text-decoration: underline;
  }

.heading {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 2.5rem;
  line-height: 1
}

@media (min-width: 1000px) {

.heading {
    font-size: 4rem;
    line-height: 0.9375
}
  }

.heading--small {
  font-size: 1.5625rem;
  line-height: 0.96
}

@media (min-width: 1000px) {

.heading--small {
    font-size: 2rem;
    line-height: 0.9375
}
  }

.heading--smaller {
  font-size: 1.25rem;
  line-height: 0.96
}

@media (min-width: 1000px) {

.heading--smaller {
    font-size: 1.25rem;
    line-height: 0.9375
}
  }

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  background: var(--white);
  border-radius: 100px;
  border: 1px #000 solid;
  border: 1px var(--black) solid;
  color: #000;
  color: var(--black);
  cursor: pointer;
  display: inline-block;
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 0.875rem;
  /* outline: none; */
  margin-top: 2rem;
  padding: 0.8125rem 2.5rem 0.75rem;
  text-decoration: none
}

.button:focus {
    outline: 1px dotted #000;
    outline: 1px dotted var(--black);
    outline-offset:3px;
  }

.button.button--transparent {
    background: transparent;
  }

@media (min-width: 768px) {

.button {
    margin-top: 2.5rem
}
  }

.button--white {
  background: transparent;
  border: 1px #fff solid;
  border: 1px var(--white) solid;
  color: #fff;
  color: var(--white)
}

.button--white:focus {
    outline-color: #fff;
    outline-color: var(--white);
  }

.button--black {
  background: #000;
  background: var(--black);
  border: 1px #fff solid;
  border: 1px var(--white) solid;
  color: #fff;
  color: var(--white)
}

.button--black.button--transparent {
    outline-color: #fff;
    outline-color: var(--white);
  }

.see-all-cta {
  display: block;
  font-size: 1rem;
  line-height: 1em;
  text-decoration: none
}

.see-all-cta:hover {
    text-decoration: underline;
  }

.see-all-cta.see-all-cta--white {
    color: #fff;
    color: var(--white);
  }

.see-all-cta.see-all-cta--black {
    color: #000;
    color: var(--black);
  }

@media (min-width: 1000px) {

.see-all-cta {
    font-size: 1.25rem;
    line-height: 0.95
}
  }

html {
  font-size: 16px;
}

body {
  font-family: 'Neue Haas Grotesk Txt W04 55Rm', sans-serif;
  font-family: var(--regular);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.no-scroll {
  overflow: hidden;
}

.main {
  display: block;
  margin: 0 auto;
  max-width: 79.5rem;
  padding-top: 3.5rem;
  width: 100%
}

@media (min-width: 1030px) {

.main {
    padding-top: 7.5rem
}
  }

@media (min-width: 1272px) {

.main {
    border-left: 1px #d8dada solid;
    border-right: 1px #d8dada solid
}
  }

.site-wrapper--header-notification .main {
    padding-top: 5.5rem
  }

@media (min-width: 1030px) {

.site-wrapper--header-notification .main {
      padding-top: 10rem
  }
    }

.flex-container {
  flex-wrap: wrap
}

@media (min-width: 768px) {

.flex-container {
    display: flex
}
  }

.column {
  padding: 0 1rem
}

@media (min-width: 768px) {

.column {
    padding: 0 1.25rem;
    width: 50%
}
  }

@media (min-width: 768px) {

.column--quarter {
    width: 25%
}
  }

.column--three-quarters {
  width: 75%
}

@media (min-width: 768px) {

.column--three-quarters {
    width: auto
}
  }

.column--right-align {
  margin-left: auto;
}

.module--large {
  height: 40rem
}

@media (min-width: 768px) {

.module--large {
    height: 39.75rem
}
  }

.module--medium {
  height: 30rem
}

@media (min-width: 768px) {

.module--medium {
    height: 29.8125rem
}
  }

.module--small {
  height: 20rem
}

@media (min-width: 768px) {

.module--small {
    height: 19.875rem
}
  }

.section {
  overflow: hidden;
  position: relative;
}

.section-jump {
  position: relative;
  top: -3.5rem
}

@media (min-width: 768px) {

.section-jump {
    top: -7.5rem
}
  }

.background-image {
  background-position: left center;
  background-size: cover;
  bottom: 0;
  display: none;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.background-image--mobile {
  display: block
}

@media (min-width: 321px) {

.background-image--mobile {
    display: none
}
  }

.background-image--tablet {
  display: none
}

@media (min-width: 321px) {

.background-image--tablet {
    display: block
}
  }

@media (min-width: 768px) {

.background-image--tablet {
    display: none
}
  }

@media (min-width: 768px) {

.background-image--desktop {
    display: block
}
  }

.form__input-container {
  margin-bottom: 1.25rem;
}

.form__label {
  color: #747676;
  display: block;
  font-size: 0.625rem;
  margin-bottom: 0.625rem;
  width: 100%
}

.form__label.form__label--inline {
    display: inline;
    margin-bottom: 0;
    padding-left: 10px;
  }

.form__label a {
    color: #747676;
  }

.form__label ul {
    margin: 1.25rem 0
  }

.form__label ul li {
      padding-left: 2.375rem;
      position: relative
    }

.form__label ul li:before {
        content: '\2022';
        display: inline-block;
        left: 0.75rem;
        margin-right: 1.25rem;
        position: absolute;
        top: 0.125rem;
      }

.form__radio-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 3.875rem;
  margin-bottom: 1rem
}

@media (min-width: 768px) {

.form__radio-container {
    margin-bottom: 1.25rem
}
  }

.form__checkbox-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem
}

.form__checkbox-container .form__input-error-message {
    display: block;
    width: 100%;
    margin-top: -1em;
  }

@media (min-width: 768px) {

.form__checkbox-container {
    margin-bottom: 1.25rem
}
  }

.form__checkbox-container--margin-top {
  margin-top: 3.5rem;
}

.form__radio-input-container {
  color: #000;
  color: var(--black);
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  margin-right: 1.25rem;
  position: relative
}

.form__radio-input-container input[type='radio'] {
    height: 1.25rem;
    left: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    width: 1.25rem;
    z-index: 1;
  }

.form__radio-input-container label {
    align-items: center;
    display: flex;
    height: 1.25rem;
    padding-left: 1.75rem;
    padding-top: 3px;
    position: relative;
  }

.form__radio-input-container label:before {
    content: '';
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-block;
    left: 0;
    line-height: 16px;
    height: 1.25rem;
    position: absolute;
    top: 0;
    width: 1.25rem;
  }

.form__radio-input-container label:after {
    background: #000;
    background: var(--black);
    border-radius: 50%;
    content: '';
    cursor: pointer;
    display: inline-block;
    height: 0.5rem;
    opacity: 0;
    left: 0.375rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.5rem;
  }

.form__radio-input-container input[type='radio']:checked + label:after {
    opacity: 1;
  }

.form__checkbox-inputs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.form__checkbox-input-container {
  color: #000;
  color: var(--black);
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  min-height: 1.25rem;
  padding-right: 1%;
  position: relative;
  width: 50%;
  align-items: start
}

.form__checkbox-input-container:nth-of-type(1n) {
    width: calc(50% + 1.25rem);
  }

.form__checkbox-input-container:nth-of-type(2n) {
    width: calc(50% - 1.25rem);
  }

.form__checkbox-input-container input[type='checkbox'] {
    height: 1.25rem;
    left: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    width: 1.25rem;
  }

.form__checkbox-input-container label {
    align-items: center;
    display: flex;
    padding-left: 1.75rem;
    position: relative;
  }

.form__checkbox-input-container label:before {
    content: '';
    cursor: pointer;
    border: 1px solid #000;
    display: inline-block;
    left: 0;
    height: 1.25rem;
    position: absolute;
    top: 0;
    width: 1.25rem;
  }

.form__checkbox-input-container label:after {
    background-image: url(../img/checkmark.png);
    background-repeat: no-repeat;
    background-size: 1rem 0.75rem;
    content: '';
    cursor: pointer;
    display: inline-block;
    height: 0.75rem;
    opacity: 0;
    left: 0.125rem;
    position: absolute;
    /* top: 50%; */
    top: 0.7rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1rem;
  }

.form__checkbox-input-container input[type='checkbox']:checked + label:after {
    opacity: 1;
  }

.form__checkbox-input-container--full {
  margin-bottom: 1.25rem;
  width: 100% !important;
}

.form__select-input-container {
  margin-bottom: 1.25rem;
  position: relative;
  width: 100%;
}

.form__text-input {
  align-items: center;
  border: 1px #d8dada solid;
  border-bottom: 1px #000 solid;
  border-bottom: 1px var(--black) solid;
  border-radius: 0;
  color: #000;
  color: var(--black);
  display: flex;
  font-family: 'Neue Haas Grotesk Txt W04 55Rm', sans-serif;
  font-family: var(--regular);
  font-size: 1rem;
  height: 2.625rem;
  resize: none;
  padding: 0 1rem;
  width: 100%
}

.form__text-input:focus {
    font-size: 1rem;
    border: 1px #000 solid;
    border: 1px var(--black) solid;
    /* outline: none; */
  }

input::-ms-clear {
  display: none;
}

.form__textarea-input {
  border: 1px #d8dada solid;
  border-bottom: 1px #000 solid;
  border-bottom: 1px var(--black) solid;
  border-radius: 0;
  color: #000;
  color: var(--black);
  display: flex;
  font-family: 'Neue Haas Grotesk Txt W04 55Rm', sans-serif;
  font-family: var(--regular);
  font-size: 1rem;
  height: 7.75rem;
  margin: 0;
  padding: 1rem;
  resize: none;
  vertical-align: bottom;
  width: 100%
}

.form__textarea-input:focus {
    font-size: 1rem;
    border: 1px #000 solid;
    border: 1px var(--black) solid;
    /* outline: none; */
  }

.form__select-box {
  position: relative
}

.form__select-box svg {
    position: absolute;
    right: 1rem;
    top: 1.3125rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

.form__select-box--no-height {
  height: auto;
}

.form__select-input {
  display: none;
}

.form__select-input-opener {
  align-items: center;
  border: 1px #d8dada solid;
  border-bottom: 1px #000 solid;
  border-bottom: 1px var(--black) solid;
  color: #000;
  color: var(--black);
  display: flex;
  font-family: 'Neue Haas Grotesk Txt W04 55Rm', sans-serif;
  font-family: var(--regular);
  font-size: 1rem;
  height: 2.625rem;
  margin-right: 3.4375rem;
  /* outline: none; */
  padding: 0 1rem;
  width: 100%
}

.form__select-input-opener:focus {
    font-size: 1rem;
    /* outline: none; */
  }

.form__select-input-panel {
  background: #fff;
  border-bottom: 1px #000 solid;
  border-bottom: 1px var(--black) solid;
  display: none;
  left: 0;
  /* height: 7.875rem; */
  overflow: scroll;
  overflow-x: hidden;
  position: absolute;
  right: 0;
  top: 2.625rem;
  z-index: 5;
  /* box-shadow: .25rem .25rem .5rem rgba(0, 0, 0, .15); */
}

.form__select-box--top .form__select-input-panel {
    top: auto;
    bottom: 2.625rem;
  }

.form__input-container--mobile .form__select-input-panel {
    height: auto;
  }

.form__select-input-option {
  align-items: center;
  border: 1px #d8dada solid;
  border-bottom: 1px #000 solid;
  border-bottom: 1px var(--black) solid;
  color: #000;
  color: var(--black);
  cursor: pointer;
  display: flex;
  font-family: 'Neue Haas Grotesk Txt W04 55Rm', sans-serif;
  font-family: var(--regular);
  font-size: 1rem;
  height: 2.625rem;
  padding: 0 1rem;
  width: 100%
}

.form__select-input-option:last-of-type {
    border-bottom: 0;
  }

.form__select-input--open .form__select-input-panel {
    display: block;
  }

.form__checkbox-other-input {
  border: 0;
  border-bottom: 1px #979797 solid;
  border-radius: 0;
  font-size: 0.875rem;
  height: auto;
  margin: 0 0.5rem;
  padding: 0;
  width: 35%
}

.form__checkbox-other-input:focus {
    border: 0;
    border-bottom: 1px #000 solid;
    border-bottom: 1px var(--black) solid;
  }

.form__input--error {
  border: 1px #ed7000 solid;
  border-bottom: 4px #ed7000 solid;
}

.form__radio-container--error .form__radio-input-container label::before {
    border: 1px #ed7000 solid;
  }

.form__checkbox-container--error .form__checkbox-input-container label::before {
    border: 1px #ed7000 solid;
  }

.form__input-error-message {
  color: #000;
  color: var(--black);
  font-size: 0.625rem;
  margin: 0.3125rem 0 0.1875rem;
}

.form__upload-container {
  margin-bottom: 1.25rem;
}

.form__upload-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.625rem;
  width: 75%
}

.form__upload-meta:last-of-type {
    margin-bottom: 0;
  }

.form__upload-file-clear {
  align-items: center;
  color: #747676;
  display: flex;
  font-size: 0.625rem;
  margin-left: 3.4375rem;
  text-decoration: none
}

.form__upload-file-clear span {
    color: #000;
    color: var(--black);
    font-size: 1rem;
    margin-right: 0.625rem;
  }

.form__upload {
  margin-top: 2.5rem
}

.form__upload input {
    left: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
  }

.form__upload label {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: #fff;
    background: var(--white);
    border-radius: 100px;
    border: 1px #000 solid;
    border: 1px var(--black) solid;
    color: #000;
    color: var(--black);
    cursor: pointer;
    display: inline-block;
    font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
    font-family: var(--bold);
    font-size: 0.875rem;
    /* outline: none; */
    padding: 0.8125rem 2.5rem 0.75rem;
    text-decoration: none;
  }

.form__upload--active input,
  .form__upload--active label,
  .form__upload--active .form__label--inline {
    display: none;
  }

.form__upload--hidden {
  display: none;
}

.form--white .form__label {
    color: #fff;
  }

.form--white .form__input-error-message {
    color: #ed7000 ;
  }

.header {
  background-color: #fff;
  border-bottom: 1px #d8dada solid;
  height: 3.5rem;
  left: 0;
  padding: 0 1rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000


}

@media (min-width: 1030px) {

.header {
    height: 7.5rem;
    padding: 0 1.25rem


}
  }

.header__skip-to-content {
  display: block;
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%,-100%);
          transform: translate(-50%,-100%);
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: #000;
  padding: .75em 1.25em;
  font-size: 1em;
  line-height: 1em;
  color: #fff;
  font-weight: bold
}

.header__skip-to-content:focus {
    -webkit-transform: translate(-50%,-0);
            transform: translate(-50%,-0);
  }

.site-wrapper--header-notification .header {
    height: 5.5rem;
    padding-top: 2em    
  }

.site-wrapper--header-notification .header .header__notification {
      display: block;
    }

@media (min-width: 1030px) {

.site-wrapper--header-notification .header {
      height: 10rem;
      padding-top: 2.5em    
  }
    }

.header__notification {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  /* margin: 0 -1rem; */
  padding: 0 .5rem;
  background-color: #000;
  min-height: 2rem

}

.header__notification .header__notification-content {
    padding: .5625rem 0;
    color: #ffffff;
    font-size: .5rem;
    line-height: 1.525em;
    text-align: right;
  }

@media(min-width: 768px){

.header__notification {
    padding: 0 1rem;
    min-height: 2rem

}
    .header__notification .header__notification-content {
      padding: .5rem 0;
      font-size: .875rem;
      line-height: .8714em;   

    }
  }

@media(min-width: 1030px) {

.header__notification {
    padding: 0 1.25rem;
    min-height: 2.5rem

}
    .header__notification .header__notification-content {
        margin-left: 50%;
        padding: .75rem 0;
        padding-left: 2.5rem;
        text-align: left;
    }
  }

.header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
  max-width: 79.5rem;
  padding: 0 1rem 0 0;
  width: 100%
}

@media (min-width: 1030px) {

.header__container {
    /* padding: 0.875rem 0 2.375rem 0; */
    align-items: start;
    padding: 1.5rem 0 3.4375rem 0
}
  }

.header__logo img {
  height: auto;
  width: 6.25rem
}

@media (min-width: 1030px) {

.header__logo img {
    width: 11.625rem
}
  }

.header__nav {
  background-color: #fff;
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 6.625rem 1rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0)
}

@media (min-width: 1030px) {

.header__nav {
    display: block;
    flex-direction: row;
    padding: 0;
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0)
}
  }

.header__nav--active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition: 250ms ease-out;
}

.header__nav-link {
  display: inline-block;
  color: #000;
  color: var(--black);
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 1.5625rem;
  line-height: 11px;
  margin-bottom: 2.5rem;
  margin-right: 1.25rem;
  position: relative;
  text-decoration: none
}

@media (min-width: 1030px) {

.header__nav-link {
    font-size: 0.75rem;
    margin-bottom: 0
}
      .header__nav-link:hover:after {
        opacity: 1;
        visibility: visible;
      }
  }

.header__nav-link:last-of-type {
    margin-right: 0;
  }

.header__nav-link:after {
    background: #d52b1e;
    bottom: -4px;
    content: '';
    height: 1px;
    left: 0;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    right: 0;
  }

@media (min-width: 1030px) {
    .header__nav-link--active:after {
      opacity: 1;
      visibility: visible;
    }
  }

.header__nav-mobile-button {
  display: block;
  position: relative;
  z-index: 55
}

@media (min-width: 1030px) {

.header__nav-mobile-button {
    display: none
}
  }

.header__nav-mobile-button svg {
    height: auto;
    width: 1rem;
  }

.header__nav-mobile-button line {
    stroke: #000;
    stroke-width: 1.5;
    transition: 250ms ease-out;
  }

.header__nav-mobile-button--active line:nth-child(1) {
      -webkit-transform: rotate(45deg) translate3d(3px, -1px, 0);
              transform: rotate(45deg) translate3d(3px, -1px, 0);
    }

.header__nav-mobile-button--active line:nth-child(2) {
      opacity: 0;
    }

.header__nav-mobile-button--active line:nth-child(3) {
      -webkit-transform: rotate(-45deg) translate3d(-8px, -4px, 0);
              transform: rotate(-45deg) translate3d(-8px, -4px, 0);
    }

.header__container--challenge, .header__container--withnav {
  padding-right: 0
}

.header__container--challenge .header__nav, .header__container--withnav .header__nav {
    padding-top: 4rem
  }

.header__container--challenge .header__nav .header__nav-link, .header__container--withnav .header__nav .header__nav-link {
      line-height: 1em;
      margin-bottom: 1rem;
    }

@media (min-width: 1030px) {

.header__container--challenge .header__nav, .header__container--withnav .header__nav {
      padding-top: 0;
      width: 50%;
      padding-left: 2.5rem
  }
      .header__container--challenge .header__nav .header__nav-link, .header__container--withnav .header__nav .header__nav-link {
        font-size: .875em;
        line-height: .7857em;
        margin-right: 1.071em
      }
        .header__container--challenge .header__nav .header__nav-link.header__nav-link--mobile, .header__container--withnav .header__nav .header__nav-link.header__nav-link--mobile {
          display: none;
        }
    }

.footer {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
  padding: 1rem 0 5.125rem
}

@media (min-width: 768px) {

.footer {
    padding: 1.25rem 0 5.125rem
}
  }

.footer__container {
  margin: 0 auto;
  max-width: 79.5rem;
  width: 100%;
}

.footer__logo {
  /* height: 2.1875rem; */
  width: 10.4375rem;
  height: auto
}

.footer__logo img {
    width: 100%;
  }

.footer__info-nav {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  padding-top: 1rem
}

@media (min-width: 768px) {

.footer__info-nav {
    flex-direction: row;
    padding-left: 1.25rem;
    padding-top: 0.625rem
}
  }

.footer__info-link {
  color: #747676;
  display: inline-block;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  text-decoration: none
}

@media (min-width: 768px) {

.footer__info-link {
    margin-bottom: 0
}
  }

.footer__info-link:last-of-type {
    margin-right: 0;
  }

/* Challenge footer */

.footer--challenge {
  padding-bottom: 2.875rem
}

.footer--challenge .footer__logo {
    width: 6.375rem;
  }

.footer--challenge .footer__info-nav {
    padding-top: 2rem
  }

.footer--challenge .footer__info-nav .footer__info-link {
      margin-bottom: .5rem;
      margin-right: .9375rem;
    }

@media (min-width: 768px) {

.footer--challenge {
    padding-bottom: 6.5rem
}
    .footer--challenge .footer__logo {
      width: 10.4375rem;      
    }
    .footer--challenge .footer__info-nav {
      padding-top: 0.625rem
    }
      .footer--challenge .footer__info-nav .footer__info-link {
        margin-bottom: .625rem;
      }
  }

.carousel__buttons {
  display: flex;
  justify-content: center;
}

.carousel__button {
  background: #fff;
  background: var(--white);
  cursor: pointer;
  display: block;
  height: 0.125rem;
  margin-right: 0.625rem;
  opacity: 0.5;
  position: relative;
  width: 3.75rem
}

.carousel__button:last-of-type {
    margin-right: 0;
  }

.carousel__button:after {
    content: '';
    left: 0;
    padding: 1rem 0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

.carousel__button--active {
  background: #fff;
  background: var(--white);
  opacity: 1;
}

.footer-links {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
}

.footer-links__container {
  margin: 0 auto;
  max-width: 79.5rem;
  width: 100%;
  display: flex;
}

.footer-links__heading {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 1rem;
  line-height: .9375em; 
  font-weight: normal;
  border-bottom: 1px solid #fff;
  padding-bottom: .5rem;
  margin-bottom: .5rem
}

@media (min-width: 1000px) {

.footer-links__heading {
    font-size: 1.25rem;
    line-height: .75em;    
    padding-bottom: .625rem;
    margin-bottom: .65em
}
  }

.footer-links__column {
  width: 100%;  
  padding-top: 1rem
}

.footer-links__column.footer-links__column--info, .footer-links__column.footer-links__column--company, .footer-links__column.footer-links__column--locations {
    height: 20rem;
  }

.footer-links__column.footer-links__column--5g, .footer-links__column.footer-links__column--contact {
    height: 10rem;
  }

.footer-links__column.footer-links__column--5g, .footer-links__column.footer-links__column--company {
    border-top: 1px #333333 solid;
  }

.footer-links__column.footer-links__column--contact {
    border-bottom: 1px #333333 solid;
  }

.footer-links__column.footer-links__column--info { order: 0; }

.footer-links__column.footer-links__column--contact { order: 3; }

.footer-links__column.footer-links__column--5g { order: 2; }

.footer-links__column.footer-links__column--company { order: 1; }

@media (min-width: 768px) {

.footer-links__column {
    width: 25%;
    padding-top: 1.25rem
}
    .footer-links__column.footer-links__column--info { order: 0; }
    .footer-links__column.footer-links__column--contact { order: 1; }
    .footer-links__column.footer-links__column--5g { order: 2; }
    .footer-links__column.footer-links__column--company { order: 3; }    

    .footer-links__column.footer-links__column--info, .footer-links__column.footer-links__column--contact, .footer-links__column.footer-links__column--5g, .footer-links__column.footer-links__column--company  {
      height: 19.875rem;
    }
    .footer-links__column.footer-links__column--info, .footer-links__column.footer-links__column--contact, .footer-links__column.footer-links__column--5g, .footer-links__column.footer-links__column--locations {
      border: none;
      border-right: 1px #333333 solid;
    }    
  }

.footer-links__link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.1875em;
  margin-bottom: .5rem
}

@media (min-width: 1000px) {

.footer-links__link {
    font-size: 1.25rem;
    line-height: .95em;
    margin-bottom: .5em
}
  }

.footer-links--general .footer-links__column.footer-links__column--info { order: 0; }

.footer-links--general .footer-links__column.footer-links__column--company { order: 1; }

.footer-links--general .footer-links__column.footer-links__column--locations {
      order: 2;
      border-top: 1px #333333 solid; 
      height: 10rem;
    }

.footer-links--general .footer-links__column.footer-links__column--contact { order: 3; }

@media (min-width: 768px) {
      .footer-links--general .footer-links__column.footer-links__column--info { order: 0; }
      .footer-links--general .footer-links__column.footer-links__column--locations { order: 1; height: 19.875rem;}
      .footer-links--general .footer-links__column.footer-links__column--contact { order: 2; }
      .footer-links--general .footer-links__column.footer-links__column--company { order: 3; }
      .footer-links--general .footer-links__column.footer-links__column--locations, .footer-links--general .footer-links__column.footer-links__column--company {
        border-top: none;
      }
  }

/*


.footer-links__column {
  padding: 1.25rem;

  &:last-of-type {
    border-right: 0;
  }

  @media (--medium-viewport) {
    
    padding: 1.25rem 1.25rem 11.375rem;
  }
}

.footer-links__nav-heading {
  border-bottom: 1px #d8dada solid;
  font-size: 1.25rem;
  font-family: var(--bold);
  margin-bottom: 0.875rem;
  padding-bottom: 0.625rem;
}

.footer-links__nav-link {
  color: var(--white);
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  text-decoration: none;
}
*/

.subscribe__form {
  padding-top: 1rem
}

@media (min-width: 768px) {

.subscribe__form {
    padding-top: 1.25rem
}
  }

.subscribe__form-column {
  padding-top: 0.875rem;
}

/*
 *   This content is licensed according to the W3C Software License at
 *   https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
 *   https://w3c.github.io/aria-practices/examples/combobox/combobox-select-only.html
 */

.combo {
  display: block;
  position: relative
}

.combo:after {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    content: "";
    display: block;
    height: 8px;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 50%;
    -webkit-transform: translate(0, -65%) rotate(45deg);
            transform: translate(0, -65%) rotate(45deg);
    width: 8px;      
  }

.combo-input, .combo-option {
  background-color: #fff;
  border: 1px #d8dada solid;
  border-bottom: 1px #000 solid;
  border-bottom: 1px var(--black) solid;
  display: flex;
  align-items: center;
  font-family: 'Neue Haas Grotesk Txt W04 55Rm', sans-serif;
  font-family: var(--regular);
  font-size: 1rem;
  height: 2.625rem;
  padding: 0 1rem;    
}

.combo-input {
  text-align: left;
  width: 100%;
}

.combo-select {
  display: none;
}

.combo-input:focus {
  border-color: #000;
  outline: 2px solid #0060df;
}

.combo-menu {
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  display: none;
  max-height: 300px;
  overflow-y: scroll;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 100;
}

.combo--top .combo-menu {
    display: block;
    max-height: 294px;
    top: auto;
    bottom: 100%;
  }

.open .combo-menu {
  display: block;
}

.combo-option:hover {
    background-color: #f4f4f4;
}

.combo-option.option-current {
    background-color: #f4f4f4;
}

.four-oh-four {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 16rem 0 4rem;
  text-align: center;
}

/* Page Hero */

.page__hero {
  color: #fff;
  color: var(--white);
  position: relative
}

.page__hero .background-image--tablet {
    background-position: center;
  }

.page__hero--black {
  background: #000;
  background: var(--black);
  height: 60vh;
}

.page__hero-content {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

@media (min-width: 768px) {

.page__hero-content {
    padding: 0
}
  }

.page__hero-image {
  position: absolute;
  bottom: 2rem;
  left: 1rem;  
  display: block;
  width: 5rem;
  height: 5.0625rem
}

@media (min-width: 768px) {

.page__hero-image {
    bottom: 2.5rem;
    left: 1.25rem
}  
  }

.page__hero-heading {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 0.96;
  padding-top: 1rem
}

.page__hero-heading br {
    display: block;
  }

@media (min-width: 768px) {

.page__hero-heading {
    padding-top: 1.25rem
}
  }

@media (min-width: 1000px) {

.page__hero-heading {
    font-size: 6.5rem;
    letter-spacing: -0.9px;
    line-height: 0.83
}
  }

@media (min-width: 1000px) {

.page__hero--locations .page__hero-heading {
        line-height: .95em
    }
      }

@media (min-width: 768px) {
        .page__hero--partnerships .page__hero-copy, .page__hero--programs .page__hero-copy, .page__hero--events .page__hero-copy, .page-template-template-3d-assets .page__hero-copy, .page__hero--hoboken .page__hero-copy {
            margin-top: 1.25rem;            
        }
    }

@media (min-width: 1000px) {
      .page__hero--partnerships .page__hero-heading, .page__hero--programs .page__hero-heading, .page__hero--events .page__hero-heading, .page-template-template-3d-assets .page__hero-heading, .page__hero--hoboken .page__hero-heading {
          line-height: .95em;
      }
  }

.page__hero--partnerships .page__hero-copy, .page__hero--hoboken .page__hero-copy {
      margin-top: 1rem;
      max-width: 14rem;
    }

@media (min-width: 768px) {
      .page__hero--partnerships .page__hero-copy, .page__hero--hoboken .page__hero-copy {
        display: block;   
        max-width: 100%;    
      }
    }

@media (min-width: 1000px) {
        .page__hero--partnerships .page__hero-copy, .page__hero--hoboken .page__hero-copy {
            max-width: 19rem;
        }
    }

.page__hero--hoboken .page__hero-image, .page__hero--gaming .page__hero-image {
    display: none;
  }

.page__hero--events .page__hero-copy, .page__hero--programs .page__hero-copy, .page-template-template-3d-assets .page__hero-copy {
    margin-top: 1rem;
    max-width: 14rem;
  }

@media (min-width: 768px) {
    .page__hero--events .page__hero-copy, .page__hero--programs .page__hero-copy, .page-template-template-3d-assets .page__hero-copy {
      max-width: 100%;
    }
  }

@media (min-width: 1000px) {
    .page__hero--events .page__hero-copy, .page__hero--programs .page__hero-copy, .page-template-template-3d-assets .page__hero-copy {
        max-width: 17.375rem;
    }
  }

/* Page About */

.page__about {
    background: #fff;
    background: var(--white);
    color: #000;
    color: var(--black);
    padding-top: 1rem
  }

@media (min-width: 768px) {

.page__about {
      padding-top: 1.25rem
  }
      .page__about .column {
        max-width: 100%;
      }
    }

.page__about-copy {
    margin-top: 1rem;
    max-width: 28.75rem
  }

@media (min-width: 768px) {

.page__about-copy {
      margin-top: 0;
      max-width: 100%
  }
    }

@media (min-width: 768px) {
      .page__about--programs .page__about-copy {
        /* max-width: 32.6875rem; */
      }
    }

.page__about--partnerships .page__about-copy {
      margin-top: 2rem;
    }

@media (min-width: 768px) {
      .page__about--partnerships .page__about-copy {
        margin-top: 0;
      }
    }

.page-template-template-hoboken .page__about {
    height: 49rem    
  }

.page-template-template-hoboken .page__about .page__about-copy {
      width: 13rem;
    }

@media (min-width: 768px){

.page-template-template-hoboken .page__about {
      height: 29.8125rem    
  }
      .page-template-template-hoboken .page__about .page__about-copy {
        width: auto;
      }
    }

/* Page Trial */

.page__trial {
    height: 20rem;
    padding-top: 1rem
  }

@media (min-width: 1000px) {

.page__trial {
      height: 19.875rem;
      padding-top: 1.25rem
  }
    }

.page__trial.page__trial--events {
      background: #fff;
      background: var(--white);
      color: #000;
      color: var(--black);
    }

.page__trial.page__trial--black {
      background: #000;
      background: var(--black);
      color: #fff;
      color: var(--white);
    }

.page__trial-heading {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    line-height: 1em

  }

@media (min-width: 1000px) {

.page__trial-heading {
      font-size: 4rem;
      line-height: .9375em;
      margin-bottom: 0

  }
    }

.page__trial-copy {
    max-width: 15rem
    
  }

@media (min-width: 768px) {

.page__trial-copy {
      max-width: 100%;
      width: 100%
    
  }
    }

@media (min-width: 768px) {

.page__trial-button {
        padding: 0.8125rem 1.875rem 0.75rem;
        margin-top: 0
  }
    }

.page__trial-logo {
    display: block;
    width: 100%;
  }

.page-template-template-hoboken .page__trial {
      height: 30rem
    }

@media (min-width: 768px) {

.page-template-template-hoboken .page__trial {
        height: 20rem
    }
      }

@media (min-width: 1000px) {

.page-template-template-hoboken .page__trial {
        height: 19.875rem
    }
      }

.page-template-template-hoboken .page__trial-heading {
      margin-bottom: 0;
    }

.page-template-template-hoboken .page__trial-copy {
      margin-top: 1rem
    }

@media (min-width: 768px) {

.page-template-template-hoboken .page__trial-copy {
        margin-top: 0
    }
      }

.page-template-template-hoboken .page__trial-button {
      margin-top: 2rem
    }

@media (min-width: 768px) {

.page-template-template-hoboken .page__trial-button {
        margin-top: 2.5rem
    }
      }

/* Page Video */

.page__video {
    min-height: 30rem;
    padding-top: 1rem;
    height: auto
  }

@media (min-width: 321px){

.page__video {
      /* min-height: 38.75rem; */
  }
    }

@media (min-width: 321px) and (max-width:648px ) {

.page__video {
      min-height: auto;
      height: auto
  }
    }

@media (min-width: 768px) {

.page__video {
      min-height: 29.8125rem
  }
    }

@media (min-width: 1000px) {

.page__video {
      min-height: 39.75rem;
      padding-top: 1.25rem
  }
    }

.page__video-heading {
    font-size: 3.125rem;
    line-height: 0.98em;
    margin-bottom: .24em
  }

@media (min-width: 768px) {

.page__video-heading {
      font-size: 2.5rem;
      line-height: 1em;
      margin-bottom: 1.25rem
  }
    }

@media (min-width: 1272px){

.page__video-heading {
      font-size: 4rem;
      line-height: .9375em
  }
    }

.page__video-copy {
    max-width: 14rem
  }

@media (min-width: 768px) {

.page__video-copy {
      max-width: 16.5625rem
  }
    }

.page__video-wrapper {
    margin: 2rem 0
  }

.page__video-wrapper .homepage__work-video {
      right: ;
    }

@media (min-width: 768px) {

.page__video-wrapper {
      margin: 1em 0
  }
    }

@media (min-width: 1000px){

.page__video-wrapper {
      margin: 2.5em 0
  }
    }

.page__video-video-column .homepage__work-item {
      padding-left: 0;
    }

@media (min-width: 768px) {

.page__video-video-column {
      width: 75%
  }
    }

/* Responsive Video */

.responsive-video-wrapper {
    position: relative;
    padding-bottom: 56.25%
}

.responsive-video-wrapper iframe, .responsive-video-wrapper video {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Page Multi Items */

.multi-items {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
  height: 30rem;
  padding-top: 1rem
}

.multi-items .multi-items__subheading {
    border-bottom: 1px #fff solid;
    border-bottom: 1px var(--white) solid;
    font-size: 1.5625rem;
    margin-bottom: 0.5rem;
    margin-top: 3rem;
    padding-bottom: 5rem;
    width: 100%;
  }

.multi-items .multi-items__items {
    -webkit-column-count: 2;
            column-count: 2;
  }

.multi-items .multi-items__item {
    display: block;
    /* width: 50%; */
    line-height: .9375em;
    color: #fff;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
            break-inside: avoid
  }

.multi-items .multi-items__item:hover {
      text-decoration: underline;
    }

.multi-items.multi-items--white {
    background: #fff;
    background: var(--white);
    color: #000;
    color: var(--black)
  }

.multi-items.multi-items--white .multi-items__subheading {
      border-color: #000;
      border-color: var(--black);
    }

.multi-items.multi-items--white .multi-items__item {
      color: #000;
      color: var(--black);
    }

@media (min-width: 768px) {

.multi-items {
    height: 19.875rem;
    padding-top: 1.25rem
}
    .multi-items .multi-items__subheading {
      margin-top: 0;
      padding-bottom: 4.875rem;
      margin-bottom: 0.625rem;    
    }
  }

@media (min-width: 1000px) {
    .multi-items .multi-items__subheading {
      font-size: 2rem;
      line-height: .95em;
      padding-bottom: 4rem;    
    }
    .multi-items .multi-items__item {
      line-height: 1.15em;
      margin-bottom: 0.625rem;      
    }

  }

/* Page Timeline */

.timeline {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
  padding-top: 1rem;
  height: 25rem
}

.timeline .timeline__item a {
      color: #fff;
      color: var(--white);
    }

.timeline.timeline--white {
    background-color: #fff;
    color: #000;
    color: var(--black)
  }

.timeline.timeline--white .timeline__item a {
        color: #000;
        color: var(--black);
      }

.timeline.timeline--white .timeline__nav svg {
        stroke: #000;
        stroke: var(--black);
      }

.timeline.timeline--white .timeline__prev svg {
        stroke: #000;
        stroke: var(--black);
      }

.timeline.timeline--white .timeline__next svg {
        stroke: #000;
        stroke: var(--black);
      }

.timeline.timeline--white .carousel__button {
      background: #d7d9d9
    }

.timeline.timeline--white .carousel__button.carousel__button--active {
        background: #000;
        background: var(--black);
      }

.timeline .carousel__button {
    width: 2em;
    margin: 0 2px;
  }

.timeline:not(.timeline--white) .button {
      outline-color: #fff;
      outline-color: var(--white);
    }

@media (min-width: 768px) {

.timeline {
    height: 19.875rem;
    padding-top: 1.25rem
}
  }

.timeline__copy {
  max-width: 18rem
}

.timeline__copy br {
    display: none;
  }

@media (min-width: 768px) {

.timeline__copy {
    max-width: 100%
}
  }

@media (min-width: 1000px) {
    .timeline__copy br {
      display: block;
    }
  }

.timeline__heading {
  margin-bottom: 1rem
}

@media (min-width: 768px) {

.timeline__heading {
    margin-bottom: 1.25rem
}
  }

.timeline__items-container {
  display: flex;
  flex-direction: column
}

@media (min-width: 768px) {

.timeline__items-container {
    width: 75%
}
  }

.timeline__nav {
  display: none;
  justify-content: flex-end;
  padding-right: 1rem;
  width: 100%
}

@media (min-width: 768px) {

.timeline__nav {
    display: flex;
    padding-right: 1.25rem
}
  }

@media(min-width: 780px){

.nfl-challenge .timeline__nav {
      opacity: 0
  }
    }

.timeline__items {
  margin-top: 6.8125rem;
  width: 100%
}

@media (min-width: 768px) {

.timeline__items {
    display: block;
    padding-left: 1.25rem;
    margin-top: 2.5rem
}
  }

.timeline__item {
  padding: 0 1rem;
  -webkit-transform: translate3d(-33%, 0, 0);
          transform: translate3d(-33%, 0, 0);
  transition: 250ms ease-out
}

@media (min-width: 768px) {

.timeline__item {
    padding: 0 1.25rem;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    width: auto
}
  }

.timeline__item.carousel__item--active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.timeline__item-date {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  /* font-size: 3.125rem; 
  line-height: 0.96;  
  */
  font-size: 4rem;
  line-height: 0.9375; 
  

  margin-bottom: 0.3125rem
}

@media (min-width: 1272px) {

.timeline__item-date {
    font-size: 5.25rem;
    line-height: .9523em
}
  }

.timeline__item-label {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 1.25rem;
  line-height: 0.95;
  max-width: 10rem
}

@media (min-width: 1000px) {

.timeline__item-label {
    font-size: 1.5625rem;
    line-height: .96em;
    max-width: 100%
}
  }

.timeline__item-logo {
  display: block;
  width: 100%;

}

.timeline__item-text {
  font-size: 1rem;
  line-height: 1.2;
  margin: 1rem 0 0 0
}

.timeline__item-text.timeline__item-text--centered {
    text-align: center;
  }

@media (min-width: 1000px) {

.timeline__item-text {
    font-size: 1.25rem;
    max-width: 100%;
    margin: 2.5rem 0 0 0
}
  }

.timeline__prev {
  cursor: pointer;
  margin-right: 1.25rem
}

.timeline__prev svg {
    stroke: #fff;
  }

.timeline__next {
  cursor: pointer
}

.timeline__next svg {
    stroke: #fff;
  }

.timeline__buttons {
  bottom: 1rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%)
}

@media (min-width: 768px) {

.timeline__buttons {
    display: none
}
  }

.timeline--programs, .timeline--hoboken {
  height: 30rem
}

.timeline--programs .timeline__items, .timeline--hoboken .timeline__items {
    margin-top: 3.125rem;
    /* height: 6.25rem; */
    height: 10.1875rem;
    display: flex;
    align-items: center
  }

@media (min-width: 768px) {

.timeline--programs .timeline__items, .timeline--hoboken .timeline__items {
      height: auto;
      margin-top: 2.5rem;
      padding-left: 0
  }
    }

.timeline--programs .timeline__item, .timeline--hoboken .timeline__item {
    padding: 0 3.75rem;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

.timeline--programs .timeline__buttons, .timeline--hoboken .timeline__buttons {
    bottom: 2rem;
  }

@media (min-width: 686px) {
    .timeline--programs .timeline__items, .timeline--hoboken .timeline__items {
      height: auto;
    }
  }

@media (min-width: 768px) and (max-width:780px) {

.timeline--programs, .timeline--hoboken {
}

  }

@media (min-width: 768px) {

.timeline--programs, .timeline--hoboken {
    height: 19.875rem
}
    .timeline--programs .timeline__item, .timeline--hoboken .timeline__item {
      padding: 0 1.25rem;
    }
  }

@media (min-width: 1000px) {
    .timeline--programs .timeline__copy, .timeline--hoboken .timeline__copy {
      max-width: 15.75rem;
    }    
  }

.timeline--programs .timeline__items {
    height: 10.1875rem;
  }

.timeline--hoboken .timeline__items {
    height: auto;
  }

.timeline--hoboken .timeline__item-logo {
    width: 80%;
    margin: 0 auto
  }

@media (min-width: 768px) {

.timeline--hoboken .timeline__item-logo {
      width: 60%
  }
    }

@media ((min-width: 780px)){

.timeline--hoboken .timeline__item-logo {
      width: 100%
  }
    }

/* Page Winners */

.winners {
  padding-top: 1rem;
  height: 25rem
}

.winners.winners--black {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
  }

.winners.winners--white {
    background: #fff;
    background: var(--white);
    color: #000;
    color: var(--black);
  }

.winners .carousel__button {
    width: 2em;
    margin: 0 2px;
  }

@media (min-width: 768px) {

.winners {
    height: 19.875rem;
    padding-top: 1.25rem
}
  }

.winners__copy {
  max-width: 16rem
}

.winners__copy br {
    display: none;
  }

@media (min-width: 768px) {

.winners__copy {
    max-width: 18rem;
    max-width: 100%
}
  }

@media (min-width: 1000px) {
    .winners__copy br {
      display: block;
    }
  }

.winners__heading {
  margin-bottom: 1rem
}

@media (min-width: 768px) {

.winners__heading {
    margin-bottom: 1.25rem
}
  }

.winners__items-container {
  display: flex;
  flex-direction: column
}

@media (min-width: 768px) {

.winners__items-container {
    width: 75%
}
  }

.winners__nav {
  display: none;
  justify-content: flex-end;
  padding-right: 1rem;
  width: 100%
}

@media (min-width: 768px) {

.winners__nav {
    display: flex;
    padding-right: 1.25rem
}
  }

.winners__items {
  margin-top: 3.125rem;
  width: 100%
}

@media (min-width: 768px) {

.winners__items {
    display: block;
    padding-left: 1.25rem;
    margin-top: 2.5rem
}
  }

.winners__item {
  padding: 0 3.75rem;
  transition: 250ms ease-out;
  text-align: center
}

@media (min-width: 768px) {

.winners__item {
    padding: 0 1.25rem;
    width: auto;
    text-align: left
}
  }

.winners__item.carousel__item--active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.winners__item-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2.375em 0;
  height: 5em
}

@media (min-width: 1000px) {

.winners__item-logo-wrapper {
    justify-content: flex-start;
    height: 3.625em
}
  }

.winners__item-logo {
  display: inline-block;

  max-height: 5em;
  max-width: 100%

}

@media (min-width: 1000px) {

.winners__item-logo {
    max-height: 3.625em;
    max-width: 90%

}   
  }

.winners__item-name {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 1rem;
  line-height: 1.1em;
  max-width: 10rem
}

@media (min-width: 1000px) {

.winners__item-name {
    font-size: 1.25rem;
    line-height: 1.1em;
    max-width: 100%
}
  }

.winners__item-prize {
  font-size: 1rem;
  line-height: 0.95;
  margin-top: .5em
}

@media (min-width: 1000px) {

.winners__item-prize {
    font-size: 1.25rem;
    line-height: .96em;
    max-width: 100%
}
  }

.winners--black .winners__item-name {
    color: #fff;
    color: var(--white);
  }

.winners--white .winners__item-name {
    color: #000;
    color: var(--black);
  }

.winners__prev {
  cursor: pointer;
  margin-right: 1.25rem
}

.winners__prev svg {
    stroke: #fff;
  }

.winners__next {
  cursor: pointer
}

.winners__next svg {
    stroke: #fff;
  }

.winners__buttons {
  bottom: 2rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%)
}

@media (min-width: 768px) {

.winners__buttons {
    display: none
}
  }

.winners--white .carousel__button {
    background-color: #999;
    background-color: var(--grey);
  }

.winners--white .carousel__button--active {
    background-color: #000;
    background-color: var(--black);
  }

/* Page page-events */

.page-events {
  background: #fff;
  background: var(--white);
  color: #000;
  color: var(--black);
  padding-top: 1rem;
  height: 30rem
}

.page-events .carousel__buttons {
    bottom: 2rem;
  }

.page-events .carousel__button {
    width: 2em;
    margin: 0 2px;
    opacity: 1;
    background: #d7d9d9
  }

.page-events .carousel__button.carousel__button--active {
      background: #000;
      background: var(--black);
    }

.page-events .column--quarter {
    margin-bottom: 2rem;
  }

@media (min-width: 768px) {

.page-events {
    /* height: 29.8125rem; */
    height: 40rem;
    padding-top: 1.25rem
}
  }

.page-events__copy {
  max-width: 18rem
}

.page-events__copy br {
    display: none;
  }

@media (min-width: 768px) {

.page-events__copy {
    max-width: 100%
}
  }

@media (min-width: 1000px) {
    .page-events__copy br {
      display: block;
    }
  }

.page-events__heading {
  margin-bottom: 1rem
}

@media (min-width: 768px) {

.page-events__heading {
    margin-bottom: 1.25rem
}
  }

.page-events__select-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.page-events__items-container {
  display: flex;
  flex-direction: column
}

@media (min-width: 768px) {

.page-events__items-container {
    width: 75%
}
  }

.page-events__nav {
  display: none;
  justify-content: flex-end;
  padding-right: 1rem;
  width: 100%
}

@media (min-width: 768px) {

.page-events__nav {
    display: flex;
    padding-right: 1.25rem
}
  }

.page-events__items {
  width: 100%;
  margin-left: auto
}

@media (min-width: 768px) {

.page-events__items {
    display: block;
    margin-top: 2.375rem
}
  }

.page-events__item {
  padding: 0 1rem
}

@media (min-width: 768px) {

.page-events__item {
    padding: 0 1.25rem;
    width: auto
}
  }

.page-events__item.carousel__item--active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.page-events__item-box {
  position: relative;
  background-color: #f6f6f6;
  padding: 1rem 1rem 1.875rem 1rem;
  height: 15.625rem
}

.page-events__item-box .page-events__item-box-inner {
    /* overflow: hidden;
    padding-bottom: 2px;
    max-height: 9.0625rem; */
  }

@media (min-width: 768px) {

.page-events__item-box {
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    /* height: 21.125rem; */
    height: 25rem
}
    
  }

@media (min-width: 1000px) {
    .page-events__item-box .page-events__item-box-inner {
      /* max-height: 14.4375rem; */
    }
  }

.page-events__item-date {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 4rem;
  line-height: 0.9375; 
  margin-bottom: 0.3125rem
}

@media (min-width: 1272px) {

.page-events__item-date {
    font-size: 5.25rem;
    line-height: .9523em
}
  }

.page-events__item-title {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 1.5625rem;
  line-height: 0.96;
  margin-bottom: .64em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none
}

@media (min-width: 1272px) {

.page-events__item-title {
    font-size: 2rem;
    line-height: .95em;
    margin-bottom: .625em
}
  }

.page-events__item-description {
  font-size: 1rem;
  line-height: 1em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none
}

.page-events__item-description p {
    margin-bottom: 1em
  }

.page-events__item-description p:last-child {
      margin-bottom: 0;
    }

@media (min-width: 1272px) {

.page-events__item-description {
    font-size: 1.25rem;
    line-height: .95em
}
  }

.page-events__cta {
  position: absolute;
  bottom: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap
}

@media (min-width: 768px) {

.page-events__cta {
    bottom: 1.5rem
}
  }

@media (min-width: 1000px) {

.page-events__cta {
}
    
  }

.page-events__prev, .page-events__next {
  height: 2.625rem

}

.page-events__prev.page-events--disabled, .page-events__next.page-events--disabled {
    opacity: 0;
    pointer-events: none;
  }

.page-events__prev {
  cursor: pointer;
  margin-right: 1.25rem
}

.page-events__prev svg {
    stroke: #000;
    stroke: var(--black);
  }

.page-events__next {
  cursor: pointer
}

.page-events__next svg {
    stroke: #000;
    stroke: var(--black);
  }

.page-events__buttons {
  bottom: 1rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%)
}

@media (min-width: 768px) {

.page-events__buttons {
    display: none
}
  }

/* Page Content Module */

.content-module {
  position: relative;
  height: 30rem
}

.content-module .background-image--tablet {
    background-position: center;
  }

.content-module.content-module--black {
    background-color: #000;
    background-color: var(--black);
    color: #fff
  }

.content-module.content-module--black .button:focus {
        outline: 1px dotted #fff;
      }

.content-module.content-module--white .button {
      color: #000;
      color: var(--black);
      border-color: #000;
      border-color: var(--black);
    }

@media (min-width: 768px) {

.content-module {
    height: 19.875rem
}
  }

.content-module-content {
  bottom: 0;
  left: 0;
  padding: 1rem 0;
  position: absolute;
  right: 0;
  top: 0
}

.content-module-content .body-text {
    width: 13rem;
  }

@media (min-width: 768px) {

.content-module-content {
    padding: 1.25rem 0
}
    .content-module-content .body-text {
      width: auto;      
    }

  }

.content-module-copy-wrapper {
  margin-top: 1rem;
  max-width: 28.75rem
}

@media (min-width: 768px) {

.content-module-copy-wrapper {
    margin-right: auto;
    margin-top: 0;
    max-width: 100%
}
  }

/* Page QR Codes */

.page-template-template-3d-assets .page__hero .page__hero-image {
      display: none;
    }

.page-template-template-3d-assets {  
  /*
  & .content-module--main_content {
    height: 49rem;
    @media (--medium-viewport){
      height: 29.8125rem;
    }
  }
  */
}

.qr-codes .qr-codes__row {
    position: relative;
    padding-top: 1rem;
    height: 25rem


  }

.qr-codes .qr-codes__row .carousel__button {
      width: 2em;
      margin: 0 2px;
    }

.qr-codes .qr-codes__row .qr-codes__nav {
      display: none;
      justify-content: flex-end;
      padding-right: 1rem;
      width: 100%
    }

.qr-codes .qr-codes__row .qr-codes__nav .qr-codes__prev {
        margin-right: 1.25rem;
      }

.qr-codes .qr-codes__row .qr-codes__nav svg {
        stroke: #000;
        stroke: var(--black);
      }

.qr-codes .qr-codes__row .qr-codes__items-container {
      display: flex;
      flex-direction: column;
    }

.qr-codes .qr-codes__row .qr-codes__items {
      margin-top: 3.125rem;
      width: 100%;  
    }

.qr-codes .qr-codes__row .qr-codes__item {
      padding: 0 3.75rem;
      transition: 250ms ease-out;
      text-align: center
    }

.qr-codes .qr-codes__row .qr-codes__item .qr-codes__image {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
      }

.qr-codes .qr-codes__row .qr-codes__item .qr-codes__title {
        display: block;
        margin-top: 1em;
        line-height: 1.25em;
      }

.qr-codes .qr-codes__row .qr-codes__buttons {
      bottom: 2rem;
      left: 50%;
      position: absolute;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }

.qr-codes .qr-codes__row a {
      text-decoration: underline;
    }

.qr-codes .qr-codes__row:nth-child(odd) {
      color: #000;
      color: var(--black)
    }

.qr-codes .qr-codes__row:nth-child(odd) a {
        color: #000;
        color: var(--black);
      }

.qr-codes .qr-codes__row:nth-child(odd) .carousel__button {
        background-color: #d7d9d9
      }

.qr-codes .qr-codes__row:nth-child(odd) .carousel__button.carousel__button--active {
          background-color: #000;
          background-color: var(--black);
        }

.qr-codes .qr-codes__row:nth-child(even) {
      background-color: #000;
      background-color: var(--black);
      color: #fff
    }

.qr-codes .qr-codes__row:nth-child(even) a {
        color: #fff;
      }

.qr-codes .qr-codes__row:nth-child(even):last-child {
        border-bottom: 1px #333 solid;
      }

.qr-codes .qr-codes__row:nth-child(even) .qr-codes__nav svg {
          stroke: #fff;
        }

.qr-codes .qr-codes__row:nth-child(even) .qr-codes__item .qr-codes__image {
          border: thin solid #fff;
        }

@media (min-width: 768px) {

.qr-codes .qr-codes__row {
      height: 19.875rem;
      padding-top: 1.25rem


  }
      .qr-codes .qr-codes__row .qr-codes__items-container {
        width: 75%;
      }
      .qr-codes .qr-codes__row .qr-codes__nav {
        display: flex;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
      }
      .qr-codes .qr-codes__row .qr-codes__items {
        display: block;
        padding-left: 1.25rem;
        margin-top: 3.75rem;
      }
      .qr-codes .qr-codes__row .qr-codes__item {
        padding: 0 1.25rem;
        width: auto
      }
        .qr-codes .qr-codes__row .qr-codes__item .qr-codes__image {
          width: 70%;
        }
      .qr-codes .qr-codes__row .qr-codes__buttons {
        display: none;
      }
    }

@media(max-width:767px) and (orientation:landscape){

.qr-codes .qr-codes__row {
      height: 30rem


  }
        .qr-codes .qr-codes__row .qr-codes__item .qr-codes__image {
          width: 70%;
        }
    }

@media(min-width:768px) and (max-width:1024px) and (orientation:portrait){
        .qr-codes .qr-codes__row .qr-codes__item .qr-codes__image {
          width: 90%;
        }
    }

/* Page Gaming */

.page-template-template-gaming .content-module--about {
    height: 40rem
  }

@media (min-width: 768px){

.page-template-template-gaming .content-module--about {
      height: 19.875rem
  }
    }

.page-template-template-gaming .gaming__join {
    margin-top: 0.625rem;
  }

.page-template-template-gaming .contact__form {
    display: block;
  }

.page-template-template-gaming .form__input-container {
    width: 13rem
  }

@media (min-width: 768px){

.page-template-template-gaming .form__input-container {
      width: 46.63865546218487%
  }
    }

.page-template-template-gaming .contact__form-submit {
    margin: 0;
    padding: 0;
  }

@media(min-width:768px){

.page-template-template-gaming .background-image--desktop {
      background-position: center
  }
    }

.challenge__hero {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
  position: relative;
  height: 29.8125rem
}

@media (max-width: 1271px ){
    .challenge__hero .background-image {
      background-position: center;
    }
  }

.challenge__hero-content {
  align-items: center;
  bottom: 0;
  display: flex;
  left: 0;
  padding: 0 1rem;
  position: absolute;
  right: 0;
  top: 0
}

@media (min-width: 768px) {

.challenge__hero-content {
    padding: 0 1.25rem
}
  }

.challenge__hero-content--nfl {
  display: block
}

.challenge__hero-content--nfl .challenge__hero-heading {
    padding-top: 1rem;
    font-size: 3.125rem;
    line-height: .96em;
    color: #fff;
    text-align: left;
    width: 5em;
    margin: 0 0 0;
  }

@media (min-width: 768px) and (max-width: 999px) {
    .challenge__hero-content--nfl .challenge__hero-heading {
      padding-top: 1.25rem;
      font-size: 6.25rem;
      line-height: .9em;
    }
  }

@media (min-width: 1000px) {

.challenge__hero-content--nfl {
    display: flex;
    justify-content: center
}    
    .challenge__hero-content--nfl .challenge__hero-heading {
      padding: 1rem 0;
      font-size: 7rem;
      width: auto;  
    }
  }

@media(min-width: 1272px){
    .challenge__hero-content--nfl .challenge__hero-heading {
      /* font-size: 11.875rem; */
      font-size: 10rem;
      line-height: .9em;
    }    
  }

.challenge__hero-image {
  height: auto;
  max-width: 45.25rem;
  width: 100%;
}

.contact__hero-image, .challenge__hero-logo {
  position: absolute;
  bottom: 2rem;
  left: 1rem;  
  display: block;
  width: 5rem;
  height: 5.0625rem
}

@media (min-width: 768px) {

.contact__hero-image, .challenge__hero-logo {
    bottom: 2.5rem;
    left: 1.25rem
    /* width: 4rem;
    height: 4rem; */
}
  }

.challenge__hero-heading {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.875;
  margin: auto;
  text-align: center
}

@media (min-width: 1000px) {

.challenge__hero-heading {
    font-size: 13.1875rem;
    letter-spacing: -0.9px;
    line-height: 0.83
}
  }

.challenge__apply {
  background: #fff;
  background: var(--white);
  color: #000;
  color: var(--black);
  height: 30rem;
  padding-top: 1rem
}

@media (min-width: 768px) and (max-width: 999px) {

.challenge__apply {
    display: block
}
    .challenge__apply .button {
      margin-top: 2rem ;
    }
  }

@media (min-width: 1000px) {

.challenge__apply {
    height: 19.875rem;
    padding-top: 1.25rem
}
  }

.challenge__apply-heading {
  margin-bottom: 1rem;
  font-size: 3.125rem;
  line-height: .96em
}

@media (min-width: 1000px) {

.challenge__apply-heading {
    font-size: 4rem;
    line-height: .9375em;
    margin-bottom: 0
}
  }

.challenge__apply-copy {
  max-width: 28.75rem
}

@media (min-width: 768px) {

.challenge__apply-copy {
    max-width: 100%;
    width: 100%
}
  }

.challenge__award {
  background: #000;
  background: var(--black);
  /* height: 20rem; */
  height: 30rem;
  position: relative
}

@media (min-width: 768px) {

.challenge__award {
    height: 29.8125rem
}
  }

.challenge__award-content {
  bottom: 0;
  color: #fff;
  color: var(--white);
  left: 0;
  padding: 1.25rem 0;
  position: absolute;
  right: 0;
  top: 0
}

.challenge__award-content .heading {
    font-size: 2.25em;
    line-height: .95em;
  }

.challenge__award-content a {
    color: #fff;
    color: var(--white);
  }

@media (min-width: 1000px) {
    .challenge__award-content .heading {
      font-size: 4rem;
      line-height: .9375em;
    }
  }

.challenge__award-copy {
  margin-top: 1rem;
  max-width: 28.75rem
}

@media (min-width: 768px) {

.challenge__award-copy {
    margin-top: 0;
    max-width: 100%
}
  }

.challenge__award-button {
  margin-top: 2rem
}

@media (min-width: 1000px) {

.challenge__award-button {
    margin-top: 2.5rem
}
  }

.nflchallenge .challenge__award-copy, .nfl-challenge .challenge__award-copy, .nfl-5g-gaming-challenge .challenge__award-copy {
    max-width: 19.375rem
  }

@media (min-width: 768px) {

.nflchallenge .challenge__award-copy, .nfl-challenge .challenge__award-copy, .nfl-5g-gaming-challenge .challenge__award-copy {
      max-width: 100%
  }
    }

.challenge__looking {
  height: 50rem;
  padding-top: 1rem
}

@media (min-width: 768px) {

.challenge__looking {
    height: 40rem;
    padding-top: 1.25rem
}
  }

@media (min-width: 1000px) {

.challenge__looking {
    height: 40rem
}
  }

.challenge__looking-heading {
  font-size: 3.125rem;
  line-height: 0.96
}

@media (min-width: 1000px) {

.challenge__looking-heading {
    font-size: 4rem;
    line-height: 0.9375
}
  }

.challenge__looking-copy {
  margin-top: 2rem
}

.challenge__looking-copy h5 {
    font-size: 1.5625rem;
    line-height: 0.96;
    margin-bottom: 1rem;
  }

.challenge__looking-copy p {
    margin-bottom: 3rem;
    max-width: 16.5625rem;
    width: 100%;
  }

@media (min-width: 768px) {

.challenge__looking-copy {
    margin-top: 0
}
    .challenge__looking-copy p {
      max-width: 100%;      
    }
  }

@media (min-width: 1000px) {
    .challenge__looking-copy h5 {
      font-size: 2.125rem;
      line-height: 0.8941em;
      margin-bottom: 0.625rem;
    }

    .challenge__looking-copy p {
      margin-bottom: 1.375rem;

    }
  }

.challenge__faq {
  padding: 1rem 0 2.8125rem
}

.challenge__faq .button {
    margin-top: 2.5rem;
  }

@media (min-width: 768px) {

.challenge__faq {
    padding: 1.25rem 0 2.5rem
}
  }

.challenge__faq-heading {
  font-size: 2.25rem;
  line-height: .95em;
  margin-bottom: 1rem
}

@media (min-width: 1000px) {

.challenge__faq-heading {
    font-size: 4rem;
    line-height: 0.9375;
    margin-bottom: 1.25rem
}
  }

.challenge__faq-copy {
  max-width: 14rem
}

@media (min-width: 768px) {

.challenge__faq-copy {
    max-width: 26.9375rem
}
  }

.challenge__faq-items {
  border-top: 1px #000 solid;
  border-top: 1px var(--black) solid;
  margin-top: 3.4375rem
}

@media (min-width: 768px) {

.challenge__faq-items {
    margin-top: 1.25rem
}
  }

.challenge__faq-item {
  border-bottom: 1px #000 solid;
  border-bottom: 1px var(--black) solid;
  position: relative;
}

.challenge__faq-question {
  cursor: pointer;
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 1rem;
  padding: 1.4375rem 0 2.5625rem 0;
  padding-right: 20%
}

@media (min-width: 1000px) {

.challenge__faq-question {
    font-size: 1.25rem
}
  }

.challenge__faq-answer {
  display: none;
  padding: 0 0 1.125rem
}

.challenge__faq-answer ul li {
      padding-left: 2.375rem;
      position: relative
    }

.challenge__faq-answer ul li:before {
        content: '\2022';
        display: inline-block;
        left: 0.75rem;
        margin-right: 1.25rem;
        position: absolute;
        top: 0.125rem;
      }

@media (min-width: 768px) {

.challenge__faq-answer {
    padding: 1.1875rem 0 2.5625rem
}
  }

.challenge__faq-answer-copy {
  max-width: 80%;
}

.challenge__faq-item--visible .challenge__faq-question {
    padding-bottom: 1.4375rem;
  }

.challenge__faq-item--visible .challenge__faq-answer {
    display: block;
  }

.challenge__faq-icon {
  display: none;
  pointer-events: none;
  position: absolute;
  right: 1.25rem;
}

.challenge__faq-expand {
  top: 1.25rem;
}

.challenge__faq-contract {
  top: 1.875rem;
}

.challenge__faq-icon--visible {
  display: block;
}

.challenge__about {
  position: relative
}

.challenge__about .heading {
    font-size: 3.125em;
    line-height: .96em;
  }

.challenge__about .button {
    margin-top: 2.5rem;
  }

@media (min-width: 768px) {
    .challenge__about .heading {
      font-size: 4rem;
      line-height: 0.9375;
    }
  }

.challenge__about-content {
  bottom: 0;
  color: #fff;
  color: var(--white);
  left: 0;
  padding: 1rem 0;
  position: absolute;
  right: 0;
  top: 0
}

@media (min-width: 768px) {

.challenge__about-content {
    padding: 1.25rem 0
}
    .challenge__about-content .heading {
      max-width: 18.75rem;
    }
  }

.challenge__built-on-5g {
  padding: 1.25rem 0; 
  height: 30rem

}

.challenge__built-on-5g .challenge__built-on-5g-logo {
    display: block;
    width: 9rem;
    margin-bottom: 2rem;
  }

.challenge__built-on-5g .body-text {
    line-height: .9375em;
    max-width: 18.5rem;
  }

@media(min-width:420px){

.challenge__built-on-5g {
    display: flex

}
    .challenge__built-on-5g .column {
      padding: 0 1.25rem;
      width: 50%;
    }
    .challenge__built-on-5g .challenge__built-on-5g-logo {
      width: 11rem;
    }

  }

@media (min-width: 768px) {

.challenge__built-on-5g {
    height: 19.875rem

}
    .challenge__built-on-5g .body-text {
      max-width: 100%;
    }
    .challenge__built-on-5g .challenge__built-on-5g-logo {
      width:280px;
      margin-bottom: 0;
    }
  }

@media (min-width: 1000px) {
    .challenge__built-on-5g .body-text {
      line-height: .95em;
    }
  }

.challenge__why {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
  height: 30rem;
  padding-top: 1rem
}

@media (min-width: 768px) and (max-width: 999px) {

.challenge__why {
    display: block
}
    .challenge__why .button {
      margin-top: 2rem ;
    }
  }

@media (min-width: 1000px) {

.challenge__why {
    height: 19.875rem;
    padding-top: 1.25rem
}
  }

.challenge__why-heading {
  margin-bottom: 1rem;
  font-size: 3.125rem;
  line-height: .96em
}

@media (min-width: 1000px) {

.challenge__why-heading {
    font-size: 4rem;
    line-height: .9375em;
    margin-bottom: 0
}
  }

.challenge__why-copy {
  max-width: 28.75rem
}

@media (min-width: 768px) {

.challenge__why-copy {
    max-width: 100%;
    width: 100%
}
  }

.apply__hero {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
  position: relative
}

.apply__hero.apply__hero--nfl .apply__hero-copy {
      width: 10rem;
    }

@media (max-width: 1271px ){
      .apply__hero.apply__hero--nfl .background-image {
        background-position: center;
      }
  }

@media (min-width: 768px) and (max-width: 999px) {
      .apply__hero.apply__hero--nfl .apply__hero-heading {
        padding-top: 1.25rem;
        font-size: 6.25rem;
        line-height: .9em;
      }
  }

@media (min-width: 768px) {
      .apply__hero.apply__hero--nfl .apply__hero-copy {
        width: auto;
      }   
  }

.apply__hero--black {
  background: #000;
  background: var(--black);
}

.apply__hero-content {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

@media (min-width: 768px) {

.apply__hero-content {
    padding: 0
}
  }

.apply__hero-heading {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 0.96;
  padding-top: 1rem
}

@media (min-width: 768px) {

.apply__hero-heading {
    padding-top: 5rem
}
  }

@media (min-width: 1000px) {

.apply__hero-heading {
    font-size: 13.1875rem;
    letter-spacing: -0.9px;
    line-height: 0.83
}
  }

.apply__hero-copy-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.apply__hero-copy {
  padding-top: 1rem
}

@media (min-width: 768px) {

.apply__hero-copy {
    align-self: end;
    padding-left: 1.25rem;
    padding-top: 0;
    margin-bottom: 2.5rem;
    margin-top: auto
}
  }

.apply__about {
  /* height: auto;
  padding-bottom: 4.75rem; */
  height: 50rem;
  padding-top: 1rem
}

@media (min-width: 768px) {

.apply__about {
    height: 40rem;
    padding-top: 1.25rem
}
  }

@media (min-width: 1000px) {

.apply__about {
    /* height: 29.8125rem; */
    height: 40rem
}
  }

.apply__about-heading {
  font-size: 3.125rem;
  line-height: 0.96
}

@media (min-width: 1000px) {

.apply__about-heading {
    font-size: 4rem;
    line-height: 0.9375
}
  }

.apply__about-copy {
  margin-top: 2rem
}

.apply__about-copy h5 {
    font-size: 1.5625rem;
    line-height: 0.96;
    margin-bottom: 1rem;
  }

.apply__about-copy p {
    margin-bottom: 2rem;
    max-width: 28.75rem;
    width: 100%;
  }

@media (min-width: 768px) {

.apply__about-copy {
    margin-top: 0
}
  }

@media (min-width: 1000px) {
    .apply__about-copy h5 {
      font-size: 2rem;
      line-height: 0.95;
      margin-bottom: 0.625rem;
    }

    .apply__about-copy p {
      margin-bottom: 1.375rem;
      max-width: 100%;
    }
  }

.apply__form {
  padding-bottom: 3.75rem;
  position: relative
}

.apply__form .form__radio-container {
    min-height: auto;
  }

.apply__form .form__input-container {
    margin-bottom: 1rem;
  }

.apply__form .form__heading {
    font-size: 3.125rem;
    line-height: .96em;
    margin-bottom: .5rem;
  }

.apply__form .form__subheading {
    max-width: 16.0625rem;
    /* margin-bottom: 1.5625rem; */
    margin-bottom: 1rem;
  }

@media (min-width: 768px) {
    .apply__form .form__radio-container {
      min-height: 3.875rem;
    }
    .apply__form .form__subparagraph {
      width: 50%;
    }
  }

@media (min-width: 1000px) {
    .apply__form .form__heading {
      font-size: 4rem;
      line-height: 0.9375;
      margin-bottom: 1.25rem;
    }
    .apply__form .form__subheading {
      max-width: 100%;
      /* margin-bottom: 2.625rem; */
      margin-bottom: 1.25rem;
    }
  }

.form__step {
  padding-bottom: 1.875rem;
  pointer-events: none
}

@media (min-width: 768px) {
    .form__step .form__copy {
      line-height: .95em;
      margin-bottom: 2.625rem;
    }
  }

.form__step--active {
  pointer-events: initial;
}

.form__-inactive {
  display: none !important;
}

.apply__carousel-buttons {
  margin-top: 4rem;
}

.form__carousel-button {
  background: #000;
  background: var(--black);
}

.form__heading {
  margin-bottom: 1rem;
  padding-left: 1rem
}

@media (min-width: 768px) {

.form__heading {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem
}
  }

.form__copy {
  margin-bottom: 2rem
}

@media (min-width: 768px) {

.form__copy {
    margin-bottom: 2.5rem
}
  }

.form__subheading {
  margin-bottom: 2.375rem;
  padding-left: 1rem
}

.form__subheading.form__subheading--less-margin {
    margin-bottom: .625rem;
  }

@media (min-width: 768px) {

.form__subheading {
    padding-left: 1.25rem;
    margin-bottom: 2.625rem
}
  }

@media (min-width: 1000px) {

.form__subheading {
    line-height: 0.59375em
}
  }

.form__subparagraph {
  margin-bottom: 2.375rem;
  padding-left: 1rem
}

@media (min-width: 768px) {

.form__subparagraph {
    padding-left: 1.25rem;
    margin-bottom: 2.625rem
}
  }

.form__title {
  padding-left: 1rem;
  margin-bottom: 1rem
}

@media (min-width: 768px) {

.form__title {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem
}
  }

.form__copy {
  margin-bottom: 2.5rem;
}

.form__nav {
  display: flex;
  position: absolute;
  right: 1.25rem;
  top: 0;
  z-index: 5;
}

.form__prev {
  display: block;
  margin-right: 1.25rem;
  text-decoration: none
}

.form__prev svg {
    stroke: #000;
    stroke: var(--black);
  }

.form__prev:focus {
    border: 0;
    /* outline: none; */
  }

.form__next {
  display: block;
  text-decoration: none
}

.form__next svg {
    stroke: #000;
    stroke: var(--black);
    width: 2.8125rem;
    height: 2.5rem;
  }

.form__next:focus {
    border: 0;
    /* outline: none; */
  }

.form__arrow--inactive {
  display: none;
}

.form__container {
  display: flex;
  flex-wrap: wrap;
}

.form__subcontainer {
  margin: 0 -1.25rem;
}

.form__column {
  padding: 0 1rem;
  width: 100%
}

@media (min-width: 768px) {

.form__column {
    padding: 0 1.25rem;
    width: 50%
}
  }

.form__column--full {
  width: 100%;
}

.form__section-label {
  margin-bottom: 1rem;
}

.form__submit {
  padding: 3.75rem 1rem
}

@media (min-width: 768px) {

.form__submit {
    padding: 3.75rem 1.25rem
}
  }

.form__submit-heading {
  margin-bottom: 1rem
}

@media (min-width: 768px) {

.form__submit-heading {
    margin-bottom: 1.25rem
}
  }

.form__button-container {
  align-items: center;
  display: flex;
  margin-top: 2.5rem;
}

.form__button {
  margin-top: 0;
}

.form__loader {
  display: none;
  height: 2rem;
  left: 50%;
  margin-left: 1.5rem;
  top: 50%;
  width: 2rem;
}

.form__loader--active {
  display: block;
}

.form__success {
  /* display: none; */
  display: block;
}

.form__success:not(.form__success--active) {
  position: absolute;
  height: 0;
  width: 0;
  overflow: hidden;  
}

.form__success--active {
  display: block;
}

.form__error {
  color: #000;
  color: var(--black);
  display: none;
  font-size: 0.625rem;
  margin-top: 1.5rem;
}

.form__error--active {
  display: block;
}

.apply__faq {
  background: #000;
  background: var(--black);
  border-bottom: 1px #333333 solid;
  color: #fff;
  color: var(--white);
  padding-top: 1rem
}

.apply__faq .heading {
    font-size: 3.125rem;
    line-height: .96em;
  }

@media (min-width: 768px) {

.apply__faq {
    padding-top: 1.25rem
}
  }

@media (min-width: 1000px) {
    .apply__faq .heading {
      font-size: 4rem;
      line-height: 0.9375;      
    }
  }

.apply__faq-copy-wrapper {
  margin-top: 1rem;
  max-width: 25rem
}

@media (min-width: 768px) {

.apply__faq-copy-wrapper {
    margin-top: 0;
    max-width: 28.75rem
}
  }

.form__wrapper {
  display: none
}

@media (min-width: 768px) {

.form__wrapper {
    display: block
}
  }

.form__wrapper--mobile {
  display: block
}

@media (min-width: 768px) {

.form__wrapper--mobile {
    display: none
}
  }

@media (min-width: 768px) {

.contact__form--nfl .form__textarea-input, .contact__form--built-on-5g .form__textarea-input {
      height: 12.875em
  }
    }

.contact__form-heading {
  padding-left: 0;
}

.contact__hero {
  color: #fff;
  color: var(--white);
  position: relative
}

.contact__hero .background-image--tablet {
    background-position: center;
  }

.contact__hero--black {
  background: #000;
  background: var(--black);
  height: 60vh;
}

.contact__hero-content {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

@media (min-width: 768px) {

.contact__hero-content {
    padding: 0
}
  }

.contact__hero-image {
  position: absolute;
  bottom: 2rem;
  left: 1rem;  
  display: block;
  width: 5rem;
  height: 5.0625rem
}

@media (min-width: 768px) {

.contact__hero-image {
    bottom: 2.5rem;
    left: 1.25rem
}  
  }

.contact__hero-heading {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 0.96;
  padding-top: 1rem
}

.contact__hero-heading br {
    display: block;
  }

@media (min-width: 768px) {

.contact__hero-heading {
    padding-top: 1.25rem
}
  }

@media (min-width: 1000px) {

.contact__hero-heading {
    font-size: 6.5rem;
    letter-spacing: -0.9px;
    line-height: 0.83
}
  }

.contact__form {
  display: none;
  padding-top: 1.25rem
}

.contact__form .heading {
    font-size: 3.125rem;
    line-height: .96em;
    max-width: 17.5rem;
  }

.contact__form .form__copy {
    max-width: 18.5rem;
    margin-bottom: 2em;
  }

@media (min-width: 768px) {

.contact__form {
    display: block
}

    .contact__form .form__copy {
      max-width: 100%;
      margin-bottom: 2.5rem;
    }
  }

@media (min-width: 1000px) {
    .contact__form .heading {
      font-size: 4rem;
      line-height: 0.9375;
      max-width: 100%;
    }    
  }

.contact__form-submit {
  padding: 0 0 2rem
}

@media (min-width: 768px) {

.contact__form-submit {
    margin-top: 1.5rem;
    padding: 0 1.25rem 3.75rem 1.25rem
}
  }

.contact__form-success {
  padding-top: 1rem
}

.contact__form-success .form__heading {
    font-size: 3.125rem;
    line-height: .96em;
    max-width: 17.5rem;
  }

@media (min-width: 768px) {

.contact__form-success {
    padding-top: 1.25rem
}
  }

@media (min-width: 1000px) {
    .contact__form-success .form__heading {
      font-size: 4rem;
      line-height: 0.9375;
      max-width: 100%;
    }    
  }

.contact__form--mobile {
  display: block;
  padding-top: 1rem
}

@media (min-width: 768px) {

.contact__form--mobile {
    display: none
}
  }

.contact__form-button-container {
  margin-top: 2rem
}

@media (min-width: 768px) {

.contact__form-button-container {
    margin-top: 0
}
  }

.contact__form--general .form__checkbox-container:last-child {
      margin-bottom: .25em;
    }

@media (min-width: 768px) {
    .contact__form--general .form__column--full {
      padding: 0 1.25rem
    }
      .contact__form--general .form__column--full .form__checkbox-input-container {
        width: auto;
        padding-right: 1.25rem;
      }
  }

.contact__form--mobile.contact__form--general .form__checkbox-container--locations {
      /* margin-bottom: 0; */
    }

.contact__form--mobile.contact__form--general .form__checkbox-container--locations .form__checkbox-input-container {
        width: 100%
      }

.contact__form--mobile.contact__form--general .form__checkbox-container--locations .form__checkbox-input-container:last-child {
          margin-bottom: 0;
        }

.contact__form--mobile.contact__form--general .form__checkbox-container--gdpr .form__checkbox-input-container {
        width: 100%;
      }

@media (min-width: 768px) {

.informational__heading {
    width: 45%
}
  }

.informational__heading-small {
  font-size: 1.5625rem;
  width: 75%
}

@media (min-width: 768px) {

.informational__heading-small {
    width: 45%
}
  }

@media (min-width: 1000px) {

.informational__heading-small {
    font-size: 4rem
}
  }

.informational__hero {
  color: #fff;
  color: var(--white);
  position: relative;
}

.informational__hero--black {
  background: #000;
  background: var(--black);
}

.informational__hero-content {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

@media (min-width: 768px) {

.informational__hero-content {
    padding: 0
}
  }

.informational__hero-heading {
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 0.96;
  padding-top: 1rem
}

@media (min-width: 768px) {

.informational__hero-heading {
    padding-top: 5rem
}
  }

@media (min-width: 1000px) {

.informational__hero-heading {
    font-size: 6.5rem;
    letter-spacing: -0.9px;
    line-height: 0.83
}
  }

.informational__hero-copy {
  padding-top: 1rem
}

@media (min-width: 768px) {

.informational__hero-copy {
    padding-left: 1.25rem;
    padding-top: 0;
    margin-bottom: 2.5rem;
    margin-top: auto
}
  }

.informational__image {
  display: none;
  height: auto;
  vertical-align: bottom;
  width: 100%
}

@media (min-width: 768px) {

.informational__image {
    display: block
}
  }

.informational__mobile-image {
  height: auto;
  vertical-align: bottom;
  width: 100%
}

@media (min-width: 768px) {

.informational__mobile-image {
    display: none
}
  }

.informational__faq {
  padding: 1.25rem 0 2.8125rem;
}

.informational__faq-heading {
  font-size: 3rem;
  margin-bottom: 1.25rem
}

@media (min-width: 1000px) {

.informational__faq-heading {
    font-size: 4rem
}
  }

.informational__faq-copy {
  margin-bottom: 3.125rem;
  width: 75%;
}

.informational__faq-items {
  border-top: 1px #000 solid;
  border-top: 1px var(--black) solid;
  margin-top: 3.4375rem
}

@media (min-width: 768px) {

.informational__faq-items {
    margin-top: 1.25rem
}
  }

.informational__faq-item {
  border-bottom: 1px #000 solid;
  border-bottom: 1px var(--black) solid;
  position: relative;
}

.informational__faq-question {
  cursor: pointer;
  font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
  font-family: var(--bold);
  font-size: 1rem;
  padding: 1.375rem 0;
  padding-right: 50%
}

@media (min-width: 768px) {

.informational__faq-question {
    padding-right: 0
}
  }

@media (min-width: 1000px) {

.informational__faq-question {
    font-size: 1.25rem
}
  }

.informational__faq-answer {
  display: none;
  padding: 0 0 1.125rem
}

@media (min-width: 768px) {

.informational__faq-answer {
    padding: 1.125rem 0 3.75rem
}
  }

.informational__faq-answer-copy {
  width: 78%;
}

.informational__faq-item--visible .informational__faq-answer {
    display: block;
  }

.informational__faq-icon {
  display: none;
  position: absolute;
  right: 1.25rem;
}

.informational__faq-expand {
  top: 1.25rem;
}

.informational__faq-contract {
  top: 1.875rem;
}

.informational__faq-icon--visible {
  display: block;
}

.locations__items {
    background: #fff;
    background: var(--white);
    color: #000;
    color: var(--black);
    /* height: 40rem; */
    padding-top: 1rem;
    position: relative
}

@media (min-width: 768px) {

.locations__items {
        height: 39.75rem
}
        .locations__items .column, .locations__items .locations__items-column {
          padding: 0 1rem;
        }
        .locations__items .locations__items-column {
            width: 75%;
        }        
    }

@media (min-width: 1272px) {

.locations__items {
        padding-top: 1.25rem;
        height: 39.75rem
}
        .locations__items .column, .locations__items .locations__items-column {
          padding: 0 1.25rem;
        }
    }

.locations__items-heading {
    margin-bottom: 2rem;
    font-size: 1.5625rem;
    line-height: .96em;
    margin-bottom: 1rem
}

.locations__items-heading br {
      display: none;
    }

@media (min-width: 768px) {

.locations__items-heading {
      font-size: 1.5625rem;
      line-height: 1.5rem
}
      .locations__items-heading br {
        display: inline;
      }
    }

@media (min-width: 1272px) {

.locations__items-heading {
        font-size: 2rem;
        line-height: .95em;
        margin-bottom: 1.25rem
}
        .locations__items-heading br {
          display: none;
        }
    }

.locations__items-copy {
    margin-bottom: 2rem;
}

.locations__items-list .locations__item {
        padding-bottom: 2rem
    }

.locations__items-list .locations__item .locations__item-title {
            padding-bottom: .2em;
            margin-bottom: .2em;
            border-bottom: 2px solid #545454;
        }

.locations__items-list .locations__item .locations__item-copy {
          font-size: 1rem;
          line-height: 1em;
        }

@media (min-width: 768px) {

.locations__items-list {
        display: flex;
        flex-wrap: wrap;
        /* margin: 4em -1rem 0 -1rem; */
        margin: 0 -1rem
}
        .locations__items-list .locations__item {
            width: 33.333%;
            padding: 0 1rem;
            padding-bottom: 3rem
        }
            .locations__items-list .locations__item .locations__item-title {
              font-size: 1.5625rem;
              line-height: 1.5rem;
              padding-bottom: .5rem;
              margin-bottom: .5rem;
            }
            .locations__items-list .locations__item .locations__item-copy {
              font-size: 1rem;
              line-height: 1em;
            }
    }

@media (min-width: 1272px) {

.locations__items-list {
        /* margin: 3.125em -1.125rem 0 -1.125rem; */
        margin: 0 -1.125rem
}
        .locations__items-list .locations__item {
          padding: 0 1.125rem;
          padding-bottom: 5.625rem
        }
            .locations__items-list .locations__item .locations__item-title {
                font-size: 3rem;
                line-height: .95em;
                padding-bottom: .2083em;
                margin-bottom: .2083em;
            }
    }

@media (min-width: 1000px) {
          .locations__items-list .locations__item .locations__item-copy {
            font-size: 1.25rem;
            line-height: 0.95;
          }
    }

@media (min-width: 768px) {

.locations__items-items-container {
    display: flex;
    width: 50%
}
  }

@media (min-width: 768px) {

.locations__items-items {
    display: flex
}
  }

.locations__items-item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  /* opacity: 0.5;
  transform: translate3d(-25%, 0, 0); */
  transition: 250ms ease-out;
  margin-bottom: 4em
}

@media (min-width: 768px) {

.locations__items-item {
    /* opacity: 1;
    transform: translate3d(0, 0, 0); */
    width: 50%;
    margin-bottom: 2em
}
  }

.locations__items-item.carousel__item--active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.locations__items-item-content {
  /* width: 75%; */
  width: 16.1875rem
}

@media (min-width: 768px) {

.locations__items-item-content {
    width: 100%
}
  }

.locations__items-copy {
  max-width: 28.75rem
}

.locations__items-copy h5 {
    font-size: 1.5625rem;
    line-height: 0.96;
    margin-bottom: .5rem;
  }

@media (min-width: 768px) and (max-width: 999px) {
    .locations__items-copy h5 {
      margin-bottom: .5rem;
    }
  }

@media (min-width: 768px) {

.locations__items-copy {
    max-width: 100%
}
  }

@media (min-width: 1000px) {
    .locations__items-copy h5 {
      font-size: 2rem;
      line-height: 0.95;
      margin-bottom: .625rem;
    }
  }

.homepage__about {
  background: #fff;
  background: var(--white);
  color: #000;
  color: var(--black);
  padding-top: 1rem
}

.homepage__about .column {
    max-width: 15rem
  }

.homepage__about .column:first-child {
      max-width: 17rem;
    }

@media (min-width: 768px) {

.homepage__about {
    padding-top: 1.25rem
}
    .homepage__about .column {
      max-width: 100%
    }
      .homepage__about .column:first-child {
        max-width: 100%;
      }
  }

.homepage__about-copy {
  margin-top: 1rem;
  max-width: 28.75rem
}

@media (min-width: 768px) {

.homepage__about-copy {
    margin-top: 0;
    max-width: 100%
}
  }

.homepage__work {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
  height: 30rem;
  overflow: clip;
  position: relative
}

.homepage__work .column {
    max-width: 229px;
  }

@media (min-width: 321px) {

.homepage__work {
    height: 38.75rem
}
  }

@media (min-width: 768px) {

.homepage__work {
    height: 29.8125rem
}
    .homepage__work .column {
      max-width: 100%;
    }
  
  }

.homepage__work-container {
  flex-wrap: nowrap;
  padding: 1rem 0 0
}

@media and (min-width: 600px) {

.homepage__work-container {
    width: 150%
}
  }

@media (min-width: 768px) {

.homepage__work-container {
    padding: 1.25rem 0 0;
    width: 135%
}
  }

@media (min-width: 1272px) {

.homepage__work-container {
    width: 125%
}
  }

.homepage__work-heading {
  /* margin-bottom: 1rem; */
  margin-bottom: .625rem;
  font-size: 3.125rem;
  line-height: .98em
}

@media (min-width: 768px) {

.homepage__work-heading {
    margin-bottom: 1.25rem
}
  }

.homepage__work-copy {
  max-width: 28.75rem
}

@media (min-width: 768px) {

.homepage__work-copy {
    max-width: 100%
}
  }

.homepage__work-carousel {
  display: none;
  margin-top: 3.75rem;
  width: 85%
}

@media (min-width: 768px) {

.homepage__work-carousel {
    display: block
}
  }

@media (min-width: 1272px) {

.homepage__work-carousel {
    width: 75%
}
  }

.homepage__work-items-nav {
  display: none;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem
}

@media (min-width: 768px) {

.homepage__work-items-nav {
    display: flex
}
  }

.homepage__work-items-prev {
  margin-right: 1.25rem
}

.homepage__work-items-prev svg {
    stroke: #fff;
    stroke: var(--white);
  }

.homepage__work-items-next svg {
    stroke: #fff;
    stroke: var(--white);
  }

.homepage__work-item {
  padding-left: 1.25rem;
  position: relative;
}

.homepage__work-item--dummy {
  display: none
}

@media (min-width: 768px) {

.homepage__work-item--dummy {
    display: block
}
  }

.homepage__work-item-placeholder {
  overflow: hidden;
  position: relative;
  transition: 250ms ease-out;
  z-index: 5;
}

.homepage__work-item-heading {
  color: #fff;
  left: 1.25rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40%;
  z-index: 5;
  opacity: 0
}

@media (min-width: 768px) {

.homepage__work-item-heading {
    opacity: 1;
    left: 2.5rem
}
  }

.homepage__work-item--active .homepage__work-item-placeholder {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

.homepage__work-item-play-cta, .homepage__work-item-link-cta {
  height: 2.625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  height: 2.625rem;
  width: 2.625rem
}

.homepage__work-item-play-cta svg,.homepage__work-item-link-cta svg{
    height: 2.625rem;
    width: 2.625rem;
  }

@media (min-width: 768px) {

.homepage__work-item-play-cta, .homepage__work-item-link-cta {
    height: 3.4375rem;
    width: 3.4375rem
}
    .homepage__work-item-play-cta svg,.homepage__work-item-link-cta svg{
      height: 3.4375rem;
      width: 3.4375rem;
    }
    
  }

.homepage__work-item-image {
  display: block;
  height: auto;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%
}

@media (min-width: 768px) {

.homepage__work-item-image {
    left: 0;
    height: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%
}
  }

.homepage__work-video {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 1rem;
  top: 0;
  z-index: 3
}

@media (min-width: 768px) {

.homepage__work-video {
    display: block;
    left: 1.25rem;
    right: 0
}
  }

.homepage__work-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

.homepage__work-carousel-buttons {
  bottom: 1.25rem;
  display: none;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%)
}

@media (min-width: 768px) {

.homepage__work-carousel-buttons {
    display: flex
}
  }

/** Mobile Carousel */

.homepage__work-mobile-carousel {
  margin-top: 3rem;
  width: 100%

}

@media (min-width: 768px) {

.homepage__work-mobile-carousel {
    display: none

}
  }

.homepage__work-mobile-carousel #tns2-iw {
    margin-left: 1rem;
  }

.homepage__work-mobile-carousel #tns2 > .tns-item {
      padding-right: 1rem;
    }

.homepage__work-mobile-carousel-buttons {
  bottom: 2rem;
  display: flex;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%)
}

.homepage__work-mobile-carousel-buttons .carousel__button {
    width: 2rem;
    margin: 0 2px;
  }

@media (min-width: 768px) {

.homepage__work-mobile-carousel-buttons {
    display: none
}
  }

.homepage__work-mobile-item {
  position: relative;
}

.curtain__nav {
  display: flex;
  position: absolute;
  right: 0;
  z-index: 6;
  top: 0;
  bottom: 0
  /* left: 0;
  top: 50%;
  transform: translateY(-50%); */
}

@media (min-width: 768px) {

.curtain__nav {
    display: none
}
  }

.curtain__arrow--inactive {
  display: none;
}

.curtain__next {
  /* right: 1rem; */
  display: flex;
  align-items: center;
  right: 0;
  top: 0;
  bottom: 0;
  padding-right: 1.9375em;
  
  position: absolute
  /* outline: none; */

}

.curtain__next svg {
    font-size: 2.119375rem;
    width: 1em;
    height: .8845em;
    stroke: #fff;
    stroke: var(--white);
  }

@media (min-width: 768px) {
    .curtain__next svg {
      font-size: 2.25rem;
    }
  }

.curtain__items {
  display: none;
  overflow: hidden;
  width: 100%
}

@media (min-width: 768px) {

.curtain__items {
    display: block
}
  }

@media (min-width: 768px) {

.curtain__mobile-items {
    display: none
}
  }

.curtain__items--transition {
  pointer-events: none;
}

.curtain__items--hidden {
  display: none;
}

.curtain__item {
  border-left: 1px #fff solid;
  border-left: 1px var(--white) solid;
  display: block;
  bottom: 0;
  height: 29.8125rem;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.curtain__mobile-item {
  height: 40rem;
  overflow: hidden;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

#curtain__mobile-item-0 .background-image--tablet, #curtain__mobile-item-2 .background-image--tablet, #curtain__mobile-item-3 .background-image--tablet {
    background-position:  center;
  }

#curtain__mobile-item-1 .background-image--tablet {
    background-position:  right;
  }

.curtain__item-content {
  bottom: 0;
  color: #fff;
  color: var(--white);
  left: 0;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: 250ms ease-out;
  transition-delay: 750ms;
  z-index: 1
}

@media (min-width: 768px) {

.curtain__item-content {
    opacity: 0;
    padding: 1.25rem;
    visibility: hidden
}
  }

.curtain__item-content--black {
  color: #000;
  color: var(--black);
}

.curtain__item-cta {
  background: transparent;
}

.curtain__item-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  width: 19.4375rem
}

@media (min-width: 768px) {

.curtain__item-heading {
    width: auto;
    margin-bottom: 1.25rem
}
  }

@media (min-width: 1000px) {

.curtain__item-heading {
    font-size: 3.125rem
}
  }

.curtain__item-copy {
  /* max-width: 28.75rem; */
  max-width: 13.4375rem;
  line-height: .9375em
}

@media (min-width: 768px) {

.curtain__item-copy {
    max-width: 25%
}
  }

@media (min-width: 1000px) {

.curtain__item-copy {
    line-height: .95em
}
  }

.curtain__item--p0 {
  z-index: -1
}

@media (min-width: 768px) {

.curtain__item--p0 {
    z-index: 2
}
  }

@media (min-width: 768px) {

.curtain__item--p1 {
    z-index: 9
}
  }

@media (min-width: 768px) {

.curtain__item--p2 {
    z-index: 8
}
  }

@media (min-width: 768px) {

.curtain__item--p3 {
    z-index: 7
}
  }

@media (min-width: 768px) {

.curtain__item--p4 {
    z-index: 6
}
  }

@media (min-width: 768px) {

.curtain__item--p5 {
    z-index: 5
}
  }

@media (min-width: 768px) {

.curtain__item--p6 {
    z-index: 4
}
  }

@media (min-width: 768px) {

.curtain__item--p7 {
    z-index: 3
}
  }

.curtain__item--active .curtain__item-content {
    opacity: 1;
    visibility: visible;
  }

.curtain__item--inactive {
  z-index: -1;
}

.curtain__item--no-border {
  border-left: 0;
}

.curtain__item--transition {
  transition: 500ms ease-out;
}

.curtain__mobile-items-container .tns-item.tns-slide-active {
     width: calc(100vw - 1rem)!important; 
    }

/* Pages Curtains */

.curtain--homepage  {
  height: 40rem
}

@media (min-width: 768px) {

.curtain--homepage  {
    height: 29.8125rem
}
  }

.curtain--programs {
  height: 40rem
}

.curtain--programs .curtain__item-heading {
    line-height: .955em;
  }

@media (min-width: 768px) {

.curtain--programs {
    height: 29.8125rem
}
    .curtain--programs .curtain__item-copy {
      max-width: 14.6875rem;
    }
  }

.homepage__ready {
  background: #fff;
  background: var(--white);
  color: #000;
  color: var(--black);
  height: 42.5rem;
  padding-top: 1rem;
  position: relative;
  overflow-x: hidden
}

.homepage__ready .button {
    max-width: 13.75rem;
  }

.homepage__ready .see-all-cta {
    margin-bottom: 2rem;
  }

@media (min-width: 768px) and (max-width: 999px) {

.homepage__ready {
    display: block;
    height: 30rem
}
    .homepage__ready .column,
    .homepage__ready .homepage__ready-items-container {
      width: 100%;
    }
    .homepage__ready .button {
      margin-top: 2rem;
    }
  }

@media (min-width: 1000px) {

.homepage__ready {
    padding-top: 1.25rem;
    height: 30rem
}
    .homepage__ready .column {
      display: flex;
      flex-wrap: wrap;
    }
    .homepage__ready .see-all-cta {
      width: 100%;
      align-self: flex-end;
      margin-bottom: 2em;
    }
  }

@media (min-width: 1272px) {

.homepage__ready {
    height: 19.875rem
}

  }

@media (min-width: 768px) {

.homepage__ready-items-container {
    display: flex;
    width: 50%
}
  }

@media (min-width: 768px) {

.homepage__ready-items {
    display: flex
}
  }

.homepage__ready-item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  /* opacity: 0.5;
  transform: translate3d(-25%, 0, 0); */
  transition: 250ms ease-out;
  margin-bottom: 4em
}

@media (min-width: 768px) {

.homepage__ready-item {
    /* opacity: 1;
    transform: translate3d(0, 0, 0); */
    width: 50%;
    margin-bottom: 2em
}
  }

.homepage__ready-item.carousel__item--active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.homepage__ready-item-content {
  /* width: 75%; */
  width: 16.1875rem
}

@media (min-width: 768px) {

.homepage__ready-item-content {
    width: 100%
}
  }

.homepage__ready-heading {
  margin-bottom: 2rem
}

@media (min-width: 768px) and (max-width: 999px) {

.homepage__ready-heading {
    font-size: 3.125em;
    line-height: 0.96em;
    margin-bottom: 0.5em
}
  }

@media (min-width: 1000px) {

.homepage__ready-heading {
    margin-bottom: 0
}
  }

.homepage__ready-copy {
  max-width: 28.75rem
}

.homepage__ready-copy h3 {
    display: block;
    font-family: 'NeueHaasGroteskDisp W01 Bd', sans-serif;
    font-family: var(--bold);
    margin-bottom: 0.625rem;
  }

.homepage__ready-copy h5, .homepage__ready-copy h3 {
    font-size: 1.5625rem;
    line-height: 0.96;
    margin-bottom: 0.5rem;
    margin-right: -2rem;
  }

@media (min-width: 768px) and (max-width: 999px) {
    .homepage__ready-copy h5, .homepage__ready-copy h3 {
      margin-bottom: 0.5rem;
      margin-right: 0;
    }
  }

@media (min-width: 768px) {

.homepage__ready-copy {
    max-width: 100%
}
  }

@media (min-width: 1000px) {
    .homepage__ready-copy h5, .homepage__ready-copy h3 {
      font-size: 2rem;
      line-height: 0.95;
      margin-bottom: 0.625rem;
    }
  }

.homepage__ready-carousel-buttons {
  bottom: 1.25rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%)
}

@media (min-width: 768px) {

.homepage__ready-carousel-buttons {
    display: none
}
  }

.homepage__ready-carousel-buttons .carousel__button {
    background: #000;
    background: var(--black);
    opacity: 0.5;
  }

.homepage__ready-carousel-buttons .carousel__button--active {
    background: #000;
    background: var(--black);
    opacity: 1;
  }

.homepage__test {
  position: relative;
}

.homepage__test-content {
  bottom: 0;
  color: #fff;
  color: var(--white);
  left: 0;
  padding: 1rem 0;
  position: absolute;
  right: 0;
  top: 0
}

@media (min-width: 768px) {

.homepage__test-content {
    padding: 1.25rem 0
}
  }

.homepage__test-heading {
  font-size: 2.5rem;
  line-height: 1
}

@media (min-width: 1000px) {

.homepage__test-heading {
    font-size: 3.75rem;
    line-height: 0.9375
}
  }

.homepage__test-copy-wrapper {
  margin-top: 1rem;
  max-width: 19.375rem
}

@media (min-width: 768px) {

.homepage__test-copy-wrapper {
    margin-top: 0;
    max-width: 100%
}
  }

.homepage__events {
  background: #000;
  background: var(--black);
  color: #fff;
  color: var(--white);
  /* height: 30rem; */
  height: 40rem;
  padding-top: 1rem;
  position: relative
}

.homepage__events .see-all-cta {
    margin-bottom: 2rem;
  }

.homepage__events.homepage__events--splash {
    height: auto
  }

.homepage__events.homepage__events--splash .column--right {
      padding-left: 0.25rem;
      padding-right: 0.25rem;
    }

@media (min-width: 768px) and (max-width: 999px) {

.homepage__events {
    display: block;
    height: 30rem
}
    .homepage__events .column,
    .homepage__events .homepage__events-items-container {
      width: 100%;
    }
    .homepage__events .button {
      margin-top: 2rem;
    }
  }

@media (min-width: 1000px) {
    .homepage__events .column {
      display: flex;
      flex-wrap: wrap;
    }
    .homepage__events .see-all-cta {
      width: 100%;
      align-self: flex-end;
      margin-bottom: 2em;
    }

.homepage__events {
    height: 19.875rem;
    padding-top: 1.25rem
}
  }

@media (min-width: 1272px) {
      .homepage__events.homepage__events--splash .column--left {
        width: 40%;
      }
      .homepage__events.homepage__events--splash .column--right {
        width: 60%;
      }
  }

.homepage__events-heading {
  /* margin-bottom: 5rem;
  width: 75%; */
  margin-bottom: 2rem
}

@media (min-width: 768px) and (max-width: 999px) {

.homepage__events-heading {
    font-size: 3.125em;
    line-height: 0.96em;
    margin-bottom: 0.5em
}
  }

@media (min-width: 1000px) {

.homepage__events-heading {
    margin-bottom: 0;
    width: auto
}
  }

@media (min-width: 768px) {

.homepage__events-items-container {
    display: flex;
    width: 50%
}
  }

@media (min-width: 768px) {

.homepage__events-items {
    display: flex
}
  }

.homepage__events-item {
  align-items: flex-start;
  flex-direction: column;
  /* opacity: 0.5;
  transform: translate3d(-25%, 0, 0); */
  transition: 250ms ease-out;
  margin-bottom: 4rem
}

@media (min-width: 768px) {

.homepage__events-item {
    display: flex
    /* opacity: 1;
    transform: translate3d(0, 0, 0); */
}
  }

.homepage__events-item.carousel__item--active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.homepage__events-item-content {
  width: 75%
}

@media (min-width: 768px) {

.homepage__events-item-content {
    width: 100%
}
  }

.homepage__events-item-heading {
  margin-bottom: 0.625rem;
  width: 100%
}

@media (min-width: 768px) and (max-width: 999px) {

.homepage__events-item-heading {
    margin-bottom: 0.5rem
}
  }

.homepage__events-carousel-buttons {
  bottom: 1.25rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%)
}

.homepage__events-carousel-buttons .carousel__button {
    opacity: 0.5;
  }

.homepage__events-carousel-buttons .carousel__button--active {
    background: #fff;
    background: var(--white);
    opacity: 1;
  }

@media (min-width: 768px) {

.homepage__events-carousel-buttons {
    display: none
}
  }

.homepage__locations {
  background: #fff;
  background: var(--white);
  color: #000;
  color: var(--black);
  height: 30rem;
  padding-top: 1rem
}

@media (min-width: 768px) {

.homepage__locations {
    height: 19.875rem;
    padding-top: 1.25rem
}
  }

.homepage__locations-heading {
  margin-bottom: 2rem
}

@media (min-width: 768px) {

.homepage__locations-heading {
    margin-bottom: 0
}
  }

@media (min-width: 768px) {

.homepage__locations-left-column {
    display: flex;
    flex-wrap: wrap
}
    .homepage__locations-left-column .see-all-cta {
      width: 100%;
      align-self: flex-end;
      margin-bottom: 2em;
    }
  }

.homepage__locations-subheading {
  border-bottom: 1px #000 solid;
  border-bottom: 1px var(--black) solid;
  font-size: 1.5625rem;
  margin-bottom: 0.5rem;
  margin-top: 3rem;
  padding-bottom: 6.5rem;
  width: 100%
}

@media (min-width: 768px) {

.homepage__locations-subheading {
    margin-top: 0;
    padding-bottom: 4.875rem;
    margin-bottom: 0.625rem
}
  }

@media (min-width: 1000px) {

.homepage__locations-subheading {
    font-size: 2rem
}
  }

.homepage__locations-items {
  display: flex;
  flex-wrap: wrap;
}

.homepage__locations-item {
  margin-bottom: 1rem;
  width: 50%;
  line-height: .9375em
}

@media (min-width: 1000px) {

.homepage__locations-item {
    line-height: 1em
}
  }

.homepage__contact {
  background: #000;
  background: var(--black);
  position: relative;
  height: 30rem
}

.homepage__contact .background-image--tablet {
    background-position: center;
  }

@media (min-width: 768px) {

.homepage__contact {
    height: 19.875rem
}
  }

.homepage__contact-content {
  bottom: 0;
  color: #fff;
  color: var(--white);
  left: 0;
  padding: 1rem 0;
  position: absolute;
  right: 0;
  top: 0
}

.homepage__contact-content .body-text {
    width: 13rem;
  }

@media (min-width: 768px) {

.homepage__contact-content {
    padding: 1.25rem 0
}
    .homepage__contact-content .body-text {
      width: auto;      
    }

  }

.homepage__contact-copy-wrapper {
  margin-top: 1rem;
  max-width: 28.75rem
}

@media (min-width: 768px) {

.homepage__contact-copy-wrapper {
    margin-right: auto;
    margin-top: 0;
    max-width: 100%
}
  }

.post-password-form {
    padding: 2.5rem 1rem 5rem 1rem;
    max-width: 310px
}

.post-password-form p {
        font-size: 1.25rem;
        line-height: .95em;
        margin: 0 0 1em 0;
    }

.post-password-form .form__text-input {
        background-color: transparent;
      }

.post-password-form .form__button {
          margin-top: 2.5rem;
      }

@media (min-width: 768px) {

.post-password-form {
        padding: 2.5rem 1.25rem 5rem 1.25rem
}
    }

/* OVERLAY */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,.95);
    overflow-y: auto

}

.overlay .overlay__header {
        position: absolute;
        top: 1rem;
        right: 1.25rem;
        left: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

.overlay .overlay__header .overlay__header-actions {
            display: flex;
        }

.overlay .overlay__close {
        display: block;
        font-size: 1.25em
    }

.overlay .overlay__close svg {
            display: block;
            width: 1em;
            height: 1em
        }

.overlay .overlay__close svg polygon {
                fill: #fff;
            }

.overlay .overlay__close:hover svg polygon {
                    fill: #ed1d24;
                    fill: var(--red);
                }

.overlay .overlay__outer {
        display: table;
        width: 100%;
    }

.overlay .overlay__inner {
        display: table-cell;
        vertical-align: middle;
        height: 100vh;
        padding: 3.75rem 1.25rem;
    }

.open-overlay .overlay {
        display: block;
    }

.overlay__video {
    max-width: 1024px;
    margin: 0 auto;
}