/* SET UP */
html {
  background: white;
}

@font-face {
  font-family: "Plain";
  src: url("../fonts/Plain-Medium.eot");
  src: url("../fonts/Plain-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Plain-Medium.woff2") format("woff2"), url("../fonts/Plain-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Plain-Light";
  src: url("../fonts/Plain-Light.eot");
  src: url("../fonts/Plain-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Plain-Light.woff2") format("woff2"), url("../fonts/Plain-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Plain-Italic";
  src: url("../fonts/Plain-Medium-Italic.eot");
  src: url("../fonts/Plain-Medium-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Plain-Medium-Italic.woff2") format("woff2"), url("../fonts/Plain-Medium-Italic.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Financier";
  src: url("../fonts/financier-text-web-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
/* MIXINS - - - - - - - - - - - - - - */
/* COLORS - - - - - - - - - - - - - - */
/* SIZE VARIABLES - - - - - - - - - - - - - - */
/* FONTS - - - - - - - - - - - - - -  */
/* @import must be at top of file, otherwise CSS will not work */
html {
  font-size: 16px;
}
@media (min-width: 1537px) {
  html {
    font-size: 1vw;
  }
}

body,
input,
select,
button,
textarea {
  font-family: "Plain", sans-serif;
  font-weight: normal;
  font-size: var(--font--size-base);
  line-height: var(--font--line-base);
  color: var(--color--text);
  text-rendering: auto;
  -webkit-text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* ANIMATIONS - - - - - - - - - - - - - -  */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fade-in {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-60px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slide-in {
  opacity: 0;
  transform: translate(-60px, 0);
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.slideInAnimation {
  animation-name: slideIn;
}

@keyframes slideInRight2 {
  0% {
    opacity: 0;
    transform: translate(60px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slide-in-right {
  opacity: 0;
  transform: translate(60px, 0);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.slideInAnimationRight {
  animation-name: slideInRight2;
}

@keyframes slideInSupport {
  0% {
    opacity: 0;
    transform: rotate(-180deg) translateX(60px);
  }
  100% {
    opacity: 1;
    transform: rotate(-180deg) translateX(0);
  }
}
.slide-in-support {
  opacity: 0;
  transform: rotate(-180deg) translateX(60px);
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.slideInSupport {
  animation-name: slideInSupport;
}

@keyframes expand {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.to-expand-elem {
  width: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.expand-animation {
  animation-name: expand;
}

@keyframes pulse-right {
  0%, 20%, 40%, 100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-0.5rem);
  }
  30% {
    transform: translateX(-0.25rem);
  }
}
@keyframes pulse-up {
  0%, 20%, 40%, 100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(15%);
  }
  30% {
    transform: translateY(5%);
  }
}
.pulse-up {
  animation: pulse-up 3s;
}

@keyframes pulse-down {
  0%, 20%, 40%, 100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-15%);
  }
  30% {
    transform: translateY(-5%);
  }
}
.pulse-down {
  animation: pulse-down 3s;
}

/* GLOBAL */
/* TEXT STYLES - - - - - - - - - - - - - -  */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1;
  margin: 0;
  padding: 0.75em 0;
  text-align: left;
}

h1,
.h1 {
  font-size: var(--font--size-h1);
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 3rem;
  }
}

h2,
.h2 {
  font-size: var(--font--size-h2);
}

h3,
.h3 {
  font-size: var(--font--size-h3);
  line-height: 1.1;
}

h4,
.h4 {
  font-size: var(--font--size-h4);
}

h5,
.h5 {
  font-size: var(--font--size-h5);
}

h6,
.h6 {
  font-size: var(--font--size-h6);
}

p {
  font-size: 1.25rem;
  line-height: 1.4em;
}
p strong {
  font-style: normal;
}
p strong em,
p em strong {
  font-style: normal;
  font-weight: normal;
  background: #fde3e1;
  padding: 0 0.25rem;
}
.standard p {
  font-family: "Financier", sans-serif;
  font-style: normal;
}
.standard p strong {
  font-family: "Plain", sans-serif;
  font-weight: normal;
}
.standard p strong em {
  font-family: "Plain-Italic", sans-serif;
  font-style: normal;
  font-weight: normal;
}

.standard ul,
.standard dl,
.standard ol {
  font-family: "Financier", sans-serif;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.4em;
}
.standard ul li,
.standard dl li,
.standard ol li {
  margin-bottom: 0.5em;
}

em,
i,
blockquote em,
blockquote i,
blockquote p em,
blockquote p i,
figcaption em,
figcaption i,
figcaption p em,
figcaption p i {
  font-family: "Plain-Italic", sans-serif;
  font-style: normal;
}

b,
strong {
  font-weight: normal;
}

p em,
p i {
  font-family: "Financier", sans-serif;
  font-style: italic;
}

.small,
small {
  font-size: 0.875rem;
  font-weight: normal;
  opacity: 0.5;
}

small + h2 {
  padding: 0.3em 0 0.65em;
}

.muted {
  opacity: 0.7;
}

.underline-animate {
  transition: 0.3s ease all;
}
.underline-animate.light {
  background: linear-gradient(#000, #000);
  text-shadow: 0.03em 0 #fff, -0.03em 0 #fff, 0 0.03em #fff, 0 -0.03em #fff, 0.06em 0 #fff, -0.06em 0 #fff, 0.09em 0 #fff, -0.09em 0 #fff, 0.12em 0 #fff, -0.12em 0 #fff;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 93%;
}
.underline-animate.dark {
  background: linear-gradient(#fff, #fff);
  text-shadow: 0.03em 0 #000, -0.03em 0 #000, 0 0.03em #000, 0 -0.03em #000, 0.06em 0 #000, -0.06em 0 #000, 0.09em 0 #000, -0.09em 0 #000, 0.12em 0 #000, -0.12em 0 #000;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 93%;
}
.underline-animate.small-font {
  background-size: 0% 1px;
  background-position: 0 100%;
}
.underline-animate.small-font:hover {
  background-size: 100% 1px;
}
.underline-animate:hover {
  background-size: 100% 2px;
}

/* LINKS / BUTTONS - - - - - - - - - - - - - -  */
a {
  color: var(--color--link);
  transition: 0.15s ease color;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: var(--color--link-hover);
  text-decoration: none;
  outline: 0;
  outline: 0;
  outline-style: none;
  -moz-outline-style: none;
}

button,
.btn {
  font-size: 0.875rem;
}

button,
.btn,
input[type=submit] {
  background: var(--color--accent);
  color: white;
  font-size: 0.875rem;
  padding: 0.5em 1.5em 0.3em;
  margin: 3px;
  box-shadow: none;
  text-shadow: none;
  border: none;
  border-radius: 2em;
  transition: 0.15s ease all;
  line-height: 1.5;
  box-shadow: 0;
}
button:hover, button:focus, button:active,
.btn:hover,
.btn:focus,
.btn:active,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit]:active {
  background: var(--color--bg-alpha);
  color: white;
  box-shadow: 0;
  outline: 0;
}
button.btn-red, button.btn-red:active,
.btn.btn-red,
.btn.btn-red:active,
input[type=submit].btn-red,
input[type=submit].btn-red:active {
  background: var(--color--link);
  border: 2px solid var(--color--link);
  color: white;
}
button.btn-red:hover, button.btn-red:focus, button.btn-red:active:hover, button.btn-red:active:focus,
.btn.btn-red:hover,
.btn.btn-red:focus,
.btn.btn-red:active:hover,
.btn.btn-red:active:focus,
input[type=submit].btn-red:hover,
input[type=submit].btn-red:focus,
input[type=submit].btn-red:active:hover,
input[type=submit].btn-red:active:focus {
  border: 2px solid black;
  background: black;
}
button.btn-red.btn-outline, button.btn-red:active.btn-outline,
.btn.btn-red.btn-outline,
.btn.btn-red:active.btn-outline,
input[type=submit].btn-red.btn-outline,
input[type=submit].btn-red:active.btn-outline {
  background: transparent;
  border: 2px solid var(--color--link);
  color: var(--color--link);
}
.page-home button.btn-red.btn-outline, .page-newsletter button.btn-red.btn-outline, .page-home button.btn-red:active.btn-outline, .page-newsletter button.btn-red:active.btn-outline,
.page-home .btn.btn-red.btn-outline,
.page-newsletter .btn.btn-red.btn-outline,
.page-home .btn.btn-red:active.btn-outline,
.page-newsletter .btn.btn-red:active.btn-outline,
.page-home input[type=submit].btn-red.btn-outline,
.page-newsletter input[type=submit].btn-red.btn-outline,
.page-home input[type=submit].btn-red:active.btn-outline,
.page-newsletter input[type=submit].btn-red:active.btn-outline {
  border-color: white;
  color: white;
}
button.btn-red.btn-outline:hover, button.btn-red.btn-outline:focus, button.btn-red:active.btn-outline:hover, button.btn-red:active.btn-outline:focus,
.btn.btn-red.btn-outline:hover,
.btn.btn-red.btn-outline:focus,
.btn.btn-red:active.btn-outline:hover,
.btn.btn-red:active.btn-outline:focus,
input[type=submit].btn-red.btn-outline:hover,
input[type=submit].btn-red.btn-outline:focus,
input[type=submit].btn-red:active.btn-outline:hover,
input[type=submit].btn-red:active.btn-outline:focus {
  border: 2px solid var(--color--link);
  background: var(--color--link);
  color: white;
}
button.btn-black, button.btn-black:active,
.btn.btn-black,
.btn.btn-black:active,
input[type=submit].btn-black,
input[type=submit].btn-black:active {
  border: 2px solid black;
  color: black;
  min-width: 170px;
}
button.btn-black:hover, button.btn-black:focus, button.btn-black:active:hover, button.btn-black:active:focus,
.btn.btn-black:hover,
.btn.btn-black:focus,
.btn.btn-black:active:hover,
.btn.btn-black:active:focus,
input[type=submit].btn-black:hover,
input[type=submit].btn-black:focus,
input[type=submit].btn-black:active:hover,
input[type=submit].btn-black:active:focus {
  border: 2px solid black;
  background: black;
}
button.btn-gray, button.btn-gray:active,
.btn.btn-gray,
.btn.btn-gray:active,
input[type=submit].btn-gray,
input[type=submit].btn-gray:active {
  border: 2px solid #767676;
  color: #767676;
  min-width: 170px;
}
button.btn-gray:hover, button.btn-gray:focus, button.btn-gray:active:hover, button.btn-gray:active:focus,
.btn.btn-gray:hover,
.btn.btn-gray:focus,
.btn.btn-gray:active:hover,
.btn.btn-gray:active:focus,
input[type=submit].btn-gray:hover,
input[type=submit].btn-gray:focus,
input[type=submit].btn-gray:active:hover,
input[type=submit].btn-gray:active:focus {
  border: 2px solid #767676;
  background: #767676;
  color: white;
}
button.btn-outline, button.btn-outline:active,
.btn.btn-outline,
.btn.btn-outline:active,
input[type=submit].btn-outline,
input[type=submit].btn-outline:active {
  background: transparent;
  border: 2px solid var(--color--link);
  color: var(--color--link);
}
button.btn-outline:hover, button.btn-outline:focus, button.btn-outline:active:hover, button.btn-outline:active:focus,
.btn.btn-outline:hover,
.btn.btn-outline:focus,
.btn.btn-outline:active:hover,
.btn.btn-outline:active:focus,
input[type=submit].btn-outline:hover,
input[type=submit].btn-outline:focus,
input[type=submit].btn-outline:active:hover,
input[type=submit].btn-outline:active:focus {
  border: 2px solid var(--color--link);
  background: var(--color--link);
  color: white;
  box-shadow: 0;
  outline: 0;
}
button.btn-ko, button.btn-ko:active,
.btn.btn-ko,
.btn.btn-ko:active,
input[type=submit].btn-ko,
input[type=submit].btn-ko:active {
  border: 2px solid white;
  color: white;
  min-width: 170px;
}
button.btn-ko:hover, button.btn-ko:focus, button.btn-ko:active:hover, button.btn-ko:active:focus,
.btn.btn-ko:hover,
.btn.btn-ko:focus,
.btn.btn-ko:active:hover,
.btn.btn-ko:active:focus,
input[type=submit].btn-ko:hover,
input[type=submit].btn-ko:focus,
input[type=submit].btn-ko:active:hover,
input[type=submit].btn-ko:active:focus {
  border: 2px solid white;
  background: white;
  color: #000;
  box-shadow: 0;
  outline: 0;
}
button.btn-large,
.btn.btn-large,
input[type=submit].btn-large {
  padding: 0.55em 1.5em 0.4em;
  border-width: 2px;
  min-width: 170px;
  font-size: 1rem;
}
button.btn-large:hover, button.btn-large:focus,
.btn.btn-large:hover,
.btn.btn-large:focus,
input[type=submit].btn-large:hover,
input[type=submit].btn-large:focus {
  border-width: 2px;
  box-shadow: 0;
  outline: 0;
}
@media (max-width: 1199px) {
  button.btn-large.order-book-btn,
  .btn.btn-large.order-book-btn,
  input[type=submit].btn-large.order-book-btn {
    min-width: none;
    font-size: 0.875rem;
  }
}
button.btn-large.order-book-btn,
.btn.btn-large.order-book-btn,
input[type=submit].btn-large.order-book-btn {
  background: transparent;
  border: 2px solid var(--color--link);
  color: var(--color--link);
}
.page-home button.btn-large.order-book-btn, .page-newsletter button.btn-large.order-book-btn,
.page-home .btn.btn-large.order-book-btn,
.page-newsletter .btn.btn-large.order-book-btn,
.page-home input[type=submit].btn-large.order-book-btn,
.page-newsletter input[type=submit].btn-large.order-book-btn {
  border: 2px solid white;
  color: white;
}
button.btn-large.order-book-btn:hover, button.btn-large.order-book-btn:focus,
.btn.btn-large.order-book-btn:hover,
.btn.btn-large.order-book-btn:focus,
input[type=submit].btn-large.order-book-btn:hover,
input[type=submit].btn-large.order-book-btn:focus {
  border: 2px solid var(--color--link);
  background: var(--color--link);
  color: white;
  box-shadow: 0;
  outline: 0;
}

.return-to-top {
  margin-top: 2em;
  font-size: 0.875rem;
}
.return-to-top a {
  color: black;
}
.return-to-top a span {
  transition: 0.15s ease text-decoration;
}
.return-to-top a:hover span {
  text-decoration: underline;
}

/* GENERAL - - - - - - - - - - - - - -  */
body.fade-transition {
  opacity: 0;
  transition: opacity 0.1s;
}

body.fade-out-transition {
  opacity: 0 !important;
}

.body-inner-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > img {
  display: none;
}

main {
  flex: 1;
}

nav dl,
nav ol,
nav ul,
nav li,
section nav dl,
section nav ol,
section nav ul,
section nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

.centered {
  text-align: center;
}

section {
  padding: 3.75rem 0;
  position: relative;
}
.standard section {
  padding: 1.25rem 0 3.75rem;
}
section.bg-red {
  background-color: #ce1a11;
  color: white;
}
section.bg-red small {
  opacity: 1;
}

.flex-col {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

img {
  height: auto;
}

iframe {
  width: 100%;
}

.video--container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.video--container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}

.wide-container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 100%;
}

@media (min-width: 1000px) {
  .container:not(.wide-container) {
    max-width: 93%;
  }
}
@media (min-width: 1441px) {
  .container:not(.wide-container) {
    max-width: 90%;
  }
}
@media (max-width: 999px) {
  .container:not(.wide-container) {
    max-width: 100%;
  }
}

.row-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 999px) {
  .view--desktop {
    display: none;
  }
}
@media (min-width: 999px) {
  .view--mobile {
    display: none;
  }
}

.search--results h2 {
  padding: 0 0 60px;
}

#quotes {
  padding: 5.55rem 0 4rem;
}
@media (min-width: 1000px) {
  #quotes article {
    padding: 0 2rem;
  }
}
#quotes figure {
  margin-bottom: 2.65rem;
}
#quotes figure blockquote {
  font-size: 1.375rem;
  line-height: 1.1em;
  text-indent: -0.4em;
}
#quotes figure figcaption {
  font-size: 0.875rem;
  color: #ce1a11;
  line-height: 1.2em;
}

#mc_embed_signup #mc_embed_signup_scroll,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup {
  display: flex;
  position: relative;
}
@media (max-width: 575px) {
  #mc_embed_signup #mc_embed_signup_scroll,
  #mc_embed_signup_popup #mc_embed_signup_scroll_popup {
    display: block;
  }
}
#mc_embed_signup #mc_embed_signup_scroll input.email,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email {
  width: calc(100% - 115px);
  border: 0;
  border-bottom: 1px solid #767676;
  font-size: 1rem;
  font-family: "Financier", serif;
  color: black;
  height: 3rem;
  padding: 1.4rem 0.25rem 0.8rem;
  font-style: normal;
}
#mc_embed_signup #mc_embed_signup_scroll input.email::placeholder,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email::placeholder {
  color: #767676;
  font-style: italic;
}
@media (max-width: 767px) {
  #mc_embed_signup #mc_embed_signup_scroll input.email,
  #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email {
    height: 3rem;
  }
}
@media (max-width: 575px) {
  #mc_embed_signup #mc_embed_signup_scroll input.email,
  #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#mc_embed_signup #mc_embed_signup_scroll.email--news,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup.email--news {
  width: 100%;
  display: block;
}
#mc_embed_signup #mc_embed_signup_scroll.email--news #mc-embedded-subscribe,
#mc_embed_signup #mc_embed_signup_scroll.email--news #mc-embedded-subscribe_popup,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup.email--news #mc-embedded-subscribe,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup.email--news #mc-embedded-subscribe_popup {
  margin-top: 1rem;
}
#mc_embed_signup #mc_embed_signup_scroll .clear,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup .clear {
  clear: both;
}
#mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill,
#mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:hover,
#mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:focus,
#mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:active,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:hover,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:focus,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px white inset !important;
}
#mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill {
  -webkit-text-fill-color: black !important;
}
#mc_embed_signup #mc_embed_signup_scroll input:focus,
#mc_embed_signup_popup #mc_embed_signup_scroll_popup input:focus {
  outline-color: rgba(0, 0, 0, 0.3);
}

#mc_embed_signup #thankYouMessageJoin,
#mc_embed_signup_popup #thankYouMessageJoin_popup {
  color: #ffffff;
  padding-top: 1rem;
}

#mc_embed_signup div#mce-responses {
  width: 100%;
  height: 100%;
  background: transparent;
  bottom: 0px;
  margin: 0;
  padding: 0;
}

#mc_embed_signup div.response {
  z-index: 1;
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#banner {
  background: #ce1a11;
  color: white;
  padding: 0;
}
#banner h2 {
  line-height: 1.2em;
}
#banner small {
  opacity: 1;
}
@media (max-width: 767px) {
  #banner .row {
    flex-direction: column-reverse;
  }
}
#banner .column:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  #banner .column:first-of-type {
    padding: 3rem 0;
  }
}
@media (max-width: 767px) {
  #banner .column:first-of-type {
    padding-bottom: 3.75rem;
  }
}
#banner .column:last-of-type {
  overflow: hidden;
  position: relative;
  height: calc(1410px - 90vw);
  min-height: 460px;
  max-height: 550px;
}
@media (max-width: 767px) {
  #banner .column:last-of-type {
    height: calc(52vw + 100px);
    min-height: 0;
  }
}
@media (max-width: 450px) {
  #banner .column:last-of-type {
    height: calc(52vw + 150px);
  }
}
@media (max-width: 400px) {
  #banner .column:last-of-type {
    height: calc(42vw + 150px);
  }
}
#banner .column:last-of-type img {
  position: absolute;
  top: calc(510px - 55vw);
  width: 97%;
}
@media (max-width: 767px) {
  #banner .column:last-of-type img {
    top: calc(200px - 98vw);
  }
}
@media (max-width: 450px) {
  #banner .column:last-of-type img {
    top: calc(200px - 104vw);
  }
}

#poster {
  background: black;
  color: white;
}
#poster .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}
#poster h2 {
  font-size: 4rem;
}
@media (max-width: 767px) {
  #poster h2 {
    font-size: 9.6vw;
  }
}
@media (max-width: 767px) {
  #poster .container > .row {
    flex-direction: column-reverse;
  }
}
#poster .column.col-md-5 {
  position: relative;
}
#poster .column.col-md-5 .book-image-front,
#poster .column.col-md-5 .book-image-back {
  transition: 0.2s ease-in all;
}
#poster .column.col-md-5 .book-image-front {
  transition-delay: 150ms;
}
#poster .column.col-md-5 .book-image-back {
  position: absolute;
  left: 15px;
  width: calc(100% - 30px);
  opacity: 0;
  transform: rotateY(-100deg);
}
#poster .column.col-md-5:hover .book-image-front {
  transform: rotateY(90deg);
  opacity: 0;
  transition-delay: 0s;
}
#poster .column.col-md-5:hover .book-image-back {
  transform: rotateY(0deg);
  opacity: 1;
  transition-delay: 150ms;
}
#poster a.btn.reveal-poster-form {
  display: none;
}
#poster .poster-form {
  opacity: 1;
  transition: 0.2s ease all;
}
#poster .poster-form p {
  font-size: 0.875rem;
}
#poster .poster-form p a {
  color: white;
  text-decoration: underline;
}
#poster .poster-form label {
  display: none;
}
#poster .poster-form .radio-buttons label {
  display: block;
}
#poster .poster-form input,
#poster .poster-form select {
  display: block;
  width: 100%;
  font-family: "Financier", serif;
  background: black;
  color: white;
  outline: 0;
  border: 0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 0.5em 0 0.125em;
  margin-bottom: 1em;
  -webkit-appearance: none;
}
#poster .poster-form input::placeholder,
#poster .poster-form select::placeholder {
  font-family: "Financier", serif;
  font-style: italic;
  color: white;
}
#poster .poster-form input:focus, #poster .poster-form input:focus-visible, #poster .poster-form input:focus-within,
#poster .poster-form select:focus,
#poster .poster-form select:focus-visible,
#poster .poster-form select:focus-within {
  background: black;
  color: white;
}
#poster .poster-form input:-webkit-autofill, #poster .poster-form input:-webkit-autofill:hover, #poster .poster-form input:-webkit-autofill:focus, #poster .poster-form input:-webkit-autofill:active,
#poster .poster-form select:-webkit-autofill,
#poster .poster-form select:-webkit-autofill:hover,
#poster .poster-form select:-webkit-autofill:focus,
#poster .poster-form select:-webkit-autofill:active {
  box-shadow: 0 0 0 30px black inset !important;
  -webkit-text-fill-color: white !important;
}
@-webkit-keyframes autofill {
  0%, 100% {
    color: white;
    background: transparent;
  }
}
#poster .poster-form input[type=checkbox], #poster .poster-form input[type=radio],
#poster .poster-form select[type=checkbox],
#poster .poster-form select[type=radio] {
  appearance: none;
  border-radius: 50%;
  outline: none;
  padding: 0;
  background: black;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.15s linear;
  width: 0.5em;
  height: 0.5em;
  margin: 0 10px 0.6rem 4px;
  box-shadow: 0 0 0 4px #000, 0 0 0 5px #fff;
  border-bottom: none;
}
#poster .poster-form input[type=checkbox]:checked, #poster .poster-form input[type=radio]:checked,
#poster .poster-form select[type=checkbox]:checked,
#poster .poster-form select[type=radio]:checked {
  background: white;
  box-shadow: 0 0 0 1px #fff, 0 0 0 4px #000, 0 0 0 5px #fff;
}
#poster .poster-form input:-webkit-autofill,
#poster .poster-form select:-webkit-autofill {
  -webkit-animation-delay: 1s;
  /* Safari support - any positive time runs instantly */
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}
#poster .poster-form input.mce_inline_error,
#poster .poster-form select.mce_inline_error {
  outline: #ce1a11 solid 1px;
}
#poster .poster-form label.checkbox {
  cursor: pointer;
}
#poster .poster-form ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#poster .poster-form ul li {
  display: flex;
  align-items: center;
}
#poster .poster-form .submit-btn input {
  padding: 0.9em 1.5em 0.7em;
  border-width: 2px;
  width: auto;
  border: 2px solid white;
  font-family: "Plain", sans-serif;
  border-radius: 2em;
  margin-top: 1.5em;
}
#poster .poster-form .submit-btn input:hover {
  background: white;
  color: black;
}
#poster.hide-form .column p,
#poster.hide-form .column small {
  display: none;
}
#poster.hide-form .column a.btn.reveal-poster-form {
  display: block;
}
#poster.hide-form .poster-form {
  display: none;
  opacity: 0;
}

#join,
#join-popup,
#poster {
  background: black;
  color: white;
}
#join #mc_embed_signup #mc_embed_signup_scroll input.email,
#join #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email,
#join-popup #mc_embed_signup #mc_embed_signup_scroll input.email,
#join-popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email,
#poster #mc_embed_signup #mc_embed_signup_scroll input.email,
#poster #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email {
  color: white;
  background: transparent;
}
#join #mc_embed_signup #mc_embed_signup_scroll input.email::placeholder,
#join #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email::placeholder,
#join-popup #mc_embed_signup #mc_embed_signup_scroll input.email::placeholder,
#join-popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email::placeholder,
#poster #mc_embed_signup #mc_embed_signup_scroll input.email::placeholder,
#poster #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email::placeholder {
  color: #767676;
}
#join #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill,
#join #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:hover,
#join #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:focus,
#join #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:active,
#join #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill,
#join #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:hover,
#join #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:focus,
#join #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:active,
#join-popup #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill,
#join-popup #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:hover,
#join-popup #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:focus,
#join-popup #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:active,
#join-popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill,
#join-popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:hover,
#join-popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:focus,
#join-popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:active,
#poster #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill,
#poster #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:hover,
#poster #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:focus,
#poster #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill:active,
#poster #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill,
#poster #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:hover,
#poster #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:focus,
#poster #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px black inset !important;
}
#join #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill,
#join #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill,
#join-popup #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill,
#join-popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill,
#poster #mc_embed_signup #mc_embed_signup_scroll input:-webkit-autofill,
#poster #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:-webkit-autofill {
  -webkit-text-fill-color: transparent !important;
}
#join #mc_embed_signup #mc_embed_signup_scroll input:focus,
#join #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:focus,
#join-popup #mc_embed_signup #mc_embed_signup_scroll input:focus,
#join-popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:focus,
#poster #mc_embed_signup #mc_embed_signup_scroll input:focus,
#poster #mc_embed_signup_popup #mc_embed_signup_scroll_popup input:focus {
  outline-color: rgba(255, 255, 255, 0.3);
}
#join #mc_embed_signup div.response,
#join #mc_embed_signup_popup div.response,
#join-popup #mc_embed_signup div.response,
#join-popup #mc_embed_signup_popup div.response,
#poster #mc_embed_signup div.response,
#poster #mc_embed_signup_popup div.response {
  background: rgba(0, 0, 0, 0.95);
}

#poster #mc_embed_signup,
#poster #mc_embed_signup_popup {
  width: 100%;
  max-width: 36rem;
}
#poster p {
  font-size: 1rem;
  margin-top: 2rem;
  color: #767676;
}
#poster p a {
  color: #767676;
  text-decoration: underline;
}
#poster p a:hover {
  color: #ce1a11;
}

/* ABOUT - - - - - - - - - - - - - -  */
section.about {
  background-color: #ce1a11;
  color: white;
}
section.about h2 {
  font-size: 1.375rem;
}
section.about p {
  font-size: 4rem;
  line-height: 1em;
  margin: 2rem 0;
}
section.about small {
  opacity: 1;
}
@media (max-width: 767px) {
  section.about h2 {
    font-size: 0.875rem;
  }
  section.about p {
    margin: 1rem 0 2rem;
    font-size: 2rem;
  }
}

/* Social Share - - - - - - - - - - - - - -  */
.social-share-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 37px;
}
.social-share-container span:first-of-type {
  margin-right: 15px;
}
.social-share-container a {
  color: black;
  margin-right: 0.75em;
}
.okr-dark .social-share-container a {
  color: white !important;
}
.social-share-container a:last-of-type {
  margin-right: 0;
}
.social-share-container svg {
  fill: black;
}
.okr-dark .social-share-container svg {
  fill: white !important;
}
.post-detail .social-share-container {
  margin-bottom: 1rem;
}

#hero.hero-basic .hero-text {
  width: 50%;
  margin-right: auto;
}
@media (max-width: 999px) {
  #hero.hero-basic .hero-text {
    width: 75%;
  }
}
@media (max-width: 600px) {
  #hero.hero-basic .hero-text {
    width: 100%;
  }
}
#hero.hero-basic h1 {
  padding-top: 0;
  color: #ce1a11;
}

@media (max-width: 999px) {
  #hero {
    padding-bottom: 1rem;
  }
}
#hero h1 {
  color: #ce1a11;
  padding: 1.5rem 0;
}
#hero p {
  font-size: 1rem;
  margin: 0;
}
.page-home #hero {
  padding: 0;
}
.page-home #hero .container {
  height: calc(100vh - 117px);
  min-height: 575px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-home #hero .container.has-banner {
  height: calc(100vh - 138px);
}
.page-home #hero h1 {
  font-size: 8rem;
  line-height: 0.9;
}
@media (max-width: 991px) {
  .page-home #hero h1 {
    font-size: 12vw;
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .page-home #hero h1 {
    font-size: 17vw;
  }
}
.page-home #hero p {
  font-size: 1.375rem;
  line-height: 1.1;
}
@media (min-width: 576px) {
  .page-home #hero p {
    max-width: 70%;
  }
}
@media (min-width: 1200px) {
  .page-home #hero p {
    max-width: 50%;
  }
}
.page-home #hero .hero-buttons {
  margin-top: 2rem;
}
.page-home #hero .hero-buttons .btn-large {
  margin: 0 0 0.55em;
  padding: 0.75em 3em 0.6em;
}
.page-home #hero .hero-buttons .btn-large:hover, .page-home #hero .hero-buttons .btn-large:focus {
  background: white;
  border-color: white;
  color: #ce1a11;
}
#hero.dark-bg {
  background: black;
}
#hero.dark-bg h1,
#hero.dark-bg p {
  color: white;
}

@media (min-width: 1000px) {
  #join,
  #join-popup {
    padding: 4.5rem 0;
  }
}
#join .subscribe small,
#join-popup .subscribe small {
  opacity: 1;
}
#join .subscribe h2,
#join-popup .subscribe h2 {
  font-size: 48px;
  line-height: 1;
}
@media (max-width: 575px) {
  #join .subscribe h2,
  #join-popup .subscribe h2 {
    font-size: 32px;
    line-height: 35.2px;
  }
}
#join .subscribe h2 span,
#join-popup .subscribe h2 span {
  color: #ce1a11;
}
@media (min-width: 576px) {
  #join .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email,
  #join .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--email,
  #join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--email,
  #join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email,
  #join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email,
  #join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--email,
  #join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--email,
  #join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email {
    flex: 0 0 calc(100% - 170px);
    width: calc(100% - 170px);
  }
}
#join .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email input.email,
#join .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--email input.email,
#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--email input.email,
#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email input.email,
#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email input.email,
#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--email input.email,
#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--email input.email,
#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email input.email {
  background: black;
  border: 1px solid #767676;
  width: calc(100% - 1rem);
  border-radius: 0.25em;
  color: white;
  padding: 0.9rem 0.55rem 0.8rem;
}
@media (max-width: 575px) {
  #join .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email input.email,
  #join .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--email input.email,
  #join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--email input.email,
  #join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email input.email,
  #join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email input.email,
  #join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--email input.email,
  #join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--email input.email,
  #join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email input.email {
    width: 100%;
  }
}
#join .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--submit,
#join .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--submit,
#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--submit,
#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--submit,
#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--submit,
#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--submit,
#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--submit,
#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--submit {
  flex: 0 0 170px;
  width: 170px;
}
@media (min-width: 576px) {
  #join .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--submit,
  #join .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--submit,
  #join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--submit,
  #join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--submit,
  #join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--submit,
  #join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--submit,
  #join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--submit,
  #join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--submit {
    padding-top: 22.4px;
  }
}
#join .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--submit .btn-large,
#join .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--submit .btn-large,
#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--submit .btn-large,
#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--submit .btn-large,
#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--submit .btn-large,
#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup .input--submit .btn-large,
#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll .input--submit .btn-large,
#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--submit .btn-large {
  padding: 0.65em 1.5em 0.5em;
  min-width: 0;
}
#join .subscribe #mc_embed_signup #mc_embed_signup_scroll label,
#join .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup label,
#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll label,
#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup label,
#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll label,
#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll_popup label,
#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll label,
#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup label {
  display: block;
  color: white;
  font-family: "Financier", serif;
  font-style: italic;
  margin-bottom: 0.2rem;
}
#join .recent-news h2,
#join-popup .recent-news h2 {
  font-family: "Financier", serif;
  font-style: italic;
  font-size: 24px;
  color: #767676;
  margin-bottom: 0.2rem;
  line-height: 1;
  padding: 0;
}
#join .recent-news .posts-container,
#join-popup .recent-news .posts-container {
  padding-bottom: 2rem;
}
#join .recent-news .posts-container h3,
#join-popup .recent-news .posts-container h3 {
  color: #767676;
  font-size: 1rem;
}
#join .recent-news .posts-container .newsletter-part:first-of-type,
#join-popup .recent-news .posts-container .newsletter-part:first-of-type {
  border-top: 1px solid rgba(204, 204, 204, 0.8);
}
#join .recent-news a,
#join-popup .recent-news a {
  padding-top: 1rem;
}
.join-dark #join,
.join-dark #join-popup {
  background: black;
  color: white;
}
.join-dark #join input,
.join-dark #join-popup input {
  background: transparent;
  color: white;
}
.join-dark #join input:hover, .join-dark #join input:focus,
.join-dark #join-popup input:hover,
.join-dark #join-popup input:focus {
  background: white;
  color: black;
}
.join-dark #join .btn-black,
.join-dark #join-popup .btn-black {
  border-color: white;
  color: white;
}
.join-dark #join .btn-black:hover, .join-dark #join .btn-black:focus,
.join-dark #join-popup .btn-black:hover,
.join-dark #join-popup .btn-black:focus {
  background: white;
  color: black;
}
@media (max-width: 999px) {
  #join .column:not(:last-of-type),
  #join-popup .column:not(:last-of-type) {
    padding-bottom: 3rem;
  }
}

.wp-block-embed-datawrapper {
  padding: 3rem 0;
  margin-bottom: 0;
  border-bottom: 1px solid #767676;
}
.wp-block-embed-datawrapper:last-of-type {
  border-bottom: none;
}

.form--pop-up#join, .form--pop-up#join-popup {
  border-radius: 1rem;
  background: #000;
  color: #fff;
  position: sticky;
  top: 3rem;
  padding: 1.5rem;
  transition: 0.2s linear opacity;
}
.form--pop-up#join.hidden, .form--pop-up#join-popup.hidden {
  opacity: 0;
  pointer-events: none;
}
.form--pop-up#join h2, .form--pop-up#join-popup h2 {
  font-size: 1.75rem;
}
.form--pop-up#join button.exit, .form--pop-up#join-popup button.exit {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  margin: 0;
  height: 1.7rem;
  width: 1.7rem;
  border-radius: 5rem;
  text-align: center;
  padding: 0.2rem;
  background: none;
  border: 1px solid #fff;
}
.form--pop-up#join button.exit:hover, .form--pop-up#join button.exit:focus, .form--pop-up#join-popup button.exit:hover, .form--pop-up#join-popup button.exit:focus {
  background: white;
  color: black;
}
.form--pop-up#join a, .form--pop-up#join-popup a {
  margin-top: 1.5rem;
  display: inline-block;
  color: white;
}
.form--pop-up#join a:hover, .form--pop-up#join a:focus, .form--pop-up#join a:active, .form--pop-up#join-popup a:hover, .form--pop-up#join-popup a:focus, .form--pop-up#join-popup a:active {
  text-decoration: underline;
}
.form--pop-up#join .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email,
.form--pop-up#join .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--submit,
.form--pop-up#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email,
.form--pop-up#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--submit, .form--pop-up#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email,
.form--pop-up#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--submit,
.form--pop-up#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email,
.form--pop-up#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--submit {
  flex: unset;
  width: unset;
}
.form--pop-up#join .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email,
.form--pop-up#join .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email, .form--pop-up#join-popup .subscribe #mc_embed_signup #mc_embed_signup_scroll .input--email,
.form--pop-up#join-popup .subscribe #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email {
  flex: 1;
}
@media (min-width: 1200px) {
  .form--pop-up#join h2, .form--pop-up#join-popup h2 {
    margin-right: 3rem;
  }
}
@media (max-width: 1199px) {
  .form--pop-up#join .subscribe, .form--pop-up#join-popup .subscribe {
    margin-top: 0.5rem;
  }
  .form--pop-up#join a, .form--pop-up#join-popup a {
    margin-right: 3rem;
  }
}
@media (max-width: 575px) {
  .form--pop-up#join h2, .form--pop-up#join-popup h2 {
    font-size: 1.35rem;
    line-height: 1.2;
  }
  .form--pop-up#join a, .form--pop-up#join-popup a {
    margin-right: 1.6rem;
    position: absolute;
    right: 0;
    bottom: 2.2rem;
    font-size: 14px;
  }
}
.form--site-wide#join, .form--site-wide#join-popup {
  border-radius: 1rem;
  position: fixed;
  z-index: 10;
  bottom: 3rem;
  top: unset;
  right: 0;
  width: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 999px) {
  .form--site-wide#join, .form--site-wide#join-popup {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}
@media (max-width: 767px) and (min-width: 450px) {
  .form--site-wide#join, .form--site-wide#join-popup {
    width: 50%;
    left: unset;
  }
  .form--site-wide#join a, .form--site-wide#join-popup a {
    position: unset;
  }
}
.page-newsletter .form--site-wide#join, .page-newsletter .form--site-wide#join-popup {
  display: none;
}
@media (min-width: 1000px) {
  .form--newsletter {
    display: none;
  }
}
@media (max-width: 1199px) {
  .form--newsletter-sidebar #mc_embed_signup #mc_embed_signup_scroll,
  .form--newsletter-sidebar #mc_embed_signup_popup #mc_embed_signup_scroll_popup {
    flex-direction: column;
  }
  .form--newsletter-sidebar #mc_embed_signup #mc_embed_signup_scroll .input--email input.email,
  .form--newsletter-sidebar #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--email input.email {
    width: 100%;
  }
  .form--newsletter-sidebar #mc_embed_signup #mc_embed_signup_scroll .input--submit,
  .form--newsletter-sidebar #mc_embed_signup_popup #mc_embed_signup_scroll_popup .input--submit {
    padding-top: 0.5rem;
  }
}
@media (max-width: 999px) {
  .form--newsletter-sidebar {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
body.menu,
body.mega {
  overflow: hidden;
}

body {
  display: flex;
  flex-wrap: nowrap;
}

.button--menu {
  background: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
  color: black;
  z-index: 15;
  height: 30px;
  width: 30px;
}
.button--menu .button-cross {
  position: relative;
  height: 20px;
  width: 20px;
  margin: auto;
  transition: 0.3s ease all;
  transform: rotate(0deg);
}
.button--menu .button-cross span.cross-line {
  position: absolute;
  width: 16px;
  height: 1px;
  background: #ce1a11;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.button--menu .button-cross span.cross-line:last-of-type {
  transform: translate(-50%, -50%) rotate(90deg);
}
.button--menu .button-label {
  position: relative;
}
.button--menu .button-label span {
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translate(-50%, 0);
  font-size: 14px;
  color: gray;
  transition: 0.15s ease all;
  width: 80px;
}
.button--menu .button-label span.aside-close {
  opacity: 0;
}
.button--menu:focus-visible {
  box-shadow: 2px 0 lightblue;
}
.button--menu.button-active .button-cross {
  transform: rotate(315deg);
}
.button--menu.button-active .button-label span.aside-close {
  opacity: 1;
}
.button--menu.button-active .button-label span.aside-menu {
  opacity: 0;
}

.aside-bar {
  z-index: 6;
  position: fixed;
  width: 100%;
}
.aside-bar .aside-bar--mega {
  width: calc(100% - 96px);
  height: 100%;
  height: 100vh;
  position: absolute;
  right: 0;
  background: black;
  color: white;
  padding: 3rem 5rem;
  overflow: scroll;
  transition: transform 0.2s linear;
  transform: translateX(-100%);
}
.aside-bar .aside-bar--bar {
  height: 100%;
  min-height: 100vh;
  width: 96px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 0.5px solid #767676;
  position: absolute;
  left: 0;
  transition: all 0.2s linear;
}
.aside-bar .aside-bar--bar.bar-black {
  background: black;
  transition: all 0.2s linear;
  border-color: #444;
}
.aside-bar .aside-bar--bar.bar-black .button-label > span {
  color: white;
}
.aside-bar .aside-bar--bar.bar-black svg path,
.aside-bar .aside-bar--bar.bar-black svg rect {
  fill: white;
}
.aside-bar .aside-bar--bar.bar-black svg .cls-1 {
  fill: #ce1a11;
}
.aside-bar .aside-bar--button {
  position: absolute;
  top: 2.5rem;
}
.aside-bar.open .aside-bar--mega {
  transform: translateX(0);
}
.aside-bar img,
.aside-bar svg {
  width: 40px;
}
@media (max-width: 999px) {
  .aside-bar {
    display: none;
  }
}

.body-inner-wrapper {
  position: relative;
  max-width: 100%;
}
@media (min-width: 1000px) {
  .body-inner-wrapper {
    width: calc(100% - 96px);
    left: 96px;
  }
}

.head-nav-wrapper {
  position: relative;
  z-index: 5;
  background-color: white;
}
.page-home .head-nav-wrapper {
  background: black;
}
.head-nav-wrapper.fixed-scrolling {
  position: fixed;
  width: 100%;
}
.head-nav-wrapper.fixed-scrolling.sticky-active header.over-image-hero {
  background: var(--color--brand);
  color: #fff;
}
@keyframes sticky-down {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes sticky-up {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -100%);
  }
}

.search-bar {
  position: relative;
  display: flex;
  z-index: 10;
}
.search-bar .search-form {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10;
}
.search-bar .search-btn {
  background: none;
  padding: 0 2px;
  margin: 0 5px;
  color: var(--color--accent);
}
.search-bar .search-btn:hover {
  color: var(--color--link-hover);
}
.search-bar .search-btn svg {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .search-bar {
    margin-right: 30px;
  }
}

.search-form {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
}
.search-form:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.8;
}
.search-form .search-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  height: 100%;
  width: 85%;
  max-width: 700px;
  margin: auto;
}
.search-form .close-btn {
  text-align: right;
  padding: 0 10px 10px;
  width: 100%;
}
.search-form .close-btn .svg-btn-wrapper {
  font-size: 20px;
  color: white;
  cursor: pointer;
}
.search-form form {
  display: flex;
  align-items: baseline;
  width: 100%;
  border: 2px solid var(--color--link);
}
.search-form form input {
  border-radius: 0;
  background: none;
  line-height: 1;
  font-size: 20px;
  padding: 15px;
  color: white;
}
.search-form form input:hover, .search-form form input:focus, .search-form form input:active {
  color: white;
  box-shadow: none;
}
.search-form form input[type=search] {
  background: none;
  text-align: left;
}
.search-form form input[type=submit] {
  background: var(--color--link);
}

.header-wrapper {
  position: relative;
}

header {
  transition: 0.3s ease background;
  padding-top: 15px;
}
header .container,
header ul.menu,
header ul.social-menu,
header .nav-main-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .container {
  justify-content: space-between;
  position: relative;
  padding-right: 0;
}
@media (max-width: 999px) {
  header .container {
    max-width: 100%;
  }
}
header .large-btn {
  margin: 0.75rem 0;
}
header .header-part,
header .mobile-nav-header {
  display: flex;
  flex-direction: column;
}
header .header-part .header-logo,
header .mobile-nav-header .header-logo {
  position: relative;
  z-index: 3;
  padding: 1em 0;
  width: 70px;
  width: 17px;
  margin: -20px 0;
}
header .header-part .header-logo img,
header .mobile-nav-header .header-logo img {
  max-height: 24px;
}
.page-home header .header-part .header-logo svg path,
.page-home header .header-part .header-logo svg rect, .page-newsletter header .header-part .header-logo svg path,
.page-newsletter header .header-part .header-logo svg rect,
.page-home header .mobile-nav-header .header-logo svg path,
.page-home header .mobile-nav-header .header-logo svg rect,
.page-newsletter header .mobile-nav-header .header-logo svg path,
.page-newsletter header .mobile-nav-header .header-logo svg rect {
  fill: white;
  transition: fill 0.01s linear;
  transition-delay: 0.3s;
}
.page-home header .header-part .header-logo svg .st0, .page-newsletter header .header-part .header-logo svg .st0,
.page-home header .mobile-nav-header .header-logo svg .st0,
.page-newsletter header .mobile-nav-header .header-logo svg .st0 {
  fill: #ce1a11;
}
.page-home.menu header .header-part .header-logo svg path,
.page-home.menu header .header-part .header-logo svg rect, .page-newsletter.menu header .header-part .header-logo svg path,
.page-newsletter.menu header .header-part .header-logo svg rect,
.page-home.menu header .mobile-nav-header .header-logo svg path,
.page-home.menu header .mobile-nav-header .header-logo svg rect,
.page-newsletter.menu header .mobile-nav-header .header-logo svg path,
.page-newsletter.menu header .mobile-nav-header .header-logo svg rect {
  fill: black;
}
.page-home.menu header .header-part .header-logo svg .st0, .page-newsletter.menu header .header-part .header-logo svg .st0,
.page-home.menu header .mobile-nav-header .header-logo svg .st0,
.page-newsletter.menu header .mobile-nav-header .header-logo svg .st0 {
  fill: #ce1a11;
}
@media (min-width: 1000px) {
  header .header-part .header-logo,
  header .mobile-nav-header .header-logo {
    display: none;
  }
}
header .header-part nav.nav-menu,
header .mobile-nav-header nav.nav-menu {
  padding: 1em 0;
}
header .header-part ul.menu,
header .mobile-nav-header ul.menu {
  justify-content: flex-end;
}
header .header-part ul.menu li,
header .mobile-nav-header ul.menu li {
  position: relative;
  margin-left: 1rem;
}
header .header-part ul.menu li:first-of-type,
header .mobile-nav-header ul.menu li:first-of-type {
  margin-left: 0;
}
header .header-part ul.menu li a,
header .mobile-nav-header ul.menu li a {
  padding: 0;
  padding-top: 0.325em;
  margin-right: 0.25rem;
  display: block;
  font-size: 0.875rem;
  color: #767676;
  border-bottom: 2px solid transparent;
  transition: all 0.4s linear;
}
.page-home header .header-part ul.menu li a,
.page-home header .mobile-nav-header ul.menu li a {
  color: white;
}
header .header-part ul.menu li a:hover,
header .mobile-nav-header ul.menu li a:hover {
  border-color: #ce1a11;
  transition: all 0.2s linear;
}
header .header-part ul.menu li.current-menu-item a,
header .mobile-nav-header ul.menu li.current-menu-item a {
  border-color: #ce1a11;
  transition: all 0.2s linear;
}
header .header-part ul.menu ul.sub-menu,
header .mobile-nav-header ul.menu ul.sub-menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  position: absolute;
  background-color: var(--color--brand-light);
  top: 100%;
  left: 50%;
  margin-left: -90px;
  z-index: -1;
  min-width: 200px;
}
.theme-light header .header-part ul.menu ul.sub-menu,
.theme-light header .mobile-nav-header ul.menu ul.sub-menu {
  background-color: var(--color--brand-dark);
}
header .header-part ul.menu ul.sub-menu li,
header .mobile-nav-header ul.menu ul.sub-menu li {
  margin: 0;
  padding: 0;
  line-height: 1;
}
header .header-part ul.menu ul.sub-menu li:hover,
header .mobile-nav-header ul.menu ul.sub-menu li:hover {
  background-color: var(--color--accent);
  transition: 0.15s ease all;
}
header .header-part ul.menu ul.sub-menu li:hover > a,
header .mobile-nav-header ul.menu ul.sub-menu li:hover > a {
  color: white;
}
header .header-part ul.menu ul.sub-menu li a,
header .mobile-nav-header ul.menu ul.sub-menu li a {
  visibility: hidden;
  color: var(--color--text);
  padding: 10px 15px;
  margin: 0;
  display: block;
  text-align: center;
}
.theme-light header .header-part ul.menu ul.sub-menu li a,
.theme-light header .mobile-nav-header ul.menu ul.sub-menu li a {
  color: var(--color--brand-light);
}
header .header-part ul.menu ul.sub-menu:before,
header .mobile-nav-header ul.menu ul.sub-menu:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--color--brand-light);
  transform: rotate(45deg);
  top: -5px;
  left: 50%;
  margin-left: -10px;
}
.theme-light header .header-part ul.menu ul.sub-menu:before,
.theme-light header .mobile-nav-header ul.menu ul.sub-menu:before {
  background: var(--color--brand-dark);
}
header .header-part ul.menu ul.sub-menu ul.sub-menu,
header .mobile-nav-header ul.menu ul.sub-menu ul.sub-menu {
  position: absolute;
  left: 100%;
  margin: 0;
  top: 0;
}
header .header-part ul.menu ul.sub-menu ul.sub-menu:before,
header .mobile-nav-header ul.menu ul.sub-menu ul.sub-menu:before {
  left: 0px;
  top: 8px;
}
header .header-part ul.menu li.menu-item:hover > ul.sub-menu,
header .mobile-nav-header ul.menu li.menu-item:hover > ul.sub-menu {
  transition: 0.15s ease all;
  transform: translateY(0px);
  opacity: 1;
  z-index: 1;
}
header .header-part ul.menu li.menu-item:hover > ul.sub-menu, header .header-part ul.menu li.menu-item:hover > ul.sub-menu > li > a,
header .mobile-nav-header ul.menu li.menu-item:hover > ul.sub-menu,
header .mobile-nav-header ul.menu li.menu-item:hover > ul.sub-menu > li > a {
  visibility: visible;
}
header .header-part .misc-menu,
header .mobile-nav-header .misc-menu {
  display: flex;
}
header .header-part .misc-menu.not-empty,
header .mobile-nav-header .misc-menu.not-empty {
  margin-left: 20px;
  padding: 1em 0;
}
header .header-part nav.social,
header .mobile-nav-header nav.social {
  display: flex;
}
header .header-part nav.social li,
header .mobile-nav-header nav.social li {
  padding: 0 2px;
  margin: 0 5px;
}
header .mobile-buttons {
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
header .mobile-buttons.mobile-left {
  right: unset;
}
header .mobile-buttons .search-bar {
  margin-right: 10px;
}
header .navbar-toggle.button--menu {
  margin-top: -10px;
  transform: translate(0, -50%);
  left: unset;
}
header .mobile-menu #mobile-nav ul,
header .mobile-menu .top-bar-nav ul {
  flex-direction: column;
}
header .mobile-menu #mobile-nav ul li,
header .mobile-menu .top-bar-nav ul li {
  margin: 8px 0;
  font-size: 22px;
}
header .mobile-menu #mobile-nav ul li a,
header .mobile-menu .top-bar-nav ul li a {
  width: 100%;
  display: block;
}
header .mobile-menu .social {
  margin-top: 15px;
}
header .mobile-menu .social li {
  margin: 0 10px;
}
header .mobile-menu.drop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color--brand-dark);
  z-index: 4;
}
header .mobile-menu.drop .mobile-wrapper {
  padding: 0 2rem 2rem;
  height: 100vh;
  text-align: left;
  overflow: scroll;
}
header .mobile-menu.drop .mobile-nav-header {
  background: white;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px 30px;
  margin: 0 -2rem 0rem;
  position: fixed;
  width: 100%;
  z-index: 1;
}
header .mobile-menu.drop .mobile-nav-header .navbar-toggle {
  position: relative;
}
header .mobile-menu.drop .mobile-nav-header .navbar-toggle .icon-bar {
  background: #000;
}
header .mobile-menu.drop #mobile-nav {
  padding-top: 9rem;
}
header .mobile-menu.drop #mobile-nav ul {
  text-align: left;
  align-items: flex-start;
}
header .mobile-menu.drop #mobile-nav ul li {
  font-size: 2.25em;
  margin-bottom: 0.75em;
  padding-bottom: 0.125rem;
}
header .mobile-menu.drop #mobile-nav ul li a {
  color: white;
}
header .mobile-menu.drop #mobile-nav ul li.current-menu-item {
  border-bottom: 2px solid #ce1a11;
}
header .mobile-menu.drop .book-page-top-nav-mobile ul {
  padding: 0;
}
header .mobile-menu.drop .social ul {
  justify-content: flex-start;
}
header .mobile-menu.drop .aside--mobile {
  margin-top: 4rem;
  margin-bottom: 5rem;
}
header .mobile-menu.drop .aside--mobile span.h4 {
  color: white;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid white;
  display: block;
}
header .mobile-menu.drop .aside--mobile .okr--part.okr--objective {
  flex: 0 0 100%;
  max-width: 100%;
}
header .mobile-menu.drop .aside--mobile .okr--part.okr--objective .okr-pill {
  padding-left: 4.5rem;
}
@media (max-width: 450px) {
  header .mobile-menu.drop .aside--mobile .okr--part.okr--objective .okr-pill {
    font-size: 1.8rem;
  }
}
@media (max-width: 350px) {
  header .mobile-menu.drop .aside--mobile .okr--part.okr--objective .okr-pill {
    font-size: 1.3rem;
  }
}
header .mobile-menu.drop .btn:hover, header .mobile-menu.drop .btn:focus {
  border-color: white;
}
@media (min-width: 1000px) {
  header .mobile-buttons {
    display: none;
  }
}
@media (max-width: 999px) {
  header .header-part #main-nav {
    display: none;
  }
  header .container > .order-book-btn {
    display: none;
  }
}

.signup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(62, 62, 62, 0.8);
  z-index: 100;
  display: none;
}

.signup_overlay_inner {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup_holder {
  width: 700px;
  background: black;
  position: relative;
  padding: 5%;
  box-sizing: border-box;
}

.signup_holder .input--email {
  width: 100%;
}

.signup_holder div#mc_embed_signup_scroll .input--email label {
  display: block;
  color: white;
  font-family: "Financier", serif;
  font-style: italic;
  margin-bottom: 0.2rem;
  width: 100%;
  float: left;
}

.signup_holder input#mce-EMAIL {
  background: transparent !important;
  border: 1px solid #767676 !important;
  width: calc(100% - 1rem) !important;
  border-radius: 0.25em;
  color: white !important;
  padding: 0.9rem 0.55rem 0.8rem !important;
}

.signup_holder .input--submit {
  display: flex;
  align-items: flex-end;
}

button.newsletter_close {
  width: 25px;
  height: 25px;
  padding: 0px;
  background: transparent;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  border-radius: 50%;
}

button.newsletter_close:hover {
  transition: background 300ms;
  -webkit-transition: background 300ms;
  background: white;
}

.signup_copy {
  color: white;
}

.signup_eyebrow {
  color: white;
}

.signup_copy h2 {
  padding: 0.3em 0 0.65em;
  font-size: 48px;
  line-height: 1;
}

.signup_copy h2 span {
  color: #ce1a11;
}

.page-home .head-nav-wrapper,
.page-newsletter .head-nav-wrapper {
  background-color: black;
}
.page-home .head-nav-wrapper header .header-part ul.menu li a,
.page-home .head-nav-wrapper header .mobile-nav-header ul.menu li a,
.page-newsletter .head-nav-wrapper header .header-part ul.menu li a,
.page-newsletter .head-nav-wrapper header .mobile-nav-header ul.menu li a {
  color: white;
}

.page-home #hero .container {
  position: relative;
  z-index: 1;
}
.page-home #hero #arrows .arrow {
  display: inline-block;
  position: absolute;
  z-index: 2;
}
.page-home #hero #arrows .arrow .symbol {
  display: block;
  font-size: 2rem;
  line-height: 1;
  height: 0.75em;
  text-align: center;
}
.page-home #hero #arrows .arrow .status {
  display: block;
  color: black;
  text-align: center;
  padding: 0.3rem 0.875rem 0.1rem;
  border-radius: 1rem;
  line-height: 1.1;
  font-size: 0.75rem;
  margin: 0.35rem;
}
.page-home #hero #arrows .arrow--red a {
  color: #ce1a11;
}
.page-home #hero #arrows .arrow--red a .status {
  background: #ce1a11;
  color: white;
}
.page-home #hero #arrows .arrow--orange a {
  color: #ffa538;
}
.page-home #hero #arrows .arrow--orange a .status {
  background: #ffa538;
  color: black;
}
.page-home #hero #arrows .arrow--blue a {
  color: #0736e1;
}
.page-home #hero #arrows .arrow--blue a .status {
  background: #0736e1;
  color: white;
}
.page-home #hero #arrows .arrow--green a {
  color: #c9dd41;
}
.page-home #hero #arrows .arrow--green a .status {
  background: #c9dd41;
  color: black;
}
.page-home #hero #arrows .arrow--yellow a {
  color: hsl(52, 100%, 68%);
  display: flex;
  align-items: center;
}
.page-home #hero #arrows .arrow--yellow a .status {
  background: hsl(52, 100%, 68%);
  color: black;
}
.page-home #hero #arrows .arrow--red {
  top: 40%;
  right: 8%;
}
@media (max-width: 1200px) {
  .page-home #hero #arrows .arrow--red {
    right: 3%;
  }
}
@media (max-width: 991px) {
  .page-home #hero #arrows .arrow--red {
    top: 50%;
  }
}
@media (max-width: 767px) {
  .page-home #hero #arrows .arrow--red {
    top: 40%;
  }
}
@media (max-width: 575px) {
  .page-home #hero #arrows .arrow--red {
    top: 16%;
    right: 3%;
  }
}
.page-home #hero #arrows .arrow--orange {
  bottom: 20%;
  right: 42%;
}
@media (max-width: 1200px) {
  .page-home #hero #arrows .arrow--orange {
    right: 35%;
  }
}
@media (max-width: 767px) {
  .page-home #hero #arrows .arrow--orange {
    right: initial;
    left: 9%;
    bottom: 10%;
  }
}
.page-home #hero #arrows .arrow--blue {
  top: 5%;
  right: 30%;
}
@media (max-width: 575px) {
  .page-home #hero #arrows .arrow--blue {
    top: 0;
    right: 50%;
  }
}
.page-home #hero #arrows .arrow--green {
  bottom: 40%;
  right: 23%;
}
@media (max-width: 1200px) {
  .page-home #hero #arrows .arrow--green {
    right: 15%;
  }
}
@media (max-width: 991px) {
  .page-home #hero #arrows .arrow--green {
    bottom: 30%;
  }
}
@media (max-width: 767px) {
  .page-home #hero #arrows .arrow--green {
    bottom: 42%;
    right: 11%;
  }
}
@media (max-width: 575px) {
  .page-home #hero #arrows .arrow--green {
    bottom: 17%;
    right: 6%;
  }
}
.page-home #hero #arrows .arrow--yellow {
  bottom: 10%;
  right: 15%;
}
@media (max-width: 767px) {
  .page-home #hero #arrows .arrow--yellow {
    bottom: 18%;
  }
}
@media (max-width: 575px) {
  .page-home #hero #arrows .arrow--yellow {
    bottom: 7%;
    right: 14%;
  }
}
.page-home #hero #arrows .arrow--single {
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
}
.page-home #hero #arrows .arrow--single.arrow--yellow {
  top: 10%;
  left: 30%;
}
@media (max-width: 575px) {
  .page-home #hero #arrows .arrow--single.arrow--yellow {
    top: 10%;
    left: 10%;
  }
}
.page-home #hero #arrows .arrow--single.arrow--green {
  bottom: 2rem;
  right: 3rem;
}
@media (max-width: 575px) {
  .page-home #hero #arrows .arrow--single.arrow--green {
    display: none;
  }
}
.page-home #hero #arrows .arrow--single.arrow--blue {
  bottom: 8%;
  left: 40%;
}
@media (max-width: 575px) {
  .page-home #hero #arrows .arrow--single.arrow--blue {
    left: 30%;
    bottom: 3%;
  }
}
.page-home #hero #arrows .arrow--single.arrow--orange {
  top: 15%;
  right: 15%;
}
@media (max-width: 575px) {
  .page-home #hero #arrows .arrow--single.arrow--orange {
    top: 7%;
    right: 33%;
  }
}

@keyframes arrow-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(0);
  }
}
.arrow--down {
  animation: arrow-down 6s infinite;
}

@keyframes arrow-up {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
.arrow--up {
  animation: arrow-up 6s infinite;
}

@keyframes arrow-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15%);
  }
  100% {
    transform: translateX(0);
  }
}
.arrow--right {
  animation: arrow-right 6s infinite;
}

.page-home .home-hero-banner div {
  color: white;
  text-align: center;
  text-decoration-thickness: 1px;
  padding: 0.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
}
.page-home .half-width-part {
  width: 100%;
}
@media (min-width: 1000px) {
  .page-home .half-width-part {
    width: 50%;
  }
}
@media (min-width: 601px) {
  .page-home .half-width-part {
    width: 75%;
  }
}
.page-home h3 {
  color: #ce1a11;
}
.page-home #quotes:before,
.page-home .okr-summary:before {
  content: "";
  position: absolute;
  border-bottom: 1px solid black;
  bottom: 0;
  left: 0;
  width: calc(100% - 60px);
  margin: 0 30px;
}
.page-home #hero.dark-bg {
  background-color: black;
  color: white;
}
.page-home #hero.dark-bg .content {
  margin-right: auto;
}
.page-home .okr-summary .section-title h2,
.page-home .resources .section-title h2 {
  padding-top: 0;
  font-size: 5.6rem;
  padding-bottom: 0.3em;
}
@media (max-width: 767px) {
  .page-home .okr-summary .section-title h2,
  .page-home .resources .section-title h2 {
    font-size: 3rem;
  }
}
.page-home .okr-summary p {
  font-size: 1.375rem;
  line-height: 1.1;
}
@media (min-width: 576px) {
  .page-home .okr-summary p {
    max-width: 70%;
  }
}
@media (min-width: 1200px) {
  .page-home .okr-summary p {
    max-width: 50%;
  }
}
.page-home .news-list article:first-of-type {
  padding-top: 1.5rem;
  border-top: 1px solid #767676;
}
.page-home .news-list .article-part {
  width: 100%;
}
.page-home .news-list.twitter-feed {
  padding: 0 15px;
  width: 107%;
  padding-right: 0;
}
.page-home .news-list.twitter-feed .directional-icons {
  position: absolute;
  top: 18px;
  right: 50px;
}
@media (max-width: 1440px) {
  .page-home .news-list.twitter-feed .directional-icons {
    right: 30px;
  }
}
@media (max-width: 600px) {
  .page-home .news-list.twitter-feed .directional-icons {
    right: 15px;
  }
}
@media (max-width: 450px) {
  .page-home .news-list.twitter-feed .directional-icons {
    right: 0;
  }
}
.page-home .news-list.twitter-feed .directional-icons a {
  color: black;
}
.page-home .news-list.twitter-feed .directional-icons a:hover {
  color: #ce1a11;
}
.page-home .news-list.twitter-feed #ctf .ctf-tweet-items {
  display: flex;
  flex-wrap: nowrap;
  cursor: ew-resize;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2rem;
  scrollbar-gutter: stable;
  scrollbar-color: #ce1a11 #e4e4e4;
}
.page-home .news-list.twitter-feed #ctf .ctf-tweet-items::-webkit-scrollbar {
  height: 0.5rem;
}
.page-home .news-list.twitter-feed #ctf .ctf-tweet-items::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 4rem 0 0 4rem;
}
.page-home .news-list.twitter-feed #ctf .ctf-tweet-items::-webkit-scrollbar-thumb {
  background-color: #ce1a11;
  border-radius: 4rem 0 0 4rem;
}
.page-home .news-list.twitter-feed #ctf .ctf-tweet-items .ctf-item {
  flex: 0 0 26.6vw;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 15px;
  margin-right: 15px;
}
@media (max-width: 1199px) {
  .page-home .news-list.twitter-feed #ctf .ctf-tweet-items .ctf-item {
    flex: 0 0 39.5vw;
  }
}
@media (max-width: 999px) {
  .page-home .news-list.twitter-feed #ctf .ctf-tweet-items .ctf-item {
    flex: 0 0 38.5vw;
  }
}
@media (max-width: 600px) {
  .page-home .news-list.twitter-feed #ctf .ctf-tweet-items .ctf-item {
    flex: 0 0 77vw;
  }
}
.page-home .resources .article-part[isResource=true] {
  width: 100%;
}
@media (min-width: 600px) {
  .page-home .resources .article-part[isResource=true] {
    display: flex;
    margin-bottom: 1.5rem;
  }
  .page-home .resources .article-part[isResource=true] a.post-image {
    flex: 0 0 175px;
    border-radius: 0.675rem 0 0 0.675rem;
    padding: 0;
  }
  .page-home .resources .article-part[isResource=true] .post-content {
    border-radius: 0 0.675rem 0.675rem 0;
    border-top: 1px solid #999;
    border-left: 0;
    margin: 0;
    flex: 1;
  }
  .page-home .resources .article-part[isResource=true] .post-content h2 {
    font-size: 1.675rem;
  }
}
@media (max-width: 1199px) {
  .page-home .resources .article-part[isResource=true] a.post-image {
    flex: 0 0 30%;
  }
  .page-home .resources .article-part[isResource=true] .post-content {
    flex: 0 0 70%;
  }
}
.page-home .resources .article-part[isResource=true]:not(.has-image) .post-content {
  border-left: 1px solid #999;
  border-radius: 0.675rem;
}
@media (max-width: 1199px) {
  .page-home .resources .article-part[isResource=true]:not(.has-image) .post-content {
    flex: 0 0 100%;
  }
}
.page-home .resources .latest-posts .article-part h2 {
  font-size: 2rem;
}
.page-home .resources .excerpt {
  display: none;
}

.latest-posts.news-list {
  position: relative;
}

#ctf p.ctf-tweet-text {
  font-size: 0.875rem;
  font-family: "Plain-Light", sans-serif;
}

.ctf-carousel.ctf-owl-drag .ctf-owl-item {
  border-radius: 20px;
  margin-right: 1.4vw;
  width: 19.4vw !important;
  border: 1px solid #666;
  padding: 0 15px;
}

#ctf.ctf-narrow .ctf-author-avatar {
  margin-left: -46px;
  border: 1px solid #666;
  border-radius: 70px;
}

.ctf-carousel .ctf-owl-stage {
  padding-left: 1px;
}

.ctf-owl-nav {
  max-width: 80px;
  position: absolute;
  top: -74px;
  left: calc(100vw - 362px);
  width: 80px;
}
.ctf-owl-nav .ctf-owl-prev {
  left: 0;
}

#ctf .ctf-twitter-card p,
#ctf .ctf-quoted-tweet p,
#ctf .ctf-twitter-card p.ctf-tc-desc {
  line-height: 1.2;
  font-size: 0.875rem;
  font-weight: 300;
}

#ctf .ctf-twitter-card .ctf-tc-heading {
  font-weight: 500;
  line-height: 1.2;
  font-size: 0.875rem;
}

.page-book .body-inner-wrapper {
  overflow: hidden;
}
.page-book main {
  overflow: visible;
}
.page-book .head-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 100vh;
}
.page-book .head-nav-wrapper .header-wrapper {
  position: fixed;
  top: 0;
  padding-bottom: 45px;
  width: calc(100% - 96px);
}
.page-book .head-nav-wrapper .header-wrapper.unsticky {
  position: absolute;
  bottom: 0px;
  top: unset;
  width: 100%;
}
@media (max-width: 999px) {
  .page-book .head-nav-wrapper .header-wrapper header {
    background: transparent;
  }
}
@media (max-width: 999px) {
  .page-book .head-nav-wrapper .header-wrapper {
    width: 100%;
  }
}
.page-book .book-page-top-nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 15px 260px 0 0;
}
.page-book .book-page-top-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-book .book-page-top-nav ul li {
  position: relative;
  margin-left: 20px;
}
.page-book .book-page-top-nav ul li a {
  padding: 0;
  margin-right: 0.25rem;
  display: block;
  font-size: 0.875rem;
  color: gray;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.page-book .book-page-top-nav ul li a:hover {
  border-color: #ce1a11;
}
@media (max-width: 767px) {
  .page-book .book-page-top-nav {
    display: none;
  }
}
.page-book .book-page-top-nav-mobile ul {
  list-style: none;
  padding: 0;
}
.page-book .book-page-top-nav-mobile ul li {
  margin: 0px 0 22px;
  font-size: 30px;
}
@-webkit-keyframes bounce {
  0%, 100%, 20%, 40%, 60%, 80% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%, 100%, 20%, 40%, 60%, 80% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(-5px);
  }
}
.page-book .arrow-container {
  position: fixed;
  top: calc(100vh - 80px);
  left: calc(2.6% + 90px);
  z-index: 1;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.page-book .arrow-container .arrow {
  font-size: 36px;
  color: #767676;
  -moz-animation: bounce 3s infinite;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}
@media (max-width: 767px) {
  .page-book .arrow-container {
    left: calc(3.5% + 30px);
  }
}
.page-book #hero {
  height: 100vh;
}
.page-book #hero .container {
  margin-top: 0;
}
.page-book #hero .container .sticky-container {
  position: fixed;
  top: 110px;
  width: 100%;
  left: 0;
}
@media (min-width: 1000px) {
  .page-book #hero .container .sticky-container {
    padding-left: 96px;
  }
}
.page-book #hero .container .sticky-container h1 {
  font-size: 7.1vw;
}
@media (max-width: 999px) {
  .page-book #hero .container .sticky-container h1 {
    font-size: 11.4vw;
  }
  .page-book #hero .container .sticky-container h1 br {
    display: none;
  }
}
.page-book #hero .container .sticky-container h1,
.page-book #hero .container .sticky-container .img-container {
  width: 93%;
  margin: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (min-width: 1441px) {
  .page-book #hero .container .sticky-container h1,
  .page-book #hero .container .sticky-container .img-container {
    width: 90%;
  }
}
@media (max-width: 999px) {
  .page-book #hero .container .sticky-container h1,
  .page-book #hero .container .sticky-container .img-container {
    width: 100%;
  }
}
.page-book #hero .container .sticky-container .img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-book #hero .container .sticky-container.unsticky {
  position: absolute;
  bottom: 10px;
  top: unset;
  padding: 0;
}
.page-book #hero .container .sticky-container.unsticky .img-container {
  position: absolute;
  left: 3.5%;
  top: -475px;
}
.page-book #hero {
  background: white;
  z-index: 1;
}
.page-book #hero h1 {
  color: #ce1a11;
}
.page-book #hero img,
.page-book #hero .img-space {
  width: 50%;
  min-width: 350px;
  max-width: 550px;
}
@media (max-width: 767px) {
  .page-book #hero img,
  .page-book #hero .img-space {
    width: 40%;
    min-width: 250px;
  }
}
.page-book #quotes {
  padding-top: 2rem;
}
.page-book #quotes small {
  padding-bottom: 1.65rem;
  padding-top: 6rem;
  display: block;
}
.page-book #quotes p {
  font-size: 1rem;
}
.page-book #plan h2 {
  font-size: 15rem;
  padding: 0;
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 767px) {
  .page-book #plan h2 {
    font-size: 13rem;
  }
}
@media (max-width: 600px) {
  .page-book #plan h2 {
    font-size: 7rem;
  }
}
.page-book #plan p {
  font-size: 5.7rem;
  line-height: 1em;
  color: #ce1a11;
}
@media (max-width: 767px) {
  .page-book #plan p {
    font-size: 4rem;
  }
}
@media (max-width: 600px) {
  .page-book #plan p {
    font-size: 2.5rem;
  }
}
@media (max-width: 999px) {
  .page-book #chart .svg-container {
    overflow: hidden;
    width: 100%;
  }
  .page-book #chart .svg-container svg {
    width: 130%;
  }
}
@media (max-width: 767px) {
  .page-book #chart .svg-container svg {
    width: 154%;
  }
}
@media (max-width: 767px) {
  .page-book #chart {
    padding: 0;
  }
}
.page-book #plan,
.page-book #heading-quote {
  overflow: hidden;
}
.page-book #plan .wide-container,
.page-book #heading-quote .wide-container {
  padding-left: calc(3.5% + 30px);
}
@media (max-width: 767px) {
  .page-book #plan .wide-container,
  .page-book #heading-quote .wide-container {
    padding-left: 30px;
  }
}
.page-book #heading-quote .wide-container {
  padding-left: calc(3.5% + 30px);
}
@media (max-width: 767px) {
  .page-book #heading-quote .wide-container {
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .page-book #heading-quote .wide-container {
    width: 100%;
    max-width: 100%;
  }
}
.page-book #heading-quote figcaption {
  margin-bottom: 1.875rem;
}
.page-book #heading-quote figcaption p {
  font-size: 1rem;
}
.page-book #heading-quote figcaption p em {
  font-size: 1.25rem;
}
.page-book #heading-quote blockquote {
  padding: 0;
  line-height: 1em;
  color: #ce1a11;
  display: inline-block;
  max-width: 100%;
  width: 100%;
  font-size: 9vw;
}
@media (min-width: 1500px) {
  .page-book #heading-quote blockquote {
    font-size: 10vw;
  }
}
@media (max-width: 999px) {
  .page-book #heading-quote blockquote {
    font-size: 8.8vw;
  }
}
@media (max-width: 767px) {
  .page-book #heading-quote blockquote {
    font-size: 9.6vw;
  }
}
.page-book #heading-quote blockquote.multi-line-scroll-mobile {
  width: 100%;
}
.page-book #objectives h2,
.page-book #accelerants h2 {
  padding-bottom: 0.65em;
}
.page-book #objectives p,
.page-book #accelerants p {
  font-family: "Financier", serif;
  margin-bottom: 3rem;
}
.page-book #objectives div,
.page-book #objectives ol,
.page-book #accelerants div,
.page-book #accelerants ol {
  position: relative;
  z-index: 1;
}
.page-book #objectives .row,
.page-book #accelerants .row {
  z-index: 2;
}
@media (max-width: 999px) {
  .page-book #objectives .scroll-img,
  .page-book #accelerants .scroll-img {
    height: 14rem;
  }
}
@media (max-width: 767px) {
  .page-book #objectives .scroll-img,
  .page-book #accelerants .scroll-img {
    height: 14rem;
  }
}
@media (max-width: 575px) {
  .page-book #objectives .scroll-img,
  .page-book #accelerants .scroll-img {
    height: 14rem;
  }
}
.page-book #objectives .scroll-img img,
.page-book #accelerants .scroll-img img {
  max-width: 27rem;
  transform: rotate(30deg);
  position: absolute;
  top: 6rem;
  right: 0;
}
@media (max-width: 999px) {
  .page-book #objectives .scroll-img img,
  .page-book #accelerants .scroll-img img {
    top: 2rem;
    right: inherit;
    left: 50%;
    margin-left: -13.5rem;
  }
}
@media (max-width: 575px) {
  .page-book #objectives .scroll-img img,
  .page-book #accelerants .scroll-img img {
    max-width: 22rem;
    top: 4rem;
    margin-left: -11rem;
  }
}
.page-book #objectives .scroll-img.scroll-img--2 img,
.page-book #accelerants .scroll-img.scroll-img--2 img {
  max-width: 15rem;
  transform: rotate(-15deg) scale(1.25);
  position: absolute;
  margin: 0 auto;
  text-align: center;
  top: 15rem;
  left: 50%;
  right: inherit;
  margin-left: -7.5rem;
}
@media (min-width: 1000px) {
  .page-book #objectives .scroll-img.scroll-img--2,
  .page-book #accelerants .scroll-img.scroll-img--2 {
    height: 5rem;
  }
}
@media (max-width: 999px) {
  .page-book #objectives .scroll-img.scroll-img--2,
  .page-book #accelerants .scroll-img.scroll-img--2 {
    height: 10rem;
  }
}
@media (max-width: 767px) {
  .page-book #objectives .scroll-img.scroll-img--2,
  .page-book #accelerants .scroll-img.scroll-img--2 {
    height: 9rem;
  }
}
@media (max-width: 575px) {
  .page-book #objectives .scroll-img.scroll-img--2,
  .page-book #accelerants .scroll-img.scroll-img--2 {
    height: 7rem;
  }
}
.page-book #objectives ol,
.page-book #accelerants ol {
  padding: 0;
  list-style: none;
  list-style-position: inside;
}
.page-book #objectives ol li,
.page-book #accelerants ol li {
  padding: 2.5rem 0 1.9rem;
  font-size: 4rem;
  counter-increment: h3;
  display: flex;
  align-items: center;
  border-top: 0.5px solid #767676;
  padding-left: 5.5rem;
  position: relative;
  line-height: 0.8em;
}
@media (max-width: 767px) {
  .page-book #objectives ol li,
  .page-book #accelerants ol li {
    font-size: 2.25rem;
  }
}
@media (max-width: 575px) {
  .page-book #objectives ol li,
  .page-book #accelerants ol li {
    font-size: 1.65rem;
  }
}
.page-book #objectives ol li:last-child,
.page-book #accelerants ol li:last-child {
  border-bottom: 0.5px solid #767676;
}
.page-book #objectives ol li::marker,
.page-book #accelerants ol li::marker {
  display: none;
}
.page-book #objectives ol li:before,
.page-book #accelerants ol li:before {
  display: flex;
  content: "" counter(h3) ".0";
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  background: blue;
  align-items: center;
  justify-content: center;
  padding-top: 0.225em;
  border-radius: 50%;
  margin-top: -0.33em;
  margin-right: 1.2rem;
  color: white;
  position: absolute;
  left: 0;
}
.page-book #objectives ol li:nth-child(1):before,
.page-book #accelerants ol li:nth-child(1):before {
  background: #0736e1;
}
.page-book #objectives ol li:nth-child(2):before,
.page-book #accelerants ol li:nth-child(2):before {
  background: hsl(52, 100%, 68%);
  color: black;
}
.page-book #objectives ol li:nth-child(3):before,
.page-book #accelerants ol li:nth-child(3):before {
  background: #c9dd41;
  color: black;
}
.page-book #objectives ol li:nth-child(4):before,
.page-book #accelerants ol li:nth-child(4):before {
  background: #004b3e;
}
.page-book #objectives ol li:nth-child(5):before,
.page-book #accelerants ol li:nth-child(5):before {
  background: #ce1a11;
}
.page-book #objectives ol li:nth-child(6):before,
.page-book #accelerants ol li:nth-child(6):before {
  background: #89211b;
}
@media (max-width: 999px) {
  .page-book #objectives {
    padding-bottom: 0;
  }
}
.page-book #accelerants ol li:nth-child(1):before {
  content: "7.0";
  background: #6e00ed;
}
.page-book #accelerants ol li:nth-child(2):before {
  content: "8.0";
  background: #ee8f10;
  color: black;
}
.page-book #accelerants ol li:nth-child(3):before {
  content: "9.0";
  background: #ff9cb1;
  color: black;
}
.page-book #accelerants ol li:nth-child(4):before {
  content: "10.0";
  background: #93e5f9;
  color: black;
}
.page-book #accelerants .scroll-img.scroll-img--1 img {
  max-width: 15rem;
  transform: rotate(0deg) scale(1.25);
}
@media (max-width: 767px) {
  .page-book #accelerants .scroll-img.scroll-img--1 img {
    max-width: 13rem;
    margin-left: -6.5rem;
  }
}
@media (max-width: 575px) {
  .page-book #accelerants .scroll-img.scroll-img--1 img {
    top: 0rem;
    margin-left: -7rem;
  }
}
.page-book #accelerants .scroll-img.scroll-img--2 img {
  max-width: 27rem;
  margin-left: -10.5rem;
  transform: rotate(30deg);
  top: 10rem;
}
@media (max-width: 767px) {
  .page-book #accelerants .scroll-img.scroll-img--2 img {
    max-width: 23rem;
    margin-left: -11.5rem;
  }
}
@media (max-width: 575px) {
  .page-book #accelerants .scroll-img.scroll-img--2 img {
    top: 18rem;
    margin-left: -10.5rem;
  }
}
@media (min-width: 1000px) {
  .page-book #accelerants .scroll-img.scroll-img--2 {
    height: 10rem;
  }
}
@media (max-width: 999px) {
  .page-book #accelerants .scroll-img.scroll-img--2 {
    height: 10rem;
  }
}
@media (max-width: 767px) {
  .page-book #accelerants .scroll-img.scroll-img--2 {
    height: 13rem;
  }
}
@media (max-width: 575px) {
  .page-book #accelerants .scroll-img.scroll-img--2 {
    height: 8rem;
  }
}
@media (max-width: 767px) {
  .page-book #about {
    padding: 0;
  }
}
.page-book #about img {
  max-width: 100%;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .page-book #about img {
    margin-bottom: 2rem;
  }
}
.page-book #about .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1000px) {
  .page-book #about .column {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .page-book #about .column {
    padding: 0 3%;
  }
  .page-book #about .column:first-of-type {
    padding-left: 0;
  }
  .page-book #about .column:last-of-type {
    padding-right: 0;
  }
}
.page-book #about p {
  font-family: "Financier", serif;
  margin: 0;
}
.page-book #about .container:last-of-type {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .page-book #about .container:last-of-type .column:first-of-type {
    padding-left: 3%;
    padding-right: 0;
  }
  .page-book #about .container:last-of-type .column:last-of-type {
    padding-left: 0;
    padding-right: 3%;
  }
}
.page-book #support .container {
  position: relative;
}
.page-book #support .support-featured {
  display: flex;
  border-bottom: 1px solid gray;
  margin-bottom: 2rem;
}
.page-book #support .support-featured .wide {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-book #support .support-featured .names {
  display: flex;
  justify-content: center;
  height: 37.5vw;
}
.page-book #support .support-featured .names p.h1 {
  writing-mode: vertical-rl;
  transform: rotate(-180deg);
  padding-right: 0.01em;
  padding-bottom: 0;
  font-size: 4.9vw;
}
@media (max-width: 999px) {
  .page-book #support .support-featured .names {
    height: 37.5vw;
  }
  .page-book #support .support-featured .names p.h1 {
    font-size: 4.8vw;
  }
}
@media (max-width: 767px) {
  .page-book #support .support-featured .names {
    height: 41.5vw;
  }
  .page-book #support .support-featured .names p.h1 {
    font-size: 5.4vw;
  }
}
.page-book #support .fixed-scroll-container {
  position: relative;
}
.page-book #support hr {
  margin: 0 0 1rem;
  border-color: #767676;
}
.page-book #support ul {
  list-style: none;
  color: #767676;
  font-size: 0.875rem;
  margin: 0;
}
.page-book #support ul li {
  line-height: 1.2em;
  margin: 0 0 0.5em;
  padding: 0.25em;
  border-radius: 0px;
  transition: 0.15s ease all;
}
.page-book #support ul li:nth-child(n+27) {
  display: none;
}
.page-book #support ul.column--last li {
  display: list-item;
}
.page-book #support ul.column--last li:nth-child(-n+26) {
  display: none;
}
@media (min-width: 992px) {
  .page-book #support ul li:hover {
    background: #ce1a11;
    color: white;
    margin-left: -15px;
    padding-left: calc(15px + 0.25em);
    transition: 0.25s ease all;
    cursor: pointer;
  }
  .page-book #support ul li:hover strong {
    color: white;
  }
}
.page-book #support ul strong {
  font-weight: normal;
  color: black;
}
.page-book #support figure {
  position: absolute;
  right: 0;
  top: 0;
  width: 20vw;
  height: 20vw;
  overflow: hidden;
  border-radius: 50%;
}
@media (max-width: 999px) {
  .page-book #support figure {
    display: none;
  }
}
.page-book #support figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.125s linear;
  -webkit-transition: opacity 0.125s linear;
  opacity: 0;
}
.page-book #support figure img.active {
  opacity: 1;
  transition: opacity 0.125s linear;
  -webkit-transition: opacity 0.125s linear;
}
.page-book #preorder .row {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.page-book #preorder .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 999px) {
  .page-book #preorder .column {
    margin: 0 0 30px;
  }
}
@media (max-width: 999px) {
  .page-book #preorder .column {
    margin: 0 0 30px;
  }
}
@media (max-width: 575px) {
  .page-book #preorder .column {
    padding: 1rem 1.3rem;
  }
}
.page-book #preorder figure {
  width: 80%;
  margin: 2rem auto;
  text-align: center;
}
.page-book #preorder img {
  max-height: 5rem;
  max-width: 11.875rem;
  transition: all 0.2s linear;
}
.page-book #preorder a:hover img,
.page-book #preorder a:focus img {
  transform: scale3d(1.1, 1.1, 1.1);
  transition: all 0.1s linear;
}
.page-book #preorder p {
  margin: 4rem 0 0;
}
.page-book #preorder p a {
  text-decoration: underline;
  color: white;
  font-size: 0.875rem;
}
.page-book #preorder p a:hover, .page-book #preorder p a:focus {
  text-decoration: underline;
  opacity: 0.8;
}

.page-book .head-nav-wrapper {
  position: relative;
  background-color: transparent;
}
.page-book #hero {
  height: auto;
  padding-top: 2rem;
  padding: 0;
}
.page-book #hero .book-image,
.page-book #hero .img-static {
  text-align: center;
}
.page-book #hero img,
.page-book #hero .img-space {
  width: 100%;
  min-width: 0;
}
@media (max-width: 1440px) {
  .page-book #hero img,
  .page-book #hero .img-space {
    max-width: 450px;
  }
}
@media (max-width: 999px) {
  .page-book #hero img,
  .page-book #hero .img-space {
    width: 100%;
    min-width: 250px;
    margin-top: 50px;
  }
}
.page-book #hero h1 {
  padding-bottom: 0;
}
.page-book #hero .row {
  align-items: center;
}
@media (min-width: 1000px) {
  .page-book #hero .row {
    flex-direction: row-reverse;
  }
}
@media (max-width: 999px) {
  .page-book #hero .col-md-7,
  .page-book #hero .col-md-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.page-about #hero .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-about #hero h1 {
  color: #ce1a11;
  padding: 1.5rem 0px;
}
.page-about #hero img {
  padding-left: 3vw;
}
.page-about #meet h2 {
  border-bottom: 1px solid lightgray;
  margin-bottom: 1.5rem;
}
.page-about #meet h3 {
  color: #ce1a11;
  padding: 0 0 0.3rem;
}
.page-about #meet p {
  font-size: 0.875rem;
  line-height: 1.4em;
  font-family: "Plain-Light", "Plain", sans-serif;
}
@media (max-width: 999px) {
  .page-about #meet p {
    font-size: 1rem;
  }
}
.page-about #meet p strong {
  font-family: "Plain", sans-serif;
  font-weight: normal;
}
.page-about #meet p i,
.page-about #meet p em {
  font-family: "Plain-Italic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.page-about #meet img {
  border-radius: 50%;
}
.page-about #meet .team-image {
  margin-bottom: 1.5rem;
}
.page-about #meet .column > hr {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  margin: 0;
}
@media (max-width: 575px) {
  .page-about #meet .column > hr:last-of-type {
    display: none;
  }
}
.page-about #meet .container > .row {
  margin: 0 -30px;
}
.page-about #meet .container > .row > .column {
  padding: 0 30px;
  margin-bottom: 1.5rem;
}
.page-about #meet .column .row .column {
  padding: 2.5rem 15px;
}
@media (max-width: 999px) {
  .page-about #meet .column .row .column:last-of-type {
    padding: 0 15px;
  }
}
.page-about #meet .column .row .column h3 {
  padding-top: 1rem;
}
.page-about #callout {
  padding-top: 0;
}
.page-about #callout ul {
  list-style: none;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .page-about #callout ul {
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  .page-about #callout ul {
    display: block;
  }
}
.page-about #callout ul li {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-about #callout ul li {
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media (max-width: 999px) {
  .page-about #callout ul li {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .page-about #callout ul li {
    padding: 0 0.875rem;
    text-align: center;
    width: 80%;
    margin-top: 2rem;
    margin: 3rem auto 0;
    font-size: 2.4rem;
    position: relative;
    top: 0 !important;
  }
}
@media (max-width: 575px) {
  .page-about #callout ul li {
    font-size: 1.5rem;
    width: 100%;
  }
}
.page-about #callout ul li span {
  color: #ce1a11;
}
.page-about #callout ul li:before {
  content: "";
  width: 50%;
  left: calc(-50% - 0.875rem);
  top: 50%;
  height: 1px;
  border-top: 1px solid black;
  position: absolute;
}
@media (max-width: 767px) {
  .page-about #callout ul li:before {
    top: unset;
    bottom: 125%;
    width: 1px;
    height: 50vw;
    border-right: 1px solid #000;
  }
}
.page-about #callout ul li:nth-of-type(1):before {
  left: 25%;
}
.page-about #callout ul li:nth-of-type(2):before {
  left: 50%;
}
.page-about #callout ul li:nth-of-type(3):before {
  left: 75%;
}
.page-about #callout > .container:last-of-type {
  margin-top: 3rem;
}
.page-about #callout h2 {
  font-size: 5.65rem;
  border-bottom: 1px solid;
  padding: 3rem 0;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .page-about #callout h2 {
    font-size: 4.5rem;
  }
}
@media (max-width: 451px) {
  .page-about #callout h2 {
    font-size: 3.5rem;
  }
}
.page-about #callout blockquote {
  font-size: 2rem;
  color: #ce1a11;
  line-height: 1.2;
}
.page-about #callout a.btn {
  margin-bottom: 2em;
}
.page-about #callout p {
  font-family: "Financier", serif;
  font-size: 1.375rem;
}
.page-about #callout .centered {
  margin-top: 2rem;
}
@media (min-width: 1000px) {
  .page-about #callout .container:last-of-type .row .column:last-of-type {
    columns: 2;
    column-gap: 30px;
  }
}
@media (max-width: 767px) and (min-width: 600px) {
  .page-about #callout .container:last-of-type .row .column:last-of-type {
    columns: 2;
    column-gap: 30px;
  }
}
.page-about #partners {
  background: #ce1a11;
  color: white;
}
.page-about #partners .row {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.page-about #partners .columns {
  display: flex;
  flex-wrap: wrap;
}
.page-about #partners .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 17%;
  flex: 0 0 17%;
}
@media (max-width: 999px) {
  .page-about #partners .column {
    max-width: 26%;
    flex: 0 0 26%;
  }
}
@media (max-width: 767px) {
  .page-about #partners .column {
    max-width: 44%;
    flex: 0 0 44%;
  }
}
.page-about #partners .column figure {
  width: 80%;
  margin: 2rem auto;
  text-align: center;
}
.page-about #partners .column img {
  transition: all 0.2s linear;
}
.page-about #partners .column a:hover img,
.page-about #partners .column a:focus img {
  transform: scale3d(1.1, 1.1, 1.1);
  transition: all 0.1s linear;
}
.page-about #partners .divider {
  margin-left: 5%;
  margin-right: 5%;
  border-right: 1px solid white;
}
.page-about #partners .column,
.page-about #partners .divider {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .page-about #partners .columns > div:nth-of-type(8n) {
    padding: 0%;
    margin: 0%;
    border: 0;
  }
}
@media (max-width: 999px) and (min-width: 768px) {
  .page-about #partners .columns > div:nth-of-type(6n) {
    padding: 0%;
    margin: 0%;
    border: 0;
  }
}
@media (max-width: 767px) {
  .page-about #partners .columns > div:nth-of-type(4n) {
    padding: 0%;
    margin: 0%;
    border: 0;
  }
}

@media (max-width: 999px) {
  .page-news .featured-posts {
    margin-top: 4rem;
  }
}

.news-columns .posts-container {
  column-count: 2;
  grid-gap: 2em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 999px) {
  .news-columns .posts-container {
    display: block;
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .news-columns .posts-container {
    column-count: 1;
  }
}

#additional-resources .posts-container {
  column-count: 3;
  grid-gap: 2em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 999px) {
  #additional-resources .posts-container {
    display: block;
    column-count: 2;
  }
}
@media (max-width: 600px) {
  #additional-resources .posts-container {
    column-count: 1;
  }
}
#additional-resources .all-btn {
  text-align: center;
}

.page-resources .posts-by-okr-filters .filter--container .filter--categories {
  display: flex;
  flex-direction: column;
  padding-top: 1em;
  break-inside: avoid-column;
  font-size: 0.875rem;
  height: 12.4em;
}
.page-resources .posts-by-okr-filters .filter--container .filter--categories .cat-filter {
  display: flex;
}
.page-resources .posts-by-okr-filters .filter--container .filter--categories .cat-filter input {
  margin-top: 4px;
}
@media (max-width: 1200px) {
  .page-resources .posts-by-okr-filters .filter--container .filter--categories {
    height: 18.4em;
  }
}
@media (max-width: 999px) {
  .page-resources .posts-by-okr-filters .filter--container .filter--categories {
    height: 12.4em;
  }
}
@media (max-width: 999px) {
  .page-resources .resources-list .posts-container {
    margin-bottom: 2em;
  }
}
@media (min-width: 601px) {
  .page-resources .resources-list .posts-container {
    column-count: 2;
    grid-gap: 1rem;
  }
}

.page-press-room .featured-posts p {
  font-size: 1rem;
}

.bottom-btn {
  margin-top: 2em;
}
@media (max-width: 999px) {
  .bottom-btn {
    margin-top: 0em;
    text-align: center;
  }
}

.posts-label {
  padding: 0.65rem 1rem 0.45rem;
  border: 0;
  background: black;
  color: white;
}

.no-posts p {
  font-size: 1em;
}

.resource-downloads {
  padding-top: 2rem;
}
.resource-downloads a {
  margin: 0 0 0.5rem;
}

.page-newsletter #hero {
  padding-bottom: 5.5rem;
}
.page-newsletter #hero .container:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .page-newsletter #hero .container:first-of-type {
    flex-direction: column-reverse;
  }
}
.page-newsletter #hero .hero-text {
  width: 50%;
  margin-right: 2rem;
}
@media (max-width: 1200px) {
  .page-newsletter #hero .hero-text {
    width: calc(100% - 282px);
  }
}
@media (max-width: 767px) {
  .page-newsletter #hero .hero-text {
    width: 100%;
  }
}
.page-newsletter #hero .hero-text p {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.page-newsletter #hero .hero-text p strong {
  color: #ce1a11;
}
.page-newsletter #hero .hero-image {
  max-width: 250px;
}
@media (max-width: 767px) {
  .page-newsletter #hero .hero-image {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .page-newsletter #hero .form {
    max-width: 50%;
  }
}
@media (min-width: 576px) {
  .page-newsletter #hero .form #mc_embed_signup_scroll .input--email,
  .page-newsletter #hero .form #mc_embed_signup_scroll_popup .input--email {
    flex: 0 0 calc(100% - 170px);
    width: calc(100% - 170px);
  }
}
.page-newsletter #hero .form #mc_embed_signup_scroll .input--email input.email,
.page-newsletter #hero .form #mc_embed_signup_scroll_popup .input--email input.email {
  background: black;
  border: 1px solid #767676;
  width: calc(100% - 1rem);
  border-radius: 0.25em;
  color: white;
  padding: 0.9rem 0.55rem 0.8rem;
}
.page-newsletter #hero .form #mc_embed_signup_scroll .input--submit,
.page-newsletter #hero .form #mc_embed_signup_scroll_popup .input--submit {
  flex: 0 0 170px;
  width: 170px;
}
@media (min-width: 576px) {
  .page-newsletter #hero .form #mc_embed_signup_scroll .input--submit,
  .page-newsletter #hero .form #mc_embed_signup_scroll_popup .input--submit {
    padding-top: 22.4px;
  }
}
.page-newsletter #hero .form #mc_embed_signup_scroll .input--submit .btn-large,
.page-newsletter #hero .form #mc_embed_signup_scroll_popup .input--submit .btn-large {
  padding: 0.65em 1.5em 0.5em;
  min-width: 0;
}
.page-newsletter #hero .form #mc_embed_signup_scroll label,
.page-newsletter #hero .form #mc_embed_signup_scroll_popup label {
  display: block;
  color: white;
  font-family: "Financier", serif;
  font-style: italic;
  margin-bottom: 0.2rem;
}
@media (max-width: 999px) {
  .page-newsletter {
    padding-bottom: 3.5rem;
  }
}
.page-newsletter .latest-posts h2 {
  color: #ce1a11;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  padding-bottom: 0.25em;
}
.page-newsletter .news-list:not(:first-of-type) {
  padding-top: 4rem;
}
.page-newsletter .posts-container {
  grid-column-gap: 9rem;
}
@media (min-width: 1000px) {
  .page-newsletter .posts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1440px) {
  .page-newsletter .posts-container {
    grid-column-gap: 12vw;
  }
}

.newsletter-part {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
}
.newsletter-part .above-title .date {
  padding: 0;
  font-size: 0.875rem;
  color: #767676;
}
@media (min-width: 768px) {
  .newsletter-part .post-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .newsletter-part .post-content > div {
    flex: auto;
  }
}
.newsletter-part h3 {
  font-size: 1.375rem;
  padding-top: 0.5rem;
  padding-bottom: 0;
  padding-right: 1rem;
}
.newsletter-part h3,
.newsletter-part h3 a {
  color: black;
}
.newsletter-part h3 a:hover, .newsletter-part h3 a:focus {
  color: #ce1a11;
}
.newsletter-part figure {
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .newsletter-part figure:first-of-type {
    display: none;
  }
}
@media (max-width: 767px) {
  .newsletter-part figure:last-of-type {
    display: none;
  }
}
@media (min-width: 768px) {
  .newsletter-part figure {
    flex: 0 0 10.5rem;
    text-align: right;
  }
}
@media (max-width: 767px) {
  .newsletter-part figure {
    margin-bottom: 0.5rem;
  }
}
.newsletter-part:hover h3 {
  color: #ce1a11;
}

.newsletter--single .wp-block-table td,
.newsletter--single .wp-block-table th {
  border: 0;
  padding: 0;
  padding-bottom: 1rem;
  font-family: "Plain-Light";
}
.newsletter--single .wp-block-table td strong,
.newsletter--single .wp-block-table td a,
.newsletter--single .wp-block-table th strong,
.newsletter--single .wp-block-table th a {
  font-family: "Plain";
}
.newsletter--single table,
.newsletter--single table img {
  width: 100% !important;
  max-width: 100% !important;
}
.newsletter--single table td {
  padding-right: 0px !important;
  padding-left: 0px !important;
}
.newsletter--single table #dataBlockId-1 {
  display: none !important;
}
.newsletter--single table tr.mceStandardButton {
  display: none !important;
}
.newsletter--single table tr.mceStandardButton td {
  background: #ce1a11 !important;
}
.newsletter--single table tr.mceStandardButton td a {
  background: #ce1a11 !important;
  border-color: #ce1a11 !important;
}
.newsletter--single table.mceClusterLayout td,
.newsletter--single table.mceClusterLayout td a,
.newsletter--single table.mceClusterLayout td img {
  padding: 0.125rem;
}
.newsletter--single table.mceClusterLayout a > img {
  max-width: 60px !important;
}
.newsletter--single table.mceClusterLayout td:first-of-type {
  text-align: right;
}
.newsletter--single table.mceClusterLayout td:first-of-type img {
  display: inline-block !important;
}
.newsletter--single table a[href="http://www.twitter.com/speedandscale"] img,
.newsletter--single table a[href="https://www.linkedin.com/company/speed-scale/"] img {
  max-width: 60px !important;
}
.newsletter--single table span[style="font-size: 17px"] {
  font-size: 2rem !important;
}
.newsletter--single table table table table table > tbody > tr:nth-of-type(1) td, .newsletter--single table table table table table > tbody > tr:nth-of-type(2) td {
  padding: 0px !important;
}
@media (max-width: 999px) {
  .newsletter--single .social-share-container {
    justify-content: center;
    width: 50%;
    margin: 0 auto;
  }
  .newsletter--single .social-share-container.slide-in-right {
    transform: none;
  }
}

.page-newsletter footer,
.newsletter--single footer {
  background-color: #000;
  color: #ffffff;
  border-color: #ffffff;
}
.page-newsletter footer svg,
.page-newsletter footer .column:first-of-type p,
.newsletter--single footer svg,
.newsletter--single footer .column:first-of-type p {
  color: #ffffff;
}

a.okr-pill {
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 3.25em;
  position: relative;
  line-height: 1em;
  color: black;
  height: 3.1em;
  margin-right: 0;
  cursor: pointer;
  break-inside: avoid-column;
}
a.okr-pill i {
  font-size: 0.9em;
  display: flex;
  width: 2.75em;
  height: 2.75em;
  font-family: "Plain", sans-serif;
  font-style: normal;
  background: white;
  align-items: center;
  justify-content: center;
  padding-top: 0.225em;
  border-radius: 50%;
  color: black;
  position: absolute;
  left: 0;
  border: 1px solid black;
  transition: background 0.3s linear;
}
a.okr-pill div {
  margin-top: 0.2em;
  padding-right: 1em;
}
a.okr-pill div span.okr-title {
  transition: 0.2s ease all;
  background-image: linear-gradient(#000, #000);
  text-shadow: 0.03em 0 #fff, -0.03em 0 #fff, 0 0.03em #fff, 0 -0.03em #fff, 0.06em 0 #fff, -0.06em 0 #fff, 0.09em 0 #fff, -0.09em 0 #fff, 0.12em 0 #fff, -0.12em 0 #fff;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
}
a.okr-pill div span.okr-gt {
  display: none;
}
a.okr-pill:hover span, a.okr-pill:focus span {
  background-size: 100% 1px;
}
a.okr-pill:hover b, a.okr-pill:focus b {
  animation: pulse-right 3s;
}
.posts-container .okrs a.okr-pill b, #post .okrs a.okr-pill b, #archive-posts a.okr-pill b {
  display: none;
}
a.okr-pill[data-okr=A] i {
  padding-left: 0.125em;
  padding-top: 0;
}
a.okr-pill[data-okr=A] i svg {
  transform: scale(1.2) rotate(-45deg);
}
a.okr-pill[data-okr="1"] i {
  border-color: #0736e1;
}
a.okr-pill[data-okr="2"] i {
  border-color: hsl(52, 100%, 68%);
}
a.okr-pill[data-okr="3"] i {
  border-color: #c9dd41;
}
a.okr-pill[data-okr="4"] i {
  border-color: #004b3e;
}
a.okr-pill[data-okr="5"] i {
  border-color: #ce1a11;
}
a.okr-pill[data-okr="6"] i {
  border-color: #89211b;
}
a.okr-pill[data-okr="7"] i {
  border-color: #6e00ed;
}
a.okr-pill[data-okr="8"] i {
  border-color: #ee8f10;
}
a.okr-pill[data-okr="9"] i {
  border-color: #ff9cb1;
}
a.okr-pill[data-okr="10"] i {
  border-color: #93e5f9;
}
a.okr-pill[data-okr="0"] i {
  border-color: #000;
}
.okr--part a.okr-pill, .article-part a.okr-pill, .okr-solid a.okr-pill, .okr--list--poster a.okr-pill, #post a.okr-pill, a.okr-pill.active {
  transition: background 0.15s linear;
}
.okr--part a.okr-pill[data-okr="0"] i, .okr--part a.okr-pill[data-okr=A] i, .article-part a.okr-pill[data-okr="0"] i, .article-part a.okr-pill[data-okr=A] i, .okr-solid a.okr-pill[data-okr="0"] i, .okr-solid a.okr-pill[data-okr=A] i, .okr--list--poster a.okr-pill[data-okr="0"] i, .okr--list--poster a.okr-pill[data-okr=A] i, #post a.okr-pill[data-okr="0"] i, #post a.okr-pill[data-okr=A] i, a.okr-pill.active[data-okr="0"] i, a.okr-pill.active[data-okr=A] i {
  background: black;
  color: white;
}
.okr--part a.okr-pill[data-okr="1"] i, .article-part a.okr-pill[data-okr="1"] i, .okr-solid a.okr-pill[data-okr="1"] i, .okr--list--poster a.okr-pill[data-okr="1"] i, #post a.okr-pill[data-okr="1"] i, a.okr-pill.active[data-okr="1"] i {
  background: #0736e1;
  color: #fff;
}
.okr--part a.okr-pill[data-okr="2"] i, .article-part a.okr-pill[data-okr="2"] i, .okr-solid a.okr-pill[data-okr="2"] i, .okr--list--poster a.okr-pill[data-okr="2"] i, #post a.okr-pill[data-okr="2"] i, a.okr-pill.active[data-okr="2"] i {
  background: hsl(52, 100%, 68%);
  color: #000;
}
.okr--part a.okr-pill[data-okr="3"] i, .article-part a.okr-pill[data-okr="3"] i, .okr-solid a.okr-pill[data-okr="3"] i, .okr--list--poster a.okr-pill[data-okr="3"] i, #post a.okr-pill[data-okr="3"] i, a.okr-pill.active[data-okr="3"] i {
  background: #c9dd41;
  color: #000;
}
.okr--part a.okr-pill[data-okr="4"] i, .article-part a.okr-pill[data-okr="4"] i, .okr-solid a.okr-pill[data-okr="4"] i, .okr--list--poster a.okr-pill[data-okr="4"] i, #post a.okr-pill[data-okr="4"] i, a.okr-pill.active[data-okr="4"] i {
  background: #004b3e;
  color: #fff;
}
.okr--part a.okr-pill[data-okr="5"] i, .article-part a.okr-pill[data-okr="5"] i, .okr-solid a.okr-pill[data-okr="5"] i, .okr--list--poster a.okr-pill[data-okr="5"] i, #post a.okr-pill[data-okr="5"] i, a.okr-pill.active[data-okr="5"] i {
  background: #ce1a11;
  color: #fff;
}
.okr--part a.okr-pill[data-okr="6"] i, .article-part a.okr-pill[data-okr="6"] i, .okr-solid a.okr-pill[data-okr="6"] i, .okr--list--poster a.okr-pill[data-okr="6"] i, #post a.okr-pill[data-okr="6"] i, a.okr-pill.active[data-okr="6"] i {
  background: #89211b;
  color: #fff;
}
.okr--part a.okr-pill[data-okr="7"] i, .article-part a.okr-pill[data-okr="7"] i, .okr-solid a.okr-pill[data-okr="7"] i, .okr--list--poster a.okr-pill[data-okr="7"] i, #post a.okr-pill[data-okr="7"] i, a.okr-pill.active[data-okr="7"] i {
  background: #6e00ed;
  color: #fff;
}
.okr--part a.okr-pill[data-okr="8"] i, .article-part a.okr-pill[data-okr="8"] i, .okr-solid a.okr-pill[data-okr="8"] i, .okr--list--poster a.okr-pill[data-okr="8"] i, #post a.okr-pill[data-okr="8"] i, a.okr-pill.active[data-okr="8"] i {
  background: #ee8f10;
  color: #000;
}
.okr--part a.okr-pill[data-okr="9"] i, .article-part a.okr-pill[data-okr="9"] i, .okr-solid a.okr-pill[data-okr="9"] i, .okr--list--poster a.okr-pill[data-okr="9"] i, #post a.okr-pill[data-okr="9"] i, a.okr-pill.active[data-okr="9"] i {
  background: #ff9cb1;
  color: #000;
}
.okr--part a.okr-pill[data-okr="10"] i, .article-part a.okr-pill[data-okr="10"] i, .okr-solid a.okr-pill[data-okr="10"] i, .okr--list--poster a.okr-pill[data-okr="10"] i, #post a.okr-pill[data-okr="10"] i, a.okr-pill.active[data-okr="10"] i {
  background: #93e5f9;
  color: #000;
}
.okr--part a.okr-pill[data-okr="0"] i, .article-part a.okr-pill[data-okr="0"] i, .okr-solid a.okr-pill[data-okr="0"] i, .okr--list--poster a.okr-pill[data-okr="0"] i, #post a.okr-pill[data-okr="0"] i, a.okr-pill.active[data-okr="0"] i {
  background: #000;
  color: #fff;
}
@media (hover: hover) {
  a.okr-pill:hover {
    transition: background 0.15s linear;
  }
  a.okr-pill:hover[data-okr="0"] i, a.okr-pill:hover[data-okr=A] i {
    background: black;
    color: white;
  }
  a.okr-pill:hover[data-okr="1"] i {
    background: #0736e1;
    color: #fff;
  }
  a.okr-pill:hover[data-okr="2"] i {
    background: hsl(52, 100%, 68%);
    color: #000;
  }
  a.okr-pill:hover[data-okr="3"] i {
    background: #c9dd41;
    color: #000;
  }
  a.okr-pill:hover[data-okr="4"] i {
    background: #004b3e;
    color: #fff;
  }
  a.okr-pill:hover[data-okr="5"] i {
    background: #ce1a11;
    color: #fff;
  }
  a.okr-pill:hover[data-okr="6"] i {
    background: #89211b;
    color: #fff;
  }
  a.okr-pill:hover[data-okr="7"] i {
    background: #6e00ed;
    color: #fff;
  }
  a.okr-pill:hover[data-okr="8"] i {
    background: #ee8f10;
    color: #000;
  }
  a.okr-pill:hover[data-okr="9"] i {
    background: #ff9cb1;
    color: #000;
  }
  a.okr-pill:hover[data-okr="10"] i {
    background: #93e5f9;
    color: #000;
  }
  a.okr-pill:hover[data-okr="0"] i {
    background: #000;
    color: #fff;
  }
}
a.okr-pill:active[data-okr="1"] i {
  background: white;
  border-color: #0736e1;
  color: black;
}
a.okr-pill:active[data-okr="2"] i {
  background: white;
  border-color: hsl(52, 100%, 68%);
  color: black;
}
a.okr-pill:active[data-okr="3"] i {
  background: white;
  border-color: #c9dd41;
  color: black;
}
a.okr-pill:active[data-okr="4"] i {
  background: white;
  border-color: #004b3e;
  color: black;
}
a.okr-pill:active[data-okr="5"] i {
  background: white;
  border-color: #ce1a11;
  color: black;
}
a.okr-pill:active[data-okr="6"] i {
  background: white;
  border-color: #89211b;
  color: black;
}
a.okr-pill:active[data-okr="7"] i {
  background: white;
  border-color: #6e00ed;
  color: black;
}
a.okr-pill:active[data-okr="8"] i {
  background: white;
  border-color: #ee8f10;
  color: black;
}
a.okr-pill:active[data-okr="9"] i {
  background: white;
  border-color: #ff9cb1;
  color: black;
}
a.okr-pill:active[data-okr="10"] i {
  background: white;
  border-color: #93e5f9;
  color: black;
}
a.okr-pill:active[data-okr="0"] i {
  background: white;
  border-color: #000;
  color: black;
}

#okr-0 .label-color {
  background: black;
  color: white;
}
#okr-1 .label-color {
  background: #0736e1;
  color: #fff;
}
#okr-2 .label-color {
  background: hsl(52, 100%, 68%);
  color: #000;
}
#okr-3 .label-color {
  background: #c9dd41;
  color: #000;
}
#okr-4 .label-color {
  background: #004b3e;
  color: #fff;
}
#okr-5 .label-color {
  background: #ce1a11;
  color: #fff;
}
#okr-6 .label-color {
  background: #89211b;
  color: #fff;
}
#okr-7 .label-color {
  background: #6e00ed;
  color: #fff;
}
#okr-8 .label-color {
  background: #ee8f10;
  color: #000;
}
#okr-9 .label-color {
  background: #ff9cb1;
  color: #000;
}
#okr-10 .label-color {
  background: #93e5f9;
  color: #000;
}
#okr-0 .label-color {
  background: #000;
  color: #fff;
}

@media (max-width: 600px) {
  .okr-detail section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .okr-detail section#post {
    padding-top: 3rem;
  }
}
.okr-detail #okr-key-results-list h2 {
  font-size: 3rem;
}

.okr--section {
  position: relative;
}
.okr--section[data-okr="1"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #0736e1;
}
.okr--section[data-okr="2"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: hsl(52, 100%, 68%);
}
.okr--section[data-okr="3"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #c9dd41;
}
.okr--section[data-okr="4"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #004b3e;
}
.okr--section[data-okr="5"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #ce1a11;
}
.okr--section[data-okr="6"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #89211b;
}
.okr--section[data-okr="7"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #6e00ed;
}
.okr--section[data-okr="8"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #ee8f10;
}
.okr--section[data-okr="9"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #ff9cb1;
}
.okr--section[data-okr="10"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #93e5f9;
}
.okr--section[data-okr="0"]:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
}

.okr--video .total-gt {
  display: flex;
  flex-direction: column;
}
.okr--video .total-gt .text {
  font-size: 0.8rem;
  line-height: 0.8rem;
  color: #767676;
  font-family: "Plain-Light", sans-serif;
}
.okr--video .total-gt .number {
  font-size: 2rem;
  padding: 0.5rem 0 3rem;
  color: #ce1a11;
}
.okr--video-thumbnail {
  position: relative;
}
@media (max-width: 991px) {
  .okr--video-thumbnail {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
.okr--video-thumbnail h3 {
  font-size: 0.9rem;
  background: black;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 1199px) {
  .okrs--single .okr--video-thumbnail h3 {
    position: relative;
  }
}
.okr--video-thumbnail button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: none;
  padding: 0;
  margin-top: 0px;
  z-index: 2;
  width: 80px;
  height: 80px;
}
.okr--video-thumbnail button img {
  width: 80px;
  height: 80px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .okr--video-thumbnail button {
    width: 40px;
    height: 40px;
  }
  .okr--video-thumbnail button img {
    width: 40px;
    height: 40px;
  }
}
.okr--video-thumbnail .image--container {
  padding-bottom: 56.25%;
  position: relative;
}
.okr--video-thumbnail img {
  border-radius: 0.5rem;
  padding: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .okrs--single .okr--video-thumbnail img {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
@media (min-width: 1200px) {
  .okr--video {
    padding-left: 4rem;
  }
  .okr--video .total-gt .text {
    width: 50%;
  }
}
@media (max-width: 1199px) {
  .okr--video .total-gt {
    padding-left: 0rem;
  }
}

.okr--block .row {
  margin: 0 auto;
}
.okr--block[data-okr="0"] {
  display: none;
}
.okr--block.gigaton-filter {
  border-top: 1px solid #767676;
}
.okr--block .okr--objective a.okr-pill,
.okr--block .okr--objective .key-result--info .description,
.okr--block .okr--objective .objective--info .description,
.okr--block .okr--objective .updated,
.okr--block .okr--key-results a.okr-pill,
.okr--block .okr--key-results .key-result--info .description,
.okr--block .okr--key-results .objective--info .description,
.okr--block .okr--key-results .updated {
  padding-left: 4rem;
}
.okr--block .okr--objective a.okr-pill i,
.okr--block .okr--key-results a.okr-pill i {
  height: 2.75em;
  width: 2.75em;
}
.okr--block .okr--objective .description,
.okr--block .okr--key-results .description {
  font-family: "Plain", sans-serif;
}
.okr--block .okr--objective b,
.okr--block .okr--key-results b {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding-top: 0.25rem;
  margin-left: 0.5rem;
}
.okr--block .okr--objective {
  padding-bottom: 2.75rem;
}
.okr--block .okr--objective > div {
  width: 100%;
}
.okr--block .okr--objective .objective--info {
  padding-left: 0;
}
.okr--block .okr--objective .objective--info a.okr-pill {
  font-size: 2.875rem;
  height: auto;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  align-items: flex-start;
}
.okr--block .okr--objective .objective--info a.okr-pill div {
  margin-top: 0.1em;
  flex: 1;
  padding-right: 0.25em;
}
.okr--block .okr--objective .objective--info a.okr-pill i {
  font-size: 1.1rem;
}
.okr--block .okr--objective .objective--info a.okr-pill .description {
  font-size: 1.2rem;
}
@media (max-width: 500px) {
  .okr--block .okr--objective .objective--info a.okr-pill {
    font-size: 2.2em;
  }
  .okr--block .okr--objective .objective--info a.okr-pill div {
    padding-right: 0.275em;
  }
}
@media (max-width: 425px) {
  .okr--block .okr--objective .objective--info a.okr-pill {
    align-items: center;
    font-size: 1.7em;
  }
}
@media (max-width: 350px) {
  .okr--block .okr--objective .objective--info a.okr-pill {
    font-size: 1.6em;
  }
}
.aside-bar--mega .okr--block .okr--objective .objective--info {
  padding-left: 0;
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .aside-bar--mega .okr--block .okr--objective .objective--info a.okr-pill div {
    padding-left: 1rem;
  }
}
.okr--block .okr--objective .objective--info .description {
  font-size: 1.375rem;
  line-height: 1.4;
  color: #ce1a11;
}
.okr--block .okr--objective .objective--image {
  display: flex;
  align-items: flex-end;
}
.okr--block .okr--objective .objective--image img {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media (max-width: 999px) {
  .okr--block .okr--objective .objective--image {
    padding: 1.5rem 3.5rem 0 3.5rem;
  }
}
.okr--block .okr--objective:hover a.okr-pill i {
  background: transparent;
  color: black;
  border-width: 2px;
}
.okr--block .okr--key-results .okr--header > div:nth-of-type(1),
.okr--block .okr--key-results .okr--key-result > div:nth-of-type(1) {
  flex: 1;
}
.okr--block .okr--key-results .okr--header > div:nth-of-type(2), .okr--block .okr--key-results .okr--header > div:nth-of-type(3),
.okr--block .okr--key-results .okr--key-result > div:nth-of-type(2),
.okr--block .okr--key-results .okr--key-result > div:nth-of-type(3) {
  width: 7.25rem;
}
.okr--block .okr--key-results .okr--header > div:nth-of-type(3),
.okr--block .okr--key-results .okr--key-result > div:nth-of-type(3) {
  text-align: right;
  margin-left: 1rem;
}
@media (max-width: 999px) {
  .okr--block .okr--key-results .okr--header > div:nth-of-type(1),
  .okr--block .okr--key-results .okr--key-result > div:nth-of-type(1) {
    flex: unset;
    width: 100%;
  }
  .okr--block .okr--key-results .okr--header > div:nth-of-type(2), .okr--block .okr--key-results .okr--header > div:nth-of-type(3),
  .okr--block .okr--key-results .okr--key-result > div:nth-of-type(2),
  .okr--block .okr--key-results .okr--key-result > div:nth-of-type(3) {
    width: 50%;
    margin: 0;
    padding: 1rem 1rem 0 0;
  }
  .okr--block .okr--key-results .okr--header > div:nth-of-type(3),
  .okr--block .okr--key-results .okr--key-result > div:nth-of-type(3) {
    text-align: left;
  }
}
@media (max-width: 999px) and (min-width: 501px) {
  .okr--block .okr--key-results .okr--header > div:nth-of-type(2),
  .okr--block .okr--key-results .okr--key-result > div:nth-of-type(2) {
    padding-left: 4rem;
  }
}
@media (min-width: 1440px) {
  .okr--block .okr--key-results .okr--header > div:nth-of-type(2),
  .okr--block .okr--key-results .okr--key-result > div:nth-of-type(2) {
    width: 10.5rem;
    margin-left: 2rem;
    margin-right: 1rem;
  }
}
.okr--block .okr--key-results .okr--header {
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #767676;
  font-size: 0.8rem;
  color: #767676;
  white-space: nowrap;
  font-family: "Plain-Light", sans-serif;
}
.okr--block .okr--key-results .okr--part {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #767676;
}
@media (min-width: 1000px) {
  .okr--block .okr--key-results .okr--part {
    flex-wrap: nowrap;
  }
}
.okr--block .okr--key-results .okr--part p {
  font-size: 0.95rem;
}
.okr--block .okr--key-results .okr--part a.okr-pill:not(:hover) i {
  background: transparent;
  color: black;
  border-width: 2px;
}
.aside-bar--mega .okr--block .okr--key-results .okr--part a.okr-pill:not(:hover) i {
  color: white;
}
.okr--block .okr--key-result a.okr-pill {
  font-size: var(--font--size-h4);
}
.okr--block .okr--key-result a.okr-pill i {
  font-size: 1.1rem;
}
.okr--block .okr--key-result a.okr-pill span.okr-gt {
  color: #ce1a11;
  font-size: 0.85em;
  margin-left: 0.5rem;
  display: initial;
}
.aside-bar--mega .okr--block .okr--key-result a.okr-pill {
  height: 2.5em;
}
.aside-bar--mega .okr--block .okr--key-result a.okr-pill i {
  font-size: 1rem;
}
.okr--block .okr--key-result:hover a.okr-pill span, .okr--block .okr--key-result:focus a.okr-pill span {
  background-size: 100% 1px;
}
.okr--block .okr--key-result:hover a.okr-pill b, .okr--block .okr--key-result:focus a.okr-pill b {
  animation: pulse-right 3s;
}
.okr--block .okr--key-result .description {
  padding-top: 0.6rem;
}
.okr--block .okr--key-result .key-result--status .description p {
  margin-bottom: 0.5rem;
}
.okr--block .okr--key-result .key-result--status .description p:last-of-type {
  margin-bottom: 1rem;
}
.okr--block .okr--key-result .key-result--reduction {
  display: flex;
}
.okr--block .okr--key-result .key-result--reduction a {
  padding: 0;
}
.okr--block .okr--key-result .key-result--reduction .okr-gt {
  font-size: 1.1rem;
  color: #ce1a11;
  height: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  text-align: left;
}
@media (min-width: 1000px) {
  .okr--block .okr--key-result .key-result--info b {
    display: none;
  }
  .okr--block .okr--key-result .key-result--reduction {
    justify-content: flex-end;
  }
}
@media (max-width: 999px) {
  .okr--block .okr--key-result .key-result--info:after {
    content: "";
    display: block;
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
    margin-left: 4rem;
    border-bottom: 1px dashed grey;
  }
  .okr--block .okr--key-result .key-result--status .view--mobile, .okr--block .okr--key-result .key-result--reduction .view--mobile {
    display: block;
    font-size: 0.8rem;
    line-height: 0.8rem;
    color: #767676;
    margin-bottom: 0.5rem;
  }
  .okr--block .okr--key-result .key-result--reduction {
    flex-direction: column;
  }
  .okr--block .okr--key-result .key-result--reduction .okr-gt {
    margin: 0;
  }
}
.summary-hide .okr--block .okr--objective {
  margin-bottom: 0.25rem;
}
.summary-hide .okr--block .okr--key-result {
  align-items: center;
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
}
.summary-hide .okr--block .okr--key-result a.okr-pill {
  height: 4rem;
}
.summary-hide .okr--block .okr--key-result .description,
.summary-hide .okr--block .okr--key-result .updated,
.summary-hide .okr--block .okr--key-result .footnote {
  display: none;
}
.summary-hide .okr--block .okr--key-result .status {
  margin-bottom: 0rem;
}
@media (max-width: 999px) {
  .summary-hide .okr--block .okr--key-result .key-result--status {
    padding-top: 0;
  }
  .summary-hide .okr--block .okr--key-result .key-result--status .status {
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 500px) {
  .summary-hide .okr--block .okr--key-result .key-result--status .status {
    margin-bottom: 0.5rem;
  }
}
.aside-bar--mega .okr--block, .aside--mobile .okr--block {
  display: flex;
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  border-top: 1px solid #4a4a4a;
}
.aside-bar--mega .okr--block[data-okr="0"], .aside--mobile .okr--block[data-okr="0"] {
  display: none;
}
.aside-bar--mega .okr--block[data-okr="1"], .aside--mobile .okr--block[data-okr="1"] {
  margin-top: 0;
}
.aside-bar--mega .okr--block .okr-pill, .aside--mobile .okr--block .okr-pill {
  color: white;
  height: 2.5em;
  font-size: 1rem;
}
.aside-bar--mega .okr--block .okr-pill b, .aside--mobile .okr--block .okr-pill b {
  display: none;
}
.aside-bar--mega .okr--block .okr-pill span.okr-title, .aside--mobile .okr--block .okr-pill span.okr-title {
  background-image: linear-gradient(#fff, #fff);
  text-shadow: 0.03em 0 #000, -0.03em 0 #000, 0 0.03em #000, 0 -0.03em #000, 0.06em 0 #000, -0.06em 0 #000, 0.09em 0 #000, -0.09em 0 #000, 0.12em 0 #000, -0.12em 0 #000;
  background-position: 0 90%;
}
.aside-bar--mega .okr--block .okr-pill span.okt-gt, .aside--mobile .okr--block .okr-pill span.okt-gt {
  display: none !important;
}
.aside-bar--mega .okr--block .okr--part, .aside--mobile .okr--block .okr--part {
  margin: 0;
  padding: 0;
  border: 0;
}
.aside-bar--mega .okr--block .okr--objective, .aside--mobile .okr--block .okr--objective {
  flex: 0 0 66.6667%;
  padding-top: 0.45em;
  max-width: 66.6667%;
}
.aside-bar--mega .okr--block .okr--objective .objective--info, .aside--mobile .okr--block .okr--objective .objective--info {
  max-width: 100%;
  flex: 0 0 100%;
}
.aside-bar--mega .okr--block .okr--objective .objective--info .okr-pill, .aside--mobile .okr--block .okr--objective .objective--info .okr-pill {
  font-size: 4.5rem;
  align-items: flex-start;
  padding-left: 1.25em;
  padding-top: 0;
}
.aside-bar--mega .okr--block .okr--objective .objective--info .okr-pill i, .aside--mobile .okr--block .okr--objective .objective--info .okr-pill i {
  font-size: 1.4rem;
}
@media (max-width: 1200px) and (min-width: 1000px) {
  .aside-bar--mega .okr--block .okr--objective .objective--info .okr-pill, .aside--mobile .okr--block .okr--objective .objective--info .okr-pill {
    font-size: 5.5vw;
    line-height: 5.5vw;
  }
}
.aside-bar--mega .okr--block .okr--objective:hover .objective--info .okr-pill i, .aside--mobile .okr--block .okr--objective:hover .objective--info .okr-pill i {
  color: white;
}
.aside-bar--mega .okr--block .okr--key-results, .aside--mobile .okr--block .okr--key-results {
  flex: 0 0 33.3334%;
}
.aside-bar--mega .okr--block .okr--key-results .key-result--status, .aside--mobile .okr--block .okr--key-results .key-result--status {
  display: none;
}
.aside-bar--mega .okr--block .okr--key-results .okr--part .key-result--info, .aside--mobile .okr--block .okr--key-results .okr--part .key-result--info {
  max-width: 100%;
  flex: 0 0 100%;
}
.aside-bar--mega .okr--block .objective--image,
.aside-bar--mega .okr--block .description,
.aside-bar--mega .okr--block .updated,
.aside-bar--mega .okr--block p, .aside--mobile .okr--block .objective--image,
.aside--mobile .okr--block .description,
.aside--mobile .okr--block .updated,
.aside--mobile .okr--block p {
  display: none;
}
@media (max-width: 1200px) and (min-width: 1000px) {
  .aside-bar--mega .okr--block .okr--objective .objective--info .okr-pill, .aside--mobile .okr--block .okr--objective .objective--info .okr-pill {
    font-size: 5.5vw;
    line-height: 5.5vw;
  }
}
@media (max-width: 999px) {
  .aside-bar--mega .okr--block, .aside--mobile .okr--block {
    flex-direction: column;
  }
  .aside-bar--mega .okr--block .okr-pill, .aside--mobile .okr--block .okr-pill {
    height: unset;
    padding-bottom: 30px;
  }
  .aside-bar--mega .okr--block .okr--objective .objective--info .okr-pill, .aside--mobile .okr--block .okr--objective .objective--info .okr-pill {
    font-size: 3.4rem;
    line-height: 3.4rem;
    padding-left: 1.55em;
    height: unset;
  }
  .aside-bar--mega .okr--block .okr--key-results .okr--part .key-result--info, .aside--mobile .okr--block .okr--key-results .okr--part .key-result--info {
    padding-left: 5.4rem;
  }
}
.aside-bar--mega .okr--block .okr--objective .objective--info .okr-pill div {
  margin-top: 0;
}
.aside-bar--mega .okr--block .okr--objective .okr-pill i,
.aside-bar--mega .okr--block .okr--key-result .okr-pill i {
  width: 2.75em;
  height: 2.75em;
}
.aside--mobile .okr--block {
  border: none;
  padding-top: 0;
}
.aside--mobile .okr--block .okr--part.okr--objective .okr-pill {
  font-size: 2.5em;
  line-height: 1;
  padding-bottom: 0;
}
.aside--mobile .okr--block .okr--part.okr--objective .okr-pill i {
  font-size: 1.2rem;
}
.aside--mobile .okr--block .okr--part.okr--key-results {
  display: none;
}

.okr--block .okr--key-results .okr--part .updated,
.okr--block .okr--key-results .okr--part .footnote,
.okr-detail #post .description + .footnote {
  font-size: 0.75rem;
  line-height: 1;
  color: #767676;
  font-family: "Plain-Italic", sans-serif;
  font-style: normal;
}
@media (max-width: 600px) {
  .okr--block .okr--key-results .okr--part .updated,
  .okr--block .okr--key-results .okr--part .footnote,
  .okr-detail #post .description + .footnote {
    font-size: 0.875rem;
  }
}
.okr--block .okr--key-results .okr--part .updated > p,
.okr--block .okr--key-results .okr--part .footnote > p,
.okr-detail #post .description + .footnote > p {
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media (max-width: 600px) {
  .okr--block .okr--key-results .okr--part .updated > p,
  .okr--block .okr--key-results .okr--part .footnote > p,
  .okr-detail #post .description + .footnote > p {
    font-size: 0.875rem;
  }
}

.okr--block .okr--key-results .okr--part .updated,
.okr--block .okr--key-results .okr--part .footnote {
  font-family: "Plain-Light", sans-serif;
}

.content-body .status-shell {
  display: none;
  margin-bottom: 2rem;
  margin-top: 1rem;
  padding: 2rem 0;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
@media (max-width: 999px) {
  .content-body .status-shell {
    display: block;
  }
}

@media (max-width: 999px) {
  #status-shell {
    display: none;
  }
}
.status-rainbow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 1.1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.status-rainbow span:nth-of-type(1) {
  background: hsl(3, 85%, 44%);
  border-radius: 1rem 0 0 1rem;
}
.status-rainbow span:nth-of-type(2) {
  background: hsl(33, 100%, 61%);
}
.status-rainbow span:nth-of-type(3) {
  background: hsl(52, 100%, 68%);
}
.status-rainbow span:nth-of-type(4) {
  background: hsl(84, 70%, 57%);
}
.status-rainbow span:nth-of-type(5) {
  background: hsl(227, 94%, 45%);
  border-radius: 0 1rem 1rem 0;
}

.okr--block .okr--key-result a.okr-pill,
.page-tracker .status,
.okrs--single .status {
  height: 3.2rem;
}

.status {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.status span {
  text-align: center;
  padding: 0.5rem 0.875rem 0.3rem;
  font-size: 0.875rem;
  position: relative;
  border-radius: 1.3rem;
  display: block;
  max-width: 12rem;
  line-height: 1;
}
.status span + .description {
  margin-top: 1rem;
}
@media (max-width: 600px) {
  .status span + .description {
    font-size: 1.5rem;
  }
}
#post .status span + .description,
#post .status span + .description p,
#post .status span + .description + .footnote,
#post .status span + .description + .footnote p {
  font-family: "Plain-Light", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}
#post .status span + .description + .footnote p {
  font-size: 14px;
  font-family: "Plain", sans-serif;
}
@media (min-width: 768px) {
  #post .status span + .description + .footnote p {
    font-size: 12px;
  }
}
.status.red span {
  color: white;
  background: hsl(3, 85%, 44%);
}
.status.orange span {
  background: hsl(33, 100%, 61%);
}
.status.yellow span {
  background: hsl(52, 100%, 68%);
}
.status.green span {
  background: hsl(84, 70%, 57%);
}
.status.blue span {
  color: white;
  background: hsl(227, 94%, 45%);
}
.status.grey span {
  color: white;
  background: hsl(0, 0%, 51.37%);
}

.tracker-content-ajax-container.status-filter-on .okr--key-result {
  display: none;
}

.status-type-red .okr--key-result.status-red {
  display: flex;
}
.status-type-orange .okr--key-result.status-orange {
  display: flex;
}
.status-type-yellow .okr--key-result.status-yellow {
  display: flex;
}
.status-type-green .okr--key-result.status-green {
  display: flex;
}
.status-type-blue .okr--key-result.status-blue {
  display: flex;
}

.okr--list-block-hover {
  position: relative;
}
.okr--list-block-hover a {
  height: 3.6em;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}
.okr--list-block-hover a div {
  transition: all 0.2s linear;
}
.okr--list-block-hover a div span {
  transition: all 0.2s linear;
  background: none;
}
.okr--list-block-hover:hover, .okr--list-block-hover:focus {
  cursor: pointer;
}
.okr--list-block-hover:hover a div, .okr--list-block-hover:focus a div {
  opacity: 0;
  transform: translateY(-0.5em);
}
.okr--list-block-hover:hover .okr-list-hover-content, .okr--list-block-hover:focus .okr-list-hover-content {
  opacity: 1;
  transform: translate(0, -50%);
}
.column.col-lg-6:last-of-type .okr--list-block-hover:hover a div, .column.col-lg-6:last-of-type .okr--list-block-hover:focus a div {
  transform: none;
  opacity: 1;
}
.column.col-lg-6:last-of-type .okr--list-block-hover:hover .okr-list-hover-content, .column.col-lg-6:last-of-type .okr--list-block-hover:focus .okr-list-hover-content {
  opacity: 0;
  transform: none;
}
.posts-container .okr--list-block-hover:nth-of-type(7):hover a div, .posts-container .okr--list-block-hover:nth-of-type(7):focus a div, .posts-container .okr--list-block-hover:nth-of-type(8):hover a div, .posts-container .okr--list-block-hover:nth-of-type(8):focus a div, .posts-container .okr--list-block-hover:nth-of-type(9):hover a div, .posts-container .okr--list-block-hover:nth-of-type(9):focus a div, .posts-container .okr--list-block-hover:nth-of-type(10):hover a div, .posts-container .okr--list-block-hover:nth-of-type(10):focus a div {
  transform: none;
  opacity: 1;
}
.posts-container .okr--list-block-hover:nth-of-type(7):hover .okr-list-hover-content, .posts-container .okr--list-block-hover:nth-of-type(7):focus .okr-list-hover-content, .posts-container .okr--list-block-hover:nth-of-type(8):hover .okr-list-hover-content, .posts-container .okr--list-block-hover:nth-of-type(8):focus .okr-list-hover-content, .posts-container .okr--list-block-hover:nth-of-type(9):hover .okr-list-hover-content, .posts-container .okr--list-block-hover:nth-of-type(9):focus .okr-list-hover-content, .posts-container .okr--list-block-hover:nth-of-type(10):hover .okr-list-hover-content, .posts-container .okr--list-block-hover:nth-of-type(10):focus .okr-list-hover-content {
  opacity: 0;
  transform: none;
}
.okr--list-block-hover .okr-list-hover-content {
  position: absolute;
  opacity: 0;
  padding-left: 5em;
  padding-right: 4em;
  font-size: 1rem;
  line-height: 1.2em;
  transition: all 0.2s linear;
  top: 50%;
  transform: translate(0, calc(-50% + 0.5em));
  color: #ce1a11;
}

.okr--list--poster {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.okr--list--poster .okr--list--poster-item {
  display: flex;
  align-items: center;
}
.page-home .okr--list--poster .okr--list--poster-item {
  font-size: 1.5rem;
}
@media (max-width: 1199px) {
  .page-home .okr--list--poster .okr--list--poster-item {
    font-size: 1.2rem;
  }
}
@media (max-width: 999px) {
  .page-home .okr--list--poster .okr--list--poster-item {
    font-size: 0.9rem;
  }
}
@media (max-width: 875px) {
  .page-home .okr--list--poster .okr--list--poster-item {
    font-size: 0.8rem;
  }
}
@media (max-width: 767px) {
  .page-home .okr--list--poster .okr--list--poster-item {
    font-size: 1.5rem;
  }
}
@media (max-width: 575px) {
  .page-home .okr--list--poster .okr--list--poster-item {
    font-size: 1rem;
  }
}
@media (max-width: 374px) {
  .page-home .okr--list--poster .okr--list--poster-item {
    font-size: 0.9rem;
  }
}
.page-home .okr--list--poster .okr--list--poster-item a.okr-pill {
  margin-right: 0.5rem;
  font-size: 1em;
}
.page-home .okr--list--poster .okr--list--poster-item img {
  margin-right: 2rem;
  height: 2.5em;
}
.okr--list--poster .okr--list--poster-item img {
  width: auto;
  height: 3.6rem;
}
.okr--list--poster a:first-of-type {
  height: 3.2em;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  padding-left: 2.4em;
}
.okr--list--poster a:first-of-type[data-okr="1"] div {
  background: #0736e1;
  color: #fff;
}
.okr--list--poster a:first-of-type[data-okr="1"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #0736e1, -0.03em 0 #0736e1, 0 0.03em #0736e1, 0 -0.03em #0736e1, 0.06em 0 #0736e1, -0.06em 0 #0736e1, 0.09em 0 #0736e1, -0.09em 0 #0736e1, 0.12em 0 #0736e1, -0.12em 0 #0736e1;
}
.okr--list--poster a:first-of-type[data-okr="1"] div:hover, .okr--list--poster a:first-of-type[data-okr="1"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="1"] div:hover span, .okr--list--poster a:first-of-type[data-okr="1"] div:focus span {
  background-image: linear-gradient(#fff, #fff);
}
.okr--list--poster a:first-of-type[data-okr="2"] div {
  background: hsl(52, 100%, 68%);
  color: #000;
}
.okr--list--poster a:first-of-type[data-okr="2"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 hsl(52, 100%, 68%), -0.03em 0 hsl(52, 100%, 68%), 0 0.03em hsl(52, 100%, 68%), 0 -0.03em hsl(52, 100%, 68%), 0.06em 0 hsl(52, 100%, 68%), -0.06em 0 hsl(52, 100%, 68%), 0.09em 0 hsl(52, 100%, 68%), -0.09em 0 hsl(52, 100%, 68%), 0.12em 0 hsl(52, 100%, 68%), -0.12em 0 hsl(52, 100%, 68%);
}
.okr--list--poster a:first-of-type[data-okr="2"] div:hover, .okr--list--poster a:first-of-type[data-okr="2"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="2"] div:hover span, .okr--list--poster a:first-of-type[data-okr="2"] div:focus span {
  background-image: linear-gradient(#000, #000);
}
.okr--list--poster a:first-of-type[data-okr="3"] div {
  background: #c9dd41;
  color: #000;
}
.okr--list--poster a:first-of-type[data-okr="3"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #c9dd41, -0.03em 0 #c9dd41, 0 0.03em #c9dd41, 0 -0.03em #c9dd41, 0.06em 0 #c9dd41, -0.06em 0 #c9dd41, 0.09em 0 #c9dd41, -0.09em 0 #c9dd41, 0.12em 0 #c9dd41, -0.12em 0 #c9dd41;
}
.okr--list--poster a:first-of-type[data-okr="3"] div:hover, .okr--list--poster a:first-of-type[data-okr="3"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="3"] div:hover span, .okr--list--poster a:first-of-type[data-okr="3"] div:focus span {
  background-image: linear-gradient(#000, #000);
}
.okr--list--poster a:first-of-type[data-okr="4"] div {
  background: #004b3e;
  color: #fff;
}
.okr--list--poster a:first-of-type[data-okr="4"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #004b3e, -0.03em 0 #004b3e, 0 0.03em #004b3e, 0 -0.03em #004b3e, 0.06em 0 #004b3e, -0.06em 0 #004b3e, 0.09em 0 #004b3e, -0.09em 0 #004b3e, 0.12em 0 #004b3e, -0.12em 0 #004b3e;
}
.okr--list--poster a:first-of-type[data-okr="4"] div:hover, .okr--list--poster a:first-of-type[data-okr="4"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="4"] div:hover span, .okr--list--poster a:first-of-type[data-okr="4"] div:focus span {
  background-image: linear-gradient(#fff, #fff);
}
.okr--list--poster a:first-of-type[data-okr="5"] div {
  background: #ce1a11;
  color: #fff;
}
.okr--list--poster a:first-of-type[data-okr="5"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #ce1a11, -0.03em 0 #ce1a11, 0 0.03em #ce1a11, 0 -0.03em #ce1a11, 0.06em 0 #ce1a11, -0.06em 0 #ce1a11, 0.09em 0 #ce1a11, -0.09em 0 #ce1a11, 0.12em 0 #ce1a11, -0.12em 0 #ce1a11;
}
.okr--list--poster a:first-of-type[data-okr="5"] div:hover, .okr--list--poster a:first-of-type[data-okr="5"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="5"] div:hover span, .okr--list--poster a:first-of-type[data-okr="5"] div:focus span {
  background-image: linear-gradient(#fff, #fff);
}
.okr--list--poster a:first-of-type[data-okr="6"] div {
  background: #89211b;
  color: #fff;
}
.okr--list--poster a:first-of-type[data-okr="6"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #89211b, -0.03em 0 #89211b, 0 0.03em #89211b, 0 -0.03em #89211b, 0.06em 0 #89211b, -0.06em 0 #89211b, 0.09em 0 #89211b, -0.09em 0 #89211b, 0.12em 0 #89211b, -0.12em 0 #89211b;
}
.okr--list--poster a:first-of-type[data-okr="6"] div:hover, .okr--list--poster a:first-of-type[data-okr="6"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="6"] div:hover span, .okr--list--poster a:first-of-type[data-okr="6"] div:focus span {
  background-image: linear-gradient(#fff, #fff);
}
.okr--list--poster a:first-of-type[data-okr="7"] div {
  background: #6e00ed;
  color: #fff;
}
.okr--list--poster a:first-of-type[data-okr="7"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #6e00ed, -0.03em 0 #6e00ed, 0 0.03em #6e00ed, 0 -0.03em #6e00ed, 0.06em 0 #6e00ed, -0.06em 0 #6e00ed, 0.09em 0 #6e00ed, -0.09em 0 #6e00ed, 0.12em 0 #6e00ed, -0.12em 0 #6e00ed;
}
.okr--list--poster a:first-of-type[data-okr="7"] div:hover, .okr--list--poster a:first-of-type[data-okr="7"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="7"] div:hover span, .okr--list--poster a:first-of-type[data-okr="7"] div:focus span {
  background-image: linear-gradient(#fff, #fff);
}
.okr--list--poster a:first-of-type[data-okr="8"] div {
  background: #ee8f10;
  color: #000;
}
.okr--list--poster a:first-of-type[data-okr="8"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #ee8f10, -0.03em 0 #ee8f10, 0 0.03em #ee8f10, 0 -0.03em #ee8f10, 0.06em 0 #ee8f10, -0.06em 0 #ee8f10, 0.09em 0 #ee8f10, -0.09em 0 #ee8f10, 0.12em 0 #ee8f10, -0.12em 0 #ee8f10;
}
.okr--list--poster a:first-of-type[data-okr="8"] div:hover, .okr--list--poster a:first-of-type[data-okr="8"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="8"] div:hover span, .okr--list--poster a:first-of-type[data-okr="8"] div:focus span {
  background-image: linear-gradient(#000, #000);
}
.okr--list--poster a:first-of-type[data-okr="9"] div {
  background: #ff9cb1;
  color: #000;
}
.okr--list--poster a:first-of-type[data-okr="9"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #ff9cb1, -0.03em 0 #ff9cb1, 0 0.03em #ff9cb1, 0 -0.03em #ff9cb1, 0.06em 0 #ff9cb1, -0.06em 0 #ff9cb1, 0.09em 0 #ff9cb1, -0.09em 0 #ff9cb1, 0.12em 0 #ff9cb1, -0.12em 0 #ff9cb1;
}
.okr--list--poster a:first-of-type[data-okr="9"] div:hover, .okr--list--poster a:first-of-type[data-okr="9"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="9"] div:hover span, .okr--list--poster a:first-of-type[data-okr="9"] div:focus span {
  background-image: linear-gradient(#000, #000);
}
.okr--list--poster a:first-of-type[data-okr="10"] div {
  background: #93e5f9;
  color: #000;
}
.okr--list--poster a:first-of-type[data-okr="10"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #93e5f9, -0.03em 0 #93e5f9, 0 0.03em #93e5f9, 0 -0.03em #93e5f9, 0.06em 0 #93e5f9, -0.06em 0 #93e5f9, 0.09em 0 #93e5f9, -0.09em 0 #93e5f9, 0.12em 0 #93e5f9, -0.12em 0 #93e5f9;
}
.okr--list--poster a:first-of-type[data-okr="10"] div:hover, .okr--list--poster a:first-of-type[data-okr="10"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="10"] div:hover span, .okr--list--poster a:first-of-type[data-okr="10"] div:focus span {
  background-image: linear-gradient(#000, #000);
}
.okr--list--poster a:first-of-type[data-okr="0"] div {
  background: #000;
  color: #fff;
}
.okr--list--poster a:first-of-type[data-okr="0"] div span {
  padding-top: 0.125em;
  text-shadow: 0.03em 0 #000, -0.03em 0 #000, 0 0.03em #000, 0 -0.03em #000, 0.06em 0 #000, -0.06em 0 #000, 0.09em 0 #000, -0.09em 0 #000, 0.12em 0 #000, -0.12em 0 #000;
}
.okr--list--poster a:first-of-type[data-okr="0"] div:hover, .okr--list--poster a:first-of-type[data-okr="0"] div:focus {
  cursor: pointer;
}
.okr--list--poster a:first-of-type[data-okr="0"] div:hover span, .okr--list--poster a:first-of-type[data-okr="0"] div:focus span {
  background-image: linear-gradient(#fff, #fff);
}
.okr--list--poster a:first-of-type div {
  width: auto;
  height: 2.5em;
  display: flex;
  align-items: center;
  padding: 0px 1.5rem;
  border-radius: 3rem;
  margin-top: 0;
}
.okr--list--poster a:first-of-type b {
  display: none;
}

.okr--block-mini {
  width: 100%;
}
@media (max-width: 999px) and (min-width: 601px) {
  .okr--block-mini {
    max-width: 100%;
    margin: auto;
  }
}
.okr--block-mini img {
  max-width: 115px;
  margin-bottom: 1rem;
}
.okr--block-mini .okr-pill span {
  transition: 0.2s ease all;
  background-image: linear-gradient(#000, #000);
  text-shadow: 0.03em 0 #fff, -0.03em 0 #fff, 0 0.03em #fff, 0 -0.03em #fff, 0.06em 0 #fff, -0.06em 0 #fff, 0.09em 0 #fff, -0.09em 0 #fff, 0.12em 0 #fff, -0.12em 0 #fff;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
}
.okr--block-mini .okr-pill:hover span {
  background-size: 100% 1px;
}
.okr--block-mini.okr--parent {
  border-top: 1px solid #767676;
  margin-top: 20px;
  padding-top: 20px;
}
.okr--block-mini.okr--parent:first-of-type {
  border: none;
  margin-top: 0;
  padding: 0;
}
.okr--block-mini:last-of-type {
  border-bottom: 1px solid #767676;
  padding-bottom: 20px;
}

#okr-hero {
  background: hsl(52, 100%, 68%);
  color: black;
  margin-top: 1rem;
}
@media (max-width: 999px) {
  #okr-hero {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  #okr-hero h1 {
    font-size: 5.3vw;
  }
}
@media (max-width: 768px) {
  #okr-hero h1 {
    font-size: 11.9vw;
  }
}
#okr-hero a {
  color: inherit;
  transition: 0.3s ease all;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
}
.okr-light #okr-hero a {
  background-image: linear-gradient(#000, #000);
}
.okr-dark #okr-hero a {
  background-image: linear-gradient(#fff, #fff);
}
#okr-1 #okr-hero a {
  text-shadow: 0.03em 0 #0736e1, -0.03em 0 #0736e1, 0 0.03em #0736e1, 0 -0.03em #0736e1, 0.06em 0 #0736e1, -0.06em 0 #0736e1, 0.09em 0 #0736e1, -0.09em 0 #0736e1, 0.12em 0 #0736e1, -0.12em 0 #0736e1;
}
#okr-2 #okr-hero a {
  text-shadow: 0.03em 0 hsl(52, 100%, 68%), -0.03em 0 hsl(52, 100%, 68%), 0 0.03em hsl(52, 100%, 68%), 0 -0.03em hsl(52, 100%, 68%), 0.06em 0 hsl(52, 100%, 68%), -0.06em 0 hsl(52, 100%, 68%), 0.09em 0 hsl(52, 100%, 68%), -0.09em 0 hsl(52, 100%, 68%), 0.12em 0 hsl(52, 100%, 68%), -0.12em 0 hsl(52, 100%, 68%);
}
#okr-3 #okr-hero a {
  text-shadow: 0.03em 0 #c9dd41, -0.03em 0 #c9dd41, 0 0.03em #c9dd41, 0 -0.03em #c9dd41, 0.06em 0 #c9dd41, -0.06em 0 #c9dd41, 0.09em 0 #c9dd41, -0.09em 0 #c9dd41, 0.12em 0 #c9dd41, -0.12em 0 #c9dd41;
}
#okr-4 #okr-hero a {
  text-shadow: 0.03em 0 #004b3e, -0.03em 0 #004b3e, 0 0.03em #004b3e, 0 -0.03em #004b3e, 0.06em 0 #004b3e, -0.06em 0 #004b3e, 0.09em 0 #004b3e, -0.09em 0 #004b3e, 0.12em 0 #004b3e, -0.12em 0 #004b3e;
}
#okr-5 #okr-hero a {
  text-shadow: 0.03em 0 #ce1a11, -0.03em 0 #ce1a11, 0 0.03em #ce1a11, 0 -0.03em #ce1a11, 0.06em 0 #ce1a11, -0.06em 0 #ce1a11, 0.09em 0 #ce1a11, -0.09em 0 #ce1a11, 0.12em 0 #ce1a11, -0.12em 0 #ce1a11;
}
#okr-6 #okr-hero a {
  text-shadow: 0.03em 0 #89211b, -0.03em 0 #89211b, 0 0.03em #89211b, 0 -0.03em #89211b, 0.06em 0 #89211b, -0.06em 0 #89211b, 0.09em 0 #89211b, -0.09em 0 #89211b, 0.12em 0 #89211b, -0.12em 0 #89211b;
}
#okr-7 #okr-hero a {
  text-shadow: 0.03em 0 #6e00ed, -0.03em 0 #6e00ed, 0 0.03em #6e00ed, 0 -0.03em #6e00ed, 0.06em 0 #6e00ed, -0.06em 0 #6e00ed, 0.09em 0 #6e00ed, -0.09em 0 #6e00ed, 0.12em 0 #6e00ed, -0.12em 0 #6e00ed;
}
#okr-8 #okr-hero a {
  text-shadow: 0.03em 0 #ee8f10, -0.03em 0 #ee8f10, 0 0.03em #ee8f10, 0 -0.03em #ee8f10, 0.06em 0 #ee8f10, -0.06em 0 #ee8f10, 0.09em 0 #ee8f10, -0.09em 0 #ee8f10, 0.12em 0 #ee8f10, -0.12em 0 #ee8f10;
}
#okr-9 #okr-hero a {
  text-shadow: 0.03em 0 #ff9cb1, -0.03em 0 #ff9cb1, 0 0.03em #ff9cb1, 0 -0.03em #ff9cb1, 0.06em 0 #ff9cb1, -0.06em 0 #ff9cb1, 0.09em 0 #ff9cb1, -0.09em 0 #ff9cb1, 0.12em 0 #ff9cb1, -0.12em 0 #ff9cb1;
}
#okr-10 #okr-hero a {
  text-shadow: 0.03em 0 #93e5f9, -0.03em 0 #93e5f9, 0 0.03em #93e5f9, 0 -0.03em #93e5f9, 0.06em 0 #93e5f9, -0.06em 0 #93e5f9, 0.09em 0 #93e5f9, -0.09em 0 #93e5f9, 0.12em 0 #93e5f9, -0.12em 0 #93e5f9;
}
#okr-0 #okr-hero a {
  text-shadow: 0.03em 0 #000, -0.03em 0 #000, 0 0.03em #000, 0 -0.03em #000, 0.06em 0 #000, -0.06em 0 #000, 0.09em 0 #000, -0.09em 0 #000, 0.12em 0 #000, -0.12em 0 #000;
}
#okr-hero a:hover {
  background-size: 100% 1px;
}
#okr-hero .above-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
@media (max-width: 919px) {
  #okr-hero .above-title {
    margin-bottom: 1rem;
  }
}
#okr-hero .above-title > a {
  margin-right: 2em;
}
@media (max-width: 450px) {
  #okr-hero .above-title > a {
    align-self: flex-start;
    margin-top: 0.5rem;
  }
  #okr-hero .above-title .social-share-container {
    align-self: flex-end;
  }
  #okr-hero .above-title .social-share-container span:first-of-type {
    display: none;
  }
}
#okr-hero .above-title .social--share a:last-of-type {
  margin-right: 0;
}
#okr-hero h1 {
  padding: 1.75rem 0;
}
#okr-hero h1 i {
  display: block;
  font-size: 0.35em;
  display: flex;
  width: 2.75em;
  height: 2.75em;
  font-family: "Plain", sans-serif;
  font-style: normal;
  background: black;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  padding-top: 0.225em;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  #okr-hero h1 i {
    font-size: 1.6rem;
  }
}
#okr-hero .column:first-of-type {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (min-width: 992px) {
  #okr-hero .column:first-of-type {
    padding-right: 2rem;
  }
  .page-commitments #okr-hero .column:first-of-type, .page-7-2-subsidies #okr-hero .column:first-of-type {
    flex: 0 0 75%;
    max-width: 75%;
  }
}
#okr-hero .column:first-of-type p {
  font-size: 1.375rem;
  line-height: 1.1;
  flex-grow: 2;
}
#okr-hero .column:first-of-type .footnotes,
#okr-hero .column:first-of-type .footnotes > p {
  font-family: "Plain-Light", sans-serif;
  font-size: 0.875rem;
  line-height: 1em;
}
@media (min-width: 992px) {
  .page-commitments #okr-hero .column:last-of-type, .page-7-2-subsidies #okr-hero .column:last-of-type {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.objectives #okr-hero .column img {
  width: calc(100% - 30px);
  height: 100%;
  object-fit: contain;
}
@media (min-width: 992px) {
  .objectives #okr-hero .column img {
    position: absolute;
  }
}
.key-results #okr-hero .row.stats .okr-stat {
  display: flex;
}
.key-results #okr-hero .row.stats .okr-stat.stat-type-money, .key-results #okr-hero .row.stats .okr-stat.long_number {
  font-size: 3.5rem;
}
.key-results #okr-hero .row.stats .okr-stat .odometer {
  font-family: inherit;
  line-height: inherit;
}
.key-results #okr-hero .row.stats .okr-arrow {
  display: flex;
  align-items: center;
  min-width: 175px;
  max-width: 300px;
  height: 100%;
  margin: 10px auto;
}
.key-results #okr-hero .row.stats .okr-arrow.direction-up {
  transform: rotate(180deg);
}
.key-results #okr-hero .row.stats .okr-arrow span {
  display: block;
}
#okr-hero .column:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-top: 1.75rem;
}
#okr-hero .column:last-of-type hr {
  content: "";
  position: absolute;
  top: 56px;
  left: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid black;
  height: calc(100% - 56px);
  z-index: 1;
}
.okr-dark #okr-hero .column:last-of-type hr {
  border-color: white;
}
#okr-hero .column:last-of-type .okr-stat {
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}
#okr-hero .column:last-of-type .okr-stat:last-of-type {
  padding-bottom: 0rem;
}
.page-commitments #okr-hero .column:last-of-type .okr-stat .okr-stat-item--title {
  font-size: 2rem;
  padding-top: 0.4em;
}
@media (min-width: 1440px) {
  .page-commitments #okr-hero .column:last-of-type .okr-stat .okr-stat-item--title {
    padding-top: 1rem;
  }
}
@media (min-width: 1800px) {
  .page-commitments #okr-hero .column:last-of-type .okr-stat .okr-stat-item--title {
    padding-top: 0.4rem;
  }
}
#okr-hero .column:last-of-type .okr-stat-year {
  max-width: 86px;
  flex: 0 0 86px;
}
#okr-hero .column:last-of-type .okr-stat-year i {
  font-family: "Plain", sans-serif;
  font-style: normal;
  font-size: 14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid black;
  color: black;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
#okr-hero .column:last-of-type .okr-stat-year i span {
  line-height: 1;
  padding-top: 0.1em;
}
.okr-dark #okr-hero .column:last-of-type .okr-stat-year i {
  border-color: white;
  color: white;
}
#okr-hero .column:last-of-type .okr-stat-item--label {
  font-size: 0.875rem;
  padding-bottom: 0.5rem;
}
#okr-hero .column:last-of-type .okr-stat-item--title {
  font-size: 2.6rem;
  padding-bottom: 0.25rem;
  line-height: 1em;
}
@media (max-width: 999px) {
  #okr-hero .column:last-of-type .okr-stat-item--title {
    font-size: 2rem;
    padding-bottom: 0.2rem;
  }
}
#okr-hero .column:last-of-type .okr-stat-item--content {
  font-size: 1.25rem;
  padding-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 999px) {
  #okr-hero .column:last-of-type .okr-stat-item--content {
    font-size: 1rem;
  }
}
.okr-dark #okr-hero .okr-arrow .arrow-black {
  display: none;
}
.okr-light #okr-hero .okr-arrow .arrow-white {
  display: none;
}

#okr-about > div {
  font-family: "Financier", sans-serif;
  columns: 2;
  column-gap: 3rem;
}
@media (max-width: 999px) {
  #okr-about > div {
    columns: 1;
  }
}
#okr-about p {
  break-inside: avoid;
}

.okr-detail #post {
  padding-bottom: 0;
}
.okr-detail #post p {
  font-family: "Financier", sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
}
.okr-detail #post .post-content {
  padding: 0 15px;
}
.okr-detail #post .post-content.has-video {
  display: flex;
  padding: 0;
}
.okr-detail #post .post-content.has-video .wp-block-group {
  columns: 1;
}
.okr-detail #post h2 {
  font-size: var(--font--size-h2);
  padding-top: 0;
}
.okr-detail #post .wp-block-group {
  columns: 2;
  column-gap: 3rem;
}
@media (max-width: 999px) {
  .okr-detail #post .wp-block-group {
    columns: 1;
  }
}
.okr-detail #post .wp-block-group p {
  break-inside: avoid;
}
.okr-detail #post .wp-block-columns,
.okr-detail #post .content-body > div:not(:first-of-type) {
  padding-top: 3rem;
}
.okr-detail #post .wp-block-columns {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 999px) {
  .okr-detail #post .wp-block-columns {
    display: block;
  }
}
.okr-detail #post .wp-block-columns .wp-block-column {
  padding: 0 15px;
}
@media (max-width: 999px) {
  .okr-detail #post .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
    margin-left: 0;
  }
  .okr-detail #post .wp-block-columns .wp-block-column .wp-block-embed {
    margin: 0 0 2em;
  }
}

#okr-key-results-list h2 {
  padding: 0.6rem 0 1rem;
}
#okr-key-results-list .okr--header > div:first-of-type span {
  display: none;
}
#okr-key-results-list .okr--header > div:last-of-type {
  text-align: left;
}
#okr-key-results-list .okr-gt {
  color: #ce1a11;
  margin-bottom: 2rem;
  flex: 1;
}

#okr-steps {
  background: hsl(52, 100%, 68%);
  color: black;
}
#okr-steps h2 {
  padding-top: 0;
  border-bottom: 1px solid black;
}
#okr-steps article {
  padding: 0.5rem 15px 0;
}
#okr-steps article a h3,
#okr-steps article a p {
  color: black;
}
#okr-steps article a h3:hover, #okr-steps article a h3:focus,
#okr-steps article a p:hover,
#okr-steps article a p:focus {
  color: black;
}
#okr-steps article a span.title {
  margin-right: 1em;
}
#okr-steps article h3 {
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
}
#okr-steps article p {
  font-size: 0.875rem;
}
#okr-steps article ul {
  padding-left: 1.2rem;
}
#okr-steps article ul small {
  opacity: 1;
}
@media (min-width: 767px) {
  #okr-steps article[data-count="1"] {
    width: 100%;
  }
  #okr-steps article[data-count="2"], #okr-steps article[data-count="4"], #okr-steps article[data-count="5"], #okr-steps article[data-count="7"], #okr-steps article[data-count="8"] {
    width: 50%;
  }
  #okr-steps article[data-count="3"], #okr-steps article[data-count="6"], #okr-steps article[data-count="9"] {
    width: 33.3334%;
  }
  #okr-steps article[data-count="5"]:last-of-type, #okr-steps article[data-count="7"]:last-of-type {
    width: 100%;
  }
}

#okr-leaders .leaders-list {
  column-count: 3;
  column-gap: 3rem;
}
#okr-leaders .leaders-list .leaders-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  border-bottom: 1px solid gray;
  font-size: 1.5rem;
  line-height: 1.2em;
  padding: 0.875em 0;
  break-inside: avoid;
}
#okr-leaders .leaders-list .leaders-link div {
  padding-right: 1em;
  line-height: 1em;
  margin-top: 3px;
}
@media (max-width: 999px) {
  #okr-leaders .leaders-list {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  #okr-leaders .leaders-list {
    column-count: 1;
  }
  #okr-leaders .leaders-list .leaders-link {
    font-size: 1rem;
  }
}

#okr-more-news .posts-container,
#okr-list-2-columns .posts-container {
  column-count: 2;
  column-gap: 3rem;
}
@media (max-width: 999px) {
  #okr-more-news .posts-container,
  #okr-list-2-columns .posts-container {
    column-count: 1;
  }
}
#okr-more-news .posts-container article,
#okr-list-2-columns .posts-container article {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

#okr-more-news .more-news,
#okr-list-2-columns .more-news,
#additional-resources .more-news {
  padding-top: 30px;
  text-align: center;
  width: 100%;
}
@media (max-width: 600px) {
  #okr-more-news .more-news,
  #okr-list-2-columns .more-news,
  #additional-resources .more-news {
    padding-top: 0px;
  }
}

#okr-list-2-columns a.okr-pill {
  break-inside: avoid;
  border-top: none;
  margin-right: 0;
}
#okr-list-2-columns a.okr-pill i {
  font-size: 0.8em;
}
@media (max-width: 999px) {
  .okr-detail #okr-list-2-columns {
    padding-top: 0;
  }
}
#okr-list-2-columns .okr--list-block-hover,
#okr-list-2-columns .posts-container.okr-solid a {
  border-top: 1px solid #767676;
  border-bottom-color: #767676;
  border-bottom-style: solid;
  border-bottom-width: 0;
}
#okr-list-2-columns .okr--list-block-hover:last-of-type,
#okr-list-2-columns .posts-container.okr-solid a:last-of-type {
  border-bottom-width: 1px;
}
#okr-list-2-columns .okr--list-block-hover:nth-of-type(6) {
  border-bottom-width: 1px;
}
#okr-list-2-columns .posts-container .okr--list-block-hover:nth-of-type(6) {
  border-bottom-width: 0;
}
@media (min-width: 992px) {
  #okr-list-2-columns .posts-container .okr--list-block-hover:nth-of-type(5) {
    border-bottom-width: 1px;
  }
}
#okr-list-2-columns .posts-container.okr-solid.count-2 a:nth-of-type(1) {
  border-bottom-width: 1px;
}
#okr-list-2-columns .posts-container.okr-solid.count-3 a:nth-of-type(2) {
  border-bottom-width: 1px;
}
#okr-list-2-columns .posts-container.okr-solid.count-4 a:nth-of-type(2) {
  border-bottom-width: 1px;
}
#okr-list-2-columns .posts-container.okr-solid.count-5 a:nth-of-type(3) {
  border-bottom-width: 1px;
}
#okr-list-2-columns .posts-container.okr-solid.count-6 a:nth-of-type(3) {
  border-bottom-width: 1px;
}
#okr-list-2-columns .posts-container.okr-solid.count-7 a:nth-of-type(4) {
  border-bottom-width: 1px;
}
#okr-list-2-columns .posts-container.okr-solid.count-8 a:nth-of-type(4) {
  border-bottom-width: 1px;
}
#okr-list-2-columns .posts-container.okr-solid.count-9 a:nth-of-type(5) {
  border-bottom-width: 1px;
}
#okr-list-2-columns .posts-container.okr-solid.count-10 a:nth-of-type(5) {
  border-bottom-width: 1px;
}

#okr-leaders a span,
#okr-steps a span {
  transition: 0.2s ease all;
}
#okr-leaders a span.title,
#okr-steps a span.title {
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
}
#okr-leaders a:hover span.title,
#okr-steps a:hover span.title {
  background-size: 100% 1px;
}

.okr-light #okr-steps a span.title {
  background-image: linear-gradient(#000, #000);
}
.okr-dark #okr-steps a span.title {
  background-image: linear-gradient(#fff, #fff);
}
#okr-1 #okr-steps a span.title {
  text-shadow: 0.03em 0 #0736e1, -0.03em 0 #0736e1, 0 0.03em #0736e1, 0 -0.03em #0736e1, 0.06em 0 #0736e1, -0.06em 0 #0736e1, 0.09em 0 #0736e1, -0.09em 0 #0736e1, 0.12em 0 #0736e1, -0.12em 0 #0736e1;
}
#okr-2 #okr-steps a span.title {
  text-shadow: 0.03em 0 hsl(52, 100%, 68%), -0.03em 0 hsl(52, 100%, 68%), 0 0.03em hsl(52, 100%, 68%), 0 -0.03em hsl(52, 100%, 68%), 0.06em 0 hsl(52, 100%, 68%), -0.06em 0 hsl(52, 100%, 68%), 0.09em 0 hsl(52, 100%, 68%), -0.09em 0 hsl(52, 100%, 68%), 0.12em 0 hsl(52, 100%, 68%), -0.12em 0 hsl(52, 100%, 68%);
}
#okr-3 #okr-steps a span.title {
  text-shadow: 0.03em 0 #c9dd41, -0.03em 0 #c9dd41, 0 0.03em #c9dd41, 0 -0.03em #c9dd41, 0.06em 0 #c9dd41, -0.06em 0 #c9dd41, 0.09em 0 #c9dd41, -0.09em 0 #c9dd41, 0.12em 0 #c9dd41, -0.12em 0 #c9dd41;
}
#okr-4 #okr-steps a span.title {
  text-shadow: 0.03em 0 #004b3e, -0.03em 0 #004b3e, 0 0.03em #004b3e, 0 -0.03em #004b3e, 0.06em 0 #004b3e, -0.06em 0 #004b3e, 0.09em 0 #004b3e, -0.09em 0 #004b3e, 0.12em 0 #004b3e, -0.12em 0 #004b3e;
}
#okr-5 #okr-steps a span.title {
  text-shadow: 0.03em 0 #ce1a11, -0.03em 0 #ce1a11, 0 0.03em #ce1a11, 0 -0.03em #ce1a11, 0.06em 0 #ce1a11, -0.06em 0 #ce1a11, 0.09em 0 #ce1a11, -0.09em 0 #ce1a11, 0.12em 0 #ce1a11, -0.12em 0 #ce1a11;
}
#okr-6 #okr-steps a span.title {
  text-shadow: 0.03em 0 #89211b, -0.03em 0 #89211b, 0 0.03em #89211b, 0 -0.03em #89211b, 0.06em 0 #89211b, -0.06em 0 #89211b, 0.09em 0 #89211b, -0.09em 0 #89211b, 0.12em 0 #89211b, -0.12em 0 #89211b;
}
#okr-7 #okr-steps a span.title {
  text-shadow: 0.03em 0 #6e00ed, -0.03em 0 #6e00ed, 0 0.03em #6e00ed, 0 -0.03em #6e00ed, 0.06em 0 #6e00ed, -0.06em 0 #6e00ed, 0.09em 0 #6e00ed, -0.09em 0 #6e00ed, 0.12em 0 #6e00ed, -0.12em 0 #6e00ed;
}
#okr-8 #okr-steps a span.title {
  text-shadow: 0.03em 0 #ee8f10, -0.03em 0 #ee8f10, 0 0.03em #ee8f10, 0 -0.03em #ee8f10, 0.06em 0 #ee8f10, -0.06em 0 #ee8f10, 0.09em 0 #ee8f10, -0.09em 0 #ee8f10, 0.12em 0 #ee8f10, -0.12em 0 #ee8f10;
}
#okr-9 #okr-steps a span.title {
  text-shadow: 0.03em 0 #ff9cb1, -0.03em 0 #ff9cb1, 0 0.03em #ff9cb1, 0 -0.03em #ff9cb1, 0.06em 0 #ff9cb1, -0.06em 0 #ff9cb1, 0.09em 0 #ff9cb1, -0.09em 0 #ff9cb1, 0.12em 0 #ff9cb1, -0.12em 0 #ff9cb1;
}
#okr-10 #okr-steps a span.title {
  text-shadow: 0.03em 0 #93e5f9, -0.03em 0 #93e5f9, 0 0.03em #93e5f9, 0 -0.03em #93e5f9, 0.06em 0 #93e5f9, -0.06em 0 #93e5f9, 0.09em 0 #93e5f9, -0.09em 0 #93e5f9, 0.12em 0 #93e5f9, -0.12em 0 #93e5f9;
}
#okr-0 #okr-steps a span.title {
  text-shadow: 0.03em 0 #000, -0.03em 0 #000, 0 0.03em #000, 0 -0.03em #000, 0.06em 0 #000, -0.06em 0 #000, 0.09em 0 #000, -0.09em 0 #000, 0.12em 0 #000, -0.12em 0 #000;
}
#okr-steps a:hover span.arrow {
  color: inherit;
  transform: rotate(-45deg);
}

#okr-leaders a span.arrow {
  transform: rotate(-45deg);
}
#okr-leaders a span.title {
  background-image: linear-gradient(#000, #000);
  text-shadow: 0.03em 0 white, -0.03em 0 white, 0 0.03em white, 0 -0.03em white, 0.06em 0 white, -0.06em 0 white, 0.09em 0 white, -0.09em 0 white, 0.12em 0 white, -0.12em 0 white;
}
#okr-leaders a:hover .arrow {
  animation: pulse-right 3s;
  transform: rotate(0deg);
}

.okr-detail #post .wp-block-quote {
  background: hsl(52, 100%, 68%);
  padding: 3rem 0;
}
.okr-detail #post .wp-block-quote p {
  font-size: 4.5rem;
  line-height: 1em;
  position: relative;
}
.okr-detail #post .wp-block-quote cite {
  display: block;
  font-size: 1.4rem;
  margin-top: 1rem;
  text-align: right;
}
.okr-detail #post .wp-block-quote p,
.okr-detail #post .wp-block-quote cite {
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}
@media (min-width: 768px) {
  .okr-detail #post .wp-block-quote p,
  .okr-detail #post .wp-block-quote cite {
    max-width: 93%;
  }
}
@media (min-width: 1441px) {
  .okr-detail #post .wp-block-quote p,
  .okr-detail #post .wp-block-quote cite {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .okr-detail #post .wp-block-quote p,
  .okr-detail #post .wp-block-quote cite {
    max-width: 100%;
  }
}

.okr-detail.objectives.okr-dark #okr-hero,
.okr-detail.objectives.okr-dark #okr-steps,
.okr-detail.objectives.okr-dark #okr-steps h3,
.okr-detail.objectives.okr-dark .wp-block-quote, .okr-detail.key-results.okr-dark #okr-hero,
.okr-detail.key-results.okr-dark #okr-steps,
.okr-detail.key-results.okr-dark #okr-steps h3,
.okr-detail.key-results.okr-dark .wp-block-quote {
  color: white;
}
.okr-detail.objectives.okr-dark #okr-hero h1 i, .okr-detail.key-results.okr-dark #okr-hero h1 i {
  background: white;
}
.okr-detail.objectives.okr-dark #okr-hero .row.on-track:before, .okr-detail.key-results.okr-dark #okr-hero .row.on-track:before {
  border-color: white;
}
.okr-detail.objectives.okr-dark #okr-hero .progress-bar, .okr-detail.key-results.okr-dark #okr-hero .progress-bar {
  background-color: rgba(255, 255, 255, 0.1);
}
.okr-detail.objectives.okr-dark #okr-hero .progress-bar .meter-animated, .okr-detail.key-results.okr-dark #okr-hero .progress-bar .meter-animated {
  background-color: white;
}
.okr-detail.objectives.okr-dark #okr-steps h2, .okr-detail.key-results.okr-dark #okr-steps h2 {
  border-color: white;
}
.okr-detail.objectives#okr-1 #okr-hero,
.okr-detail.objectives#okr-1 #okr-steps,
.okr-detail.objectives#okr-1 .wp-block-quote, .okr-detail.key-results#okr-1 #okr-hero,
.okr-detail.key-results#okr-1 #okr-steps,
.okr-detail.key-results#okr-1 .wp-block-quote {
  background: #0736e1;
}
.okr-detail.objectives#okr-1 h1 i,
.okr-detail.objectives#okr-1 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-1 h1 i,
.okr-detail.key-results#okr-1 .okr-stat:first-of-type .okr-stat-year i {
  color: #0736e1;
}
.okr-detail.objectives#okr-1 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-1 .okr-stat .okr-stat-year i {
  background: #0736e1;
}
.okr-detail.objectives#okr-1 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-1 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-1 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-1 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-2 #okr-hero,
.okr-detail.objectives#okr-2 #okr-steps,
.okr-detail.objectives#okr-2 .wp-block-quote, .okr-detail.key-results#okr-2 #okr-hero,
.okr-detail.key-results#okr-2 #okr-steps,
.okr-detail.key-results#okr-2 .wp-block-quote {
  background: hsl(52, 100%, 68%);
}
.okr-detail.objectives#okr-2 h1 i,
.okr-detail.objectives#okr-2 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-2 h1 i,
.okr-detail.key-results#okr-2 .okr-stat:first-of-type .okr-stat-year i {
  color: hsl(52, 100%, 68%);
}
.okr-detail.objectives#okr-2 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-2 .okr-stat .okr-stat-year i {
  background: hsl(52, 100%, 68%);
}
.okr-detail.objectives#okr-2 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-2 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-2 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-2 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-3 #okr-hero,
.okr-detail.objectives#okr-3 #okr-steps,
.okr-detail.objectives#okr-3 .wp-block-quote, .okr-detail.key-results#okr-3 #okr-hero,
.okr-detail.key-results#okr-3 #okr-steps,
.okr-detail.key-results#okr-3 .wp-block-quote {
  background: #c9dd41;
}
.okr-detail.objectives#okr-3 h1 i,
.okr-detail.objectives#okr-3 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-3 h1 i,
.okr-detail.key-results#okr-3 .okr-stat:first-of-type .okr-stat-year i {
  color: #c9dd41;
}
.okr-detail.objectives#okr-3 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-3 .okr-stat .okr-stat-year i {
  background: #c9dd41;
}
.okr-detail.objectives#okr-3 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-3 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-3 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-3 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-4 #okr-hero,
.okr-detail.objectives#okr-4 #okr-steps,
.okr-detail.objectives#okr-4 .wp-block-quote, .okr-detail.key-results#okr-4 #okr-hero,
.okr-detail.key-results#okr-4 #okr-steps,
.okr-detail.key-results#okr-4 .wp-block-quote {
  background: #004b3e;
}
.okr-detail.objectives#okr-4 h1 i,
.okr-detail.objectives#okr-4 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-4 h1 i,
.okr-detail.key-results#okr-4 .okr-stat:first-of-type .okr-stat-year i {
  color: #004b3e;
}
.okr-detail.objectives#okr-4 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-4 .okr-stat .okr-stat-year i {
  background: #004b3e;
}
.okr-detail.objectives#okr-4 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-4 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-4 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-4 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-5 #okr-hero,
.okr-detail.objectives#okr-5 #okr-steps,
.okr-detail.objectives#okr-5 .wp-block-quote, .okr-detail.key-results#okr-5 #okr-hero,
.okr-detail.key-results#okr-5 #okr-steps,
.okr-detail.key-results#okr-5 .wp-block-quote {
  background: #ce1a11;
}
.okr-detail.objectives#okr-5 h1 i,
.okr-detail.objectives#okr-5 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-5 h1 i,
.okr-detail.key-results#okr-5 .okr-stat:first-of-type .okr-stat-year i {
  color: #ce1a11;
}
.okr-detail.objectives#okr-5 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-5 .okr-stat .okr-stat-year i {
  background: #ce1a11;
}
.okr-detail.objectives#okr-5 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-5 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-5 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-5 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-6 #okr-hero,
.okr-detail.objectives#okr-6 #okr-steps,
.okr-detail.objectives#okr-6 .wp-block-quote, .okr-detail.key-results#okr-6 #okr-hero,
.okr-detail.key-results#okr-6 #okr-steps,
.okr-detail.key-results#okr-6 .wp-block-quote {
  background: #89211b;
}
.okr-detail.objectives#okr-6 h1 i,
.okr-detail.objectives#okr-6 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-6 h1 i,
.okr-detail.key-results#okr-6 .okr-stat:first-of-type .okr-stat-year i {
  color: #89211b;
}
.okr-detail.objectives#okr-6 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-6 .okr-stat .okr-stat-year i {
  background: #89211b;
}
.okr-detail.objectives#okr-6 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-6 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-6 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-6 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-7 #okr-hero,
.okr-detail.objectives#okr-7 #okr-steps,
.okr-detail.objectives#okr-7 .wp-block-quote, .okr-detail.key-results#okr-7 #okr-hero,
.okr-detail.key-results#okr-7 #okr-steps,
.okr-detail.key-results#okr-7 .wp-block-quote {
  background: #6e00ed;
}
.okr-detail.objectives#okr-7 h1 i,
.okr-detail.objectives#okr-7 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-7 h1 i,
.okr-detail.key-results#okr-7 .okr-stat:first-of-type .okr-stat-year i {
  color: #6e00ed;
}
.okr-detail.objectives#okr-7 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-7 .okr-stat .okr-stat-year i {
  background: #6e00ed;
}
.okr-detail.objectives#okr-7 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-7 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-7 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-7 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-8 #okr-hero,
.okr-detail.objectives#okr-8 #okr-steps,
.okr-detail.objectives#okr-8 .wp-block-quote, .okr-detail.key-results#okr-8 #okr-hero,
.okr-detail.key-results#okr-8 #okr-steps,
.okr-detail.key-results#okr-8 .wp-block-quote {
  background: #ee8f10;
}
.okr-detail.objectives#okr-8 h1 i,
.okr-detail.objectives#okr-8 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-8 h1 i,
.okr-detail.key-results#okr-8 .okr-stat:first-of-type .okr-stat-year i {
  color: #ee8f10;
}
.okr-detail.objectives#okr-8 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-8 .okr-stat .okr-stat-year i {
  background: #ee8f10;
}
.okr-detail.objectives#okr-8 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-8 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-8 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-8 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-9 #okr-hero,
.okr-detail.objectives#okr-9 #okr-steps,
.okr-detail.objectives#okr-9 .wp-block-quote, .okr-detail.key-results#okr-9 #okr-hero,
.okr-detail.key-results#okr-9 #okr-steps,
.okr-detail.key-results#okr-9 .wp-block-quote {
  background: #ff9cb1;
}
.okr-detail.objectives#okr-9 h1 i,
.okr-detail.objectives#okr-9 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-9 h1 i,
.okr-detail.key-results#okr-9 .okr-stat:first-of-type .okr-stat-year i {
  color: #ff9cb1;
}
.okr-detail.objectives#okr-9 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-9 .okr-stat .okr-stat-year i {
  background: #ff9cb1;
}
.okr-detail.objectives#okr-9 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-9 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-9 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-9 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-10 #okr-hero,
.okr-detail.objectives#okr-10 #okr-steps,
.okr-detail.objectives#okr-10 .wp-block-quote, .okr-detail.key-results#okr-10 #okr-hero,
.okr-detail.key-results#okr-10 #okr-steps,
.okr-detail.key-results#okr-10 .wp-block-quote {
  background: #93e5f9;
}
.okr-detail.objectives#okr-10 h1 i,
.okr-detail.objectives#okr-10 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-10 h1 i,
.okr-detail.key-results#okr-10 .okr-stat:first-of-type .okr-stat-year i {
  color: #93e5f9;
}
.okr-detail.objectives#okr-10 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-10 .okr-stat .okr-stat-year i {
  background: #93e5f9;
}
.okr-detail.objectives#okr-10 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-10 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-10 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-10 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.objectives#okr-0 #okr-hero,
.okr-detail.objectives#okr-0 #okr-steps,
.okr-detail.objectives#okr-0 .wp-block-quote, .okr-detail.key-results#okr-0 #okr-hero,
.okr-detail.key-results#okr-0 #okr-steps,
.okr-detail.key-results#okr-0 .wp-block-quote {
  background: #000;
}
.okr-detail.objectives#okr-0 h1 i,
.okr-detail.objectives#okr-0 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-0 h1 i,
.okr-detail.key-results#okr-0 .okr-stat:first-of-type .okr-stat-year i {
  color: #000;
}
.okr-detail.objectives#okr-0 .okr-stat .okr-stat-year i, .okr-detail.key-results#okr-0 .okr-stat .okr-stat-year i {
  background: #000;
}
.okr-detail.objectives#okr-0 .okr-stat:first-of-type .okr-stat-year i, .okr-detail.key-results#okr-0 .okr-stat:first-of-type .okr-stat-year i {
  background: #000;
}
.okr-dark .okr-detail.objectives#okr-0 .okr-stat:first-of-type .okr-stat-year i, .okr-dark .okr-detail.key-results#okr-0 .okr-stat:first-of-type .okr-stat-year i {
  background: white;
}
.okr-detail.key-results.okr-dark .okr-stat:first-of-type i {
  background: white !important;
}

.page-commitments .okr-detail.key-results#okr-7 .okr-stat:first-of-type .okr-stat-year i, .page-7-2-subsidies .okr-detail.key-results#okr-7 .okr-stat:first-of-type .okr-stat-year i {
  background: #6e00ed !important;
  color: white !important;
}

.page-0-0-net-zero #okr-key-results-list {
  display: none;
}

#popup {
  width: 230px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.87);
  z-index: 1000;
  color: white;
  padding: 2rem;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
@media (max-height: 700px) {
  #popup {
    padding-top: 5rem;
  }
}
@media (max-height: 600px) {
  #popup img {
    display: none;
  }
}
@media (max-width: 475px) {
  #popup {
    width: 100%;
    height: auto;
    top: inherit;
    bottom: 0;
    padding: 1rem 2rem 2rem;
  }
  #popup img {
    max-width: 180px;
  }
}
@media (min-width: 768px) {
  #popup {
    width: 430px;
  }
  #popup h2 {
    font-size: 2.6rem;
    padding-bottom: 0.4em;
  }
  #popup img {
    max-width: 250px;
  }
}
#popup p {
  font-family: "Plain-Light";
  line-height: 1.2;
}
#popup .button-cross {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 30px;
  width: 30px;
  margin: auto;
  padding: 0;
  background: transparent;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
#popup .button-cross:hover, #popup .button-cross:focus {
  background: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#popup .button-cross span.cross-line {
  position: absolute;
  width: 22px;
  height: 3px;
  background: white;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#popup .button-cross span.cross-line:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
#popup #mc_embed_signup #mc_embed_signup_scroll,
#popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup {
  display: block;
}
#popup #mc_embed_signup #mc_embed_signup_scroll input.email,
#popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email {
  width: 100%;
  background: transparent;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.2rem;
  border-bottom-color: #999;
}
#popup #mc_embed_signup #mc_embed_signup_scroll input.email::placeholder,
#popup #mc_embed_signup_popup #mc_embed_signup_scroll_popup input.email::placeholder {
  color: #999;
}

/* ANIMATIONS - - - - - - - - - - - - - -  */
@-webkit-keyframes popSlide {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@keyframes popSlide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes popSlideClose {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(1000%);
  }
}
@keyframes popSlideClose {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
#popup {
  -webkit-animation-name: popSlide;
  animation-name: popSlide;
}
#popup.submit {
  -webkit-animation-name: popSlideClose;
  animation-name: popSlideClose;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
#popup.closed {
  -webkit-animation-name: popSlideClose;
  animation-name: popSlideClose;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

#popup {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

#popup.hidden {
  display: none;
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.page-tracker #hero img,
.page-tracker #hero .video--container {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.page-tracker #hero .description.view--mobile {
  margin-bottom: 2rem;
}
.page-tracker #hero .description.view--desktop {
  max-width: 80%;
}
.page-tracker #hero p {
  margin-top: 2.5rem;
  font-size: 2rem;
  line-height: 1.1em;
}
@media (max-width: 1199px) {
  .page-tracker #hero p {
    font-size: 1.5rem;
  }
}
.page-tracker #hero p strong {
  color: #ce1a11;
}
.page-tracker #tracker--okrs-video {
  position: relative;
}
.page-tracker #tracker--okrs-video img,
.page-tracker #tracker--okrs-video button {
  position: relative;
  z-index: 1;
}
@media (max-width: 999px) {
  .page-tracker .okrs-videos {
    width: 100%;
    height: 200px;
    display: flex;
    overflow: scroll;
    padding-top: 2rem;
  }
  .page-tracker .okrs-videos::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    /* make scrollbar transparent */
    display: none;
  }
}
@media (max-width: 999px) {
  .page-tracker .okrs-videos--poster {
    flex: 0 0 165px;
    margin-bottom: 0.5rem;
  }
}
.page-tracker .okrs-videos--poster button {
  width: 100%;
  padding: 0.25rem;
  border-radius: 0.5rem;
  margin: 0;
  background: none;
  display: flex;
  align-items: center;
}
@media (min-width: 1000px) {
  .page-tracker .okrs-videos--poster button {
    display: grid;
    grid-template-columns: 2fr 4fr;
  }
}
@media (max-width: 999px) {
  .page-tracker .okrs-videos--poster button {
    padding: 0.5rem 0.5rem 0;
  }
}
.page-tracker .okrs-videos--poster button:hover, .page-tracker .okrs-videos--poster button:focus {
  background: rgba(0, 0, 0, 0.1);
}
.page-tracker .okrs-videos--poster button:active {
  background: #767676;
}
.page-tracker .okrs-videos--poster button .image--container {
  flex: 0 0 34%;
  position: relative;
  width: 100%;
  padding-bottom: 64%;
}
.page-tracker .okrs-videos--poster button img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-tracker .okrs-videos--poster button img:last-of-type {
  width: 2.5em;
  height: 2.5em;
  left: 50%;
  top: 50%;
  margin: -1.25em;
}
.page-tracker .okrs-videos--poster button h3 {
  font-size: 0.8rem;
  color: black;
  flex: 0 0 76%;
}
@media (min-width: 1000px) {
  .page-tracker .okrs-videos--poster button h3 {
    padding: 0 0.5rem;
  }
}
@media (min-width: 1200px) {
  .page-tracker .okrs-videos--poster button h3 {
    padding: 0 0.75rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 999px) {
  .page-tracker .okrs-videos--poster button {
    flex-direction: column;
  }
  .page-tracker .okrs-videos--poster button .image--container {
    padding-bottom: 100px;
  }
}
.page-tracker .okrs-videos--watched button {
  opacity: 0.5;
}
.page-tracker .okrs-videos--active button {
  opacity: 1;
  background: #767676;
}
.page-tracker .okrs-videos--active button h3 {
  color: white;
}
.page-tracker .okrs-videos--active button:hover, .page-tracker .okrs-videos--active button:focus, .page-tracker .okrs-videos--active button:active {
  background: #767676;
}
.page-tracker .tracker--nav {
  position: sticky;
  top: 0;
  padding: 0;
  z-index: 3;
}
.page-tracker .tracker--nav-okrs, .page-tracker .tracker--nav-filters {
  padding: 0.5rem 0;
}
.page-tracker .tracker--nav-okrs .container::-webkit-scrollbar, .page-tracker .tracker--nav-filters .container::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  /* make scrollbar transparent */
  display: none;
}
.page-tracker .tracker--nav-okrs {
  border-top: 1px solid black;
  background: white;
}
.page-tracker .tracker--nav-okrs .container {
  display: flex;
  flex-wrap: nowrap;
  overflow: scroll;
}
.page-tracker .tracker--nav-okrs button {
  padding: 0;
  background: none;
  margin: 0;
  color: black;
}
.page-tracker .tracker--nav-okrs button:first-of-type a {
  margin-left: 0;
}
.page-tracker .tracker--nav-okrs button:last-of-type a .okrs-number {
  padding-right: 2.1rem;
}
.page-tracker .tracker--nav-okrs button a {
  margin-left: 1.2rem;
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: row-reverse;
}
.page-tracker .tracker--nav-okrs button a img {
  max-height: 2rem;
  width: auto;
}
.page-tracker .tracker--nav-okrs button a .okrs-icon {
  position: relative;
  z-index: 2;
  padding: 0;
  margin-left: -1rem;
}
.page-tracker .tracker--nav-okrs button a .okrs-label {
  display: flex;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.page-tracker .tracker--nav-okrs button a .okrs-number, .page-tracker .tracker--nav-okrs button a .okrs-title {
  height: 2.25rem;
  display: flex;
  align-items: center;
}
.page-tracker .tracker--nav-okrs button a .okrs-number {
  width: 2.25rem;
  justify-content: center;
  border-radius: 2.5rem;
  padding: 0.125rem 1.8rem 0 1.3rem;
}
.page-tracker .tracker--nav-okrs button a .okrs-title {
  display: none;
  border-radius: 3rem;
  padding: 0 1rem;
  margin-left: -2px;
}
.page-tracker .tracker--nav-okrs button#okr-6 .okrs-icon {
  position: relative;
  height: 2.5em;
  width: 2rem;
  overflow: hidden;
}
.page-tracker .tracker--nav-okrs button#okr-6 .okrs-icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: left;
}
.page-tracker .tracker--nav-okrs .return-to-top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1;
  padding-left: 2rem;
  margin-top: unset;
  text-align: right;
  white-space: nowrap;
}
.page-tracker .tracker--nav-filters {
  background: black;
  color: white;
}
.page-tracker .tracker--nav-filters .container {
  display: flex;
  align-items: center;
  overflow-x: scroll;
  flex-wrap: nowrap;
}
.page-tracker .tracker--nav-filters span {
  margin-right: 0.5rem;
}
.page-tracker .tracker--nav-filters button {
  min-width: unset;
  padding: 0.3em 0.8em 0.3em;
  white-space: nowrap;
  border-width: 1px;
}
.page-tracker .tracker--nav-filters button:hover, .page-tracker .tracker--nav-filters button:active, .page-tracker .tracker--nav-filters button:focus {
  color: var(--color--accent);
}
.page-tracker .tracker--nav-filters button.active {
  border-color: #ce1a11;
  background: #ce1a11;
  color: white;
  box-shadow: none;
  outline: 0;
}
.page-tracker .tracker--nav-filters button.active:hover, .page-tracker .tracker--nav-filters button.active:active, .page-tracker .tracker--nav-filters button.active:focus {
  color: var(--color--accent);
  background: white;
  border-color: white;
}
.page-tracker .tracker--sections #tracker-filter-datafetch[descriptions=off] .okr--key-result .description,
.page-tracker .tracker--sections #tracker-filter-datafetch[descriptions=off] .okr--key-result .updated,
.page-tracker .tracker--sections #tracker-filter-datafetch[descriptions=off] .okr--key-result .footnote {
  display: none;
}
.page-tracker .tracker--sections #tracker-filter-datafetch[descriptions=off] .okr--key-result .key-result--info:after {
  content: none;
}

#tracker-how-to-get h2 {
  font-size: 7rem;
  padding: 0;
  width: 160%;
}
@media (max-width: 999px) {
  #tracker-how-to-get h2 {
    font-size: var(--font--size-h1);
    width: 100%;
    transform: none !important;
  }
}

#okr-list-2-columns a.okr-pill {
  height: 3.6em;
  font-size: 1.5rem;
}

#tracker-list .tracker--header {
  border-bottom: 1px solid #767676;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
}
#tracker-list .tracker--header h1 {
  padding: 15px 0;
}
#tracker-list .tracker--header h2,
#tracker-list .tracker--header h3,
#tracker-list .tracker--header .h2,
#tracker-list .tracker--header .h3 {
  color: #ce1a11;
  font-size: 2rem;
  padding: 0;
}
#tracker-list .tracker--header small + h2 {
  padding: 1.5rem;
}
@media (min-width: 1000px) {
  #tracker-list .tracker--header p {
    width: 50%;
  }
}
@media (max-width: 999px) {
  #tracker-list .tracker--header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
#tracker-list .tracker--filters small:not(.clear) {
  padding-bottom: 0.8em;
  display: block;
}
#tracker-list .tracker--filters .clear {
  font-family: "Plain-Italic", sans-serif;
  font-style: normal;
  color: #767676;
}
#tracker-list .tracker--filters .clear:hover {
  color: black;
}
#tracker-list .tracker--filters .tracker--filters-all span,
#tracker-list .tracker--filters .tracker--filters-all label {
  cursor: pointer;
}
#tracker-list .tracker--filters .tracker--mobile-dropdown-bar {
  display: none;
  margin-bottom: 1.5em;
}
#tracker-list .tracker--filters .tracker--mobile-dropdown-bar .filter--arrow {
  width: 28px;
  height: 1.5rem;
  background: 0;
  color: black;
  border-radius: 0;
  padding: 0;
}
#tracker-list .tracker--filters .tracker--mobile-dropdown-bar .filter--arrow svg {
  width: 100%;
  width: 100%;
  height: 1.5rem;
  transition: transform 0.1s linear;
  transform: rotate(0deg);
}
#tracker-list .tracker--filters .tracker--filters-all {
  position: relative;
  transition: opacity 0.5s linear;
  position: sticky;
  top: 1em;
}
#tracker-list .tracker--filters .tracker--filters-all label {
  font-size: 0.95em;
  margin-bottom: 0.25em;
}
#tracker-list .tracker--filters .tracker--filters-all > div {
  padding-bottom: 1.5em;
}
@media (max-width: 999px) {
  #tracker-list .tracker--filters {
    padding-top: 1.75rem;
    margin: 1.75rem 0 4rem;
  }
  #tracker-list .tracker--filters:after {
    content: "";
    position: absolute;
    top: 50px;
    width: calc(100% - 30px);
    border-top: 1px solid gray;
  }
  #tracker-list .tracker--filters .tracker--mobile-dropdown-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
  }
  #tracker-list .tracker--filters .tracker--filters-all {
    padding: 0;
    height: 0;
    opacity: 0;
    z-index: -1;
  }
  #tracker-list .tracker--filters .tracker--filters-all span {
    opacity: 0;
    transition: opacity 0.2s linear;
    cursor: pointer;
  }
  #tracker-list .tracker--filters.open:after {
    content: "";
  }
  #tracker-list .tracker--filters.open .tracker--filters-all {
    height: auto;
    opacity: 1;
    z-index: 1;
    transition: opacity 0.2s linear;
    margin-top: 1rem;
  }
  #tracker-list .tracker--filters.open .tracker--filters-all span {
    opacity: 1;
  }
  #tracker-list .tracker--filters.open .filter--arrow svg {
    transform: rotate(180deg);
    transition: transform 0.2s linear;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(1) {
    transition-delay: 0s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(2) {
    transition-delay: 0.05s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(3) {
    transition-delay: 0.1s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(4) {
    transition-delay: 0.15s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(5) {
    transition-delay: 0.2s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(6) {
    transition-delay: 0.25s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(7) {
    transition-delay: 0.3s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(8) {
    transition-delay: 0.35s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(9) {
    transition-delay: 0.4s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(10) {
    transition-delay: 0.45s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(11) {
    transition-delay: 0.5s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(12) {
    transition-delay: 0.55s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(13) {
    transition-delay: 0.6s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(14) {
    transition-delay: 0.65s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(15) {
    transition-delay: 0.7s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(16) {
    transition-delay: 0.75s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(17) {
    transition-delay: 0.8s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(18) {
    transition-delay: 0.85s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(19) {
    transition-delay: 0.9s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(20) {
    transition-delay: 0.95s;
  }
  #tracker-list .tracker--filters.open span:nth-of-type(21) {
    transition-delay: 1s;
  }
}
@media (max-width: 767px) {
  #tracker-list .tracker--filters .tracker--filters-all span {
    font-size: 18px;
  }
  #tracker-list .tracker--filters .tracker--filters-all span label {
    margin-bottom: 1rem;
  }
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="1"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="1"] {
  background: #0736e1;
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="2"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="2"] {
  background: hsl(52, 100%, 68%);
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="3"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="3"] {
  background: #c9dd41;
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="4"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="4"] {
  background: #004b3e;
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="5"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="5"] {
  background: #ce1a11;
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="6"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="6"] {
  background: #89211b;
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="7"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="7"] {
  background: #6e00ed;
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="8"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="8"] {
  background: #ee8f10;
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="9"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="9"] {
  background: #ff9cb1;
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="10"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="10"] {
  background: #93e5f9;
}
#tracker-list .tracker--filters .tracker--filters--okr input:hover[data-okr="0"],
#tracker-list .tracker--filters .tracker--filters--okr input:checked[data-okr="0"] {
  background: #000;
}

#tracker-latest-news .posts-label {
  background: black;
  width: 100%;
  color: white;
}
#tracker-latest-news .more-news {
  padding-top: 30px;
  text-align: center;
  width: 100%;
}

.anchor-buttons {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 50px;
  border-bottom: 1px solid #AAA;
}

.ways {
  color: #767676;
  font-family: Plain;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
  margin-top: 34px;
  margin-bottom: 24px;
  font-size: 1.5rem;
  line-height: 1.1em;
}

.anchor-button {
  height: 44px;
  padding: 11px 20px 11px;
  border-radius: 31px;
  background: grey;
  color: white;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
}

.anchor-button.green {
  background: #C9DD40;
  border: 2px solid #C9DD40;
  color: black;
}

a.anchor-button.green:hover {
  color: black;
  background: white;
  transition: all 250ms;
  -webkit-transition: all 250ms;
}

a.anchor-button.green:hover svg path {
  fill: black;
}

.anchor-button.red {
  background: #CE1A10;
  border: 2px solid #CE1A10;
}

a.anchor-button.red:hover {
  color: black;
  background: white;
  transition: all 250ms;
  -webkit-transition: all 250ms;
}

a.anchor-button.red:hover svg path {
  fill: black;
}

.anchor-button.blue {
  background: #063DE3;
  border: 2px solid #063DE3;
}

a.anchor-button.blue:hover {
  color: black;
  background: white;
  transition: all 250ms;
  -webkit-transition: all 250ms;
}

a.anchor-button.blue:hover svg path {
  fill: black;
}

.anchor-button > div {
  margin-top: 3px;
}

p.hero_description {
  color: #000;
  font-family: Plain;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.48px;
  width: 1200px;
  margin-top: 0.3em !important;
}

.section_content {
  margin-top: 40px;
  width: 100%;
  border-radius: 6.367px;
  border: 1px solid;
}

.section_content_title {
  padding: 12px 16px;
  box-sizing: border-box;
  color: white;
}

.section_content_copy {
  padding: 12px 16px;
  box-sizing: border-box;
}

.section_content[data-okr="1"] {
  border: 1px solid #0736e1;
}
.section_content[data-okr="1"] .section_content_title {
  background: #0736e1;
  color: #fff;
}

.section_content[data-okr="2"] {
  border: 1px solid hsl(52, 100%, 68%);
}
.section_content[data-okr="2"] .section_content_title {
  background: hsl(52, 100%, 68%);
  color: #000;
}

.section_content[data-okr="3"] {
  border: 1px solid #c9dd41;
}
.section_content[data-okr="3"] .section_content_title {
  background: #c9dd41;
  color: #000;
}

.section_content[data-okr="4"] {
  border: 1px solid #004b3e;
}
.section_content[data-okr="4"] .section_content_title {
  background: #004b3e;
  color: #fff;
}

.section_content[data-okr="5"] {
  border: 1px solid #ce1a11;
}
.section_content[data-okr="5"] .section_content_title {
  background: #ce1a11;
  color: #fff;
}

.section_content[data-okr="6"] {
  border: 1px solid #89211b;
}
.section_content[data-okr="6"] .section_content_title {
  background: #89211b;
  color: #fff;
}

.section_content[data-okr="7"] {
  border: 1px solid #6e00ed;
}
.section_content[data-okr="7"] .section_content_title {
  background: #6e00ed;
  color: #fff;
}

.section_content[data-okr="8"] {
  border: 1px solid #ee8f10;
}
.section_content[data-okr="8"] .section_content_title {
  background: #ee8f10;
  color: #000;
}

.section_content[data-okr="9"] {
  border: 1px solid #ff9cb1;
}
.section_content[data-okr="9"] .section_content_title {
  background: #ff9cb1;
  color: #000;
}

.section_content[data-okr="10"] {
  border: 1px solid #93e5f9;
}
.section_content[data-okr="10"] .section_content_title {
  background: #93e5f9;
  color: #000;
}

.section_content[data-okr="0"] {
  border: 1px solid #000;
}
.section_content[data-okr="0"] .section_content_title {
  background: #000;
  color: #fff;
}

.report_banner {
  width: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report_banner_button {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report_banner_image {
  width: 30%;
}

.report_banner_button a {
  color: white;
  display: flex;
  border-radius: 31px;
  border: 2.5px solid #ce1a11;
  background: #ce1a11;
  padding: 10px 20px;
  gap: 13px;
}

.report_banner_button a > div {
  margin-top: 1px;
}

.report_banner_copy {
  font-size: 35px;
  color: white;
  line-height: 110%;
  width: 35%;
  margin: 0% 0%;
}

.filter_anchor-number {
  background: transparent;
  color: black;
  border-width: 2px;
  font-size: 1.1rem;
  height: 2.75em;
  width: 2.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid black;
  border-radius: 50%;
  padding-top: 0.225em;
}

.filter_anchor {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: black;
  gap: 10px;
}

.filter_anchor-number[data-okr="1"] {
  border: 2px solid #0736e1;
}

.filter_anchor-number[data-okr="2"] {
  border: 2px solid hsl(52, 100%, 68%);
}

.filter_anchor-number[data-okr="3"] {
  border: 2px solid #c9dd41;
}

.filter_anchor-number[data-okr="4"] {
  border: 2px solid #004b3e;
}

.filter_anchor-number[data-okr="5"] {
  border: 2px solid #ce1a11;
}

.filter_anchor-number[data-okr="6"] {
  border: 2px solid #89211b;
}

.filter_anchor-number[data-okr="7"] {
  border: 2px solid #6e00ed;
}

.filter_anchor-number[data-okr="8"] {
  border: 2px solid #ee8f10;
}

.filter_anchor-number[data-okr="9"] {
  border: 2px solid #ff9cb1;
}

.filter_anchor-number[data-okr="10"] {
  border: 2px solid #93e5f9;
}

.filter_anchor-number[data-okr="0"] {
  border: 2px solid #000;
}

.tracker--nav-bottom-inner-left {
  display: grid;
  grid-auto-flow: column;
  /* grid-template-columns: auto auto auto; */
  grid-template-rows: auto auto auto auto;
  width: 75%;
  grid-gap: 10px;
  padding-top: 20px;
}

.tracker--nav-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.tracker--nav-bottom-inner-right {
  width: 25%;
}

.tracker--nav-filters-new {
  background: transparent !important;
  color: black !important;
  padding: 0px;
  padding: 0px;
  margin: 0px;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tracker--nav-filters-new button {
  border: unset;
  background: transparent;
  color: black;
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 7px;
  border: 0px !important;
  background: transparent !important;
  color: black !important;
}
.tracker--nav-filters-new button:hover {
  border: 0px;
  background: transparent;
  color: black;
}
.tracker--nav-filters-new button:active {
  border: 0px;
  background: transparent;
  color: black;
}
.tracker--nav-filters-new button:focus {
  border: 0px;
  background: transparent;
  color: black;
}

.tracker--nav-bottom-inner-right button .radio {
  height: 16px;
  width: 15px;
  border: 1px solid black;
  border-radius: 50%;
  /* margin-top: 1px; */
  background: transparent;
  color: black;
  border-width: 2px;
  font-size: 1.1rem;
  height: 2.75em;
  width: 2.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid black;
  border-radius: 50%;
  padding-top: 0.225em;
}

.tracker--nav-filters-new button {
  font-size: 16px;
  align-items: center;
}

.tracker--nav-bottom-inner-right button.active .radio {
  background: black;
}

.tracker--nav-bottom {
  display: none;
  max-width: 90%;
  margin: auto;
}

.tracker--nav-top {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 12.5px;
  border-bottom: 1px solid;
  max-width: 90%;
  margin: auto;
  align-items: center;
  gap: 20px;
}

.hero_description p {
  margin-top: 0px !important;
}

section#hero {
  overflow: hidden;
}

.tracker--nav-title {
  color: #000;
  font-family: Plain;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.28px;
  border: 1.5px solid black;
  border-radius: 31px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.tracker--nav-title:hover {
  background: black;
  color: white;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

.tracker--nav-title:hover svg path {
  stroke: white;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

section.tracker--nav.open .tracker--nav-title {
  background: black;
  color: white;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

section.tracker--nav.open .tracker--nav-title svg path {
  stroke: white;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

section.tracker--nav.open .tracker--nav-title:hover {
  background: transparent;
  color: black;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

section.tracker--nav.open .tracker--nav-title:hover svg path {
  stroke: black;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

section.tracker--nav .tracker--nav-top svg {
  transform: rotate(0deg);
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

section.tracker--nav.open .tracker--nav-top svg {
  transform: rotate(180deg);
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

.tracker--nav-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.page-tracker .tracker--nav {
  position: sticky;
  top: 0;
  padding: 0;
  z-index: 3;
  padding: 25px 35px;
  background: #ECECEC;
}

.tracker--nav .tracker--nav-top-right svg {
  transform: rotate(0deg);
  transition: transform 500ms;
  -webkit-transition: transform 500ms;
  cursor: pointer !important;
}

.tracker--nav.open .tracker--nav-top-right svg {
  transform: rotate(180deg);
  transition: transform 500ms;
  -webkit-transition: transform 500ms;
}

.tracker--nav .tracker--nav-top-right .clear_filters {
  opacity: 0;
  transition: opacity 500ms;
  -webkit-transition: opacity 500ms;
  cursor: pointer !important;
}

.tracker--nav.open .tracker--nav-top-right .clear_filters {
  opacity: 1;
  transition: opacity 500ms;
  -webkit-transition: opacity 500ms;
}

.okrs-videos-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  position: relative;
  z-index: 10;
}

.okrs-videos-nav button {
  border: 1px solid black;
  background: white;
  color: black;
  color: #000;
  font-family: Plain;
  font-size: 16.5px;
  font-style: normal;
  font-weight: 500;
  /* line-height: 0%; */
  letter-spacing: -0.33px;
  /* text-transform: uppercase; */
}

.okrs-videos-nav button[data-okr="1"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #0736e1;
}

.okrs-videos-nav button[data-okr="1"].active {
  background: #0736e1;
  color: #fff;
}

.okrs-videos-nav button[data-okr="1"]:hover {
  background: #0736e1;
  color: #fff;
}

.okrs-videos-nav button[data-okr="2"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid hsl(52, 100%, 68%);
}

.okrs-videos-nav button[data-okr="2"].active {
  background: hsl(52, 100%, 68%);
  color: #000;
}

.okrs-videos-nav button[data-okr="2"]:hover {
  background: hsl(52, 100%, 68%);
  color: #000;
}

.okrs-videos-nav button[data-okr="3"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #c9dd41;
}

.okrs-videos-nav button[data-okr="3"].active {
  background: #c9dd41;
  color: #000;
}

.okrs-videos-nav button[data-okr="3"]:hover {
  background: #c9dd41;
  color: #000;
}

.okrs-videos-nav button[data-okr="4"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #004b3e;
}

.okrs-videos-nav button[data-okr="4"].active {
  background: #004b3e;
  color: #fff;
}

.okrs-videos-nav button[data-okr="4"]:hover {
  background: #004b3e;
  color: #fff;
}

.okrs-videos-nav button[data-okr="5"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #ce1a11;
}

.okrs-videos-nav button[data-okr="5"].active {
  background: #ce1a11;
  color: #fff;
}

.okrs-videos-nav button[data-okr="5"]:hover {
  background: #ce1a11;
  color: #fff;
}

.okrs-videos-nav button[data-okr="6"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #89211b;
}

.okrs-videos-nav button[data-okr="6"].active {
  background: #89211b;
  color: #fff;
}

.okrs-videos-nav button[data-okr="6"]:hover {
  background: #89211b;
  color: #fff;
}

.okrs-videos-nav button[data-okr="7"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #6e00ed;
}

.okrs-videos-nav button[data-okr="7"].active {
  background: #6e00ed;
  color: #fff;
}

.okrs-videos-nav button[data-okr="7"]:hover {
  background: #6e00ed;
  color: #fff;
}

.okrs-videos-nav button[data-okr="8"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #ee8f10;
}

.okrs-videos-nav button[data-okr="8"].active {
  background: #ee8f10;
  color: #000;
}

.okrs-videos-nav button[data-okr="8"]:hover {
  background: #ee8f10;
  color: #000;
}

.okrs-videos-nav button[data-okr="9"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #ff9cb1;
}

.okrs-videos-nav button[data-okr="9"].active {
  background: #ff9cb1;
  color: #000;
}

.okrs-videos-nav button[data-okr="9"]:hover {
  background: #ff9cb1;
  color: #000;
}

.okrs-videos-nav button[data-okr="10"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #93e5f9;
}

.okrs-videos-nav button[data-okr="10"].active {
  background: #93e5f9;
  color: #000;
}

.okrs-videos-nav button[data-okr="10"]:hover {
  background: #93e5f9;
  color: #000;
}

.okrs-videos-nav button[data-okr="0"] {
  transition: all 250ms;
  -webkit-transition: all 250ms;
  border: 1px solid #000;
}

.okrs-videos-nav button[data-okr="0"].active {
  background: #000;
  color: #fff;
}

.okrs-videos-nav button[data-okr="0"]:hover {
  background: #000;
  color: #fff;
}

.okrs-videos-nav button.active {
  background: black;
  color: white;
}

.video_thumbnail_slider_holder {
  width: 130%;
  position: relative;
  float: left;
  margin-top: 60%;
  margin-left: -15%;
  overflow: hidden;
  /* overflow-y: visible; */
  height: 155px;
}

.video_thumbnail_slider {
  float: left;
  width: 100%;
  height: 100px;
}

.gradient_left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, white 0%, white 20%, transparent 100%);
  z-index: 7;
  width: 30%;
}

.video_thumbnail_slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.video_thumbnail_slide img {
  height: 98px;
  width: auto;
  margin-bottom: 0px !important;
}

.slick-slide > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-list,
.slick-track {
  height: 100px;
}

.slick-slide {
  height: 100px;
}

.slick-list {
  margin-top: -23px;
}

button.slick-prev.slick-arrow {
  padding: 0;
  background: 0;
  margin: auto;
  position: absolute !important;
  z-index: 5;
  top: 0px;
  left: calc(50% - 135px);
  width: 33px !important;
  height: 32px;
  bottom: 50px;
  background: white;
}

.play_pause_button img {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
}

img.play {
  display: block;
}

img.pause {
  display: none;
}

img.pause {
  width: 45px !important;
  height: 45px !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto !important;
}

button.slick-next.slick-arrow {
  padding: 0;
  background: 0;
  margin: auto;
  position: absolute !important;
  z-index: 5;
  top: 0px;
  right: calc(50% - 135px);
  width: 33px !important;
  height: 32px;
  bottom: 50px;
  background: white;
}

.slick-slide {
  margin: 0px 10px;
}

button.slick-arrow.slick-disabled svg {
  opacity: 0.2;
}

.video_thumbnail_slider_holder div {
  overflow: visible;
}

.play_pause_button {
  width: 60px !important;
  height: 60px !important;
  position: absolute;
  padding: 0;
  background: 0;
  margin: auto;
  position: absolute !important;
  z-index: 5;
  top: 0px;
  right: calc(50% - 30px);
  /* width: 33px !important; */
  /* height: 32px; */
  bottom: 50px;
}

.learn_more_text {
  height: 40px;
  position: absolute !important;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  display: none;
  /* display: flex; */
  cursor: pointer;
}

.learn_more_text span {
  width: 120px;
  display: block;
  margin: 0 auto;
  font-size: 12px;
  line-height: 15px;
}

.learn_more_text:hover {
  text-decoration: underline;
}

#get-started h2 {
  color: #000;
  font-family: Plain;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
  padding: 0px;
  max-width: 90%;
  margin: auto;
}

section#get-started {
  padding: 2em 30px 1em;
  box-sizing: border-box;
  width: 100%;
}

section#get-started p {
  color: #767676;
  font-family: Plain;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.24px;
  margin-top: 6px;
  max-width: 90%;
  margin: auto;
}

.report_banner .mobile {
  display: none;
}

@media all and (max-width: 1000px) {
  .tracker--nav-bottom-inner-left {
    display: grid;
    grid-auto-flow: unset;
    /* grid-template-columns: auto auto auto; */
    grid-template-rows: unset;
    width: 50%;
    grid-gap: 10px;
    padding-top: 20px;
  }
  .tracker--nav-bottom-inner-right {
    width: 50%;
  }
  .report_banner_copy {
    font-size: 2.5vw;
    color: white;
    line-height: 110%;
    width: 35%;
    margin: 0% 0%;
  }
  .report_banner_button a {
    color: white;
    display: flex;
    border-radius: 31px;
    border: 2.5px solid white;
    padding: 10px 20px;
    gap: 13px;
    font-size: 1.9vw;
  }
  .report_banner_image {
    width: 50%;
    order: 1;
  }
  .anchor-buttons {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 50px;
    border-bottom: 1px solid #AAA;
    flex-wrap: wrap;
  }
  section#get-started {
    padding: 2em 10px 1em;
    box-sizing: border-box;
    width: 100%;
  }
  .page-tracker .tracker--nav {
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 3;
    padding: 25px 10px;
    background: #ECECEC;
  }
  .page-tracker .okrs-videos {
    display: none;
    order: 3;
  }
  .report_banner .desktop {
    display: none;
  }
  .report_banner_copy {
    font-size: 2.5vw;
    color: white;
    line-height: 110%;
    width: 60%;
    margin: 0% 0%;
    order: 1;
  }
  .report_banner_button {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
  }
  .report_banner .mobile {
    display: flex;
    flex-direction: column;
    order: 3;
    width: 60%;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .report_banner .mobile .report_banner_button {
    justify-content: flex-start;
  }
}
.posts-container {
  padding: 1rem 0;
}

.article-part {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #767676;
  margin-bottom: 1.5rem;
  position: relative;
  break-inside: avoid;
  display: inline-block;
}
.article-part .post-image {
  display: none;
  position: relative;
  padding-top: 40%;
}
#case-studies .article-part .post-image {
  display: block;
  overflow: hidden;
}
.article-part .post-image img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s ease transform;
}
.article-part .post-image img:hover {
  transform: scale(1.05);
}
.article-part h2 {
  font-size: 2.25rem;
  line-height: 0.9;
  padding: 1rem 0 1rem;
  font-family: "Financier", serif;
  color: black;
}
.featured-posts .article-part h2 {
  font-size: 1.75rem;
}
@media (max-width: 999px) {
  .featured-posts .article-part h2 {
    font-size: 2.15rem;
  }
}
.latest-posts .article-part h2, #case-studies .article-part h2 {
  font-size: 2.25rem;
}
@media (max-width: 767px) {
  .latest-posts .article-part h2, #case-studies .article-part h2 {
    font-size: 2rem;
  }
}
.article-part h2 a {
  color: black;
}
.article-part h2 a:hover, .article-part h2 a:focus {
  color: #ce1a11;
}
.article-part p {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .featured-posts .article-part p, #reports .article-part p {
    font-size: 0.875rem;
  }
}
#case-studies .article-part p {
  font-size: 1.25rem;
  font-family: "Financier", serif;
}
.article-part h3 {
  padding: 15px 0 0;
}
.article-part .excerpt {
  padding: 0;
  font-family: "Plain-Light", sans-serif;
}
.article-part[category=uncategorized] .source {
  padding-left: 0;
}

.above-title {
  font-size: 0.875rem;
}
.above-title .category {
  font-family: "Plain-Italic", sans-serif;
  padding-right: 0.5em;
  border-right: 1px solid #767676;
}
.above-title .category a {
  color: #767676;
}
.above-title .source {
  padding-left: 0.5em;
}
.above-title .date {
  padding-left: 0.5em;
}
#case-studies .above-title .category,
#case-studies .above-title .source {
  display: none;
}
#case-studies .above-title .date {
  display: block;
  padding-left: 0;
}

.post-content .okrs {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  width: 100%;
}
.pagination .page-numbers {
  border: 2px solid var(--color--link);
  color: var(--color--link);
  border-radius: 2em;
  text-align: center;
  display: block;
  padding-top: 0.25em;
  margin: 0.1em;
  width: 2.5em;
  height: 2em;
  transition: 0.2s ease all;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background: var(--color--link);
  color: white;
}

.article-part[isResource=true] {
  border: none;
  padding: 0;
  margin: 0;
}
.article-part[isResource=true].has-image .post-image {
  display: block;
  padding-top: 70%;
  overflow: hidden;
  border: 1px solid #999;
  border-radius: 0.675rem 0.675rem 0 0;
}
.article-part[isResource=true].has-image .post-content {
  border-radius: 0 0 0.675rem 0.675rem;
  border-top: none;
}
.article-part[isResource=true] .post-content {
  padding: 1.25em;
  border: 1px solid #999;
  border-radius: 0.675rem;
  margin-bottom: 1.5em;
}
.article-part[isResource=true] .above-title .category {
  padding: 0;
  border: 0;
}
.article-part[isResource=true] .above-title .source,
.article-part[isResource=true] .above-title .date {
  display: none;
}
.article-part[isResource=true] h2 {
  font-family: revert;
  padding: 0.5em 0;
  font-size: 1.5em;
}

#case-studies .posts-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
}
@media (max-width: 999px) {
  #case-studies .posts-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  #case-studies .posts-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
#case-studies .article-part {
  display: block;
  padding: 1rem 0 3rem;
}
#case-studies .article-part .post-image,
#case-studies .article-part .post-content {
  max-width: 100%;
  flex: none;
}
#case-studies .article-part .post-image {
  padding-top: 90%;
  margin-bottom: 1.5rem;
}
#case-studies .article-part .post-content {
  margin: 0 auto;
}
#case-studies .article-part h2 {
  font-size: 1.5rem;
  font-family: "Plain", sans-serif;
  line-height: 1.1em;
}
@media (min-width: 768px) {
  #case-studies .article-part {
    border: 0;
  }
}
@media (min-width: 768px) {
  #case-studies.featured-case-studies .article-part:nth-of-type(-n + 2) {
    grid-column: 1/-1;
    display: flex;
    padding: 3rem 0;
    border-bottom: 1px solid gray;
  }
  #case-studies.featured-case-studies .article-part:nth-of-type(-n + 2) .post-image,
  #case-studies.featured-case-studies .article-part:nth-of-type(-n + 2) .post-content {
    flex: 0 0 45%;
    max-width: 45%;
  }
  #case-studies.featured-case-studies .article-part:nth-of-type(-n + 2) .post-image {
    padding-top: 40%;
  }
  #case-studies.featured-case-studies .article-part:nth-of-type(-n + 2) .post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 0 10%;
  }
  #case-studies.featured-case-studies .article-part:nth-of-type(-n + 2) .post-content h2 {
    font-size: 3.25rem;
  }
  #case-studies.featured-case-studies .article-part:nth-of-type(-n + 2):first-of-type {
    padding: 1.75rem 0 3rem;
  }
  #case-studies.featured-case-studies .article-part:nth-of-type(-n + 2):nth-of-type(even) {
    flex-direction: row-reverse;
  }
  #case-studies.featured-case-studies .article-part:nth-of-type(-n + 2):nth-of-type(even) .post-content {
    margin: 0 10% 0 0;
  }
}

.sns-radio input[type=radio],
.sns-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: white;
  margin: 0 7px 3px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px grey;
  transition: background 0.15s linear;
}
.sns-radio input[type=radio]:hover, .sns-radio input[type=radio]:checked,
.sns-checkbox input[type=checkbox]:hover,
.sns-checkbox input[type=checkbox]:checked {
  background: #000;
  border: 1px solid #000;
}

.posts-by-okr-filters .filter--container {
  margin-bottom: 2rem;
}
.posts-by-okr-filters .filter--container .filter--header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #767676;
  position: relative;
}
.posts-by-okr-filters .filter--container .filter--header small:hover {
  cursor: pointer;
}
.posts-by-okr-filters .filter--container .filter--header .filter--arrow {
  width: 28px;
  height: 1.5rem;
  background: 0;
  color: black;
  border-radius: 0;
  padding: 0;
}
.posts-by-okr-filters .filter--container .filter--header .filter--arrow svg {
  width: 100%;
  width: 100%;
  height: 1.5rem;
  transition: transform 0.1s linear;
  transform: rotate(0deg);
}
.posts-by-okr-filters .filter--container .filter--header .filter--clear {
  position: absolute;
  right: 0;
  margin-right: 45px;
  opacity: 0;
  transition: 0.2s ease all;
  font-size: 0.875rem;
}
.posts-by-okr-filters .filter--container .filter--body {
  position: relative;
  padding: 0;
  column-count: 4;
  column-gap: 3rem;
  height: 0;
  opacity: 0;
  transition: opacity 0.5s linear;
  z-index: -1;
}
.posts-by-okr-filters .filter--container .filter--body a.okr-pill {
  opacity: 0;
  animation: none;
  transform: translate(0, 0);
}
.posts-by-okr-filters .filter--container .filter--body a.okr-pill b {
  display: none;
}
@media (max-width: 1200px) {
  .posts-by-okr-filters .filter--container .filter--body {
    column-count: 3;
  }
}
@media (max-width: 999px) {
  .posts-by-okr-filters .filter--container .filter--body {
    column-count: 2;
  }
}
@media (max-width: 500px) {
  .posts-by-okr-filters .filter--container .filter--body {
    column-count: 1;
  }
}
.posts-by-okr-filters .filter--container.open .filter--body {
  padding: 1.25rem 0;
  height: auto;
  opacity: 1;
  transition: opacity 0.2s linear;
  z-index: 1;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill {
  opacity: 1;
  transition: opacity 0.2s linear;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(1) {
  transition-delay: 0s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(2) {
  transition-delay: 0.05s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(3) {
  transition-delay: 0.1s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(4) {
  transition-delay: 0.15s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(5) {
  transition-delay: 0.2s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(6) {
  transition-delay: 0.25s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(7) {
  transition-delay: 0.3s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(8) {
  transition-delay: 0.35s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(9) {
  transition-delay: 0.4s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(10) {
  transition-delay: 0.45s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(11) {
  transition-delay: 0.5s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(12) {
  transition-delay: 0.55s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(13) {
  transition-delay: 0.6s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(14) {
  transition-delay: 0.65s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(15) {
  transition-delay: 0.7s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(16) {
  transition-delay: 0.75s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(17) {
  transition-delay: 0.8s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(18) {
  transition-delay: 0.85s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(19) {
  transition-delay: 0.9s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(20) {
  transition-delay: 0.95s;
}
.posts-by-okr-filters .filter--container.open .filter--body a.okr-pill:nth-of-type(21) {
  transition-delay: 1s;
}
.posts-by-okr-filters .filter--container.open .filter--arrow svg {
  transform: rotate(180deg);
  transition: transform 0.2s linear;
}
.posts-by-okr-filters .filter--container.open .filter--clear {
  opacity: 1;
}

.posts-list .posts-label {
  padding: 0.65rem 1rem 0.45rem;
  background: black;
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.posts-list .posts-label.label-primary {
  background: #ce1a11;
}
.posts-list .posts-label.label-secondary {
  background: #767676;
}
.posts-list .posts-headline {
  border-bottom: 1px solid #767676;
  padding: 0.75rem 0px;
  margin-bottom: 1.5rem;
}

@keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
  }
}
.filter-nav {
  margin-bottom: 40px;
}
.filter-nav button {
  margin: 0 15px 0 0;
}

#post-filter-container .post {
  display: block;
  animation-name: animateIn;
  animation-duration: 400ms;
  animation-delay: calc(var(--animation-order) * 150ms);
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.post-detail #post .post-header .above-title .return-btn {
  margin-bottom: 2em;
}
.post-detail #post .post-header .above-title .return-btn a {
  color: black;
}
.post-detail #post .post-header .above-title .return-btn a:hover {
  text-decoration: underline;
  color: #ce1a11;
}
.post-detail #post .post-header .above-title .date {
  display: inline;
}
.post-detail #post .post-header h1 {
  padding: 1rem 0 0.5rem;
}
.post-detail #post .post-header .okrs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.post-detail #post .post-header .excerpt p {
  margin: 0 0 2rem;
}
.post-detail #post .content-body > h2 {
  font-size: 3rem;
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .post-detail #post .content-body > h2 {
    font-size: 2.25rem;
  }
}
.post-detail #post .content-body h3 + p {
  font-family: "Plain", sans-serif;
  font-size: 0.875rem;
}
.post-detail #post .content-body > p {
  font-family: "Financier", serif;
  font-size: 1.375rem;
}
.post-detail #post .content-body figcaption {
  font-size: 0.875rem;
  color: #767676;
  padding: 0.5rem 0 1rem;
  line-height: 1.4em;
}
.post-detail #post .content-body .wp-block-image {
  float: none !important;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .post-detail #post .content-body .wp-block-image.size-full {
    width: 135%;
  }
  .post-detail #post .content-body .wp-block-image.size-full figcaption {
    width: 75%;
  }
}
@media (min-width: 1200px) {
  .post-detail #post .content-body .wp-block-image.size-full {
    width: 152%;
  }
  .post-detail #post .content-body .wp-block-image.size-full figcaption {
    width: 66%;
  }
}
.post-detail #post .content-body .wp-block-image + h2 {
  padding-top: 3rem;
}
#post #banner,
.okr-detail #post .wp-block-quote {
  position: relative;
  width: 176%;
  /* margin-left: -10%; */
  margin: 3rem 0;
  margin-left: -13%;
  width: 177%;
}
@media (min-width: 1441px) {
  #post #banner,
  .okr-detail #post .wp-block-quote {
    width: 178%;
  }
}
@media (max-width: 1199px) {
  #post #banner,
  .okr-detail #post .wp-block-quote {
    margin-left: -11%;
    width: 157%;
  }
}
@media (max-width: 991px) {
  #post #banner,
  .okr-detail #post .wp-block-quote {
    margin-left: -10%;
    width: 120%;
  }
}
@media (max-width: 767px) {
  #post #banner,
  .okr-detail #post .wp-block-quote {
    margin-left: -30px;
    width: 100vw;
  }
}

.post-detail #okr-leaders {
  padding-top: 0;
}
.post-detail #okr-leaders .leaders-list.leaders-condensed .leaders-link {
  padding: 10px 0;
  font-size: 1.25em;
}
.post-detail #okr-more-news .posts-container {
  column-count: 2;
  grid-gap: 2em;
}
@media (max-width: 991px) {
  .post-detail #okr-more-news .posts-container {
    column-count: 1;
  }
}

.post-detail .resources-columns {
  padding-top: 0;
}

#archive-posts .above-title .return-btn a {
  color: black;
}
#archive-posts .above-title .return-btn a:hover {
  text-decoration: underline;
  color: #ce1a11;
}
#archive-posts label h1 {
  padding-top: 0.5em;
}

/*
#archive, #search-page {

	text-align: center;

	.posts {
		display: flex;
		flex-wrap: wrap;
	}

	// Search page
	.results.articles { padding-top: 0; }

}

#post {
	text-align: center;

	.article { position: relative; }
	.back {
		position: absolute;
		top: -2em;
	}

	.post-image {
		width: 100%;
		height: 50vh;
		max-height: 500px;
		background-size: cover;
		background-position: center;
	}

	.content { text-align: left; }
}
*/
footer {
  background-color: white;
  color: black;
  font-size: 0.875rem;
  padding: 40px 0;
  border-top: 1px solid black;
  overflow: hidden;
}
footer ul.menu {
  list-style: none;
  margin: 0;
}
@media (max-width: 999px) {
  footer ul.menu {
    padding: 0;
    display: flex;
  }
}
footer li {
  line-height: 1em;
  margin-bottom: 0.5em;
}
@media (max-width: 999px) {
  footer li {
    margin-right: 2rem;
  }
}
@media (max-width: 450px) {
  footer li {
    margin-right: 0;
    flex: 0 0 27%;
  }
}
footer p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: #767676;
}
@media (max-width: 999px) {
  footer p {
    margin-bottom: 1rem;
  }
}
@media (max-width: 575px) {
  footer p {
    margin-bottom: 1.5rem;
  }
}
footer .column:first-of-type p {
  color: black;
}
footer .column.footer-text {
  margin-bottom: 1rem;
}
footer p.contact,
footer a {
  color: #767676;
}
@media (min-width: 576px) {
  footer .social-icons {
    text-align: right;
  }
}
@media (max-width: 575px) {
  footer .social-icons {
    margin-top: 1.5rem;
  }
}
footer .social-icons a {
  margin: 0 1rem;
  font-size: 1.5rem;
  color: black;
}
footer .social-icons a:hover {
  color: #ce1a11;
}
@media (max-width: 575px) {
  footer .social-icons a {
    margin: 0 1.5rem 0 0;
    font-size: 2rem;
  }
}

#scroll-top-btn {
  opacity: 0;
  z-index: -1;
  position: fixed;
  bottom: 20px;
  right: 30px;
  background: none;
  padding: 5px;
}
#scroll-top-btn.visible {
  opacity: 1;
  z-index: 99;
}
#scroll-top-btn svg {
  font-size: 50px;
  color: black;
}/*# sourceMappingURL=custom.css.map */