/* COLORS */
/* ====== */

.red {
  color: #df2f26;
}

.black {
  color: #010101;
}

.white {
  color: #ffffff;
}

.grey-1 {
  color: #1e1914;
}

.grey-2 {
  color: #3c3732;
}

.grey-3 {
  color: #5a5550;
}

.grey-4 {
  color: #96918c;
}

.grey-5 {
  color: #d2cdc8;
}

.grey-6 {
  color: #f0ebe6;
}

.bg-black {
  background-color: #000;
}

.bg-white {
  background-color: #ffffff;
}

.bg-off-white {
  background-color: #faf5f5;
}

.bg-grey {
  background-color: #f2f2f2;
}

.bg-grey-1 {
  background-color: #1e1914;
}

.bg-grey-2 {
  background-color: #3c3732;
}

.bg-grey-3 {
  background-color: #5a5550;
}

.bg-grey-4 {
  background-color: #96918c;
}

.bg-grey-5 {
  background-color: #d2cdc8;
}

.bg-grey-6 {
  background-color: #f0ebe6;
}

body {
  font-family: "Helvetica Neue", Helvetica, "Open Sans", Arial, sans-serif;
  line-height: 1.2;
  /* font-size: 14pt; */
  background-color: #010101;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1024px) {
  body {
    padding-top: 83px;
  }
}

h1,
h2,
h3 {
  font-family: "Helvetica Neue", Helvetica, "Open Sans", Arial, sans-serif;
  line-height: 1.2;
  margin: 0px;
}

h1 {
  font-size: 60px;
  font-weight: 200;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 6vw;
  }
}

@media (max-width: 650px) {
  h1 {
    font-size: 13vw;
  }
}

h2 {
  font-weight: bold;
  font-size: 45px;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 5vw;
  }
}

@media (max-width: 650px) {
  h2 {
    font-size: 10vw;
  }
}

h3 {
  font-weight: bold;
  font-size: 36px;
}

@media (max-width: 1024px) {
  h3 {
    font-size: 4vw;
  }
}

@media (max-width: 650px) {
  h3 {
    font-size: 9vw;
  }
}

h4 {
  font-size: 30pt;
}

@media (max-width: 1024px) {
  h4 {
    font-size: 3.5vw;
  }
}

@media (max-width: 650px) {
  h4 {
    font-size: 6vw;
  }
}

.no-transition-on-page-load * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.body-1 {
  font-size: 30px;
}
.body-2 {
  font-size: 24px;
}
.body-3 {
  font-size: 20px;
}
.body-4 {
  font-size: 18px;
}
.body-5 {
  font-size: 14px;
}

.bold {
  font-weight: bold;
}

.body-overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 1;
  opacity: 0.3;
}
.body-overlay.visible {
  display: block;
}

.centered-1024px {
  width: 912px;
  margin: auto;
  padding: 0 56px;
}

@media (max-width: 1024px) {
  .centered-1024px {
    width: calc(100vw - 28px * 2);
    margin: 0px;
    padding: 0 28px;
  }
}

@media (max-width: 650px) {
  .centered-1024px {
    width: calc(100vw - 20px * 2);
    margin: 0px;
    padding: 0 20px;
  }
}

/* NOTIFICATION BAR */
/* ================ */
.notification-bar-wrapper {
  height: 60px;
  background-color: #3c3732;
  color: #ffffff;
}

.notification-bar {
  display: flex;
  align-items: center;
}

.notification-text {
  color: #ffffff;
  text-decoration: none;
  font-size: 11pt;
  border-bottom: 2px solid #3c3732;
  transition-delay: 0.2s;
  transition-duration: 0.3s;
}

.notification-text:hover {
  text-decoration: none;
  border-bottom-color: #df2f26;
  transition-delay: 0.2s;
  transition-duration: 0.3s;
}

.link-not-active {
  pointer-events: none;
  cursor: default;
}

/* NAVBAR */
/* ====== */

.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: top 0.2s ease-in;
  background-color: #010101;
  font-size: 10pt;
}

.navbar-and-logo {
  padding: 30px 0 30px 0;
}

@media (max-width: 1024px) {
  .navbar-and-logo {
    padding: 18px 0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 650px) {
  .navbar-and-logo {
    /* padding: 18px 0; */
    height: 50px;
  }
}

.navbar_up {
  top: -90px;
}

@media (max-width: 1024px) {
  .navbar_up {
    top: -96px;
  }
}

@media (max-width: 650px) {
  .navbar_up {
    top: -86px;
  }
}

.logo-mobile {
  display: none;
}

.logo-symbol {
  display: none;
}

.logo-symbol-with-text {
  display: none;
}

@media (max-width: 1024px) {
  .logo-mobile {
    justify-self: start;
    display: inline-block;
    min-height: 0;
    height: 100%;
    overflow-y: visible;
  }

  .logo-symbol__mobile {
    display: block;
    height: 110%;
  }

  .logo-symbol-with-text__mobile {
    display: block;
    height: 165%;
  }
}

@media (max-width: 650px) {
  .logo-symbol__mobile {
    display: block;
    height: 106%;
  }

  .logo-symbol-with-text__mobile {
    display: block;
    height: 160%;
  }
}

.toggle-menu {
  display: none;
}

@media (max-width: 1024px) {
  .toggle-menu {
    display: block;
    height: 40%;
    cursor: pointer;
  }
}

.navbar {
  margin: auto;
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr 3fr;
}

@media (max-width: 1024px) {
  .navbar {
    padding-right: 0;
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    position: fixed;
    z-index: 2;
    max-width: 320px;
    width: 77vw;
    height: 100vh;
    background-color: #ffffff;
    top: 0;
    right: -77vw;
    transition: right 0.2s ease-in;
  }

  .navbar_responsive {
    right: 0;
    transition: right 0.2s ease-in;
    overflow-y: scroll;
  }

  .navbar-back {
    cursor: pointer;
  }
}

.navbar-links {
  grid-column: 2;
  border-left: 1.5px solid #ffffff;
  padding-left: 1rem;
  display: flex;
  justify-items: stretch;
}

@media (max-width: 1024px) {
  .navbar-links {
    display: inline;
    padding-left: 0;
    border-left: none;
  }
}

.navbar__link {
  padding-bottom: 0.2em;
  text-decoration: none;
  color: #ffffff;
  flex-grow: 1;
  font-size: 10pt;
}

@media (max-width: 1024px) {
  .navbar__link {
    flex-grow: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw;
    background-color: #f0ebe6;
    font-weight: normal;
    color: #010101;
    font-size: 13pt;
    border: 0.5px solid #d2cdc8;
  }
}

@media (max-width: 650px) {
  .navbar__link {
    padding: 5vw;
    font-size: 4.5vmin;
  }
}

.navbar__link_active {
  color: #df2f26;
}

@media (max-width: 1024px) {
  .navbar__link_active {
    color: #010101;
  }
}

.navbar__link_border {
  border-left: 1.5px solid #ffffff;
  padding-left: 1rem;
  padding-bottom: 0.8rem;
}

@media (max-width: 1024px) {
  .navbar__link_border {
    border-left: none;
    padding-bottom: 2vw;
  }
}

@media (max-width: 650px) {
  .navbar__link_border {
    padding-bottom: 5vw;
  }
}

.navbar__link_mobile {
  display: none;
}

@media (max-width: 1024px) {
  .navbar__link_mobile {
    display: flex;
  }
}

.navbar-mp-links {
  grid-column: 1;
  border-left: 1.5px solid #ffffff;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  border-left-color: #96918c;
}

@media (max-width: 1024px) {
  .navbar-mp-links {
    flex-grow: 0;
    border-left: none;
    padding-left: 0;
  }
}

.navbar__link_mp {
  color: #96918c;
}

@media (max-width: 1024px) {
  .navbar__link_mp {
    flex-grow: 0;
    background-color: #ffffff;
    color: #5a5550;
    border-left: none;
    font-weight: bold;
  }
}

.navbar__link_mke {
  display: none;
}

.navbar__link_mke-visible {
  display: block;
  opacity: 0;
  position: absolute;
  top: 40px;
  color: #df2f26;
  text-decoration-line: underline;
}

.navbar__arrow {
  display: none;
}

@media (max-width: 1024px) {
  .navbar__arrow {
    display: inline-block;
    padding-left: 12px;
    height: 9pt;
  }
}

@media (max-width: 650px) {
  .navbar__arrow {
    display: inline-block;
    height: 3.5vmin;
  }
}

.navbar-search {
  max-width: 300px;
  width: 30%;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .navbar-search {
    max-width: 100%;
    width: 100%;
  }
}

.navbar .search-field {
  border-width: 1px;
  border-radius: 0;
  border-color: #d2cdc8;
  height: 34px;
  width: 100%;
  padding: 10px 40px 10px 10px;
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: 14px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .navbar .search-field {
    border-width: 1px 0px;
    height: 60px;
    padding: 2vw;
    background-position: 94% center;
    background-size: 16px;
  }
}

@media (max-width: 650px) {
  .navbar .search-field {
    padding: 5vw;
  }
}

.topbanner {
  padding: 10px;
  font-family: 'HelveticaNeueW01-Thin', Helvetica, sans-serif;
  color: #d2cdc8;
  font-size: 16px;
  background-image: linear-gradient(to right, #5a5550, #000000);
}

.topbanner a {
  color: #ffffff;
}

.stats-block-source {
  font-size: 12px;
  line-height: 14px;
}
/* Second level nav */

.navbar-wrapper-2nd {
  display: none;
  opacity: 0.95;
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #f0ebe6;
  font-size: 10pt;
}

@media (max-width: 1024px) {
  .navbar-wrapper-2nd {
    opacity: 1;
  }
}

.navbar-column {
  position: relative;
  padding-bottom: 0.8em;
  display: flex;
  flex-direction: column;
  border-left: 1.5px solid #ffffff;
  padding-left: 1rem;
}

@media (max-width: 1024px) {
  .navbar-column {
    border-left: none;
    padding: 0 0 0 0;
  }
}

.navbar-2nd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
  border-top: 1px solid #d2cdc8;
  border-bottom: 1px solid #d2cdc8;
}

@media (max-width: 1024px) {
  .navbar-2nd {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

.navbar-2nd__content {
  display: none;
}

.navbar-2nd__content_visible {
  grid-column: auto / span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1024px) {
  .navbar-2nd__content_visible {
    display: flex;
    flex-direction: column;
  }
}

.navbar-2nd .navbar-column {
  border-color: #010101;
}

.navbar-column_no-border {
  border: none;
  padding-left: 0;
}

@media (max-width: 1024px) {
  .navbar-column_no-border {
    display: none;
  }
}

.navbar2nd__link {
  padding-bottom: 0.4rem;
  text-decoration: none;
  color: #010101;
}

@media (max-width: 1024px) {
  .navbar2nd__link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f0ebe6;
    color: #010101;
    font-weight: normal;
    font-size: 13pt;
    border: 0.5px solid #d2cdc8;
  }
}

@media (max-width: 650px) {
  .navbar2nd__link {
    padding: 5vw;
    font-size: 4.5vmin;
  }
}

.navbar-2nd .navbar-2nd__header {
  font-weight: bold;
}

@media (max-width: 1024px) {
  .navbar-2nd .navbar-2nd__header {
    background-color: #ffffff;
    color: #5a5550;
  }
}

/* HEADER */
/* ====== */

.header {
  padding: 20px 0;
  height: 170px;
  position: relative;
  display: grid;
  grid-template-columns: 3fr 1fr;
  background-color: #010101;
}

@media (max-width: 1024px) {
  .header {
    max-height: 20vh;
    height: 18vmax;
    padding: 2.5vh 0;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .header {
    max-height: 20vh;
    height: 16vmax;
    padding: 2.5vh 0;
    grid-template-columns: 1fr;
  }
}

.headline {
  align-self: end;
  font-size: 34pt;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 1024px) {
  .headline {
    font-size: 8vmin;
  }
}

@media (max-width: 650px) {
  .headline {
    font-size: 12vmin;
  }
}

.logo-desktop {
  align-self: end;
}

@media (max-width: 1024px) {
  .logo-desktop {
    display: none;
  }
}

.logo-desktop img {
  height: 140px;
}

@media (max-width: 1024px) {
  .logo-desktop img {
    width: 100%;
    height: auto;
  }
}

/* GENERIC HERO BLOCK */
/* ================== */
.hero-block-wrapper {
  position: relative;
}

.hero-block {
  padding: 70px 0;
  min-height: 580px;
}

@media (max-width: 1024px) {
  .hero-block {
    padding: 50px 0;
    min-height: 64.9vw; /* (720-2*28)/1024 */
  }
}

@media (max-width: 1024px) {
  .hero-block {
    padding: 26px 0;
  }
}

@media (max-width: 650px) {
  .hero-block {
    padding: 18px 0 12vh 0;
    min-height: 150vw;
  }
}

.hero-block-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: -1;
}

@media (max-width: 1024px) {
  .hero-block-image {
    background-position: center top;
  }
}

.hero-block-captions {
  min-height: inherit;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 110px 2fr 1fr 110px;
  row-gap: 6px;
  align-items: center;
  font-size: 22pt;
}

@media (max-width: 1024px) {
  .hero-block-captions {
    grid-template-rows: 9vw 2fr 1fr 9vw;
    font-size: 3vw;
  }
}

@media (max-width: 650px) {
  .hero-block-captions {
    grid-template-rows: 20vw 2fr 1fr 20vw;
    row-gap: 2vh;
    font-size: 5.6vw;
  }
}

.hero-block-captions__link {
  align-self: end;
  grid-column: 1 / span 8;
  grid-row: 4;
  color: #df2f26;
  font-weight: bold;
  text-decoration-skip: objects;
}

@media (max-width: 1024px) {
  .hero-block-captions__link {
    grid-column: 1 / span 10;
  }
}

/* BLOCKQUOTE HERO BLOCK */
/* ===================== */

.hero-block-captions__quote {
  align-self: end;
  grid-column: 1 / span 10;
  grid-row: 1 / span 2;
  font-weight: bold;
  font-size: 32pt;
  text-indent: -20px;
}

@media (max-width: 1024px) {
  .hero-block-captions__quote {
    font-size: 5vw;
    text-indent: -2.1vw;
  }
}

@media (max-width: 650px) {
  .hero-block-captions__quote {
    grid-column: 1 / span 11;
    font-size: 6vw;
    text-indent: -2.8vw;
  }
}

.hero-block-captions__quote-mark-left {
  margin-right: -9px;
}

@media (max-width: 1024px) {
  .hero-block-captions__quote-mark-left {
    margin-right: -1.3vw;
  }
}

@media (max-width: 650px) {
  .hero-block-captions__quote-mark-left {
    margin-right: -1.3vw;
  }
}

.hero-block-captions__quote-mark-right {
  margin-left: -9px;
}

@media (max-width: 1024px) {
  .hero-block-captions__quote-mark-right {
    margin-left: -1.3vw;
  }
}

@media (max-width: 650px) {
  .hero-block-captions__quote-mark-right {
    margin-left: -1.3vw;
  }
}

.hero-block-captions__source {
  grid-column: 1 / span 10;
  grid-row: 3;
}

@media (max-width: 650px) {
  .hero-block-captions__source {
    grid-column: 1 / span 11;
  }
}

/* CONTENT TEASER BLOCK */
/* =================== */

.hero-block-captions__header {
  align-self: start;
  grid-column: 1 / span 8;
  grid-row: 1;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .hero-block-captions__header {
    grid-column: 1 / span 10;
  }
}

@media (max-width: 650px) {
  .hero-block-captions__header {
    grid-column: 1 / span 12;
  }
}

.hero-block-captions__body {
  align-self: start;
  grid-column: 1 / span 8;
  grid-row: 2 / span 2;
}

@media (max-width: 1024px) {
  .hero-block-captions__body {
    grid-column: 1 / span 10;
  }
}

@media (max-width: 650px) {
  .hero-block-captions__body {
    grid-column: 1 / span 12;
  }
}

/* SIMPLE HERO BLOCK */
/* =================== */

.hero-block-captions__only-header {
  grid-column: 1 / span 8;
  grid-row: 2 / span 2;
}

@media (max-width: 1024px) {
  .hero-block-captions__only-header {
    grid-column: 1 / span 10;
  }
}

@media (max-width: 650px) {
  .hero-block-captions__only-header {
    grid-column: 1 / span 12;
  }
}

/* RED ACCENT HERO BLOCK */
/* ===================== */
.hero-block-captions__accented {
  grid-column: 1 / span 9;
  grid-row: 2 / span 2;
}

@media (max-width: 1024px) {
  .hero-block-captions__accented {
    grid-column: 1 / span 10;
  }
}

.hero-block-captions__red-accent {
  color: #df2f26;
  font-size: 62pt;
  font-weight: 100;
}

/* VIDEO BLOCK */
/* =========== */

.video-block {
  position: relative;
  padding: 30px 0;
}

@media (max-width: 1024px) {
  .video-block {
    padding: 17px 0;
  }
}

.video-block__embedded-video {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  height: 0;
}

.video-block__embedded-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* THREE COLUMN BLOCK */
/* ================== */

.content-page .column__image {
  height: 160px;
}

.content-page .column__content {
  padding-right: 1.6rem;
  padding-bottom: 1.6rem;
}

.n-column-block {
  padding-top: 30px;
  padding-bottom: 0px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-column-gap: 12px;
  grid-row-gap: 30px;
}

.n-column-block.three-columns {
  grid-template-columns: repeat(3, 1fr);
}
.n-column-block.col-gap-24 {
  grid-column-gap: 24px;
}

@media (max-width: 1024px) {
  .n-column-block {
    position: relative;
    height: auto;
    min-width: 0;
    grid-row-gap: 4vh;
    padding: 4vh 0;
  }
}

@media (max-width: 650px) {
  .n-column-block.three-columns {
    grid-template-columns: 1fr;
  }
}

.column {
  min-height: 390px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .column {
    min-height: initial;
  }
}

.column__image {
  background-size: cover;
  background-position: center;
  height: 210px;
}

.column__content {
  flex-grow: 1;
  padding: 15px 22% 0px 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
}

.column__header {
  min-height: 40px;
  font-weight: bold;
}

.column__body {
  justify-self: start;
  flex-grow: 1;
}

.column__link {
  padding-top: 2rem;
  text-decoration: underline;
  color: #df2f26;
  font-weight: bold;
}

/* TWO COLUMN PROMO BLOCK */
/* ================ */

.column_wide {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr;
  background-size: cover;
  background-position: center;
  grid-column: 1 / span 2;
}

@media (max-width: 1024px) {
  .column_wide {
    grid-column: 1 / span 1;
  }
}

@media (max-width: 650px) {
  .column_wide {
    height: 140vw;
  }
}

.column_narrow {
  min-height: 360px;
  display: grid;
  grid-template-rows: 1fr;
  background-size: cover;
  background-position: center;
}

.column_wide .column__header {
  grid-row: 1 / span 2;
  padding-top: 30px;
}

.column_wide .column__link {
  grid-row: 3;
}

/* TWO COLUMN BLOCK */
/* ================= */
.column__two-column {
  background-color: #010101;
  min-height: 580px;
}

@media (max-width: 1024px) {
  .column__two-column {
    min-height: auto;
  }
}

.column__two-column .column__image {
  height: 290px;
}

@media (max-width: 1100px) {
  .column__two-column .column__image {
    height: 26vw;
  }
}

@media (max-width: 1000px) {
  .column__two-column .column__image {
    height: 30vw;
  }
}

@media (max-width: 850px) {
  .column__two-column .column__image {
    height: 35vw;
  }
}

@media (max-width: 650px) {
  .column__two-column .column__image {
    height: 60vw;
  }
}

.column__two-column .column__header {
  min-height: 75px;
}

.column__two-column .column__link {
  padding-top: 1.5rem;
}

/* TWO BY TWO COLUMN */
/* ================= */
.n-column-block__border-bottom {
  border-bottom: 1px dotted #96918c;
}

/* IMAGE AND TEXT WITH BACKGROUND BLOCK */
/* ==================================== */
.image-text-block-wrapper {
  padding: 20px 0;
  height: 680px;
}

@media (max-width: 1024px) {
  .image-text-block-wrapper {
    padding: 26px 0;
    height: auto;
  }
}

@media (max-width: 650px) {
  .image-text-block-wrapper {
    padding: 18px 0 5vh 0;
    height: auto;
  }
}

.image-text-block {
  height: 100%;
  display: grid;
  grid-template-columns: 50% auto;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-column-gap: 90px;
  align-items: start;
  font-size: 20pt;
}

@media (max-width: 1024px) {
  .image-text-block {
    min-width: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 100vw auto auto;
    grid-column-gap: 0;
    grid-row-gap: 5vh;
    font-size: 3.5vw;
  }
}

@media (max-width: 650px) {
  .image-text-block {
    min-width: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 100vw auto auto;
    grid-row-gap: 5vh;
    font-size: 5.4vw;
  }
}

.image-text-block h1,
h2,
h3,
p {
  margin: 0;
}

.image-text-block__header {
  padding-top: 40px;
  grid-column: 2;
  grid-row: 1;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .image-text-block__header {
    grid-column: 1;
    padding-top: 0;
  }
}

.image-text-block__body {
  grid-column: 2;
  grid-row: 2 / span 2;
}

@media (max-width: 1024px) {
  .image-text-block__body {
    grid-column: 1;
    grid-row: 3;
  }
}

.image-text-block__link {
  grid-column: 2;
  grid-row: 4;
  align-self: end;
  color: #df2f26;
  font-weight: bold;
  padding-bottom: 40px;
}

@media (max-width: 1024px) {
  .image-text-block__link {
    grid-column: 1;
    padding-bottom: 0;
  }
}

.image-text-block__image {
  grid-column: 1;
  grid-row: 1 / span 4;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 100%;
}

@media (max-width: 1024px) {
  .image-text-block__image {
    grid-row: 2;
  }
}

/* FOOTER */
/* ====== */
.footer {
  padding-bottom: 66px;
  padding-top: 65px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: min-content;
  font-size: 10pt;
}

.footer-column {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #ffffff;
  padding-left: 1rem;
}
.green-mode .footer-column {
  border-left: 1px solid #000;
}
@media (max-width: 1024px) {
  .green-mode .footer-column {
    border-left: none;
  }
}

.footer__link {
  text-decoration: none;
  padding-right: 9px;
  padding-bottom: 0.2em;
  color: #ffffff;
}
.green-mode .footer__link {
  color: #000;
}

.footer__social-links {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.d-desktop {
  display: block;
}
.d-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .footer__social-links {
    padding-right: 12vw;
    justify-content: flex-start;
  }
  .d-mobile {
    display: block;
  }
  .d-desktop {
    display: none;
  }
}

.footer__social-link {
  text-decoration: none;
  padding-right: 12px;
}

.footer__copyright {
  grid-column: 1 / span 4;
  padding-top: 3rem;
  color: #96918c;
}

@media (max-width: 1024px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 35px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
  }

  .footer-column {
    border-left: none;
    padding-left: 0;
  }

  .footer-column > * {
    padding-bottom: 13px;
  }
  .green-mode .footer-column > * {
    padding-bottom: 10px;
  }

  .footer__copyright {
    grid-column: 1;
  }

  .conditions {
    grid-row: last-line;
    padding-top: 2rem;
  }

  .other-sites {
    padding-top: 2rem;
  }
}

/* CONTENT PAGE */
/* ============ */

.content-page-wrapper {
  background-color: #ffffff;
}

.content-page {
  padding: 30px 0 15px 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: flex-start;
  color: #1e1914;
  font-size: 15pt;
}

@media (max-width: 1024px) {
  .content-page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: 2.5vw;
  }
}

@media (max-width: 650px) {
  .content-page {
    font-size: 4vw;
  }
}

.content-page_bottom-border {
  border-bottom: 1px dotted #96918c;
}

.content-page__content {
  grid-column: 2 / span 1;
}

.content-page__content-wide-left {
  grid-column: 1 / span 2;
}

.content-page__content-wide-right {
  grid-column: 2 / span 2;
}

.content-page__left-col {
  grid-column: 1 / span 1;
  padding-right: 35%;
  padding-top: 6px;
  color: #5a5550;
}

@media (max-width: 1024px) {
  .content-page__left-col {
    padding-bottom: 3vmin;
    padding-right: 0;
  }
}

.content-page__right-col {
  grid-column: 3 / span 1;
  padding-left: 35%;
  padding-top: 6px;
  color: #5a5550;
}

@media (max-width: 1024px) {
  .content-page__right-col {
    padding-bottom: 3vmin;
    padding-left: 0;
  }
}

.content-page-name {
  font-weight: bold;
  padding-top: 60px;
}

@media (max-width: 1024px) {
  .content-page-name {
    padding-top: 0;
  }
}

.content-page__subheading {
  margin-right: 12px;
  padding-top: 10px;
  border-top: 1px solid #d2cdc8;
  font-size: 11pt;
  font-weight: bold;
}

.content-page .rich-text {
  margin-top: -5px;
}

.content-page .rich-text ul {
  margin-top: 0;
  padding-inline-start: 30px;
}

.content-page .rich-text ul li::marker {
  content: "·";
}

.content-page .rich-text ul li {
  padding-left: 6px;
  font-size: inherit;
}

.content-page a {
  color: #df2f26;
  font-weight: normal;
  text-decoration: underline;
}

.content-page hr {
  border: none;
  border-bottom: 1px dotted #96918c;
}

.share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 0;
  border-top: 1px dotted #96918c;
  border-bottom: 1px dotted #96918c;
  color: #5a5550;
  font-size: 11pt;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .share {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
  }
}

.share-button {
  display: flex;
  align-items: center;
  padding: 6px 0;
  text-decoration: none;
}

.share-button-text {
  color: #5a5550;
  padding-left: 6px;
}

@media (max-width: 1024px) {
  .share-button-text {
    padding-right: 10vw;
  }
}

.content-header {
  padding: 60px 0;
  color: #df2f26;
  font-weight: bold;
  font-size: 33pt;
}

@media (max-width: 1024px) {
  .content-header {
    font-size: 9vw;
    padding: 9vmin 0 6vmin 0;
  }
}

.content-image {
  max-width: 100%;
  max-height: 800px;
}

.content-image-caption {
  color: #1e1914;
  padding-top: 0;
  padding-left: 10px;
}

@media (max-width: 1024px) {
  .content-image-caption {
    padding-left: 0;
    padding-top: 2vmin;
  }
}

.content-page__contact-info {
  font-size: 10pt;
}

.content-table {
  grid-column: 2 / span end;
}

table {
  width: 100%;
  border-top: 2px solid #96918c;
  border-bottom: 2px solid #96918c;
  border-collapse: collapse;
}

.table-caption {
  margin-bottom: 60px;
}

th {
  font-weight: bold;
  width: 33%;
}

th,
td {
  height: 65px;
  text-align: left;
  vertical-align: top;
  padding: 10px 10px 10px 4px;
  border-bottom: 1px solid #96918c;
}

tr:nth-child(even) {
  background-color: #f9f5f5;
}

/* CONTACT FORM */

#contact-form {
  padding: 20px 0;
}
@media (max-width: 1024px) {
  #contact-form {
    padding-top: 0px;
  }
}

#contact-form form {
  display: flex;
  flex-direction: column;
  font-size: 10pt;
  color: #5a5550;
}

#contact-form fieldset {
  max-width: 100%;
  width: 100%;
  margin-top: 14px;
}

#contact-form .hbspt-form .hs-fieldtype-select.field.hs-form-field div select {
  border-radius: 0px !important;
  -webkit-appearance: none !important;
}

#contact-form .hbspt-form .hs-fieldtype-select.field.hs-form-field div select {
  border-bottom: 2px solid #df2f26 !important;
}

@media (max-width: 1024px) {
  #contact-form .hbspt-form .hs-submit .actions input {
    -webkit-appearance: none !important;
  }

  #contact-form
    .hbspt-form
    .hs-fieldtype-booleancheckbox.field.hs-form-field
    input {
    background-color: white !important;
  }

  #contact-form
    .hbspt-form
    .hs-fieldtype-select.field.hs-form-field
    div
    select {
    border-bottom: 1px solid #df2f26 !important;
  }
}

#contact-form fieldset .input {
  margin: 10px 12px 10px 0;
}

#contact-form {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
}

#contact-form label {
  color: #5a5550;
}

#contact-form label .hs-form-required {
  color: #df2f26;
}

#contact-form input,
#contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
  border: 1px solid #d2cdc8;
  padding: 12px 6px;
  font-size: 10pt;
  color: #5a5550;
}

#contact-form textarea {
  height: 110px;
}

#contact-form ul.inputs-list {
  list-style-type: none;
  margin-block-start: 0;
  padding-inline-start: 0;
}

#contact-form ul.inputs-list .hs-form-checkbox {
  margin: 10px 0;
}

#contact-form ul.inputs-list .hs-form-checkbox-display {
  display: flex;
  align-items: center;
}

#contact-form ul.inputs-list input {
  width: auto;
  margin: 5px 5px 5px 0;
}

#contact-form .hs-submit {
  width: 100%;
  margin: 10px 0;
}

#contact-form .hs-button {
  width: 240px;
  height: 36px;
  border: none;
  background-color: #df2f26;
  color: #ffffff;
  font-weight: bold;
  margin-top: 20px;
  padding-top: 11px;
}
.green-mode #contact-form .hs-button {
  background-color: #8ea604;
}

#contact-form label.hs-error-msg,
#contact-form .hs-error-msgs label {
  color: #df2f26;
}

#contact-form input:focus {
  outline-offset: 0px;
}

:focus {
  outline: none;
}

.rich-text a {
  color: #010101;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.bg-black .rich-text a {
  color: #fff;
}
.rich-text a:hover {
  color: #df2f26;
}

/* EMPLOYEE BIO PAGE */
.employee-bio-page {
  padding: 40px 0;
  display: grid;
  grid-template-columns: auto 50%;
  grid-template-rows: 400px auto;
  column-gap: 180px;
  row-gap: 20px;
  grid-template-areas:
    "subhead photo"
    "info    bio";

  color: #3c3732;
  font-size: 14pt;
}

@media (max-width: 1024px) {
  .employee-bio-page {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    row-gap: 10px;
    grid-template-areas:
      "subhead"
      "photo"
      "info"
      "bio";
  }
}

.employee-bio-page__subhead {
  grid-area: "subhead";
  padding: 10px 0;
  border-top: 1px dotted #96918c;
  color: #5a5550;
  font-variant: small-caps;
}

.employee-bio-page__photo {
  grid-area: "photo";
}

.employee-bio-page__info {
  grid-area: "info";
  padding: 10px 0;
  border-top: 1px dotted #96918c;
}

.employee-bio-page__title {
  padding-bottom: 10px;
  border-bottom: 1px dotted #96918c;
  font-size: 20pt;
}

.employee-bio-page__accomplishments {
  padding-top: 10px;
  font-size: 12pt;
}

.employee-bio-page__accomplishments ul {
  padding-inline-start: 16px;
}

.employee-bio-page__accomplishments li {
  padding-bottom: 10px;
}

.employee-bio-page__bio {
  grid-area: "bio";
  padding: 10px 0 20px 0;
  border-top: 1px dotted #96918c;
  border-bottom: 1px dotted #96918c;
}

@media (max-width: 1024px) {
  .employee-bio-page__bio {
    border-top: none;
  }
}

.app-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #df2f26;
  background: #df2f26;
  text-decoration: none;
  outline: none;
  color: #fff;
  height: 30px;
  cursor: pointer;
  padding: 0px 15px;
  width: 208px;
  transition: all 0.3s ease-in-out;
  line-height: 1px !important;
  padding-top: 4px;
}
.app-button.compact {
  min-width: initial;
}
.app-button.fluid {
  width: 100%;
}
button.app-button {
  min-width: 230px;
}
.app-button.outlined {
  background: transparent;
  color: #000;
}
.app-button.outlined.white {
  color: #fff;
}
.app-button:hover {
  border: 1px solid #961e19;
  background: #961e19;
}
.app-button.outlined:hover {
  border: 1px solid #df2f26;
  background: #df2f26;
  color: #fff;
}
.n-column-block-block-title {
  font-weight: bold;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}
.n-column-block-block-title::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: black;
  bottom: 0;
}
.column-sm-img-wrap {
  width: 100%;
  height: 216px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.column-sm-img-wrap.h-210 {
  height: 210px;
}
.column-sm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column-sm-img-wrap.team-block-has-biography {
  cursor: pointer;
}

.column-sm-title {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 4px;
}
.column-sm-subtitle {
  opacity: 0.6;
}
.column-sm-modal-link {
  margin-top: 22px;
  color: #df2f26;
  font-weight: bold;
  cursor: pointer;
}

.optional-block-title {
  font-weight: bold;
  font-size: 21px;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.optional-block-title.large {
  font-size: 30px;
}
@media (max-width: 1024px) {
  .optional-block-title {
    font-size: 18px;
  }
}

.fullscreen_modal_overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}
.fullscreen_modal_overlay_img_zoom {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}
.fullscreen_modal_overlay_img_zoom img {
  height: 80%;
  width: 80%;
  object-fit: contain;
  cursor: pointer;
}

.fullscreen_modal_overlay.active {
  display: block;
}

.fullscreen_modal_overlay_img_zoom.active {
  display: flex;
  opacity: 1;
}

.fullscreen_modal {
  display: none;
  width: 100%;
  max-width: 912px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-width: 1024px) {
  .fullscreen_modal {
    max-width: 650px;
  }
}
.fullscreen_modal.active {
  display: block;
}
.fullscreen_modal_content_hidden {
  display: none;
}
.fullscreen_modal .fullscreen_modal_content_wrap {
  padding: 0 20px;
}
.fullscreen_modal .fullscreen_modal_content {
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  max-height: 90vh;
}

.video-details-fullscreen_modal iframe {
  border: 0;
}

.fullscreen_modal_content_top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.fullscreen_modal_content_top svg {
  cursor: pointer;
}

.fullscreen_modal_content_row_1,
.fullscreen_modal_content_row_2 {
  display: flex;
  gap: 16px;
  width: 100%;
  color: #000;
}
.fullscreen_modal_content_row_1 {
  align-items: flex-end;
  margin-bottom: 30px;
}
.fullscreen_modal_content_row_left {
  width: 280px;
  flex-shrink: 0;
}
@media (min-width: 1025px) {
  .fullscreen_modal_content_row_left {
    margin-bottom: -7px;
  }
}
.fullscreen_modal_content_title {
  font-size: 21px;
  line-height: 1.3;
}
.fullscreen_modal_content_subtitle {
  font-size: 21px;
  line-height: 1.3;
  opacity: 0.4;
}
.fullscreen_modal_content_accomplishments_title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 3px;
}
.fullscreen_modal_content_accomplishments_text {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.fullscreen_modal_content_right_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 336px;
}
.fullscreen_modal_content_right_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fullscreen_modal_content_text {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .fullscreen_modal_content_row_1,
  .fullscreen_modal_content_row_2 {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
  }

  .fullscreen_modal_content_title {
    font-size: 16px;
    line-height: 24px;
  }
  .fullscreen_modal_content_subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .fullscreen_modal_content_accomplishments_title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .fullscreen_modal_content_accomplishments_text {
    font-size: 16px;
    line-height: 24px;
  }
  .fullscreen_modal_content_text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
  }
  .fullscreen_modal_content_right_img {
    height: 280px;
  }
}

/* FOR 200 Helvetica Neue FONT WAS USED 100 */
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 400;
  src: url("/public/webfonts/HelveticaNeueLTStd-Roman.otf");
}

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 700;
  src: url("/public/webfonts/HelveticaNeueLTStd-Bd.otf");
}
@font-face {
  font-family: "Chronicle Deck";
  font-weight: 400;
  src: url("/public/webfonts/ChronicleDeck-Roman.otf");
}

.green-mode .app-button {
  border: 1px solid #8ea604;
  background: #8ea604;
  color: #fff;
}
.green-mode .app-button.outlined {
  background: transparent;
  color: #000;
}
.green-mode .bg-black .app-button.outlined {
  color: #fff;
}

.green-mode .app-button.outlined.white {
  color: #fff;
}
.green-mode .app-button:hover {
  border: 1px solid #647504;
  background: #647504;
}
.green-mode .app-button.outlined:hover {
  border: 1px solid #8ea604;
  background: #8ea604;
  color: #fff;
}
.green-mode .red {
  color: #8ea604;
}

.green-mode .rich-text a:hover {
  color: #8ea604;
}
.green-mode .column-sm-modal-link {
  color: #8ea604;
}
.green-mode .fullscreen_modal_content_top svg rect {
  fill: #8ea604;
}
.app-button {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 13px;
}
/* NEW FONTS WOW */
/* HN BOLD */
.new-typo-hn-700-36-40 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
}
.new-typo-hn-700-30-36 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}
.new-typo-hn-700-24-30 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}
.new-typo-hn-700-18-24 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}
.new-typo-hn-700-16-32 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
}
.new-typo-hn-700-15-18 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
}
.new-typo-hn-700-13-18 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
}
.new-typo-hn-700-13 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
}
/* HN REGULAR */
.new-typo-hn-400-120-120 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 120px;
  line-height: 120px;
  letter-spacing: -0.05em;
}
.new-typo-hn-400-24-30 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
}
.new-typo-hn-400-18-24 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.new-typo-hn-400-16-32 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}
.new-typo-hn-400-15-18 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}
.new-typo-hn-400-13-18 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
}
.new-typo-hn-400-11 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
}
.new-typo-hn-400-9 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
}
/* HN LIGHT */
.new-typo-hn-300-90-90 {
  font-family: "HelveticaNeueW01-45Ligh";
  font-style: normal;
  font-weight: 300;
  font-size: 90px;
  line-height: 90px;
}
.new-typo-hn-300-60-60 {
  font-family: "HelveticaNeueW01-45Ligh";
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 60px;
}
.new-typo-hn-300-30-36 {
  font-family: "HelveticaNeueW01-45Ligh";
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 36px;
}
.new-typo-hn-300-24-30 {
  font-family: "HelveticaNeueW01-45Ligh";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
}
/* HN THIN */
.new-typo-hn-100-60-60 {
  font-family: "HelveticaNeueW01-Thin";
  font-style: normal;
  font-weight: 100;
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
}
.new-typo-hn-100-45-45 {
  font-family: "HelveticaNeueW01-Thin";
  font-style: normal;
  font-weight: 100;
  font-size: 45px;
  line-height: 45px;
  text-transform: uppercase;
}
.new-typo-hn-100-36-36 {
  font-family: "HelveticaNeueW01-Thin";
  font-style: normal;
  font-weight: 100;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
}

/* MOBILE CUSTOM */
@media (max-width: 1024px) {
  .new-typo-mobile-24-30 {
    font-size: 24px;
    line-height: 30px;
  }
  .new-typo-mobile-13-18 {
    font-size: 13px;
    line-height: 18px;
  }
  .new-typo-mobile-36-36 {
    font-size: 36px;
    line-height: 36px;
  }
  .new-typo-mobile-30-30 {
    font-size: 30px;
    line-height: 30px;
  }
  .new-typo-mobile-18-24 {
    font-size: 18px;
    line-height: 24px;
  }
  .new-typo-mobile-60-60 {
    font-size: 60px;
    line-height: 60px;
  }
  .new-typo-mobile-15-18 {
    font-size: 15px;
    line-height: 18px;
  }
  .new-typo-mobile-9 {
    font-size: 9px;
  }
}
