@charset "UTF-8";
@font-face {
  font-family: GTEesti;
  font-style: normal;
  font-weight: 200;
  src: url(../fonts/GT-Eesti-Display-Ultra-Light.woff) format("woff");
}
@font-face {
  font-family: GTEesti;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/GT-Eesti-Display-Light.woff) format("woff");
}
@font-face {
  font-family: GTEesti;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/GT-Eesti-Display-Regular.woff) format("woff");
}
@font-face {
  font-family: GTEesti;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/GT-Eesti-Display-Medium.woff) format("woff");
}
@font-face {
  font-family: GTEesti;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/GT-Eesti-Display-Bold.woff) format("woff");
}
:root,
[data-theme="default"] {
  --color-bg: #000;
  --color-text: #fff;
  --color-btn: #00e128;
  --color-btn-close-hover: #00e128;
  --color-btn-arrow-hover: #00e128;
  --color-btn-matrix-text-hover: #000;
  --color-gradient: linear-gradient(90deg, #f0913c, #fc4017);
  --color-border: #fa8c24;
}
[data-theme="dark"] {
  --color-bg: rgba(57, 57, 57, 0.5);
  --color-text: #fff;
  --color-btn: #00e128;
  --color-btn-close-hover: #00e128;
  --color-btn-arrow-hover: #00e128;
  --color-btn-matrix-text-hover: #000;
  --color-gradient: linear-gradient(90deg, #f0913c, #fc4017);
  --color-border: #fa8c24;
}
[data-theme="light"] {
  --color-bg: #e6e6e6;
  --color-text: #000;
  --color-btn: #00e128;
  --color-btn-close-hover: #2528f4;
  --color-btn-arrow-hover: #2528f4;
  --color-btn-matrix-text-hover: #000;
  --color-gradient: linear-gradient(90deg, #f0913c, #fc4017);
  --color-border: #fa8c24;
}
[data-theme="brain"] {
  --color-bg: #000;
  --color-text: #fff;
  --color-btn: #0a8afa;
  --color-btn-close-hover: #fff;
  --color-btn-arrow-hover: #0a8afa;
  --color-btn-matrix-text-hover: #000;
  --color-gradient: linear-gradient(90deg, #0a8afa, #2528f4);
  --color-border: #0a8afa;
}
[data-theme="brain-dark"] {
  --color-bg: rgba(57, 57, 57, 0.5);
  --color-text: #fff;
  --color-btn: #0a8afa;
  --color-btn-close-hover: #fff;
  --color-btn-arrow-hover: #0a8afa;
  --color-btn-matrix-text-hover: #000;
  --color-gradient: linear-gradient(90deg, #0a8afa, #2528f4);
  --color-border: #0a8afa;
}
[data-theme="brain-light"] {
  --color-bg: #e6e6e6;
  --color-text: #000;
  --color-btn: #0a8afa;
  --color-btn-close-hover: #0a8afa;
  --color-btn-arrow-hover: #0a8afa;
  --color-btn-matrix-text-hover: #000;
  --color-gradient: linear-gradient(90deg, #0a8afa, #2528f4);
  --color-border: #0a8afa;
}
@-webkit-keyframes tickerRight {
  0% {
    transform: translateZ(0);
    visibility: visible;
  }
  to {
    transform: translate3d(-200%, 0, 0);
  }
}
@keyframes tickerRight {
  0% {
    transform: translateZ(0);
    visibility: visible;
  }
  to {
    transform: translate3d(-200%, 0, 0);
  }
}
@-webkit-keyframes tickerLeft {
  0% {
    transform: translate3d(-200%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes tickerLeft {
  0% {
    transform: translate3d(-200%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@-webkit-keyframes videoReveal {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes videoReveal {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes panelReveal {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panelReveal {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes thumbReveal {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes thumbReveal {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.img-full-width {
  width: 100%;
}
.text-align-left {
  text-align: left;
}
.text-align-right {
  text-align: right;
}
.text-align-center {
  text-align: center;
}
.mt {
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .mt {
    margin-top: 7.5rem;
  }
}
.mb {
  margin-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .mb {
    margin-bottom: 7.5rem;
  }
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal !important;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.screen-reader-text,
.sr-only {
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sr-only {
  clip: rect(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}
body {
  margin: 0;
}
main {
  display: block;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -.25em;
}
sup {
  top: -.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: .35em .75em .625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[hidden],
template {
  display: none;
}
body {
  background: #000;
  color: #fff;
  font-family: GTEesti, sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.6;
}
body.lock {
  overflow: hidden;
}
.article h1,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.leaderboard__rank,
.p,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: inherit;
  margin: 0;
  padding: 0;
}
.h1,
.leaderboard__rank,
h1 {
  font-size: 3.1875rem;
  font-weight: 200;
  line-height: 1.13;
}
@media screen and (min-width: 768px) {
  .h1,
  .leaderboard__rank,
  h1 {
    font-size: 4.5rem;
  }
}
.article h1,
.h2,
h2 {
  font-size: 2.625rem;
  font-weight: 200;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .article h1,
  .h2,
  h2 {
    font-size: 3.75rem;
  }
}
.h3,
h3 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.17;
}
@media screen and (min-width: 768px) {
  .h3,
  h3 {
    font-size: 2.25rem;
  }
}
.h4,
.h5,
h4,
h5 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.17;
}
.h6,
h6 {
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1;
}
.h6--alt {
  font-size: 1.1875rem;
  font-weight: 400;
}
.p,
p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.6;
}
a {
  color: inherit;
}
.eyebrow {
  text-transform: uppercase;
}
.description p {
  margin-bottom: .625rem;
}
.disclaimer p {
  font-size: .75rem;
  line-height: 1.5;
}
.description a,
.disclaimer a {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-text);
  text-decoration-color: var(--color-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.description a:hover,
.disclaimer a:hover {
  -webkit-text-decoration-color: var(--color-btn);
  text-decoration-color: var(--color-btn);
}
.description b,
.description strong,
.disclaimer b,
.disclaimer strong {
  font-weight: 500;
}
.accordion {
  background-color: var(--color-bg);
  color: var(--color-text);
  padding-bottom: 5.625rem;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .accordion {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}
.accordion-header {
  margin-bottom: 3.75rem;
  padding-right: .9375rem;
}
.accordion-label {
  position: relative;
}
.accordion-label:first-child {
  border-top: 1px solid var(--color-btn);
}
.accordion-trigger {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-btn);
  box-shadow: none;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  font-size: 1.75rem;
  font-weight: 700;
  justify-content: space-between;
  line-height: 1;
  margin: 0;
  padding: 1.25rem .4375rem 1.25rem 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
.accordion-trigger:focus-visible {
  outline: auto;
}
@media screen and (min-width: 768px) {
  .accordion-trigger {
    font-size: 2.25rem;
    padding: 1.875rem .4375rem 1.875rem 0;
  }
}
.accordion-txt {
  line-height: 1.15;
  width: calc(100% - 100px);
}
.accordion-icon {
  height: 1.4375rem;
  transform: rotate(45deg) scale(0.8);
  transition: transform .2s ease-out;
  width: 1.4375rem;
}
.accordion-icon-active {
  bottom: 0;
  height: 1rem;
  left: 0;
  transition: height .3s linear, background-color .1s linear;
}
.accordion-icon-active,
.accordion-icon:before {
  background-color: var(--color-text);
  position: absolute;
  transform: rotate(45deg);
  transform-origin: bottom left;
  width: .125rem;
}
.accordion-icon:before {
  bottom: .9375rem;
  content: "";
  height: .75rem;
  left: .9375rem;
}
.accordion-icon:after {
  background-color: var(--color-text);
  content: "";
  height: 2.125rem;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotate(-45deg);
  transform-origin: top left;
  width: .125rem;
}
@media (hover: hover) {
  .accordion-trigger:hover .accordion-icon .accordion-icon-active,
  .accordion-trigger:hover .accordion-icon:after,
  .accordion-trigger:hover .accordion-icon:before {
    background-color: var(--color-btn-close-hover);
  }
  .accordion-trigger:hover .accordion-icon .accordion-icon-active {
    bottom: 0;
    height: 1.5rem;
    left: 0;
    transform-origin: bottom left;
  }
}
.accordion-trigger.expanded .accordion-icon {
  transform: rotate(0) scale(0.8);
}
.accordion-trigger.expanded .accordion-icon .accordion-icon-active,
.accordion-trigger.expanded .accordion-icon:after,
.accordion-trigger.expanded .accordion-icon:before {
  background-color: var(--color-btn-close-hover);
}
.accordion-panel {
  height: 0;
  outline: none;
  position: relative;
  top: 1px;
}
.accordion-panel > div {
  opacity: 0;
  padding-bottom: 2.5rem;
  padding-right: 10%;
  padding-top: 1.875rem;
  position: relative;
}
.accordion-panel > div:after {
  background: var(--color-btn);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.accordion-panel.expanded > div {
  opacity: 1;
}
.accordion-panel.animate-in {
  transition: height .3s ease-out;
}
.accordion-panel.animate-in > div {
  transition: opacity .4s ease-out .2s;
}
.accordion-panel.animate-out {
  transition: height .3s ease-out .2s;
}
.accordion-panel.animate-out > div {
  transition: opacity .3s ease-out;
}
.announcement[data-theme="default"] {
  --color-gradient: #000;
}
.announcement {
  position: relative;
  transition: height .3s linear;
}
.announcement:before {
  background: var(--color-gradient);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.announcement.is-hidden {
  display: none;
}
.announcement-container {
  position: relative;
}
.announcement-container,
.announcement-content {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.announcement-content {
  padding: 1.125rem 25% 1.125rem 0;
}
.announcement h3 {
  font-size: 1.3125rem;
  margin-bottom: .3125rem;
}
.announcement p {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: .5rem;
}
.announcement .btn-close {
  position: absolute;
  right: 1rem;
  top: 1.25rem;
  transform: scale(0.7);
}
@media screen and (min-width: 1024px) {
  .announcement-content {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    padding: .9375rem 0;
  }
  .announcement-headline {
    min-width: 31%;
    width: 31%;
  }
  .announcement-text {
    width: auto;
  }
  .announcement-link {
    min-width: 23.4375rem;
    width: 23.4375rem;
  }
  .announcement .btn-close {
    margin-top: -.625rem;
    right: 1rem;
    top: 50%;
  }
  .announcement h3 {
    font-size: 2.25rem;
    margin-bottom: 0;
  }
  .announcement p {
    font-size: 1.0625rem;
    margin-bottom: 0;
  }
  .announcement h3,
  .announcement p {
    padding-right: 5.625rem;
  }
}
.btn-announcement {
  display: inline-block;
  font-weight: 500;
  padding-right: 28px;
  position: relative;
  text-decoration: none;
}
.btn-announcement .pointer {
  background-color: #fff;
  display: inline-block;
  height: 1px;
  position: absolute;
  right: 0;
  top: 14px;
  transition: width .2s;
  width: 1rem;
}
.btn-announcement .pointer:after,
.btn-announcement .pointer:before {
  background-color: #fff;
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.btn-announcement .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.btn-announcement .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .btn-announcement {
    border: 1px solid #fff;
    border-radius: .75rem;
    padding: 12px 24px;
    width: 16.5625rem;
  }
  .btn-announcement .pointer {
    right: 1.5rem;
    top: 50%;
    transition: width .2s;
  }
  .btn-announcement:hover .pointer {
    width: 2rem;
  }
}
.btn-expand,
.button {
  position: relative;
}
.button {
  background: #00e128;
  border: 1px solid #00e128;
  border-radius: .75rem;
  color: #fff;
  color: #000;
  padding: 15px;
  text-decoration: none;
  transition: all .25s ease-in-out;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .button {
    background: transparent;
    border: 1px solid #00e128;
    color: #fff;
  }
  .button:active,
  .button:focus,
  .button:hover {
    color: #000;
  }
}
.button span {
  position: relative;
  z-index: 4;
}
.btn-rect {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #00e128;
  border-radius: .75rem;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 1.125rem 2.25rem;
  text-align: left;
  text-decoration: none;
  transition: background-color .25s ease-out, color .25s ease-out;
}
@media (hover: hover) {
  .btn-rect:hover {
    background-color: #00e128;
    color: #000;
  }
}
.btn-rect-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #00e128;
  border-radius: .75rem;
  box-shadow: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  min-width: 16.875rem;
  padding: 1.0625rem 5rem 1.0625rem 1.5rem;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: background-color .25s ease-out, color .25s ease-out;
}
.btn-rect-arrow .pointer {
  background-color: #fff;
  display: inline-block;
  height: 1px;
  position: absolute;
  right: 24px;
  top: 50%;
  transition: width .2s;
  width: 1rem;
}
.btn-rect-arrow .pointer:after,
.btn-rect-arrow .pointer:before {
  background-color: #fff;
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.btn-rect-arrow .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.btn-rect-arrow .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-rect-arrow .pointer,
  .btn-rect-arrow .pointer:after,
  .btn-rect-arrow .pointer:before {
    background-color: #fff;
  }
  .btn-rect-arrow:hover {
    background-color: #00e128;
    color: #000;
  }
  .btn-rect-arrow:hover .pointer {
    background-color: #000;
    width: 2rem;
  }
  .btn-rect-arrow:hover .pointer:after,
  .btn-rect-arrow:hover .pointer:before {
    background-color: #000;
  }
}
.btn-rect-arrow-blue {
  border: 1px solid #0a8afa;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-rect-arrow-blue:hover {
    background-color: #0a8afa;
    color: #000;
  }
  .btn-rect-arrow-blue:hover .pointer,
  .btn-rect-arrow-blue:hover .pointer:after,
  .btn-rect-arrow-blue:hover .pointer:before {
    background-color: #000;
  }
}
.btn-matrix {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  height: 3.375rem;
  line-height: 1;
  line-height: 3.375rem;
  margin: 0;
  min-width: 16.5625rem;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: all .25s ease-out;
}
.btn-matrix .border {
  background-color: var(--color-btn);
  border: 1px solid var(--color-btn);
  border-radius: .75rem;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.btn-matrix .label {
  color: var(--color-btn-matrix-text-hover);
  padding-left: 1.5rem;
  padding-right: 5rem;
  position: relative;
  top: 1px;
}
.btn-matrix .matrix {
  display: none;
}
.btn-matrix .pointer {
  background-color: var(--color-btn-matrix-text-hover);
  display: inline-block;
  height: 1px;
  position: absolute;
  right: 24px;
  top: 26px;
  transition: width .2s;
  width: 1rem;
}
.btn-matrix .pointer:after,
.btn-matrix .pointer:before {
  background-color: var(--color-btn-matrix-text-hover);
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.btn-matrix .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.btn-matrix .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
.btn-matrix:active,
.btn-matrix:visited {
  color: inherit;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-matrix {
    margin-right: 1.5rem;
    margin-top: 1.5rem;
    min-width: 17.875rem;
  }
  .btn-matrix .border {
    background-color: var(--color-bg);
  }
  .btn-matrix .label {
    color: var(--color-text);
  }
  .btn-matrix .matrix {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .btn-matrix .matrix span {
    background-color: var(--color-bg);
    border: 1px solid var(--color-btn);
    border-radius: .75rem;
    height: 100%;
    left: 22px;
    opacity: 0;
    position: absolute;
    top: -22px;
    transition: opacity .01s ease-out 0s;
    width: 100%;
  }
  .btn-matrix .matrix span:nth-child(2) {
    left: 15px;
    top: -15px;
  }
  .btn-matrix .matrix span:nth-child(3) {
    left: 8px;
    top: -8px;
  }
  .btn-matrix .pointer,
  .btn-matrix .pointer:after,
  .btn-matrix .pointer:before {
    background-color: var(--color-text);
  }
  .btn-matrix:hover {
    color: var(--color-bg);
  }
  .btn-matrix:hover .border {
    background-color: var(--color-btn);
  }
  .btn-matrix:hover .label {
    color: var(--color-btn-matrix-text-hover);
  }
  .btn-matrix:hover .matrix span {
    opacity: 1;
  }
  .btn-matrix:hover .matrix span:first-child {
    transition: opacity .1s ease-out .15s;
  }
  .btn-matrix:hover .matrix span:nth-child(2) {
    left: 15px;
    top: -15px;
    transition: opacity .1s ease-out .09s;
  }
  .btn-matrix:hover .matrix span:nth-child(3) {
    left: 8px;
    top: -8px;
    transition: opacity .1s ease-out;
    transition: opacity .1s ease-out .03s;
  }
  .btn-matrix:hover .pointer {
    width: 2rem;
  }
  .btn-matrix:hover .pointer,
  .btn-matrix:hover .pointer:after,
  .btn-matrix:hover .pointer:before {
    background-color: var(--color-btn-matrix-text-hover);
  }
  .btn-matrix-white .border {
    background-color: #fff;
  }
  .btn-matrix-white .label {
    color: #000;
  }
  .btn-matrix-white .matrix span {
    background-color: #fff;
  }
  .btn-matrix-white .pointer,
  .btn-matrix-white .pointer:after,
  .btn-matrix-white .pointer:before {
    background-color: #000;
  }
}
.btn-matrix-gray .border {
  background-color: #00e128;
  border: 1px solid #00e128;
}
.btn-matrix-gray .label {
  color: #000;
}
.btn-matrix-gray .matrix span {
  background-color: #393939;
}
.btn-matrix-gray .pointer,
.btn-matrix-gray .pointer:after,
.btn-matrix-gray .pointer:before {
  background-color: #000;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-matrix-gray .border {
    background-color: #393939;
    border: 1px solid #00e128;
  }
  .btn-matrix-gray .label {
    color: #fff;
  }
  .btn-matrix-gray .pointer,
  .btn-matrix-gray .pointer:after,
  .btn-matrix-gray .pointer:before {
    background-color: #fff;
  }
  .btn-matrix-gray:hover .border {
    background-color: #00e128;
  }
  .btn-matrix-gray:hover .label {
    color: #000;
  }
  .btn-matrix-gray:hover .matrix span {
    border: 1px solid rgba(0, 225, 40, 0.45);
    opacity: 1;
  }
  .btn-matrix-gray:hover .pointer,
  .btn-matrix-gray:hover .pointer:after,
  .btn-matrix-gray:hover .pointer:before {
    background-color: #000;
  }
}
.btn-matrix-gray-light .border {
  background-color: #00e128;
  border: 1px solid #00e128;
}
.btn-matrix-gray-light .label {
  color: #000;
}
.btn-matrix-gray-light .matrix span {
  background-color: #ebebeb;
}
.btn-matrix-gray-light .pointer,
.btn-matrix-gray-light .pointer:after,
.btn-matrix-gray-light .pointer:before {
  background-color: #000;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-matrix-gray-light .border {
    background-color: #ebebeb;
    border: 1px solid #00e128;
  }
  .btn-matrix-gray-light .label {
    color: #000;
  }
  .btn-matrix-gray-light .pointer,
  .btn-matrix-gray-light .pointer:after,
  .btn-matrix-gray-light .pointer:before {
    background-color: #000;
  }
  .btn-matrix-gray-light:hover .border {
    background-color: #00e128;
  }
  .btn-matrix-gray-light:hover .label {
    color: #000;
  }
  .btn-matrix-gray-light:hover .matrix span {
    border: 1px solid rgba(0, 225, 40, 0.45);
    opacity: 1;
  }
  .btn-matrix-gray-light:hover .pointer,
  .btn-matrix-gray-light:hover .pointer:after,
  .btn-matrix-gray-light:hover .pointer:before {
    background-color: #000;
  }
}
.btn-matrix-blue .border,
.btn-matrix-brain .border {
  background-color: transparent;
  border: 1px solid #fff;
}
.btn-matrix-blue .label,
.btn-matrix-brain .label {
  color: #fff;
}
.btn-matrix-blue .matrix span,
.btn-matrix-brain .matrix span {
  background-color: #0a8afa;
}
.btn-matrix-blue .pointer,
.btn-matrix-blue .pointer:after,
.btn-matrix-blue .pointer:before,
.btn-matrix-brain .pointer,
.btn-matrix-brain .pointer:after,
.btn-matrix-brain .pointer:before {
  background-color: #fff;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-matrix-blue:hover,
  .btn-matrix-brain:hover {
    color: #fff;
  }
  .btn-matrix-blue:hover .border,
  .btn-matrix-brain:hover .border {
    background-color: #0a8afa;
  }
  .btn-matrix-blue:hover .label,
  .btn-matrix-brain:hover .label {
    color: #fff;
  }
  .btn-matrix-blue:hover .matrix span,
  .btn-matrix-brain:hover .matrix span {
    border: 1px solid #fff;
    opacity: 1;
  }
  .btn-matrix-blue:hover .pointer,
  .btn-matrix-blue:hover .pointer:after,
  .btn-matrix-blue:hover .pointer:before,
  .btn-matrix-brain:hover .pointer,
  .btn-matrix-brain:hover .pointer:after,
  .btn-matrix-brain:hover .pointer:before {
    background-color: #fff;
  }
}
.btn-close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 1.4375rem;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 1.4375rem;
}
.btn-close-active {
  bottom: 0;
  height: 1rem;
  left: 0;
  transition: height .3s linear, background-color .1s linear;
}
.btn-close-active,
.btn-close:before {
  background-color: var(--color-text);
  position: absolute;
  transform: rotate(45deg);
  transform-origin: bottom left;
  width: .125rem;
}
.btn-close:before {
  bottom: .9375rem;
  content: "";
  height: .75rem;
  left: .9375rem;
}
.btn-close:after {
  background-color: var(--color-text);
  content: "";
  height: 2.125rem;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotate(-45deg);
  transform-origin: top left;
  width: .125rem;
}
@media (hover: hover) {
  .btn-close:hover .btn-close-active,
  .btn-close:hover:after,
  .btn-close:hover:before {
    background-color: var(--color-btn-close-hover);
  }
  .btn-close:hover .btn-close-active {
    bottom: 0;
    height: 1.5rem;
    left: 0;
    transform-origin: bottom left;
  }
}
.btn-close-white .btn-close-active,
.btn-close-white:after,
.btn-close-white:before {
  background-color: #fff;
}
@media (hover: hover) {
  .btn-close-white:hover .btn-close-active,
  .btn-close-white:hover:after,
  .btn-close-white:hover:before {
    background-color: #00e128;
  }
}
.btn-close-white.btn-close-announcement {
  scale: 0.7;
}
@media (hover: hover) {
  .btn-close-white.btn-close-brain:hover .btn-close-active,
  .btn-close-white.btn-close-brain:hover:after,
  .btn-close-white.btn-close-brain:hover:before {
    background-color: #fff;
  }
}
.btn-close-black .btn-close-active,
.btn-close-black:after,
.btn-close-black:before {
  background-color: #000;
}
@media (hover: hover) {
  .btn-close-black:hover .btn-close-active,
  .btn-close-black:hover:after,
  .btn-close-black:hover:before {
    background-color: #2528f4;
  }
}
.btn-sns {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: .75rem;
  box-sizing: border-box;
  display: block;
  height: 2.3125rem;
  position: relative;
  text-decoration: none;
  transition: background-color .25s ease-out;
  width: 2.3125rem;
}
@media (hover: hover) {
  .btn-sns:hover {
    background-color: #00e128;
    border: 1px solid #00e128;
  }
}
.btn-sns:after {
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
.btn-sns-white {
  border: 1px solid #fff;
}
@media (hover: hover) {
  .btn-sns-white:hover:after {
    filter: invert(100%);
  }
}
.btn-sns-black {
  border: 1px solid #000;
}
.btn-sns-black:after {
  filter: invert(100%);
}
.btn-sns.facebook:after {
  background-image: url(../images/icon-sns-facebook.svg);
}
.btn-sns.linkedin:after {
  background-image: url(../images/icon-sns-linkedin.svg);
}
.btn-sns.twitter:after {
  background-image: url(../images/icon-sns-twitter.svg);
}
.btn-sns.youtube:after {
  background-image: url(../images/icon-sns-youtube.svg);
}
.btn-share {
  background-color: transparent;
  border: 1px solid #00e128;
  border-radius: 1.3125rem;
  box-sizing: border-box;
  display: block;
  height: 2.625rem;
  position: relative;
  text-decoration: none;
  transition: background-color .25s ease-out;
  width: 2.625rem;
}
@media (hover: hover) {
  .btn-share:hover {
    background-color: #00e128;
    border: 1px solid #00e128;
  }
  .btn-share:hover:after {
    filter: invert(100%);
  }
}
.btn-share:after {
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
.btn-download-link:after {
  background-image: url(../images/icon-download.svg);
}
.btn-share-link:after {
  background-image: url(../images/icon-share.svg);
}
.btn-share-black.btn-download-link:after,
.btn-share-black.btn-share-link:after {
  filter: invert(100%);
}
.btn-share-close {
  background-color: #00e128;
  border: 1px solid #00e128;
  border-radius: 1.3125rem;
  box-sizing: border-box;
  display: none;
  height: 2.625rem;
  position: relative;
  text-decoration: none;
  width: 2.625rem;
}
.btn-share-close-active {
  bottom: .75rem;
  height: .6875rem;
  left: .75rem;
  transition: height .15s linear;
}
.btn-share-close-active,
.btn-share-close:before {
  background-color: #000;
  position: absolute;
  transform: rotate(45deg);
  transform-origin: bottom left;
  width: .09375rem;
}
.btn-share-close:before {
  content: "";
  height: .5rem;
  left: 1.375rem;
  top: .625rem;
}
.btn-share-close:after {
  background-color: #000;
  content: "";
  height: 1.3125rem;
  left: .75rem;
  position: absolute;
  top: .875rem;
  transform: rotate(-45deg);
  transform-origin: top left;
  width: .09375rem;
}
@media (hover: hover) {
  .btn-share-close:hover .btn-share-close-active {
    height: .9375rem;
    transform-origin: bottom left;
  }
}
.btn-endnotes {
  border: 0;
  border-bottom: 1px solid #000;
  cursor: pointer;
  display: block;
  font-size: 1.1875rem;
  font-weight: 600;
  height: auto;
  padding: 0 0 .3125rem;
  position: relative;
  text-decoration: none;
  width: 100%;
}
.btn-endnotes:after {
  content: url(../images/icon-dropdown.svg);
  height: 1.5625rem;
  position: absolute;
  right: 0;
}
.btn-endnotes.is-active:after {
  transform: rotate(180deg);
}
.btn-video {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-btn);
  background-image: url(../images/icon-video-play.svg);
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  display: block;
  height: 60px;
  line-height: 1;
  margin: 0;
  position: relative;
  text-decoration: none;
  transition: background-color .25s ease-out;
  width: 60px;
}
.btn-video:after {
  background: var(--color-btn);
  content: "";
  height: 10px;
  left: 26px;
  position: absolute;
  top: 18px;
  transition: width .2s;
  width: 5px;
}
@media (hover: hover) {
  .btn-video:hover:after {
    width: 0;
  }
}
.btn-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-decoration: none;
}
.btn-arrow,
.btn-arrow .pointer {
  display: inline-block;
  position: relative;
}
.btn-arrow .pointer {
  background-color: var(--color-btn-arrow-hover);
  height: 1px;
  margin-left: .9375rem;
  top: -.25rem;
  transition: width .2s;
  width: 1rem;
}
.btn-arrow .pointer:after,
.btn-arrow .pointer:before {
  background-color: var(--color-btn-arrow-hover);
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.btn-arrow .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.btn-arrow .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .btn-arrow:hover {
    color: var(--color-btn-arrow-hover);
  }
}
@media screen and (min-width: 980px) and (hover: hover) {
  .btn-arrow .pointer {
    margin-left: 1.25rem;
  }
  .btn-arrow .pointer,
  .btn-arrow .pointer:after,
  .btn-arrow .pointer:before {
    background-color: var(--color-text);
  }
  .btn-arrow:hover .pointer {
    width: 2rem;
  }
  .btn-arrow:hover .pointer,
  .btn-arrow:hover .pointer:after,
  .btn-arrow:hover .pointer:before {
    background-color: var(--color-btn-arrow-hover);
  }
}
.btn-arrow-green .pointer,
.btn-arrow-green .pointer:after,
.btn-arrow-green .pointer:before {
  background-color: #00e128;
}
@media (hover: hover) {
  .btn-arrow-green:hover {
    color: #00e128;
  }
}
@media screen and (min-width: 980px) and (hover: hover) {
  .btn-arrow-green .pointer,
  .btn-arrow-green .pointer:after,
  .btn-arrow-green .pointer:before {
    background-color: #fff;
  }
  .btn-arrow-green:hover .pointer {
    background-color: #00e128;
    width: 1.875rem;
  }
  .btn-arrow-green:hover .pointer:after,
  .btn-arrow-green:hover .pointer:before {
    background-color: #00e128;
  }
}
.btn-arrow-blue .pointer,
.btn-arrow-blue .pointer:after,
.btn-arrow-blue .pointer:before {
  background-color: #2528f4;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-arrow-blue .pointer,
  .btn-arrow-blue .pointer:after,
  .btn-arrow-blue .pointer:before {
    background-color: #fff;
  }
  .btn-arrow-blue:hover {
    color: #2528f4;
  }
  .btn-arrow-blue:hover .pointer {
    background-color: #2528f4;
    width: 2rem;
  }
  .btn-arrow-blue:hover .pointer:after,
  .btn-arrow-blue:hover .pointer:before {
    background-color: #2528f4;
  }
}
.btn-arrow-blue--brain .pointer,
.btn-arrow-blue--brain .pointer:after,
.btn-arrow-blue--brain .pointer:before {
  background-color: #0a8afa;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-arrow-blue--brain .pointer,
  .btn-arrow-blue--brain .pointer:after,
  .btn-arrow-blue--brain .pointer:before {
    background-color: #fff;
  }
  .btn-arrow-blue--brain:hover {
    color: #0a8afa;
  }
  .btn-arrow-blue--brain:hover .pointer {
    background-color: #0a8afa;
    width: 2rem;
  }
  .btn-arrow-blue--brain:hover .pointer:after,
  .btn-arrow-blue--brain:hover .pointer:before {
    background-color: #0a8afa;
  }
}
.btn-arrow-black .pointer,
.btn-arrow-black .pointer:after,
.btn-arrow-black .pointer:before {
  background-color: #000;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-arrow-black .pointer,
  .btn-arrow-black .pointer:after,
  .btn-arrow-black .pointer:before {
    background-color: #000;
  }
  .btn-arrow-black:hover {
    color: #000;
  }
  .btn-arrow-black:hover .pointer {
    background-color: #000;
    width: 2rem;
  }
  .btn-arrow-black:hover .pointer:after,
  .btn-arrow-black:hover .pointer:before {
    background-color: #000;
  }
}
.btn-back-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  position: relative;
  text-decoration: none;
}
.btn-back-arrow .pointer {
  background-color: #000;
  display: inline-block;
  height: 1px;
  margin-right: .9375rem;
  position: relative;
  top: -.3125rem;
  transition: width .2s;
  width: 1rem;
}
.btn-back-arrow .pointer:after,
.btn-back-arrow .pointer:before {
  background-color: #000;
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.btn-back-arrow .pointer:before {
  left: 3px;
  top: -.5625rem;
  transform: rotate(45deg);
}
.btn-back-arrow .pointer:after {
  left: 3px;
  top: -.0625rem;
  transform: rotate(-45deg);
}
@media screen and (min-width: 980px) and (hover: hover) {
  .btn-back-arrow:hover .pointer {
    width: 2rem;
  }
}
.btn-long {
  display: block;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  position: relative;
  width: 100%;
}
.btn-long:after {
  background-color: var(--color-border);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: height .2s;
  width: 100%;
}
.btn-long:active:after,
.btn-long:focus:after,
.btn-long:hover:after {
  height: 3px;
}
@-webkit-keyframes nav-ticker {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes nav-ticker {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.header {
  background-color: #000;
  height: 4.125rem;
  position: relative;
  z-index: 8000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.header-logo-link {
  display: inline-block;
  height: 36px;
}
.header-logo-link img {
  height: 100%;
  width: auto;
}

/* .header-logo-link {
  display: inline-block;
  padding: 5px; 1rem
}
.header-logo-link img {
  display: block;
} */
.header-logo {
  position: relative;
  top: .9375rem;
}
.nav {
  box-sizing: border-box;
  color: #fff;
  display: none;
  height: 100%;
  left: 0;
  padding: 1.25rem;
  position: fixed;
  top: 0;
  width: 100%;
}
.nav-primary,
.nav-subsidiary {
  position: relative;
}
.nav.active {
  display: block;
}
.btn-close.btn-close-nav {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
}
.nav-main {
  -ms-overflow-style: none;
  box-sizing: content-box;
  height: calc(100% - 15rem);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 3.75rem 8.3333% 0;
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .nav-main {
    height: calc(100% - 10rem);
  }
}
.nav-main > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-main-item,
.nav-main-link {
  transition: opacity .4s;
}
.nav-main-link {
  display: inline-block;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .nav-main-link {
    font-size: 3.75rem;
  }
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-ticker {
  display: grid;
  gap: .9375rem;
  height: 0;
  margin: 0 -10%;
  opacity: 0;
  overflow-x: hidden;
  position: relative;
  transition: opacity .5s;
}
.nav-ticker-block {
  -webkit-animation: nav-ticker 80s linear infinite;
  animation: nav-ticker 80s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  display: flex;
  position: relative;
}
.nav-ticker-row {
  display: flex;
  margin: .625rem 0;
  position: relative;
}
.nav-ticker-row:nth-child(2n) .nav-ticker-block {
  animation-direction: reverse;
}
.nav-ticker.is-active {
  height: auto;
  opacity: 1;
}
.nav-ticker.is-active .nav-ticker-block {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.nav-ticker.is-active:hover .nav-ticker-block {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.nav-ticker-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-ticker-item {
  display: flex;
  margin-right: .9375rem;
}
.nav-ticker-item-thumb {
  display: block;
  height: 5.8125rem;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1;
  position: relative;
  width: 5.8125rem;
}
.nav-ticker-item-link {
  display: block;
  font-size: 1.1875rem;
  line-height: 1.3;
  margin-left: 1.25rem;
  position: relative;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
  width: 13.5625rem;
}
.nav-ticker-item-link > span {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: inline-block;
  display: -webkit-box;
  height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-ticker-item-link .pointer {
  background-color: #fff;
  display: inline-block;
  height: 1px;
  left: 0;
  position: relative;
  top: 0;
  transition: width .2s;
  width: .9375rem;
}
.nav-ticker-item-link .pointer:after,
.nav-ticker-item-link .pointer:before {
  background-color: #fff;
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.nav-ticker-item-link .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.nav-ticker-item-link .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .nav-ticker-item-link:hover {
    text-decoration: underline;
    -webkit-text-decoration-color: #00e128;
    text-decoration-color: #00e128;
    text-decoration-thickness: 1px;
    text-underline-offset: 3.5px;
  }
  .nav-ticker-item-link:hover .pointer {
    width: 1.875rem;
  }
  .nav-ticker-item-link:hover .pointer,
  .nav-ticker-item-link:hover .pointer:after,
  .nav-ticker-item-link:hover .pointer:before {
    background-color: #00e128;
  }
}
.nav-sub {
  bottom: 3.3125rem;
  box-sizing: border-box;
  padding: 0 8.3333%;
  position: absolute;
  width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  .nav-sub {
    align-items: flex-end;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
}
.nav-utility {
  margin-bottom: 2.25rem;
}
.nav-utility .btn-rect-arrow-util {
  background-color: #0a8afa;
  border: 1px solid #0a8afa;
  color: #000;
  min-width: 100%;
}
.nav-utility .btn-rect-arrow-util .pointer,
.nav-utility .btn-rect-arrow-util .pointer:after,
.nav-utility .btn-rect-arrow-util .pointer:before {
  background-color: #000;
}
@media screen and (min-width: 480px) {
  .nav-utility .btn-rect-arrow-util {
    min-width: 16.875rem;
  }
}
@media screen and (min-width: 768px) {
  .nav-utility {
    margin-bottom: 0;
  }
  .nav-utility .btn-rect-arrow-util {
    background-color: transparent;
    color: #fff;
  }
  .nav-utility .btn-rect-arrow-util .pointer,
  .nav-utility .btn-rect-arrow-util .pointer:after,
  .nav-utility .btn-rect-arrow-util .pointer:before {
    background-color: #fff;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .nav-utility .btn-rect-arrow-util:hover {
    background-color: #0a8afa;
    color: #000;
  }
  .nav-utility .btn-rect-arrow-util:hover .pointer,
  .nav-utility .btn-rect-arrow-util:hover .pointer:after,
  .nav-utility .btn-rect-arrow-util:hover .pointer:before {
    background-color: #000;
  }
}
.nav-sns ul,
.nav-utility ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-sns ul {
  display: flex;
}
.nav-sns ul li {
  display: block;
  line-height: 1;
  margin-right: .9375rem;
}
.btn-nav-open {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 36px;
  line-height: 1;
  margin: 0 16px 0 0;
  padding: 0;
  position: fixed;
  right: 0;
  text-decoration: none;
  top: .9375rem;
  width: 36px;
}
.btn-nav-open.absolute {
  margin-right: 0;
  position: absolute;
}
@media screen and (min-width: 980px) {
  .btn-nav-open {
    margin-right: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .btn-nav-open {
    right: calc(50% - 640px);
  }
  .btn-nav-open.absolute {
    margin-right: 12px;
    position: absolute;
  }
}
.btn-nav-open svg {
  opacity: 1;
}
.btn-nav-open stop {
  transition: all .3s ease-out;
}
.btn-nav-open[data-color="orange"] stop:first-child {
  stop-color: #f72f18;
}
.btn-nav-open[data-color="orange"] stop:last-child {
  stop-color: #fa8c24;
}
.btn-nav-open[data-color="cyan"] stop:first-child {
  stop-color: #2528f4;
}
.btn-nav-open[data-color="cyan"] stop:last-child {
  stop-color: #00e128;
}
.btn-nav-open[data-color="magenta"] stop:first-child {
  stop-color: #983af2;
}
.btn-nav-open[data-color="magenta"] stop:last-child {
  stop-color: #fe2bff;
}
@media (hover: hover) {
  .btn-nav-open[data-color="orange"]:hover stop:first-child {
    stop-color: #fa8c24;
  }
  .btn-nav-open[data-color="orange"]:hover stop:last-child {
    stop-color: #f72f18;
  }
  .btn-nav-open[data-color="cyan"]:hover stop:first-child {
    stop-color: #00e128;
  }
  .btn-nav-open[data-color="cyan"]:hover stop:last-child {
    stop-color: #2528f4;
  }
  .btn-nav-open[data-color="magenta"]:hover stop:first-child {
    stop-color: #fe2bff;
  }
  .btn-nav-open[data-color="magenta"]:hover stop:last-child {
    stop-color: #983af2;
  }
}
.btn-nav-open:disabled {
  cursor: default;
  height: 100%;
  margin-right: 0;
  right: 0;
  top: 0;
  width: 100%;
}
.btn-nav-open:disabled svg {
  opacity: 0;
}
.btn-nav-open:disabled .btn-nav-panel {
  opacity: 1;
}
.btn-nav-panel {
  background-color: #fa8c24;
  height: 100%;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.btn-nav-panel span {
  background-color: #000;
  display: block;
  height: calc(100% - 40px);
  left: 1.25rem;
  position: absolute;
  top: 1.25rem;
  width: calc(100% - 40px);
}
.btn-nav-open[data-color="orange"] .btn-nav-panel {
  background: linear-gradient(45deg, #f72f18, #fa8c24);
}
.btn-nav-open[data-color="cyan"] .btn-nav-panel {
  background: linear-gradient(45deg, #2528f4, #00e128);
}
.btn-nav-open[data-color="magenta"] .btn-nav-panel {
  background: linear-gradient(45deg, #983af2, #fe2bff);
}
.article {
  background: var(--color-bg);
  color: var(--color-text);
  overflow: hidden;
  padding-bottom: 5.625rem;
  position: relative;
}
.article h1,
.article h2 {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.14;
}
.article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.14;
}
.article h4 {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.26;
}
.article h5 {
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.2;
}
.article h6 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
}
.article p {
  line-height: 1.588;
  margin-bottom: .9375rem;
}
@media screen and (min-width: 768px) {
  .article h1,
  .article h2 {
    font-size: 2.25rem;
    line-height: 1.166;
  }
  .article h3 {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
.article ol,
.article ul {
  line-height: 1.588;
  margin: 0 0 2.8125rem;
}
.article ol li,
.article ul li {
  margin-bottom: .5rem;
  padding-left: .75rem;
}
.article ol li::marker,
.article ul li::marker {
  color: #fa8c24;
}
.article ul {
  padding: 0 0 0 1rem;
}
.article ol {
  padding: 0 0 0 1.25rem;
}
.article a {
  color: inherit;
  -webkit-text-decoration-color: var(--color-text);
  text-decoration-color: var(--color-text);
  text-underline-offset: 3px;
}
.article a,
.article a:hover {
  text-decoration-thickness: 1px;
}
.article a:hover {
  -webkit-text-decoration-color: var(--color-btn);
  text-decoration-color: var(--color-btn);
}
.article b,
.article strong {
  font-weight: 700;
}
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  margin-bottom: .9375rem;
}
.article div + h1,
.article div + h2,
.article div + h3,
.article div + h4,
.article div + h5,
.article div + h6,
.article p + h1,
.article p + h2,
.article p + h3,
.article p + h4,
.article p + h5,
.article p + h6 {
  margin-top: 2.8125rem;
}
.article hr {
  background-color: #000;
  border: 0;
  height: 1px;
  margin: 2.8125rem 0;
  padding: 0;
}
.article img {
  height: auto;
  margin: 1.875rem 0;
  max-width: 100%;
}
.article img.aligncenter {
  display: block;
  margin: 1.875rem auto;
}
.article img.alignleft,
.article img.alignright {
  margin: 0 0 .9375rem;
}
.article img.alignnone {
  height: auto;
  width: 100%;
}
.article figure {
  display: block;
  margin: 1.875rem 0;
}
.article figure img {
  display: block;
  margin: 0;
}
.article figure figcaption {
  font-size: .875rem;
  font-weight: 300;
  margin-top: .3125rem;
}
.article figure.aligncenter {
  margin: 1.875rem auto;
}
.article figure.aligncenter img {
  display: block;
  margin: 0 auto;
}
.article figure.alignleft,
.article figure.alignright {
  margin: 0 0 .9375rem;
}
.article figure.alignnone {
  width: 100% !important;
}
.article figure.alignnone img {
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .article {
    padding-bottom: 8rem;
  }
  .article figure.alignleft,
  .article img.alignleft {
    float: left;
    margin: .9375rem .9375rem .9375rem 0;
  }
  .article figure.alignright,
  .article img.alignright {
    float: right;
    margin: .9375rem 0 .9375rem .9375rem;
  }
}
.article blockquote {
  clear: both;
  display: block;
  margin: 2.8125rem 0;
}
.article blockquote > p {
  box-sizing: border-box;
  font-size: 1.3125rem;
  font-weight: 300;
  line-height: 1.35;
  padding-top: 2.8125rem;
  position: relative;
}
.article blockquote > p:before {
  content: "“";
  font-size: 5.625rem;
  font-weight: 200;
  left: 0;
  line-height: 1;
  position: absolute;
  top: .4375rem;
}
.article blockquote .attr {
  display: block;
  font-size: 1.0625rem;
  font-weight: 300;
  margin-top: .9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .article blockquote > p {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.166;
    padding-top: 3.75rem;
  }
}
.article .blockquote--media {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.article .blockquote--media > div {
  box-sizing: border-box;
  position: relative;
}
.article .blockquote--media > div img {
  height: auto;
  margin: 0 0 .9375rem;
  width: 16.625rem;
}
@media screen and (min-width: 768px) {
  .article .blockquote--media {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .article .blockquote--media > div {
    width: 44%;
  }
  .article .blockquote--media > div img {
    width: 100%;
  }
  .article .blockquote--media > p {
    padding-left: 75px;
    width: 56%;
  }
  .article .blockquote--media > p:before {
    left: 4.6875rem;
  }
}
@media screen and (min-width: 980px) {
  .article .blockquote--media {
    margin-left: -24%;
    width: 148%;
  }
  .article-grid-col-wide {
    grid-column: 3 / span 8;
  }
  .article-grid-col {
    grid-column: 4 / span 6;
  }
}
.article-header {
  background-color: #000;
  color: #fff;
  padding-top: 4.6875rem;
  position: relative;
}
.article-header h1 {
  font-size: 2.625rem;
  font-weight: 200;
  line-height: 1.05;
  margin-bottom: 1.875rem;
}
.article-header div + h1 {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .article-header {
    padding-top: 5.625rem;
  }
  .article-header h1 {
    font-size: 3.75rem;
    padding-right: 20%;
  }
}
.article-eyebrow {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .article-eyebrow {
    margin-bottom: 1.875rem;
  }
}
.article-meta {
  display: flex;
  flex-direction: column;
  font-size: .9375rem;
  font-weight: 300;
  margin-bottom: 1.875rem;
}
.article-meta a.author {
  color: inherit;
  display: inline-block;
  text-underline-offset: 3px;
}
.article-meta a.author,
.article-meta a.author:hover {
  -webkit-text-decoration-color: #00e128;
  text-decoration-color: #00e128;
  text-decoration-thickness: 1px;
}
.article-meta span.author {
  display: inline-block;
  text-decoration: underline;
  -webkit-text-decoration-color: #fff;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media screen and (min-width: 768px) {
  .article-meta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
.article-share {
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .article-share {
    margin-top: 0;
  }
}
.article-share-buttons {
  display: flex;
  justify-content: flex-end;
}
.article-share-buttons .btn-share-close,
.article-share-buttons .btn-share-link {
  margin-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .article-share-buttons {
    margin-top: 0;
    top: -7px;
    width: 110px;
  }
  .article-share-buttons .btn-share-close,
  .article-share-buttons .btn-share-link {
    margin-left: .625rem;
  }
}
.article-share-list {
  background-color: #000;
  border: 1px solid #00e128;
  border-radius: .75rem;
  box-sizing: border-box;
  display: none;
  margin-top: .9375rem;
  padding: 1.25rem .625rem .625rem 1.5625rem;
  position: absolute;
  right: 0;
  width: 13.125rem;
  z-index: 10;
}
.article-share-list .article-share-link {
  display: block;
  font-size: 1.0625rem;
  font-weight: 400;
  margin-bottom: .625rem;
}
.article-header-img {
  height: 0;
  padding-bottom: 64%;
  position: relative;
}
.article-header-img img {
  height: 100%;
  left: 0;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.article-header-img-shade {
  background-color: #fff;
  bottom: 0;
  height: 50%;
  left: -100%;
  position: absolute;
  width: 300%;
}
@media screen and (min-width: 768px) {
  .article-header-img-shade {
    height: 44%;
  }
}
.article-content,
.article-footer {
  background-color: #fff;
  color: #000;
  position: relative;
}
.article-content {
  margin-bottom: 3.75rem;
  padding-top: 3.75rem;
}
.article-synopsis {
  margin-bottom: 2.8125rem;
}
.article-synopsis p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}
.article-footer .divider {
  margin: 0 0 2.8125rem;
}
@media screen and (min-width: 980px) {
  .article-footer .divider {
    margin: 3.75rem 0 4.6875rem;
  }
}
.article-endnotes {
  margin-bottom: 2.8125rem;
}
.article-endnotes,
.article-endnotes p {
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.5;
}
.article-endnotes .endnotes-content {
  display: none;
  opacity: 0;
  padding-top: .9375rem;
}
.article-endnotes .endnotes-content.is-open {
  display: block;
  opacity: 1;
  transition: none;
}
.article-endnotes ol,
.article-endnotes ul {
  padding-left: .9375rem;
  padding-top: .625rem;
}
.article-endnotes ol li,
.article-endnotes ul li {
  margin-bottom: .9375rem;
}
.article-endnotes ol li::marker,
.article-endnotes ul li::marker {
  color: #000;
}
.article-disclaimer {
  margin-bottom: 2.8125rem;
}
.article-disclaimer p {
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.5;
}
.article-footer-meta {
  display: flex;
  flex-direction: column;
}
.article-footer-meta .article-share {
  justify-content: flex-start;
  margin-bottom: 2.8125rem;
  margin-top: 0;
  order: 0;
}
.article-footer-meta .article-share-list {
  background-color: #fff;
  left: 0;
  right: auto;
}
.article-footer-meta .article-share-buttons {
  justify-content: flex-start;
}
.article-footer-meta .btn-download-link {
  margin-right: 1.875rem;
}
.article-footer-meta .btn-share-close,
.article-footer-meta .btn-share-link {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .article-footer-meta {
    flex-direction: row;
    justify-content: space-between;
  }
  .article-footer-meta .article-share {
    justify-content: flex-end;
    margin: 0;
    order: 1;
  }
  .article-footer-meta .article-share-list {
    left: auto;
    right: 0;
  }
  .article-footer-meta .article-share-list a {
    -webkit-text-decoration-color: #fff;
    text-decoration-color: #fff;
  }
  .article-footer-meta .article-share-list a:hover {
    -webkit-text-decoration-color: #00e128;
    text-decoration-color: #00e128;
  }
  .article-footer-meta .article-share-buttons {
    justify-content: flex-end;
  }
  .article-footer-meta .btn-download-link {
    margin-right: 0;
  }
  .article-footer-meta .btn-share-close,
  .article-footer-meta .btn-share-link {
    margin-left: .625rem;
  }
}
.article-tags {
  display: flex;
  font-weight: 400;
  justify-content: flex-start;
  order: 1;
}
.article-tags-label {
  font-weight: 400;
  margin-right: .9375rem;
}
.article-tags .tag {
  border: 1px solid #00e128;
  border-radius: 1.0625rem;
  display: inline-block;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1;
  margin: 0 .4375rem .9375rem 0;
  padding: .4375rem .75rem;
  position: relative;
  text-decoration: none;
  transition: all .25s ease-in-out;
}
.article-tags .tag:hover {
  background: #00e128;
}
@media screen and (min-width: 768px) {
  .article-tags {
    order: 0;
  }
}
.ag {
  background-color: #191919;
  overflow: hidden;
  padding-bottom: 5.625rem;
  padding-top: 5.625rem;
}
.ag .eyebrow {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: 3.75rem;
}
.ag-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.ag-grid-col1 {
  margin-bottom: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .ag-grid {
    -moz-column-gap: 10px;
    column-gap: 10px;
    grid-template-columns: repeat(12, 1fr);
  }
  .ag-grid-col1 {
    grid-column: span 3;
  }
  .ag-grid-col2 {
    grid-column: span 9;
  }
}
.ag-header {
  margin-bottom: 4.6875rem;
}
.ag-header .h1,
.ag-header .h2,
.ag-header .leaderboard__rank {
  margin-bottom: 2.8125rem;
}
.ag-header .grid {
  align-items: flex-end;
}
@media screen and (min-width: 980px) {
  .ag-header .h1,
  .ag-header .h2,
  .ag-header .leaderboard__rank {
    margin-bottom: 0;
  }
  .ag-header .search-form {
    margin-bottom: .625rem;
  }
}
.ag-btn-filter {
  display: block;
  padding: 1.125rem 1.5625rem;
  position: relative;
  width: 100%;
}
.ag-btn-filter:after {
  background-image: url(../images/icon-caret-white.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: .625rem;
  position: absolute;
  right: 1.5625rem;
  top: 1.25rem;
  transform-origin: center;
  transition: transform .2s;
  width: 1rem;
}
.ag-btn-filter.active:after {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .ag-btn-filter:hover:after {
    filter: invert(100%);
  }
}
@media screen and (min-width: 768px) {
  .ag-btn-filter {
    display: none;
  }
}
.ag-filters {
  display: none;
  margin-top: 2.5rem;
  padding-left: .125rem;
}
.ag-filters.active {
  display: block;
}
@media screen and (min-width: 768px) {
  .ag-filters {
    display: block;
    margin-top: 0;
  }
}
.ag-fds {
  border: 0;
  margin: 0 0 1.875rem;
  padding: 0;
}
.ag-fds legend {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: .9375rem;
  padding: 0;
}
.ag-fds div {
  margin: 0 0 .3125rem .625rem;
}
@media screen and (min-width: 768px) {
  .ag-fds div {
    margin: 0 0 .3125rem;
  }
}
.ag-filter-controller {
  align-items: center;
  display: flex;
  gap: .9375rem;
  padding-top: .9375rem;
}
@media screen and (min-width: 768px) {
  .ag-filter-controller {
    display: none;
  }
}
.ag-btn-filter-apply {
  text-align: center;
  width: 50%;
}
.ag-btn-filter-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  margin: 0;
  text-decoration: none;
  text-decoration: underline;
  -webkit-text-decoration-color: #00e128;
  text-decoration-color: #00e128;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  width: 50%;
}
.ag-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .ag-list {
    gap: 3.75rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .ag-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .ag-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ag-article {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
  margin-bottom: .9375rem;
  padding-bottom: .4375rem;
  position: relative;
}
@media screen and (min-width: 980px) {
  .ag-article {
    margin-bottom: 0;
  }
}
.ag-terms {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: .4375rem;
}
.ag-link {
  box-sizing: border-box;
  display: flex;
  line-height: 1.2;
  margin-left: 0;
  padding-bottom: 1.875rem;
  text-decoration: none;
  transition: left .25s;
}
.ag-link,
.ag-link-media {
  overflow: visible;
  position: relative;
}
.ag-link-media {
  display: none;
  height: 5.9375rem;
  width: 7.1875rem;
}
.ag-link-media img {
  height: 7.1875rem;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  position: relative;
  right: 0;
  top: -1.25rem;
  transition: opacity .25s, width .25s;
  width: 7.1875rem;
}
.ag-link-content {
  box-sizing: border-box;
  left: 0;
  padding-right: 20%;
  position: relative;
  transition: left .25s;
  width: 100%;
}
.ag-link .h3 {
  font-size: 1.1875rem;
  font-weight: 400;
  margin-bottom: .9375rem;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
}
.ag-link .pointer {
  background-color: #00e128;
  display: inline-block;
  height: 1px;
  left: 0;
  margin-left: .3125rem;
  margin-top: -.75rem;
  position: absolute;
  top: 100%;
  transition: width .2s;
  width: .9375rem;
}
.ag-link .pointer:after,
.ag-link .pointer:before {
  background-color: #00e128;
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.ag-link .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.ag-link .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .ag-link:hover .h3 {
    text-decoration: underline;
    -webkit-text-decoration-color: #00e128;
    text-decoration-color: #00e128;
    text-decoration-thickness: 1px;
  }
}
@media screen and (min-width: 980px) and (hover: hover) {
  .ag-link .pointer,
  .ag-link .pointer:after,
  .ag-link .pointer:before {
    background-color: #fff;
  }
  .ag-link:hover .ag-link-content {
    left: 10px;
  }
  .ag-link:hover .ag-link-media img {
    opacity: 1;
  }
  .ag-link:hover .h3 {
    text-decoration: underline;
    -webkit-text-decoration-color: #00e128;
    text-decoration-color: #00e128;
    text-decoration-thickness: 1px;
  }
  .ag-link:hover .pointer {
    width: 4.0625rem;
  }
  .ag-link:hover .pointer,
  .ag-link:hover .pointer:after,
  .ag-link:hover .pointer:before {
    background-color: #00e128;
  }
}
@media screen and (min-width: 768px) {
  .ag-link-content {
    padding-right: 0;
  }
}
@media screen and (min-width: 980px) {
  .ag-link {
    margin-left: -4.6875rem;
  }
  .ag-link-media {
    display: block;
  }
  .ag-link-content {
    left: -2.5rem;
  }
  .ag-link .h3 {
    margin-bottom: 0;
  }
  .ag-link .pointer {
    left: 4.375rem;
    margin-top: -.875rem;
  }
}
.ag-controller {
  display: flex;
  justify-content: center;
  padding: 5.625rem 0 .9375rem;
}
.articleSpotlight {
  border-bottom: 1px solid #00e128;
  padding: 4.6875rem 0 5.75rem;
}
@media screen and (min-width: 768px) {
  .articleSpotlight {
    padding: 0 0 7.375rem;
  }
}
.articleSpotlight > .container {
  padding-right: 0;
}
.articleSpotlight a {
  display: block;
  text-decoration: none;
}
.articleSpotlight .eyebrow {
  padding-bottom: 1.875rem;
}
.articleSpotlight img {
  display: block;
  width: 100%;
}
.articleSpotlight__content {
  border-left: 1px solid #00e128;
  display: block;
  padding: 0 0 0 1.625rem;
}
@media screen and (min-width: 768px) {
  .articleSpotlight__content {
    border-left: 0;
    display: flex;
    padding: 4.6875rem 0 0;
  }
}
.articleSpotlight__highlight {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .articleSpotlight__highlight {
    border-left: 1px solid #00e128;
    flex-basis: 56.5%;
    padding: 1.25rem 7.5rem 0 1rem;
  }
}
.articleSpotlight__curated {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .articleSpotlight__curated {
    border-left: 1px solid #00e128;
    flex-basis: 30%;
    padding: 1.25rem 0 0 1rem;
  }
}
.articleSpotlight__curated .eyebrow {
  border-bottom: 1px solid #fff;
}
.articleSpotlight .as-block-highlight {
  margin-bottom: 4.6875rem;
}
.articleSpotlight .as-block-highlight-title {
  padding: 0 1.875rem 2.5rem 0;
  position: relative;
}
.articleSpotlight .as-block-highlight .h2 {
  padding-bottom: 1.5625rem;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
}
@media screen and (min-width: 768px) {
  .articleSpotlight .as-block-highlight {
    margin-bottom: 0;
  }
  .articleSpotlight .as-block-highlight-title {
    margin-bottom: .9375rem;
    padding: 0 0 3.125rem;
  }
  .articleSpotlight .as-block-highlight .h2 {
    font-size: 3.25rem;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 980px) {
  .articleSpotlight .as-block-highlight .h2 {
    font-size: 3.75rem;
  }
}
.articleSpotlight .as-block-highlight .pointer {
  background-color: #00e128;
  bottom: 1.875rem;
  display: inline-block;
  height: 1px;
  margin-left: .3125rem;
  margin-top: -.9375rem;
  position: absolute;
  transition: width .2s;
  width: .9375rem;
}
.articleSpotlight .as-block-highlight .pointer:after,
.articleSpotlight .as-block-highlight .pointer:before {
  background-color: #00e128;
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.articleSpotlight .as-block-highlight .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.articleSpotlight .as-block-highlight .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .articleSpotlight .as-block-highlight:hover .h2 {
    text-decoration: underline;
    -webkit-text-decoration-color: #00e128;
    text-decoration-color: #00e128;
    text-decoration-thickness: 1px;
    text-underline-offset: 3.5px;
  }
}
@media screen and (min-width: 980px) and (hover: hover) {
  .articleSpotlight .as-block-highlight .pointer,
  .articleSpotlight .as-block-highlight .pointer:after,
  .articleSpotlight .as-block-highlight .pointer:before {
    background-color: #fff;
  }
  .articleSpotlight .as-block-highlight:hover .h2 {
    text-decoration: underline;
    -webkit-text-decoration-color: #00e128;
    text-decoration-color: #00e128;
    text-decoration-thickness: 1px;
    text-underline-offset: 3.5px;
  }
  .articleSpotlight .as-block-highlight:hover .pointer {
    background-color: #00e128;
    width: 2.0625rem;
  }
  .articleSpotlight .as-block-highlight:hover .pointer:after,
  .articleSpotlight .as-block-highlight:hover .pointer:before {
    background-color: #00e128;
  }
}
.articleSpotlight .post-block-highlight-img {
  height: 0;
  overflow: hidden;
  padding-bottom: 48.876%;
  position: relative;
}
.articleSpotlight .post-block-highlight-img-container {
  height: 100%;
  position: absolute;
  width: 100%;
}
.articleSpotlight .post-block-highlight-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
.articleSpotlight .as-link {
  display: block;
  position: relative;
}
.articleSpotlight .as-link-content {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.4);
  display: block;
  padding: 1.875rem 1.875rem 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .articleSpotlight .as-link-content {
    padding: 1.875rem 0;
  }
}
.articleSpotlight .as-link-terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 5px;
}
.articleSpotlight .as-link-terms span {
  display: block;
  font-size: .875rem;
  font-weight: 400;
}
.articleSpotlight .as-link-thumb {
  display: none;
  height: 6.9375rem;
  margin-bottom: .9375rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0;
  overflow: hidden;
  transition: opacity .2s linear;
  width: 100%;
}
.articleSpotlight .as-link .h3 {
  font-size: 1.1875rem;
  font-weight: 400;
  padding: 0 1rem 1.5625rem 0;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
}
.articleSpotlight .as-link .pointer {
  background-color: #00e128;
  bottom: 1.875rem;
  display: inline-block;
  height: 1px;
  margin-left: .3125rem;
  margin-top: -.9375rem;
  position: absolute;
  transition: width .2s;
  width: .9375rem;
}
.articleSpotlight .as-link .pointer:after,
.articleSpotlight .as-link .pointer:before {
  background-color: #00e128;
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.articleSpotlight .as-link .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.articleSpotlight .as-link .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .articleSpotlight .as-link:hover .h3 {
    text-decoration: underline;
    -webkit-text-decoration-color: #00e128;
    text-decoration-color: #00e128;
    text-decoration-thickness: 1px;
    text-underline-offset: 3.5px;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .articleSpotlight .as-link.is-active .as-link-thumb {
    -webkit-animation: thumbReveal .3s;
    animation: thumbReveal .3s;
    display: block;
    opacity: 1;
    transition: opacity .2s linear;
  }
}
@media screen and (min-width: 980px) and (hover: hover) {
  .articleSpotlight .as-link .pointer,
  .articleSpotlight .as-link .pointer:after,
  .articleSpotlight .as-link .pointer:before {
    background-color: #fff;
  }
  .articleSpotlight .as-link:hover .h3 {
    text-decoration: underline;
    -webkit-text-decoration-color: #00e128;
    text-decoration-color: #00e128;
    text-decoration-thickness: 1px;
    text-underline-offset: 3.5px;
  }
  .articleSpotlight .as-link:hover .pointer {
    background-color: #00e128;
    width: 2.0625rem;
  }
  .articleSpotlight .as-link:hover .pointer:after,
  .articleSpotlight .as-link:hover .pointer:before {
    background-color: #00e128;
  }
}
.cd .article {
  padding-bottom: 5.625rem;
}
.cd .article-header {
  padding-bottom: 3.75rem;
}
.cd .article-header h1 {
  padding-right: 0;
}
@media screen and (min-width: 980px) {
  .cd-grid-col-wide {
    grid-column: 3 / span 7;
  }
  .cd-grid-col {
    grid-column: 3 / span 6;
  }
}
.cd-meta {
  display: flex;
}
.cd-timezone {
  line-height: 1.3;
  margin-left: 1.875rem;
}
.cd-location {
  background-image: url(../images/icon-location.svg);
  background-position: 0 .3125rem;
  background-repeat: no-repeat;
  line-height: 1.3;
  padding-left: 1.0625rem;
  position: relative;
}
.article a.cd-link-apply {
  margin-bottom: 3.75rem;
}
.cg-header {
  padding-bottom: 5.625rem;
  padding-top: 5.625rem;
}
.cg-header .eyebrow {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: 3.75rem;
}
.cg {
  padding-bottom: 15rem;
}
@media screen and (min-width: 768px) {
  .cg .grid {
    -moz-column-gap: 10px;
    column-gap: 10px;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
  }
  .cg .cg-grid-col1 {
    grid-column: span 3;
  }
  .cg .cg-grid-col2 {
    grid-column: span 9;
  }
}
.cg-list {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
  row-gap: 60px;
}
.cg-list li {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
  padding-bottom: .9375rem;
}
@media screen and (min-width: 980px) {
  .cg-list {
    gap: 3.75rem;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .cg-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cg-fieldset {
  border: 0;
  display: block;
  margin: 0 0 .9375rem;
  padding: 0;
  position: relative;
}
.cg-fieldset legend {
  display: none;
}
.cg-fieldset-input-container {
  position: relative;
}
.cg-fieldset-input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #00e128;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 300;
  margin-bottom: 2.8125rem;
  padding: 0 0 .625rem 2.0625rem;
  width: 100%;
}
.cg-fieldset-input:focus {
  outline: 0;
}
.cg-fieldset-input::-moz-placeholder {
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 300;
}
.cg-fieldset-input:-ms-input-placeholder {
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 300;
}
.cg-fieldset-input::placeholder {
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 300;
}
.cg-fieldset-input:-webkit-autofill,
.cg-fieldset-input:-webkit-autofill:focus {
  -webkit-transition: background-color 600000s 0s, color 600000s 0s;
  transition: background-color 600000s 0s, color 600000s 0s;
}
.cg-fieldset-input:autofill,
.cg-fieldset-input:autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.cg-fieldset-input-icon {
  background-image: url(../images/icon-search.svg);
  background-position: 0 4px;
  background-repeat: no-repeat;
  background-size: 18px;
  height: 33px;
  left: 0;
  position: absolute;
  top: 0;
  width: 33px;
}
.cg-fieldset-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url(../images/icon-dropdown-white.svg);
  background-position: 95% 4px;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  border: 0;
  border-bottom: 1px solid #00e128;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  display: none;
  font-size: 1.1875rem;
  font-weight: 300;
  margin-bottom: 2.8125rem;
  padding: 0 1.875rem .625rem 0;
  width: 100%;
}
.cg-fieldset-select:focus {
  outline: 0;
}
.cg-fieldset-select option {
  color: #000 !important;
}
.cg-fieldset-select-multiple {
  display: none;
}
.cg-fieldset-select.active {
  display: block;
}
@media screen and (min-width: 768px) {
  .cg-fieldset {
    margin: 0 0 3.75rem;
    width: 90%;
  }
  .cg-fieldset legend {
    display: block;
    font-size: .9375rem;
    font-weight: 700;
    margin-bottom: 2.8125rem;
  }
  .cg-fieldset-select,
  .cg-fieldset-select.active {
    display: block;
  }
}
@media screen and (min-width: 980px) {
  .cg-fieldset {
    width: 70%;
  }
  .cg-fieldset legend {
    display: block;
    font-size: .9375rem;
    font-weight: 700;
    margin-bottom: 2.8125rem;
  }
}
.cg-btn-filter {
  display: block;
  margin-bottom: 2.8125rem;
  padding: 1.125rem 1.5625rem;
  position: relative;
  width: 100%;
}
.cg-btn-filter:after {
  background-image: url(../images/icon-caret-white.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: .625rem;
  position: absolute;
  right: 1.5625rem;
  top: 1.4375rem;
  transform-origin: center;
  transition: transform .2s;
  width: 1rem;
}
.cg-btn-filter.active:after {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .cg-btn-filter:hover:after {
    filter: invert(100%);
  }
}
@media screen and (min-width: 768px) {
  .cg-btn-filter {
    display: none;
  }
}
.cg-reset {
  display: none;
  margin-bottom: 3.75rem;
}
.cg-reset.active {
  display: block;
}
.cg-reset button {
  display: none;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: .9375rem;
}
.cg-reset button.active {
  display: inline-block;
}
@media screen and (min-width: 480px) {
  .cg-reset button {
    margin-bottom: 0;
  }
}
.btn-cg-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #00e128;
  border-radius: 1.25rem;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  margin: 0 .9375rem 0 0;
  padding: .4375rem 2.1875rem .375rem .75rem;
  position: relative;
  text-decoration: none;
}
.btn-cg-reset:after {
  background-image: url(../images/icon-nav-close.svg);
  background-repeat: no-repeat;
  background-size: .625rem;
  content: "";
  height: .625rem;
  position: absolute;
  right: .75rem;
  top: .5625rem;
  width: .625rem;
}
@media (hover: hover) {
  .btn-cg-reset:hover {
    background-color: #00e128;
    color: #000;
  }
  .btn-cg-reset:hover:after {
    filter: invert(100%);
  }
}
.btn-cg-reset-all {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  margin: 0 .625rem;
  padding: .5rem 0 .1875rem;
  text-decoration: none;
}
@media (hover: hover) {
  .btn-cg-reset-all:hover {
    border-bottom: 1px solid #00e128;
  }
}
.cg-controller {
  display: flex;
  justify-content: center;
  padding: 3.75rem 0 0;
}
@media screen and (min-width: 768px) {
  .cg-controller {
    padding: 6.6875rem 0 0;
  }
}
@-webkit-keyframes panel-ticker-left {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes panel-ticker-right {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.careerPanels {
  background: #000;
  color: #fff;
  display: block;
  padding: 4.6875rem 0 0;
  position: relative;
}
.careerPanels__intro {
  padding: 0 .9375rem 3.75rem;
}
@media screen and (min-width: 1024px) {
  .careerPanels__intro {
    padding: 0 .9375rem 3.75rem;
  }
}
.careerPanels__intro h3 {
  margin: 1.875rem 0;
  max-width: 16.25rem;
}
@media screen and (min-width: 1024px) {
  .careerPanels__intro h3 {
    max-width: 28.125rem;
  }
}
.careerPanels__ticker {
  background: transparent;
  border: 0;
  border-top: 1px solid #00e128;
  color: #fff;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.careerPanels__ticker:after {
  background-image: linear-gradient(90deg, #f0913c, #fc4017);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .25s ease-in-out;
}
.careerPanels__ticker:focus,
.careerPanels__ticker:hover {
  border-top: 1px solid #fa8c24;
}
.careerPanels__ticker:focus:after,
.careerPanels__ticker:hover:after {
  opacity: 1;
}
.careerPanels__ticker-content {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  display: flex;
  padding: 1.40625rem .9375rem;
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .careerPanels__ticker-content {
    font-size: 2.25rem;
    margin-bottom: 1.875rem;
    padding: 0 100% 5.625rem 0;
  }
}
.careerPanels__arrow {
  margin: 0 .9375rem;
  visibility: hidden;
}
@media screen and (min-width: 1024px) {
  .careerPanels__arrow {
    visibility: visible;
  }
}
.careerPanels__arrow--mobile {
  margin-right: .9375rem;
}
.careerPanels__arrow--mobile img {
  filter: invert(100%);
}
@media screen and (min-width: 1024px) {
  .careerPanels__arrow--mobile {
    display: none;
  }
}
.careerPanels__ticker-text {
  text-align: left;
  width: 100%;
}
.careerPanels__ticker-text > span {
  display: none;
}
@media screen and (min-width: 1024px) {
  .careerPanels__ticker-text > span {
    display: inline-block;
  }
}
.careerPanels__ticker-text span {
  margin-right: .625rem;
}
.careerPanels__ticker-text span:last-of-type {
  margin-right: 0;
}
.careerPanels__ticker-text .bold {
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .careerPanels__ticker-text {
    display: flex;
    position: absolute;
    top: 40%;
  }
  .careerPanels__textBlock {
    max-width: 19.0625rem;
  }
}
.careerPanels__drawer {
  background: #393939;
  padding: .9375rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .careerPanels__drawer {
    padding: 3.75rem .9375rem;
  }
}
.careerPanels__drawer button {
  position: absolute;
  z-index: 1;
}
.careerPanels__drawer h6 {
  font-size: 1.1875rem;
  line-height: 1.3;
  margin-bottom: .75rem;
}
@media screen and (min-width: 1024px) {
  .careerPanels__columns {
    display: flex;
    padding-top: 0;
  }
}
.careerPanels__column {
  width: 100%;
}
.careerPanels__column:first-child {
  margin: 0 3.75rem 2.5rem 0;
}
@media screen and (min-width: 1024px) {
  .careerPanels__column:first-child {
    margin: 0 3.75rem;
    width: 50%;
  }
}
.careerPanels__column:last-child {
  padding: 1.875rem 0 0;
}
.careerPanels__image {
  width: 75%;
}
@media screen and (min-width: 1024px) {
  .careerPanels__image {
    width: 100%;
  }
}
.careerPanels__image img {
  width: 100%;
}
.careerPanels__ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.careerPanels__ul li {
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 1024px) {
  .careerPanels__ul li {
    margin-bottom: 3.75rem;
    padding-right: 10%;
    width: 40%;
  }
}
.js-drawer-open .careerPanels__drawer {
  -webkit-animation: panelReveal .5s;
  animation: panelReveal .5s;
  display: block;
  opacity: 1;
  transition: none;
}
.js-drawer-open .careerPanels__ticker {
  background: linear-gradient(90deg, #f0913c, #fc4017);
}
@media screen and (min-width: 1024px) {
  .js-cp-panel .js-ticker-button {
    -webkit-animation: panel-ticker-right 20s linear infinite;
    animation: panel-ticker-right 20s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
  .js-cp-panel:nth-child(2n) .js-ticker-button {
    -webkit-animation: panel-ticker-left 20s linear infinite;
    animation: panel-ticker-left 20s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
}
.js-cp-ticker.is-active .js-ticker-button {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.js-cp-ticker.is-active:hover .js-ticker-button {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.js-cp-drawer {
  display: none;
}
.carouselFeature {
  display: block;
}
.cf {
  background: var(--color-bg);
  color: var(--color-text);
  overflow: hidden;
  padding: 5.625rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cf {
    padding: 7.8125rem 0;
  }
}
.cf h3,
.cf p {
  max-width: 27.5rem;
}
.cf h3 {
  margin-bottom: .9375rem;
}
.cf h6 {
  margin-bottom: 1.25rem;
}
.cf .flickity-prev-next-button {
  display: none;
}
@media screen and (min-width: 768px) {
  .cf .flickity-prev-next-button {
    display: block;
  }
}
.cf__cta {
  margin-top: 2.1875rem;
}
.cf__cta .btn-matrix {
  max-width: 17.875rem;
}
.cf__intro {
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .cf__intro {
    margin-bottom: 3.75rem;
    max-width: 35%;
  }
}
.cf__intro .disclaimer,
.cf__intro > p {
  margin-bottom: .9375rem;
}
.cf__slides {
  position: static !important;
}
.cf__ul {
  margin-bottom: 0;
  margin-right: -16px;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .cf__ul {
    margin-right: 0;
  }
}
.cf__slide {
  list-style: none;
  padding: 0 2.8125rem 0 0;
  top: 2.8125rem;
  width: 65%;
}
@media screen and (min-width: 768px) {
  .cf__slide {
    padding: 0 7.5rem 0 0;
    width: 33.125rem;
  }
}
.cf .eyebrow {
  font-weight: 400;
  margin-bottom: 1.875rem;
  margin-top: .625rem;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .cf .eyebrow {
    font-weight: 700;
    margin-bottom: 3.75rem;
    text-transform: uppercase;
  }
}
.cf__slide-content {
  margin-bottom: 4.6875rem;
  max-width: 100%;
}
.cf__slide-content h6 {
  font-size: 1.3125rem;
  margin-bottom: .9375rem;
}
.cf__slide-content .description,
.cf__slide-content .disclaimer {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cf__slide-content {
    max-width: 25.375rem;
  }
  .cf__slide-content h6 {
    font-size: 2.25rem;
  }
}
.cf .description p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3125;
}
@media screen and (min-width: 768px) {
  .cf .description p {
    font-size: 1.0625rem;
    line-height: 1.588;
  }
}
.cf .progress-container {
  background: hsla(0, 0%, 74%, 0.7);
  border-radius: 0;
  display: inline-block;
  height: 4px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.cf .cf-slide-indicator {
  position: absolute;
  width: calc(100% - 16px);
}
@media screen and (min-width: 980px) {
  .cf .cf-slide-indicator {
    width: calc(100% - 12px);
  }
}
@media screen and (min-width: 1280px) {
  .cf .cf-slide-indicator {
    width: calc(640px + 50%);
  }
}
.cf .js-cf-progress-bar {
  background: var(--color-gradient);
  height: 4px;
  position: absolute;
  top: 0;
  transition: width .5s ease-out;
  width: 1px;
}
@media screen and (min-width: 768px) {
  .cf .flickity-viewport {
    -webkit-clip-path: inset(-100vw -100vw -100vw 0);
    clip-path: inset(-100vw -100vw -100vw 0);
    overflow: visible;
  }
}
.cf .flickity-prev-next-button {
  background: transparent;
  border: 1px solid var(--color-btn);
  border-radius: .625rem;
  height: 3.515625rem;
  padding: 0;
  position: absolute;
  top: -7.5rem;
  transition: all .25s ease-in-out;
  width: 3.515625rem;
}
.cf .flickity-prev-next-button:after {
  background-size: contain;
  background: url(../images/icon-arrow-white.svg) 50% no-repeat;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.cf .flickity-prev-next-button:active,
.cf .flickity-prev-next-button:focus,
.cf .flickity-prev-next-button:hover {
  background: var(--color-btn);
}
.cf .flickity-prev-next-button:active:after,
.cf .flickity-prev-next-button:focus:after,
.cf .flickity-prev-next-button:hover:after {
  filter: invert(100%);
}
.cf .flickity-prev-next-button.previous {
  right: 64px;
  transform: scaleX(-1);
}
.cf .flickity-prev-next-button.next {
  right: 0;
}
.cf .nav-hidden .cf-slide-indicator,
.cf .nav-hidden .flickity-prev-next-button {
  visibility: visible;
}
@media screen and (min-width: 1024px) {
  .cf .nav-hidden .cf-slide-indicator,
  .cf .nav-hidden .flickity-prev-next-button {
    visibility: hidden;
  }
}
.cf .no-slides .cf-slide-indicator,
.cf .no-slides .flickity-prev-next-button {
  display: none;
}
.cf[data-theme="light"] .flickity-prev-next-button:after {
  filter: invert(100%);
}
.cookieBar {
  background: #000;
  bottom: 0;
  color: #fff;
  font-size: .875rem;
  left: 0;
  line-height: 1.2857142857;
  padding: .9375rem .9375rem 1.25rem;
  position: fixed;
  right: 0;
  transition: all .3s;
  z-index: 9000;
}
.cookieBar.is-hidden {
  transform: translateY(100%);
}
.cookieBar.is-removed {
  display: none;
}
.cookieBar a {
  color: #fff;
  text-decoration: underline;
}
.cookieBar .btn-cookie {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #00e128;
  border-radius: .75rem;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 1.0625rem 2.0625rem;
  text-decoration: none;
  transition: background-color .2s, color .2s;
}
@media (hover: hover) {
  .cookieBar .btn-cookie:hover {
    background-color: #00e128;
    color: #000;
  }
}
.cookieBar .btn-cookie:first-child {
  margin-right: 2.8125rem;
}
.cookieBar .btn-cookie-reject {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 1.0625rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cookieBar .btn-cookie-reject:hover {
  color: #fff;
}
.cookieBar-content {
  display: block;
  font-size: .875rem;
  padding-right: 1.0625rem;
}
@media screen and (min-width: 1024px) {
  .cookieBar-content {
    display: flex;
    justify-content: space-between;
  }
}
.cookieBar-content strong {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: .9375rem;
  padding: 0;
  text-transform: uppercase;
}
.cookieBar-content a {
  text-decoration: underline;
  -webkit-text-decoration-color: #00e128;
  text-decoration-color: #00e128;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cookieBar-content p {
  font-size: .875rem;
}
.cookieBar-text {
  flex: 0 1 80%;
}
@media screen and (min-width: 1024px) {
  .cookieBar-text {
    order: 2;
    padding-right: .9375rem;
  }
}
.cookieBar-actions {
  display: flex;
  flex: 0 1 30%;
  flex-direction: column;
  margin: .9375rem 0 0;
}
@media screen and (min-width: 768px) {
  .cookieBar-actions {
    order: 1;
  }
}
.cookieBar-buttons {
  display: flex;
}
.cookieBar-submit {
  margin-right: 10px;
}
.divider {
  height: 1px;
  position: relative;
  width: 100%;
}
.divider--blue {
  background-color: #0a8afa;
}
.divider--green {
  background-color: #00e128;
}
.divider--gray {
  background-color: #222;
}
.header-hero {
  border-bottom: 1px solid #00e128;
  overflow: hidden;
  padding-bottom: 7.5rem;
}
.header-hero:after {
  background: transparent;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 90%);
  bottom: 0;
  content: "";
  height: 40%;
  left: 0;
  position: absolute;
  width: 100%;
}
.header-hero-image {
  height: 100%;
  position: absolute;
  width: 100%;
}
.header-hero-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.header-hero-video {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
}
.header-hero-video video {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.header-hero-content {
  padding-top: 4.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-hero-image,
  .header-hero:after {
    display: none;
  }
  .header-hero-video {
    display: block;
  }
  .header-hero-content {
    padding-top: 0;
  }
}
@media screen and (min-width: 980px) {
  .header-hero {
    min-height: 100vh;
    padding-bottom: 0;
  }
}
.header-hero-gif-container {
  height: 0;
  margin-left: -2%;
  overflow: hidden;
  padding-top: 62.5%;
  position: relative;
  width: 100%;
  z-index: 2;
}
.header-hero-gif {
  bottom: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.header-hero-desc {
  margin-top: 2.5rem;
  position: relative;
  right: 0;
  z-index: 3;
}
.header-hero .p {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  opacity: 0;
  padding: 0;
  transition: all .4s ease-out;
  width: 15rem;
}
.header-hero .p.active {
  opacity: 1;
}
@media screen and (min-width: 980px) {
  .header-hero-gif-container {
    margin: 0;
  }
  .header-hero-desc {
    bottom: 18.5%;
    left: 65%;
    margin: 0;
    position: absolute;
  }
  .header-hero .p {
    font-weight: 400;
    width: 20rem;
  }
}
.header-hero-scroll {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  display: none;
  line-height: 1;
  margin: 0;
  text-decoration: none;
}
.header-hero-scroll.active {
  opacity: 1;
}
@media screen and (min-width: 980px) {
  .header-hero-scroll {
    background-color: transparent;
    color: #fff;
    display: block;
    font-size: 1.0625rem;
    margin: 0 0 3.75rem;
    opacity: 0;
    padding: 44px .9375rem 58px;
    position: relative;
    text-align: center;
    top: -3.75rem;
    transition: opacity .4s ease-out;
  }
  .header-hero-scroll:before {
    height: 34px;
    top: 0;
  }
  .header-hero-scroll:after,
  .header-hero-scroll:before {
    background-color: #fff;
    content: "";
    left: 50%;
    position: absolute;
    width: 1px;
  }
  .header-hero-scroll:after {
    bottom: 0;
    height: 48px;
  }
}
.features {
  width: 100%;
}
.features-container {
  overflow: hidden;
  position: relative;
}
.fs {
  height: 100vh;
  width: 100%;
}
.fs.fs1 {
  position: relative;
}
.fs.fs2,
.fs.fs3,
.fs.fs4 {
  left: 0;
  position: absolute;
  top: 0;
}
.fs .h3 {
  font-size: 3.1875rem;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (min-width: 980px) {
  .fs .h3 {
    font-size: 5.625rem;
    font-weight: 400;
    line-height: 1;
  }
}
@media screen and (min-width: 1024px) {
  .fs .h3 {
    font-size: 7.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .fs .h3 {
    font-size: 10rem;
  }
}
@media screen and (min-width: 980px) {
  .fs.fs2 .h3 {
    font-size: 7vw;
  }
}
.fs .p {
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 980px) {
  .fs {
    font-weight: 500;
  }
}
.fs1-content,
.fs1-video,
.fs1-video-content .h3 {
  display: none;
}
@media screen and (min-width: 980px) {
  .fs1-video-content {
    height: 100%;
    width: 100%;
  }
  .fs1-video-content .h3 {
    display: block;
    position: absolute;
    top: 17vh;
  }
  .fs1-video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 80vh;
    transform: scale(0.3);
  }
  .fs1-content,
  .fs1-video {
    display: block;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .fs1-content {
    top: 17vh;
  }
  .fs1-content .h3 {
    opacity: 0;
    position: absolute;
  }
}
.mb-fs1-video-img {
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}
.mb-fs1-video-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.mb-fs1-content {
  padding: 2.5rem 0 .9375rem;
  position: absolute;
  top: 0;
  width: 100%;
}
.mb-fs1-content .h3:nth-child(n) {
  color: #fff;
}
.mb-fs1-content .h3:nth-child(2n) {
  color: #4a4a4a;
}
.mb-fs1-content .h3:nth-child(3n) {
  color: #313131;
}
@media (max-height: 430px) {
  .mb-fs1-content .h3 {
    font-size: 2.1875rem;
  }
}
@media screen and (orientation: portrait) and (min-width: 768px) {
  .mb-fs1-content .h3 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 980px) {
  .mb-fs1-content,
  .mb-fs1-video-img {
    display: none;
  }
}
.fs2-content {
  display: none;
}
@media screen and (min-width: 980px) {
  .fs2-content {
    display: block;
    opacity: 0;
    position: relative;
    top: 50vh;
    transform: scale(1.8);
    transform-origin: left top;
  }
  .fs2-stair {
    transform-origin: left center;
  }
}
.mb-fs2-content {
  opacity: 0;
  padding: 2.5rem 0 .9375rem;
  position: relative;
  top: 0;
}
.mb-fs2-content .h3:nth-child(n) {
  color: #fff;
}
.mb-fs2-content .h3:nth-child(2n) {
  color: #4a4a4a;
}
.mb-fs2-content .h3:nth-child(3n) {
  color: #313131;
}
@media (max-height: 430px) {
  .mb-fs2-content .h3 {
    font-size: 2.1875rem;
  }
}
@media screen and (orientation: portrait) and (min-width: 768px) {
  .mb-fs2-content .h3 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 980px) {
  .mb-fs2-content {
    display: none;
  }
}
.fs3-imgs {
  height: 100vh;
  position: absolute;
  width: 100%;
}
.fs3-img-row {
  overflow-x: hidden;
  position: relative;
}
.fs3-img-row img {
  display: block;
  height: 100%;
  opacity: 0.4;
  position: absolute;
  width: auto;
}
.fs3-img-row:first-child {
  height: 11vh;
}
.fs3-img-row:first-child img {
  right: -200%;
  transition-property: right;
}
.fs3-img-row:nth-child(2) {
  height: 28vh;
}
.fs3-img-row:nth-child(2) img {
  left: -200%;
  transition-property: left;
}
.fs3-img-row:nth-child(3) {
  height: 36vh;
}
.fs3-img-row:nth-child(3) img {
  right: -200%;
  transition-property: right;
}
.fs3-img-row:nth-child(4) {
  height: 25vh;
}
.fs3-img-row:nth-child(4) img {
  left: -200%;
  transition-property: left;
}
.fs3-text {
  display: none;
  padding-top: 2vh;
}
@media screen and (min-width: 980px) {
  .fs3-text {
    display: block;
    opacity: 0;
    padding-top: 17vh;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (max-height: 430px) {
  .fs3-text {
    padding-top: 2vh;
  }
}
@media screen and (min-width: 980px) {
  .fs3-img-row:nth-child(4) {
    height: calc(25vh - 60px);
  }
}
.mb-fs3-text {
  opacity: 0;
  padding: 2.5rem 0 .9375rem;
  position: relative;
  top: 0;
}
.mb-fs3-text .h3:nth-child(n) {
  color: #fff;
}
.mb-fs3-text .h3:nth-child(2n) {
  color: #4a4a4a;
}
.mb-fs3-text .h3:nth-child(3n) {
  color: #313131;
}
.mb-fs3-text .h3:nth-child(4n) {
  color: #212121;
}
@media (max-height: 430px) {
  .mb-fs3-text .h3 {
    font-size: 2.1875rem;
  }
}
@media screen and (orientation: portrait) and (min-width: 768px) {
  .mb-fs3-text .h3 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 980px) {
  .mb-fs3-text {
    display: none;
  }
}
.fs4 .container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 980px) {
  .fs4 .container {
    padding-bottom: 120px;
  }
}
.fs4 .h3 {
  font-size: 2.8125rem;
  font-weight: 400;
  line-height: 1.3;
  padding-right: 12%;
  position: absolute;
  text-align: left;
  top: 2.5rem;
}
.fs4 .h3,
.fs4 .h3 span {
  opacity: 0;
}
.fs4 .h3.hindi span {
  display: inline-block;
  position: relative;
}
@media screen and (orientation: portrait) and (min-width: 768px) {
  .fs4 .h3 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 980px) {
  .fs4 .h3 {
    font-size: 5rem;
    padding-right: 5%;
    top: 4.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .fs4 .h3 {
    font-size: 5.625rem;
  }
}
@media screen and (min-width: 1100px) {
  .fs4 .h3 {
    font-size: 6.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .fs4 .h3 {
    font-size: 7.5rem;
  }
}
@media screen and (orientation: landscape) and (min-width: 1100px) and (max-height: 760px) {
  .fs4 .h3 {
    font-size: 5.625rem;
  }
}
.fs4-rc-stats-row {
  align-items: center;
  bottom: 5.625rem;
  display: grid;
  grid-template-columns: 1fr;
  opacity: 0;
}
@media screen and (min-width: 980px) {
  .fs4-rc-stats-row {
    grid-template-columns: 50% 50%;
  }
}
.fs4-rc-stats {
  -moz-column-gap: .9375rem;
  column-gap: .9375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .fs4-rc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: .9375rem;
  }
}
@media screen and (max-width: 980px) and (max-height: 430px) {
  .fs4-rc-stats {
    display: none;
  }
}
.fs4-rc-stat-number {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .fs4-rc-stat-number {
    font-size: 2.625rem;
  }
}
.fs4-rc-stat-label {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1;
}
.fs4-rc-cta {
  display: block;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .fs4-rc-cta {
    margin-top: .9375rem;
  }
}
@media screen and (min-width: 980px) {
  .fs4-rc-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
  }
}
.fs4 .btn-matrix {
  min-width: 100%;
}
@media screen and (min-width: 768px) {
  .fs4 .btn-matrix {
    min-width: 17.8125rem;
  }
}
@media screen and (min-width: 980px) {
  .fs4 .btn-matrix {
    margin-top: -.625rem;
  }
}
.features-indicator {
  height: 0;
  left: 0;
  overflow: visible;
  position: -webkit-sticky;
  position: sticky;
  top: 100%;
  width: 100%;
  z-index: 1000;
}
.features-indicator-progress-bar {
  background: linear-gradient(90deg, #fd3d16, #f0933d);
  max-width: 100%;
  width: 1px;
}
.features-indicator-progress-bar,
.features-indicator-progress-bar-bg {
  bottom: 0;
  display: none;
  height: 9px;
  left: 0;
  overflow: hidden;
  position: absolute;
}
.features-indicator-progress-bar-bg {
  background-color: #000;
  box-sizing: border-box;
  width: 100%;
}
.features-indicator-items {
  align-items: center;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: .625rem;
  left: 0;
  margin: 0 1rem 2.0625rem;
  overflow: hidden;
  position: absolute;
  width: calc(100% - 2rem);
}
.features-indicator-item {
  align-items: center;
  background: #5c5c5c;
  box-sizing: border-box;
  display: flex;
  font-size: .9375rem;
  font-weight: 400;
  height: 100%;
  line-height: 1.1;
  padding-left: 10%;
  padding-right: .625rem;
  position: relative;
  width: 100%;
}
.features-indicator-item span {
  display: none;
}
.features-indicator-item.active {
  background: linear-gradient(90deg, #fd3d16, #f0933d);
}
.features-indicator-item:after {
  background-color: #000;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
}
.features-indicator-item:last-child:after {
  width: 0;
}
.features-indicator-heading {
  bottom: 1.25rem;
  font-size: 1.1875rem;
  margin: 0 1rem 2.0625rem;
  position: absolute;
}
.features-indicator-heading-desktop {
  display: none;
}
@media screen and (min-width: 980px) {
  .features-indicator-progress-bar {
    display: block;
    height: 60px;
  }
  .features-indicator-progress-bar-bg {
    border-bottom: 1px solid #222;
    border-top: 1px solid #222;
    display: block;
    height: 60px;
  }
  .features-indicator-items {
    height: 60px;
    margin: 0;
    width: 100%;
  }
  .features-indicator-item {
    background: transparent;
  }
  .features-indicator-item span {
    display: block;
  }
  .features-indicator-item.active {
    background: transparent;
  }
  .features-indicator-item:after {
    background-color: #222;
    width: 1px;
  }
  .features-indicator-items {
    grid-template-columns: repeat(5, 1fr);
  }
  .features-indicator-heading {
    align-items: center;
    background: transparent;
    bottom: unset;
    box-sizing: border-box;
    display: flex;
    flex: 2;
    font-size: .9375rem;
    font-weight: 500;
    height: 100%;
    line-height: 1.1;
    margin: 0;
    padding-left: 10%;
    padding-right: 1.875rem;
    position: relative;
    width: 100%;
    width: 25rem;
  }
  .features-indicator-heading span {
    display: block;
    padding-right: 2.5rem;
  }
  .features-indicator-heading:after {
    background-image: url(../images/icon-arrow-long-white-alt.svg);
    background-position: 100%;
    background-position-x: right;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: inline-block;
    flex: 1;
    height: .9375rem;
    right: .625rem;
    width: 6.25rem;
  }
  .features-indicator-heading-mobile {
    display: none;
  }
}
.fb {
  background: var(--color-bg);
  color: var(--color-text);
  overflow: hidden;
  padding-bottom: 5.625rem;
  padding-top: 5.625rem;
}
.fb .container {
  position: static;
}
.fb-sub-content {
  -moz-column-gap: 30px;
  column-gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.fb-sub-content.default {
  grid-template-columns: 1fr;
}
.fb-sub-content > div {
  position: relative;
}
.fb-single-img {
  min-height: 18.75rem;
}
.fb .h2 {
  margin-bottom: .9375rem;
}
.fb-stats {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 2.8125rem 0 0;
  padding: 0;
  row-gap: 1.875rem;
}
.fb-stats-number {
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 1;
}
.fb-stats-desc {
  line-height: 1;
  margin-top: .3125rem;
  width: 48%;
}
.fb-disclaimer {
  margin-top: 1.25rem;
}
.stats-enabled .fb-disclaimer {
  margin-top: 2.8125rem;
}
.fb-mb-img {
  height: 120%;
  left: 0;
  position: absolute;
  top: 1.875rem;
}
.fb-img {
  display: none;
}
.fb-img img {
  bottom: -2.8125rem;
  height: 26.875rem;
  left: 50%;
  position: absolute;
}
.fb-img.no-stats {
  margin-top: 1.875rem;
}
.fb-img.no-stats img {
  bottom: auto;
  height: auto;
  left: 0;
  position: relative;
  width: 60%;
}
.fb-matrix {
  display: none;
}
@media screen and (min-width: 980px) {
  .fb {
    padding-bottom: 0;
    padding-top: 0;
  }
  .fb-content {
    padding-bottom: 5.625rem;
    padding-top: 6.25rem;
  }
  .fb-sub-content {
    grid-template-columns: 1fr;
  }
  .fb-single-img {
    min-height: auto;
  }
  .fb-stats {
    flex-direction: row;
    gap: .625rem;
    justify-content: space-between;
    margin-top: 3rem;
    padding-right: 12%;
  }
  .fb-disclaimer,
  .fb-stats-desc {
    width: auto;
  }
  .stats-enabled .fb-disclaimer {
    margin-top: 3rem;
  }
  .fb-mb-img {
    display: none;
  }
  .fb-img {
    display: block;
    height: 100%;
    position: relative;
  }
  .fb-img.no-stats {
    margin-top: 0;
  }
  .fb-img img,
  .fb-img.no-stats img {
    height: 110%;
    left: 0;
    position: absolute;
    top: -5%;
    width: auto;
  }
  .fb-matrix {
    display: block;
    height: 100%;
    margin-left: 16%;
    position: relative;
  }
  .fb-matrix img {
    height: auto;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .fb-matrix-1 {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 50%;
  }
  .fb-matrix-1 img {
    bottom: 0;
    opacity: 0;
    transition-duration: 0;
    transition-property: opacity;
  }
  .fb-matrix-2 {
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    width: 50%;
  }
  .fb-matrix-2 img {
    opacity: 0;
    top: 0;
    transition-duration: 0;
    transition-property: opacity;
  }
}
@media screen and (min-width: 1200px) {
  .article .fb-content h1,
  .fb-content .article h1,
  .fb-content .description,
  .fb-content .fb-disclaimer,
  .fb-content h2 {
    padding-right: 17%;
  }
}
.fo {
  overflow: hidden;
  padding-bottom: 5.625rem;
  padding-top: 5.625rem;
}
.fo .h2 {
  margin-bottom: 2.8125rem;
}
.fo-list {
  -ms-overflow-style: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  list-style: none;
  margin: 0 -16px;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}
.fo-list li {
  margin-right: 60px;
  min-width: 250px;
}
.fo-list li:first-child {
  padding-left: 16px;
}
.fo-list::-webkit-scrollbar {
  display: none;
}
.fo .c4 {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .fo {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
  .fo-list {
    display: grid;
    flex-wrap: wrap;
    gap: 3.75rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    overflow-x: hidden;
  }
  .fo-list li {
    margin-right: 0;
    min-width: auto;
  }
  .fo-list li:first-child {
    padding-left: 0;
  }
  .fo .grid {
    gap: 3.75rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .fo .c4 {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .fo .grid,
  .fo-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .fo .c4 {
    grid-column: 4 / span 1;
  }
}
.fo-link {
  display: block;
  padding-right: 1.875rem;
  position: relative;
  text-decoration: none;
}
.fo-link .h4,
.fo-link .h5 {
  font-family: 700;
  font-size: 1.1875rem;
  line-height: 1.3;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
}
.fo-link .pointer {
  background-color: var(--color-btn-arrow-hover);
  display: inline-block;
  height: 1px;
  margin-left: .3125rem;
  position: relative;
  top: .125rem;
  transition: width .2s;
  width: .9375rem;
}
.fo-link .pointer:after,
.fo-link .pointer:before {
  background-color: var(--color-btn-arrow-hover);
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.fo-link .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.fo-link .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .fo-link:hover .pointer {
    width: 4.0625rem;
  }
  .fo-link:hover .pointer,
  .fo-link:hover .pointer:after,
  .fo-link:hover .pointer:before {
    background-color: var(--color-btn-arrow-hover);
  }
  .fo-link:hover .h4,
  .fo-link:hover .h5 {
    -webkit-text-decoration-color: var(--color-btn-arrow-hover);
    text-decoration-color: var(--color-btn-arrow-hover);
  }
}
@media screen and (min-width: 980px) and (hover: hover) {
  .fo-link .pointer,
  .fo-link .pointer:after,
  .fo-link .pointer:before {
    background-color: var(--color-text);
  }
}
.fo-zone {
  display: flex;
  justify-content: flex-start;
  margin-top: .3125rem;
  position: relative;
}
.fo-location {
  background-image: url(../images/icon-location.svg);
  background-position: 0 .3125rem;
  background-repeat: no-repeat;
  padding-left: 1.0625rem;
}
.fo-location,
.fo-timezone {
  line-height: 1.3;
  position: relative;
}
.fo-timezone {
  min-width: 4.6875rem;
  padding-left: 1.25rem;
  top: 1px;
}
.fo-cta {
  margin-top: 3.75rem;
}
.bc {
  background: #0a8afa;
  padding: 5.75rem 0;
}
@media screen and (min-width: 768px) {
  .bc {
    padding: 7.5rem 0;
  }
}
.article .bc h1,
.bc .article h1,
.bc .description,
.bc h2 {
  max-width: 23.75rem;
}
.article .bc h1,
.bc .article h1,
.bc h2 {
  margin-bottom: .9375rem;
}
.bc .description {
  margin-bottom: 2.375rem;
}
.bc .description a:hover {
  -webkit-text-decoration-color: #fff;
  text-decoration-color: #fff;
}
.bc-image-container {
  margin-bottom: 1.875rem;
}
.bc-image {
  max-width: 6.6875rem;
}
.bc-links {
  display: block;
}
@media screen and (min-width: 1024px) {
  .bc-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.bc-cta {
  display: block;
  margin-bottom: 1.875rem;
  max-width: 18rem;
  position: relative;
  width: 100%;
  z-index: 1;
}
.bc-cta:first-child {
  margin-right: 2.8125rem;
}
@media screen and (min-width: 1024px) {
  .bc-cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 18rem;
  }
}
.bc-columns {
  display: block;
}
@media screen and (min-width: 1024px) {
  .bc-columns {
    display: flex;
  }
}
.bc-column {
  align-items: flex-end;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bc-column:first-child {
    padding-right: 3.75rem;
    width: 40%;
  }
  .bc-column:last-child {
    padding-right: 3.75rem;
    width: 60%;
  }
  .bc-column-content .description {
    max-width: 22.0625rem;
  }
}
.wq-rdo {
  left: -20px;
  position: absolute;
  visibility: hidden;
}
.wq-rdo + label {
  border: 1px solid transparent;
  border-radius: 20px;
  box-sizing: border-box;
  display: inline-block;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1;
  padding: .25rem .5rem .1875rem;
  position: relative;
  transition: background-color .25s, color .25s, border .25s;
}
@-moz-document url-prefix("") {
  .wq-rdo + label {
    padding: .375rem .5rem .1875rem;
  }
}
.wq-rdo:checked + label {
  border: 1px solid #00e128;
}
@media (hover: hover) {
  .wq-rdo:hover + label {
    background-color: #00e128;
    border: 1px solid #00e128;
    color: #000;
    cursor: pointer;
  }
}
.search-form {
  position: relative;
  width: 100%;
}
.search-form-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #00e128;
  border-radius: 0;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1;
  padding: .625rem .3125rem .625rem 2rem;
  width: 100%;
}
.search-form-field::-moz-placeholder {
  color: #fff;
  font-size: 1.1875rem;
}
.search-form-field:-ms-input-placeholder {
  color: #fff;
  font-size: 1.1875rem;
}
.search-form-field::placeholder {
  color: #fff;
  font-size: 1.1875rem;
}
.search-form-field:focus {
  outline: 0;
}
.search-form-field:-webkit-autofill,
.search-form-field:-webkit-autofill:focus {
  -webkit-transition: background-color 600000s 0s, color 600000s 0s;
  transition: background-color 600000s 0s, color 600000s 0s;
}
.search-form-field:autofill,
.search-form-field:autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.search-form-field::-webkit-search-cancel-button,
.search-form-field::-webkit-search-decoration,
.search-form-field::-webkit-search-results-button,
.search-form-field::-webkit-search-results-decoration {
  display: none;
}
.search-form-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url(../images/icon-search.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  border: none;
  box-shadow: none;
  color: transparent;
  cursor: pointer;
  display: inline-block;
  height: 100%;
  left: 0;
  line-height: 1;
  margin: 0;
  overflow: hidden;
  position: absolute;
  text-decoration: none;
  top: 0;
  width: 18px;
}
.search-form-lg {
  margin-top: .9375rem;
}
.search-form-lg .search-form-field {
  font-size: 3.1875rem;
  font-weight: 200;
  line-height: 1.13;
  padding: 0 2rem 1.25rem 0;
}
.search-form-lg .search-form-field::-moz-placeholder {
  color: #fff;
  font-size: 3.1875rem;
}
.search-form-lg .search-form-field:-ms-input-placeholder {
  color: #fff;
  font-size: 3.1875rem;
}
.search-form-lg .search-form-field::placeholder {
  color: #fff;
  font-size: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .search-form-lg .search-form-field {
    font-size: 4.5rem;
  }
  .search-form-lg .search-form-field::-moz-placeholder {
    color: #fff;
    font-size: 4.5rem;
  }
  .search-form-lg .search-form-field:-ms-input-placeholder {
    color: #fff;
    font-size: 4.5rem;
  }
  .search-form-lg .search-form-field::placeholder {
    color: #fff;
    font-size: 4.5rem;
  }
}
.search-form-lg .search-form-submit {
  background-size: 100% auto;
  left: auto;
  right: 0;
  width: 22px;
}
.sf-form {
  padding: 5.625rem 0 8.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sf-form {
    padding: 7.5rem 0 12.5rem;
  }
}
.sf-form .sf-form-group {
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .sf-form .sf-form-group {
    margin-bottom: 5.625rem;
  }
}
.article .sf-form h1,
.sf-form .article h1,
.sf-form h2 {
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .article .sf-form h1,
  .sf-form .article h1,
  .sf-form h2 {
    margin-bottom: 5.625rem;
  }
}
.sf-form h3 {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .sf-form h3 {
    font-size: 2.25rem;
    margin-bottom: 3.9375rem;
  }
}
.sf-form .wq-checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: .75rem;
}
.sf-form .wq-checkbox .wpcf7-list-item {
  margin: 0 .9375rem 1.25rem 0;
}
.sf-form .wq-checkbox input {
  left: -20px;
  position: absolute;
  visibility: hidden;
}
.sf-form .wq-checkbox .wpcf7-list-item-label {
  border: 1px solid #00e128;
  border-radius: 20px;
  box-sizing: border-box;
  display: inline-block;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1;
  padding: .4375rem 1.5625rem .3125rem;
  position: relative;
  transition: background-color .25s, color .25s, border .25s;
}
.sf-form .wq-checkbox input:checked + .wpcf7-list-item-label {
  background-color: #00e128;
  color: #000;
}
@media (hover: hover) {
  .sf-form .wq-checkbox .wpcf7-list-item-label {
    cursor: pointer;
  }
  .sf-form .wq-checkbox .wpcf7-list-item-label:hover {
    background-color: #00e128;
    color: #000;
  }
}
.sf-form .wq-toggle-checkbox {
  height: 0;
  visibility: hidden;
  width: 0;
}
.sf-form .wq-toggle-label {
  background: transparent;
  border: 1px solid #00e128;
  border-radius: .75rem;
  cursor: pointer;
  display: block;
  height: 2.5rem;
  position: relative;
  width: 11.25rem;
}
.sf-form .wq-toggle-label:after {
  border-radius: .75rem 0 0 .75rem;
  content: "";
  height: 2.5rem;
  left: -1px;
  position: absolute;
  top: 0;
  transition: .2s;
  width: 5.625rem;
}
@media screen and (min-width: 768px) {
  .sf-form .wq-toggle-label {
    width: 6.75rem;
  }
  .sf-form .wq-toggle-label:after {
    width: 3.375rem;
  }
}
.sf-form .wq-toggle-label span {
  position: absolute;
  z-index: 1;
}
.sf-form .wq-toggle-label span:first-child {
  color: #000;
  left: 1.875rem;
  top: .4375rem;
}
@media screen and (min-width: 768px) {
  .sf-form .wq-toggle-label span:first-child {
    left: .9375rem;
  }
}
.sf-form .wq-toggle-label span:last-child {
  right: 1.875rem;
  top: .4375rem;
}
@media screen and (min-width: 768px) {
  .sf-form .wq-toggle-label span:last-child {
    right: .9375rem;
  }
}
.sf-form .wq-toggle-checkbox + label {
  background: transparent;
}
.sf-form .wq-toggle-checkbox + label span:first-child {
  color: hsla(0, 0%, 100%, 0.5);
}
.sf-form .wq-toggle-checkbox + label span:last-child {
  color: #000;
}
.sf-form .wq-toggle-label span:after {
  background: #00e128;
}
.sf-form .wq-toggle-checkbox + label:after {
  background: #00e128;
  border-radius: 0 .75rem .75rem 0;
  left: calc(100% + 1px);
  transform: translateX(-100%);
  transition: all .25s ease-in-out;
}
.sf-form .wq-toggle-checkbox:checked + label span:first-child {
  color: #000;
}
.sf-form .wq-toggle-checkbox:checked + label span:first-child:after {
  background: #00e128;
}
.sf-form .wq-toggle-checkbox:checked + label span:last-child {
  color: hsla(0, 0%, 100%, 0.5);
}
.sf-form .wq-toggle-checkbox:checked + label:after {
  border-radius: .75rem 0 0 .75rem;
  left: -1px;
  transform: translateX(0);
}
.sf-form form {
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .sf-form form {
    max-width: 55.1875rem;
  }
}
.sf-form p {
  margin-bottom: 1.75rem;
}
.sf-form input:focus {
  border-bottom: 3px solid #00e128;
  outline: none;
}
.sf-form input[type="email"].wpcf7-not-valid,
.sf-form input[type="text"].wpcf7-not-valid {
  border-bottom: 1px solid #fff;
}
.sf-form textarea.wpcf7-not-valid {
  border: 1px solid #fff;
}
.sf-form textarea {
  min-height: 15.125rem;
}
.sf-form textarea:focus {
  border: 3px solid #00e128;
  outline: none;
}
.sf-form input[type="email"],
.sf-form input[type="text"] {
  -webkit-text-fill-color: #fff !important;
  -webkit-background-clip: text !important;
  font-size: 1.1875rem;
  font-weight: 300;
  width: 100%;
}
.sf-form .sf-input-group {
  display: block;
}
@media screen and (min-width: 768px) {
  .sf-form .sf-input-group {
    display: flex;
    justify-content: space-between;
  }
}
.sf-form .sf-input-data-set {
  margin-bottom: 3.125rem;
}
.sf-form .sf-input-data-set > p {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sf-form .sf-input-data-set input[type="text"] {
    max-width: 25.75rem;
  }
}
.sf-form .sf-checkboxes-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: .75rem;
}
.sf-form .sf-checkboxes-group div {
  margin: 0 .9375rem 1.25rem 0;
}
.sf-form .sf-input-container {
  display: inline-block;
  margin: 0 0 2.8125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sf-form .sf-input-container {
    margin: 0 3.75rem 3.75rem 0;
  }
  .sf-form .sf-input-container:last-child {
    margin: 0 0 3.75rem;
  }
}
.sf-form .sf-input-container.single-input {
  display: block;
  margin: 1.875rem 0 5.625rem;
}
@media screen and (min-width: 768px) {
  .sf-form .sf-input-container.single-input {
    display: flex;
    justify-content: space-between;
    margin: 0;
    max-width: 39.375rem;
  }
}
.sf-form .sf-input-container .long-label {
  display: block;
  font-size: 1.3125rem;
  line-height: 1.5rem;
  margin-bottom: 1.875rem;
  max-width: 31.25rem;
}
.sf-form .sf-input-container > p {
  margin-bottom: 0;
}
.sf-form input {
  background-color: transparent;
  border: transparent;
  border-bottom: 1px solid #00e128;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1;
  padding: .25rem .5rem .625rem 0;
  position: relative;
  transition: background-color .25s, color .25s, border .25s;
}
.sf-form input::-moz-placeholder {
  color: hsla(0, 0%, 100%, 0.7);
  opacity: 1;
}
.sf-form input:-ms-input-placeholder {
  color: hsla(0, 0%, 100%, 0.7);
  opacity: 1;
}
.sf-form input::placeholder {
  color: hsla(0, 0%, 100%, 0.7);
  opacity: 1;
}
.sf-form label {
  color: #fff;
}
.sf-form .hide-label,
.sf-form .hide-label label {
  display: none;
}
.sf-form input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url(../images/icon-arrow-white.svg);
  background-position: 89%;
  background-repeat: no-repeat;
  border: 1px solid #00e128;
  border-radius: .75rem;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 1.125rem 1.5rem;
  text-align: left;
  text-decoration: none;
  transition: background-color .25s ease-out, color .25s ease-out;
  width: 240px;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .sf-form input[type="submit"]:hover {
    background-color: #00e128;
    background-image: url(../images/icon-arrow-long.svg);
    color: #000;
  }
}
.sf-form .sf-textarea-container {
  display: block;
  margin-bottom: 3.75rem;
  width: 100%;
}
.sf-form .sf-textarea-container .input-hidden {
  display: none;
}
.sf-form textarea {
  background: transparent;
  border: 1px solid #00e128;
  border-radius: 1.25rem;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 1.1875rem;
  font-weight: 300;
  padding: 1.375rem;
  resize: none;
  width: 100%;
}
.sf-form textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.sf-form textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.sf-form textarea::placeholder {
  color: #fff;
  opacity: 1;
}
.sf-form .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
.sf-form .sf-terms .wpcf7-list-item {
  margin: 0;
}
.sf-form .sf-terms .wpcf7-not-valid-tip {
  margin-top: .625rem;
}
@media screen and (min-width: 768px) {
  .sf-form .sf-terms > p {
    display: flex;
    justify-content: flex-end;
  }
  .sf-form .sf-terms .wpcf7-not-valid-tip {
    max-width: 18.75rem;
  }
}
.sf-form .sf-grc {
  margin-bottom: 3.75rem;
}
.sf-form .sf-grc .wpcf7-not-valid-tip {
  margin-top: .625rem;
}
.sf-form .sf-grc p {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .sf-form .sf-grc {
    display: flex;
    justify-content: flex-end;
  }
  .sf-form .sf-grc > div {
    display: flex;
    flex-direction: column;
  }
}
.sf-form #grc .wpcf7-list-item {
  display: none;
}
.sf-form #data-production input {
  left: -20px;
  position: absolute;
  visibility: hidden;
}
.sf-form #data-production label {
  border: 1px solid #00e128;
  border-radius: 12px;
  box-sizing: border-box;
  color: #777;
  cursor: pointer;
  display: block;
  font-size: 19px;
  height: 40px;
  padding: 6px 20px 0;
  position: relative;
  width: 110px;
}
.sf-form #data-production label.checked {
  color: #000;
}
.sf-form #data-production label:before {
  background-color: #00e128;
  border: 1px solid #00e128;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 12px;
  box-sizing: border-box;
  content: "";
  height: 40px;
  left: 50%;
  position: absolute;
  top: -1px;
  transition: left .2s;
  width: 55px;
}
.sf-form #data-production label.checked:before {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 0;
  left: 0;
}
.sf-form #data-production .wpcf7-list-item-label {
  display: block;
  left: 15px;
  position: absolute;
  top: 5px;
}
.sf-form #data-production .wpcf7-list-item-label:after {
  color: #000;
  content: "No";
  left: 54px;
  position: absolute;
}
.sf-form #data-production label.checked .wpcf7-list-item-label:after {
  color: #777;
}
.sf-form #data-production .wpcf7-list-item {
  margin: 0;
}
.sf-form .sf-terms-container {
  cursor: pointer;
  display: block;
  font-size: 1.1875rem;
  margin: .9375rem 0 2.8125rem;
  padding-left: 2.1875rem;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .sf-form .sf-terms-container {
    margin: 0 0 2.8125rem;
  }
}
.sf-form .sf-terms-container input {
  cursor: pointer;
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}
.sf-form .checkmark {
  background-color: transparent;
  border: 1px solid #00e128;
  height: 1.5625rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.5625rem;
}
.sf-form .sf-submit-group input:checked ~ .checkmark {
  background-color: #00e128;
}
.sf-form .checkmark:after {
  content: "";
  display: none;
  position: absolute;
}
.sf-form .sf-terms-container input:checked ~ .checkmark:after {
  display: block;
}
.sf-form .sf-terms-container a {
  border-bottom: 1px solid #00e128;
  padding-bottom: .125rem;
  text-decoration: none;
}
.sf-form .sf-terms-container label {
  padding-left: .625rem;
}
.sf-form .sf-terms-container .checkmark:after {
  border: solid #000;
  border-width: 0 .125rem .125rem 0;
  height: .625rem;
  left: .5625rem;
  top: .3125rem;
  transform: rotate(45deg);
  width: .3125rem;
}
.sf-form .sf-submit-group input {
  cursor: pointer;
  height: 1.5625rem;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 1.5625rem;
  z-index: 1;
}
.sf-form .wpcf7-acceptance input {
  left: -20px;
  position: absolute;
  visibility: hidden;
}
.sf-form .wpcf7-acceptance label {
  padding-left: 45px;
  position: relative;
}
.sf-form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 19px;
}
.sf-form .wpcf7-acceptance .wpcf7-list-item-label a {
  border-bottom: 1px solid #00e128;
  padding-bottom: .125rem;
  text-decoration: none;
}
.sf-form .wpcf7-acceptance .wpcf7-list-item-label:before {
  background-image: url(../images/icon-checkmark.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid #00e128;
  content: "";
  height: 1.5625rem;
  left: 0;
  position: absolute;
  top: -4px;
  width: 1.5625rem;
}
.sf-form .wpcf7-acceptance input:checked + .wpcf7-list-item-label:before {
  background-color: #00e128;
  border: 1px solid #00e128;
}
.sf-form .wpcf7-acceptance.wpcf7-not-valid .wpcf7-list-item-label:before {
  border: 1px solid #fff;
}
.sf-form .sf-form-submit > p {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sf-form .sf-form-submit > p {
    align-items: flex-end;
  }
}
.is-submit input[type="email"]:required:invalid,
.is-submit input[type="text"]:required:invalid {
  border-bottom: 1px solid #fff;
}
.is-submit textarea:required:invalid {
  border: 1px solid #fff;
}
.is-submit input.wq-checkbox-terms:required ~ .checkmark {
  border: 1px solid #fff;
}
.is-submit input.wq-checkbox-terms:required ~ .checkmark:invalid {
  border: 1px solid #fff;
}
.is-submit input.wq-checkbox-terms:checked ~ .checkmark {
  border: 1px solid #00e128;
}
.is-submit input.wq-checkbox-terms:checked ~ .checkmark:invalid {
  border: 1px solid #00e128;
}
.is-submit .wpcf7 form.sent .wpcf7-response-output {
  border: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.17;
}
.screen-reader-response {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sf-form-success {
  display: none;
}
.sf-form-success p {
  font-size: 1.1875rem;
}
.wpcf7-not-valid-tip {
  color: #fff !important;
}
.wpcf7-response-output {
  border: 0 !important;
  margin: 2rem 0 !important;
  padding: 0 !important;
}
.wpcf7-spinner {
  margin: 10px 24px !important;
}
.grecaptcha-badge {
  visibility: hidden;
}
.sf-form-google-terms {
  color: #aaa;
  font-size: .9375rem;
  margin-top: 3rem;
  text-underline-offset: 3px;
}
.infoHeader {
  background: var(--color-bg);
  color: var(--color-text);
  display: block;
  padding: 5rem .9375rem 5.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .infoHeader {
    padding: 5rem .9375rem 7.5rem;
  }
}
.infoHeader .bg-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.infoHeader .bg-image,
.infoHeader .ih-video-container {
  height: 100%;
  left: 0;
  opacity: 0.65;
  position: absolute;
  top: 0;
  width: 100%;
}
.infoHeader .ih-video-container video {
  display: none;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .infoHeader .ih-video-container video {
    display: block;
  }
}
.infoHeader .ih-video-container .ih-video-img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .infoHeader .ih-video-container .ih-video-img {
    display: none;
  }
}
.infoHeader .eyebrow {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .infoHeader .eyebrow {
    margin-bottom: 3.75rem;
  }
}
.infoHeader .eyebrow-img,
.infoHeader .eyebrow-img--small {
  max-width: 7rem;
}
.infoHeader .eyebrow-img--large {
  max-width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .infoHeader .eyebrow-img--large {
    max-width: 20rem;
  }
}
.infoHeader__headline {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .infoHeader__headline {
    margin-bottom: 0;
    max-width: 48.75rem;
  }
}
.infoHeader__headline .h1,
.infoHeader__headline .leaderboard__rank {
  margin: 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .infoHeader__headline .h1,
  .infoHeader__headline .leaderboard__rank {
    margin: 1.875rem 0 .9375rem;
  }
}
.infoHeader__headline .h1 span,
.infoHeader__headline .leaderboard__rank span {
  font-size: 1.25rem;
  padding-top: .3125rem;
  position: absolute;
}
.infoHeader__headline .subheading {
  max-width: 36.875rem;
}
.infoHeader__headline a {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-text);
  text-decoration-color: var(--color-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.infoHeader__headline a:hover {
  -webkit-text-decoration-color: var(--color-btn);
  text-decoration-color: var(--color-btn);
}
.infoHeader__headline b,
.infoHeader__headline strong {
  font-weight: 500;
}
.infoHeader__cta {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 3.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .infoHeader__cta {
    justify-content: flex-end;
    margin-top: 0;
  }
}
.infoHeader .btn-matrix {
  max-width: 100%;
  z-index: 10;
}
.infoHeader .btn-matrix.btn-matrix--dropdown {
  background-color: transparent;
  min-width: 15.625rem;
}
.infoHeader .btn-matrix.btn-matrix--dropdown .dd-pointer:after,
.infoHeader .btn-matrix.btn-matrix--dropdown .dd-pointer:before {
  content: "";
  height: 1.25rem;
  margin-top: -.5625rem;
  position: absolute;
  right: 1.4375rem;
  top: 50%;
  transition: opacity .2s ease-out, transform .2s ease-out;
  width: 1.25rem;
}
.infoHeader .btn-matrix.btn-matrix--dropdown .dd-pointer:before {
  background: 50% no-repeat url(../images/icon-cta-expand.svg);
  filter: invert(100%);
  opacity: 1;
}
.infoHeader .btn-matrix.btn-matrix--dropdown .dd-pointer:after {
  background: 50% no-repeat url(../images/icon-line.svg);
  filter: invert(100%);
  opacity: 0;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .infoHeader .btn-matrix.btn-matrix--dropdown .dd-pointer:before {
    filter: invert(0);
    transform: scale(1);
    transform-origin: center;
  }
  .infoHeader .btn-matrix.btn-matrix--dropdown:hover .dd-pointer:before {
    filter: invert(100%);
  }
}
.infoHeader .btn-cta-dropdown {
  position: relative;
}
.infoHeader .btn-cta-dropdown-list {
  background-color: var(--color-bg);
  border: 1px solid var(--color-btn);
  border-radius: .75rem;
  box-sizing: border-box;
  display: none;
  left: 0;
  padding: 5rem 1.6875rem .625rem;
  position: absolute;
  top: 0;
  width: calc(100% + 2px);
}
.infoHeader .btn-cta-dropdown-list a {
  display: block;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.125rem;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
}
.infoHeader .btn-cta-dropdown-list a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-btn);
  text-decoration-color: var(--color-btn);
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
}
@media screen and (min-width: 768px) {
  .infoHeader .btn-cta-dropdown-list {
    top: 1.5rem;
    width: calc(100% - 22px);
  }
}
.infoHeader .btn-cta-dropdown.show-dropdown .btn-cta-dropdown-list {
  display: block;
}
.infoHeader .btn-cta-dropdown.show-dropdown .btn-matrix.btn-matrix--dropdown .border {
  background-color: var(--color-btn);
}
.infoHeader .btn-cta-dropdown.show-dropdown .btn-matrix.btn-matrix--dropdown .label {
  color: var(--color-bg);
}
.infoHeader .btn-cta-dropdown.show-dropdown .btn-matrix.btn-matrix--dropdown .dd-pointer:before {
  opacity: 0;
  transform: scaleY(0);
}
.infoHeader .btn-cta-dropdown.show-dropdown .btn-matrix.btn-matrix--dropdown .dd-pointer:after {
  opacity: 1;
}
.infoHeader--full-width .infoHeader__headline,
.infoHeader--full-width .subheading {
  max-width: unset;
}
@media screen and (max-width: 768px) {
  .infoHeader--side-by-side .infoHeader__content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .infoHeader--side-by-side {
    padding: 2.5rem .9375rem 3.75rem;
  }
  .infoHeader--side-by-side .infoHeader__headline {
    max-width: 48.75rem;
    width: 100%;
  }
  .infoHeader--side-by-side .h1,
  .infoHeader--side-by-side .leaderboard__rank {
    max-width: 36.875rem;
  }
  .infoHeader--side-by-side .infoHeader__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .infoHeader--side-by-side .infoHeader__cta {
    margin-top: auto;
    padding-bottom: 1.375rem;
  }
}
@-webkit-keyframes ip-ticker {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes ip-ticker {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.ideasPanel {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 5.625rem 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .ideasPanel {
    padding: 3.75rem 0;
  }
}
.ideasPanel .btn-arrow {
  display: none;
}
@media screen and (min-width: 980px) {
  .ideasPanel .btn-arrow {
    display: block;
  }
}
.ideasPanel .btn-arrow--mobile {
  display: block;
  margin: 1.875rem 0 0 1rem;
}
@media screen and (min-width: 980px) {
  .ideasPanel .btn-arrow--mobile {
    display: none;
  }
}
.ip-intro {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: .9375rem;
}
.ip-intro p {
  margin-top: .9375rem;
}
@media screen and (min-width: 768px) {
  .ip-intro {
    margin-bottom: 1.875rem;
  }
}
.ip-posts {
  overflow: hidden;
  padding-left: 16px;
}
.ip-ticker-block {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  overflow-x: scroll;
  position: relative;
  scrollbar-width: none;
}
.ip-ticker-block::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .ip-ticker-block {
    overflow-x: visible;
  }
}
.ip-ticker-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .ip-ticker-block.active .ip-ticker-list {
    -webkit-animation: ip-ticker 130s linear infinite;
    animation: ip-ticker 130s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
  .ip-ticker-block.paused .ip-ticker-list {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
}
.ip-ticker-item {
  box-sizing: border-box;
  display: flex;
  padding-right: 3.125rem;
  position: relative;
}
.ip-ticker-item-title {
  padding: 0 0 0 1.25rem;
  position: relative;
}
.ip-ticker-item-link {
  display: flex;
  margin-top: .9375rem;
  position: relative;
  text-decoration: none;
  width: 350px;
}
.ip-ticker-item-link .h3 {
  font-size: 1.1875rem;
  font-weight: 400;
  padding-bottom: 2.1875rem;
  position: relative;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
}
.ip-ticker-item-link .pointer {
  background-color: var(--color-btn);
  bottom: .9375rem;
  display: inline-block;
  height: 1px;
  left: -.3125rem;
  margin-left: .3125rem;
  margin-top: -.9375rem;
  position: absolute;
  transition: width .2s;
  width: .9375rem;
}
.ip-ticker-item-link .pointer:after,
.ip-ticker-item-link .pointer:before {
  background-color: var(--color-btn);
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.ip-ticker-item-link .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.ip-ticker-item-link .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .ip-ticker-item-link:hover .h3 {
    text-decoration: underline;
    -webkit-text-decoration-color: var(--color-btn);
    text-decoration-color: var(--color-btn);
    text-decoration-thickness: 1px;
    text-underline-offset: 3.5px;
  }
}
@media screen and (min-width: 980px) and (hover: hover) {
  .ip-ticker-item-link .pointer,
  .ip-ticker-item-link .pointer:after,
  .ip-ticker-item-link .pointer:before {
    background-color: var(--color-text);
  }
  .ip-ticker-item-link:hover .pointer {
    background-color: var(--color-btn);
    width: 2.0625rem;
  }
  .ip-ticker-item-link:hover .pointer:after,
  .ip-ticker-item-link:hover .pointer:before {
    background-color: var(--color-btn);
  }
}
.ip-ticker-item-thumb {
  display: block;
  position: relative;
}
.ip-ticker-item-tags {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: .375rem;
}
.ip-ticker-item:nth-child(3n + 1) .ip-ticker-item-thumb {
  height: 114px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 77px;
}
.ip-ticker-item:nth-child(3n + 2) .ip-ticker-item-thumb {
  height: 77px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 114px;
}
.ip-ticker-item:nth-child(3n + 3) .ip-ticker-item-thumb {
  height: 114px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 114px;
}
@-webkit-keyframes pp-ticker {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes pp-ticker {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.postsPanel {
  padding: 5.625rem 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .postsPanel {
    padding: 3.75rem 0;
  }
}
.postsPanel .btn-arrow {
  display: none;
}
@media screen and (min-width: 980px) {
  .postsPanel .btn-arrow {
    display: block;
  }
}
.postsPanel .btn-arrow--mobile {
  display: block;
  margin: 1.875rem 0 0 1rem;
}
@media screen and (min-width: 980px) {
  .postsPanel .btn-arrow--mobile {
    display: none;
  }
}
.pp-intro {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: .9375rem;
}
.pp-intro p {
  margin-top: .9375rem;
}
@media screen and (min-width: 768px) {
  .pp-intro {
    margin-bottom: 1.875rem;
  }
}
.pp-posts {
  overflow: hidden;
  padding-left: 16px;
}
.pp-ticker-block {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  overflow-x: scroll;
  position: relative;
  scrollbar-width: none;
}
.pp-ticker-block::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .pp-ticker-block {
    overflow-x: visible;
  }
}
.pp-ticker-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .pp-ticker-block.active .pp-ticker-list {
    -webkit-animation: pp-ticker 130s linear infinite;
    animation: pp-ticker 130s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
  .pp-ticker-block.paused .pp-ticker-list {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
}
.pp-ticker-item {
  box-sizing: border-box;
  display: flex;
  padding-right: 3.125rem;
  position: relative;
}
.pp-ticker-item-title {
  padding: 0 0 0 1.25rem;
  position: relative;
}
.pp-ticker-item-link {
  display: flex;
  margin-top: .9375rem;
  position: relative;
  text-decoration: none;
  width: 350px;
}
.pp-ticker-item-link .h3 {
  font-size: 1.1875rem;
  font-weight: 400;
  padding-bottom: 2.1875rem;
  position: relative;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
}
.pp-ticker-item-link .pointer {
  background-color: #00e128;
  bottom: .9375rem;
  display: inline-block;
  height: 1px;
  left: -.3125rem;
  margin-left: .3125rem;
  margin-top: -.9375rem;
  position: absolute;
  transition: width .2s;
  width: .9375rem;
}
.pp-ticker-item-link .pointer:after,
.pp-ticker-item-link .pointer:before {
  background-color: #00e128;
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.pp-ticker-item-link .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.pp-ticker-item-link .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .pp-ticker-item-link:hover .h3 {
    text-decoration: underline;
    -webkit-text-decoration-color: #00e128;
    text-decoration-color: #00e128;
    text-decoration-thickness: 1px;
    text-underline-offset: 3.5px;
  }
}
@media screen and (min-width: 980px) and (hover: hover) {
  .pp-ticker-item-link .pointer,
  .pp-ticker-item-link .pointer:after,
  .pp-ticker-item-link .pointer:before {
    background-color: #fff;
  }
  .pp-ticker-item-link:hover .pointer {
    background-color: #00e128;
    width: 2.0625rem;
  }
  .pp-ticker-item-link:hover .pointer:after,
  .pp-ticker-item-link:hover .pointer:before {
    background-color: #00e128;
  }
}
.pp-ticker-item-thumb {
  display: block;
  position: relative;
}
.pp-ticker-item-tags {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: .375rem;
}
.pp-ticker-item:nth-child(3n + 1) .pp-ticker-item-thumb {
  height: 114px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 77px;
}
.pp-ticker-item:nth-child(3n + 2) .pp-ticker-item-thumb {
  height: 77px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 114px;
}
.pp-ticker-item:nth-child(3n + 3) .pp-ticker-item-thumb {
  height: 114px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 114px;
}
.page-template-page-brain .pp-ticker-item-link .h3 .pointer,
.page-template-page-brain .pp-ticker-item-link .h3 .pointer:after,
.page-template-page-brain .pp-ticker-item-link .h3 .pointer:before {
  background-color: #fff;
}
.page-template-page-brain .pp-ticker-item-link:hover .h3 {
  -webkit-text-decoration-color: #0a8afa;
  text-decoration-color: #0a8afa;
}
.page-template-page-brain .pp-ticker-item-link:hover .pointer {
  background-color: #0a8afa;
  width: 2.0625rem;
}
.page-template-page-brain .pp-ticker-item-link:hover .pointer:after,
.page-template-page-brain .pp-ticker-item-link:hover .pointer:before {
  background-color: #0a8afa;
}
.leadershipPanels {
  background-color: #e6e6e6;
  color: #000;
  display: block;
}
.lp {
  padding: 4.6875rem 0 0;
}
.lp,
.lp__panel {
  position: relative;
}
.lp__panel {
  border-top: 1px solid #00e128;
  display: block;
}
.lp__panel:hover,
.lp__panel:hover + .lp__panel {
  border-top: 1px solid #fa8c24;
}
.lp__panel .lp__mediaPreview {
  background: transparent;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .2s linear;
  width: 0;
  z-index: -1;
}
.lp__panel video {
  width: 0;
}
.lp__panel.js-show-media {
  display: none;
  transition: none;
}
@media screen and (min-width: 1024px) {
  .lp__panel.js-show-media {
    display: block;
  }
  .lp__panel.js-show-media video {
    max-width: 640px;
    width: auto;
  }
}
.lp__panel.js-show-media .lp__mediaPreview {
  -webkit-animation: videoReveal .5s;
  animation: videoReveal .5s;
  min-height: 9.375rem;
  min-width: 14.0625rem;
  opacity: 1;
  z-index: 2;
}
.lp__panel.js-show-media .lp__mediaPreview img,
.lp__panel.js-show-media .lp__mediaPreview video {
  cursor: pointer;
  left: 0;
  position: absolute;
  top: 0;
}
.lp__panel:nth-child(12) .lp__mediaPreview,
.lp__panel:nth-child(15) .lp__mediaPreview,
.lp__panel:nth-child(18) .lp__mediaPreview,
.lp__panel:nth-child(2) .lp__mediaPreview,
.lp__panel:nth-child(5) .lp__mediaPreview,
.lp__panel:nth-child(8) .lp__mediaPreview,
.lp__panel:nth-child(9) .lp__mediaPreview {
  right: 45%;
  top: -265%;
}
.lp__panel:nth-child(10) .lp__mediaPreview,
.lp__panel:nth-child(13) .lp__mediaPreview,
.lp__panel:nth-child(16) .lp__mediaPreview,
.lp__panel:nth-child(19) .lp__mediaPreview,
.lp__panel:nth-child(3) .lp__mediaPreview,
.lp__panel:nth-child(6) .lp__mediaPreview,
.lp__panel:nth-child(9) .lp__mediaPreview {
  left: 30%;
  top: -90%;
}
.lp__panel:nth-child(10) .lp__mediaPreview,
.lp__panel:nth-child(11) .lp__mediaPreview,
.lp__panel:nth-child(14) .lp__mediaPreview,
.lp__panel:nth-child(17) .lp__mediaPreview,
.lp__panel:nth-child(20) .lp__mediaPreview,
.lp__panel:nth-child(4) .lp__mediaPreview,
.lp__panel:nth-child(7) .lp__mediaPreview {
  left: 10%;
  top: 70%;
}
.lp__intro {
  padding: 0 0 3.75rem;
}
@media screen and (min-width: 1024px) {
  .lp__intro {
    padding: 0 0 3.75rem;
  }
}
.lp__ticker {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.lp__ticker:after {
  background-image: linear-gradient(90deg, #f0913c, #fc4017);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .25s ease-in-out;
}
.lp__ticker:focus:after,
.lp__ticker:hover:after {
  opacity: 1;
}
.lp__ticker-content {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  display: flex;
  padding: 1.40625rem .9375rem;
  position: relative;
  white-space: wrap;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .lp__ticker-content {
    font-size: 2.25rem;
    margin-bottom: 1.875rem;
    padding: 0 100% 5.625rem 0;
    white-space: nowrap;
  }
}
.lp__arrow {
  display: none;
  filter: invert(100%);
  line-height: 1;
  margin: .46875rem .46875rem .46875rem .9375rem;
}
@media screen and (min-width: 1024px) {
  .lp__arrow {
    display: inline-block;
  }
}
.lp__arrow--mobile {
  margin-right: .9375rem;
}
@media screen and (min-width: 1024px) {
  .lp__arrow--mobile {
    display: none;
  }
}
.lp__ticker-text {
  text-align: left;
  width: 100%;
}
.lp__ticker-text .js-ticker-text {
  display: flex;
  flex-direction: column;
  padding-right: .625rem;
}
@media screen and (min-width: 1024px) {
  .lp__ticker-text .js-ticker-text {
    flex-direction: row;
  }
}
.lp__ticker-text .js-ticker-text > div {
  font-weight: 100;
}
.lp__ticker-text .js-ticker-text > div:first-child {
  font-weight: 700;
}
.lp__ticker-text .js-ticker-text > span {
  display: none;
  padding-right: .3125rem;
}
@media screen and (min-width: 1024px) {
  .lp__ticker-text .js-ticker-text > span {
    display: inline-block;
  }
}
.lp__ticker-text > span {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lp__ticker-text > span {
    display: inline-block;
  }
  .lp__ticker-text {
    -webkit-animation: tickerRight 10s;
    animation: tickerRight 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    display: flex;
    overflow: visible;
    position: absolute;
    top: 40%;
  }
}
.lp__drawer {
  background: #fff;
  display: none;
  opacity: 0;
  padding: 1.875rem 0;
  position: relative;
  transition: opacity .2s linear;
}
@media screen and (min-width: 1024px) {
  .lp__drawer {
    padding: 5.625rem 0;
  }
  .lp__columns {
    display: flex;
    padding-top: 0;
  }
}
.lp__column {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .lp__column:last-child {
    margin-left: 3.75rem;
  }
}
.lp__quote-desc {
  max-width: 31.9375rem;
}
.lp__quote {
  padding: 1.875rem 0;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .lp__quote {
    padding: 3.75rem 0 1.875rem;
  }
}
.lp__quote .quote-h3 {
  box-sizing: border-box;
  font-size: 1.3125rem;
  font-weight: 300;
  line-height: 1.29;
  padding-top: 2.8125rem;
  position: relative;
}
.lp__quote .quote-h3:before {
  content: "“";
  font-size: 5.625rem;
  font-weight: 200;
  left: 0;
  line-height: 1;
  position: absolute;
  top: .4375rem;
}
@media screen and (min-width: 768px) {
  .lp__quote .quote-h3 {
    font-size: 2.25rem;
    line-height: 1.17;
  }
}
.lp__description {
  border-bottom: 1px solid #000;
  margin-bottom: 2.1875rem;
  padding-bottom: .9375rem;
}
.lp__image {
  width: 75%;
}
@media screen and (min-width: 1024px) {
  .lp__image {
    width: 100%;
  }
}
.lp__image img {
  max-width: 25.625rem;
  width: 100%;
}
.lp__articles h6 {
  margin-bottom: 2.1875rem;
}
.lp__article-link {
  display: block;
  height: 100%;
  margin-bottom: 1.875rem;
  text-decoration: none;
  width: 100%;
}
.lp__article-link img {
  margin-right: 1.40625rem;
  max-width: 5.8125rem;
}
.lp__article-link:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #00e128;
  text-decoration-color: #00e128;
}
.lp__article-link:hover .pointer {
  background-color: #00e128;
  width: 2.0625rem;
}
.lp__article-link:hover .pointer:after,
.lp__article-link:hover .pointer:before {
  background-color: #00e128;
}
.lp__article-content {
  align-items: flex-start;
  display: flex;
}
.lp__article-title {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 1.1875rem;
  font-weight: 400;
  height: 5.9375rem;
  line-height: 1.1;
  max-width: 14.375rem;
  position: relative;
}
.lp__article-title .pointer {
  background-color: #000;
  bottom: .625rem;
  display: inline-block;
  height: 1px;
  position: absolute;
  transition: width .2s;
  width: .9375rem;
}
.lp__article-title .pointer:after,
.lp__article-title .pointer:before {
  background-color: #000;
  content: "";
  height: .6875rem;
  position: absolute;
  right: .1875rem;
  width: 1px;
}
.lp__article-title .pointer:before {
  top: -.5625rem;
  transform: rotate(-45deg);
}
.lp__article-title .pointer:after {
  top: -.0625rem;
  transform: rotate(45deg);
}
.lp .btn-close.btn-close-drawer {
  position: absolute;
  right: 2.5rem;
  z-index: 1;
}
.lp .drawer-article-link {
  background: 50% / auto no-repeat url(../images/icon-nav-arrow-white.svg);
  bottom: 0;
  content: "";
  height: 1.25rem;
  left: 2.1875rem;
  position: absolute;
  width: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .lp .js-lp-panel .js-ticker-button {
    -webkit-animation: panel-ticker-right 30s linear infinite;
    animation: panel-ticker-right 30s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
  .lp .js-lp-panel:nth-child(2n) .js-ticker-button {
    -webkit-animation: panel-ticker-left 30s linear infinite;
    animation: panel-ticker-left 30s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
  .lp .js-lp-panel.is-active .js-ticker-button,
  .lp .js-lp-ticker.is-active .js-ticker-button {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  .lp .js-lp-panel.is-active .js-ticker-button:after,
  .lp .js-lp-ticker.is-active .js-ticker-button:after {
    background-image: linear-gradient(90deg, #f0913c, #fc4017);
  }
  .lp .js-lp-panel.is-active:hover .js-ticker-button,
  .lp .js-lp-ticker.is-active:hover .js-ticker-button,
  .lp .js-show-media.is-active .js-lp-ticker {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  .lp .js-show-media.is-active .js-lp-ticker:after {
    background-image: linear-gradient(90deg, #f0913c, #fc4017);
    opacity: 1;
  }
}
.lp .js-drawer-open {
  transition: opacity .2s linear;
}
.lp .js-drawer-open .lp__drawer {
  -webkit-animation: panelReveal .5s;
  animation: panelReveal .5s;
  display: block;
  opacity: 1;
  transition: none;
}
.lp .js-drawer-open .lp__ticker {
  background: linear-gradient(90deg, #f0913c, #fc4017);
}
.lp .js-drawer-open .lp__mediaPreview {
  display: none;
}
.lp .js-drawer-open .js-ticker-button,
.lp.js-stop-ticker .js-ticker-button {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}
.lg {
  background: var(--color-bg);
  color: var(--color-text);
}
.lg > section {
  padding-bottom: 5.625rem;
  padding-top: 4.6875rem;
}
.lg .grid {
  row-gap: 3.75rem;
}
.lg .h2 {
  margin-bottom: 1.875rem;
}
.lg .h3 {
  font-size: 1.1875rem;
  line-height: 1.26;
}
@media screen and (min-width: 768px) {
  .lg > section {
    padding-bottom: 7.5rem;
    padding-top: 6.5625rem;
  }
  .lg .grid {
    -moz-column-gap: 30px;
    column-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .lg .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .lg .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.office a,
.office a:active,
.office a:focus,
.office a:visited {
  -webkit-text-decoration-color: var(--color-text);
  text-decoration-color: var(--color-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
}
@media (hover: hover) {
  .office a:hover {
    -webkit-text-decoration-color: var(--color-btn);
    text-decoration-color: var(--color-btn);
    text-decoration-thickness: 1px;
    text-underline-offset: 3.5px;
  }
}
.office-type {
  margin-bottom: .9375rem;
}
.office-addr,
.office-numbers {
  margin-top: .9375rem;
}
.quote {
  background: var(--color-bg);
  color: var(--color-text);
  padding-bottom: 5.625rem;
  padding-top: 5.625rem;
}
.quote .h2 {
  margin-bottom: 1.1875rem;
}
.quote-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.quote-ul li {
  margin-bottom: 3.75rem;
}
.quote-ul li:last-child {
  margin-bottom: 0;
}
.quote-img {
  height: 10.75rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 10.75rem;
}
.quote-bq {
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.28;
  margin: .9375rem 0 .3125rem;
  padding: 2.1875rem 0 0;
  position: relative;
  width: 60%;
}
.quote-bq:after {
  content: "";
  display: none;
}
.quote-open {
  font-size: 5.625rem;
  font-weight: 200;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0;
}
.quote-attr {
  font-weight: 400;
}
@media screen and (min-width: 980px) {
  .quote {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
  .quote-ul li {
    align-items: flex-end;
    display: flex;
    margin-bottom: 5.625rem;
  }
  .quote-ul li div:first-child {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
    width: 25.5%;
  }
  .quote-ul li div:nth-child(2) {
    width: 74.5%;
  }
  .quote-img {
    height: 7.1875rem;
    margin-right: 1.25rem;
    width: 7.1875rem;
  }
  .quote-bq {
    font-size: 2.25rem;
    margin: 0 0 .9375rem;
    padding: 2.8125rem 0 0;
    width: auto;
  }
  .quote-bq,
  .quote-open {
    font-weight: 400;
  }
  .quote-attr {
    font-size: .875rem;
  }
}
@media screen and (min-width: 1024px) {
  .quote-bq {
    padding: 2.8125rem 15% 0 0;
  }
}
.ticker,
.tickers {
  position: relative;
}
.ticker__panel,
.tickers__panel {
  display: block;
  position: relative;
}
.ticker__panel .ticker__mediaPreview,
.tickers__panel .ticker__mediaPreview {
  background: transparent;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .2s linear;
  width: 0;
  z-index: -1;
}
.ticker__panel .ticker__mediaPreview img,
.ticker__panel video,
.tickers__panel .ticker__mediaPreview img,
.tickers__panel video {
  width: 0;
}
.ticker__panel:first-child .ticker__mediaPreview,
.tickers__panel:first-child .ticker__mediaPreview {
  right: 55%;
  top: -200%;
}
.ticker__panel:nth-child(12) .ticker__mediaPreview,
.ticker__panel:nth-child(15) .ticker__mediaPreview,
.ticker__panel:nth-child(18) .ticker__mediaPreview,
.ticker__panel:nth-child(2) .ticker__mediaPreview,
.ticker__panel:nth-child(5) .ticker__mediaPreview,
.ticker__panel:nth-child(8) .ticker__mediaPreview,
.ticker__panel:nth-child(9) .ticker__mediaPreview,
.tickers__panel:nth-child(12) .ticker__mediaPreview,
.tickers__panel:nth-child(15) .ticker__mediaPreview,
.tickers__panel:nth-child(18) .ticker__mediaPreview,
.tickers__panel:nth-child(2) .ticker__mediaPreview,
.tickers__panel:nth-child(5) .ticker__mediaPreview,
.tickers__panel:nth-child(8) .ticker__mediaPreview,
.tickers__panel:nth-child(9) .ticker__mediaPreview {
  right: 45%;
  top: -265%;
}
.ticker__panel:nth-child(10) .ticker__mediaPreview,
.ticker__panel:nth-child(13) .ticker__mediaPreview,
.ticker__panel:nth-child(16) .ticker__mediaPreview,
.ticker__panel:nth-child(19) .ticker__mediaPreview,
.ticker__panel:nth-child(3) .ticker__mediaPreview,
.ticker__panel:nth-child(6) .ticker__mediaPreview,
.ticker__panel:nth-child(9) .ticker__mediaPreview,
.tickers__panel:nth-child(10) .ticker__mediaPreview,
.tickers__panel:nth-child(13) .ticker__mediaPreview,
.tickers__panel:nth-child(16) .ticker__mediaPreview,
.tickers__panel:nth-child(19) .ticker__mediaPreview,
.tickers__panel:nth-child(3) .ticker__mediaPreview,
.tickers__panel:nth-child(6) .ticker__mediaPreview,
.tickers__panel:nth-child(9) .ticker__mediaPreview {
  left: 30%;
  top: -90%;
}
.ticker__panel:nth-child(10) .ticker__mediaPreview,
.ticker__panel:nth-child(11) .ticker__mediaPreview,
.ticker__panel:nth-child(14) .ticker__mediaPreview,
.ticker__panel:nth-child(17) .ticker__mediaPreview,
.ticker__panel:nth-child(20) .ticker__mediaPreview,
.ticker__panel:nth-child(4) .ticker__mediaPreview,
.ticker__panel:nth-child(7) .ticker__mediaPreview,
.tickers__panel:nth-child(10) .ticker__mediaPreview,
.tickers__panel:nth-child(11) .ticker__mediaPreview,
.tickers__panel:nth-child(14) .ticker__mediaPreview,
.tickers__panel:nth-child(17) .ticker__mediaPreview,
.tickers__panel:nth-child(20) .ticker__mediaPreview,
.tickers__panel:nth-child(4) .ticker__mediaPreview,
.tickers__panel:nth-child(7) .ticker__mediaPreview {
  left: 10%;
  top: 70%;
}
.ticker__intro,
.tickers__intro {
  padding: 0 0 3.75rem;
}
@media screen and (min-width: 1024px) {
  .ticker__intro,
  .tickers__intro {
    padding: 0 0 3.75rem;
  }
}
.ticker__ticker,
.tickers__ticker {
  background: #000;
  border: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ticker__ticker,
  .tickers__ticker {
    height: 4.6875rem;
  }
}
.ticker__ticker:after,
.tickers__ticker:after {
  background-image: var(--color-gradient);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .25s ease-in-out;
}
.ticker__ticker:focus:after,
.ticker__ticker:hover:after,
.tickers__ticker:focus:after,
.tickers__ticker:hover:after {
  opacity: 1;
}
.ticker__ticker-content,
.tickers__ticker-content {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  display: flex;
  padding: 1.40625rem .9375rem;
  position: relative;
  white-space: wrap;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .ticker__ticker-content,
  .tickers__ticker-content {
    font-size: 2.25rem;
    padding: 0 100% 0 0;
    white-space: nowrap;
  }
}
.ticker__ticker-text,
.tickers__ticker-text {
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ticker__ticker-text,
  .tickers__ticker-text {
    padding: .625rem 0 0;
    position: absolute;
    top: .625rem;
  }
}
.ticker__ticker-text .js-ticker-text,
.tickers__ticker-text .js-ticker-text {
  display: flex;
  flex-direction: column;
  padding-right: .625rem;
}
@media screen and (min-width: 1024px) {
  .ticker__ticker-text .js-ticker-text,
  .tickers__ticker-text .js-ticker-text {
    flex-direction: row;
  }
}
.ticker__ticker-text .js-ticker-text > div,
.tickers__ticker-text .js-ticker-text > div {
  display: flex;
  font-weight: 100;
}
.ticker__ticker-text .js-ticker-text > div.ticker__arrow,
.tickers__ticker-text .js-ticker-text > div.ticker__arrow {
  display: none;
}
@media screen and (min-width: 1024px) {
  .ticker__ticker-text .js-ticker-text > div.ticker__arrow,
  .tickers__ticker-text .js-ticker-text > div.ticker__arrow {
    display: flex;
  }
}
.ticker__ticker-text .js-ticker-text .bolder,
.tickers__ticker-text .js-ticker-text .bolder {
  font-weight: 700;
}
.ticker__ticker-text .js-ticker-text span,
.tickers__ticker-text .js-ticker-text span {
  padding-right: .3125rem;
}
.ticker__ticker-text .js-ticker-text span:first-child,
.tickers__ticker-text .js-ticker-text span:first-child {
  padding-right: .625rem;
}
@media screen and (min-width: 1024px) {
  .ticker__ticker-text .js-ticker-text span,
  .tickers__ticker-text .js-ticker-text span {
    display: inline-block;
  }
  .ticker__ticker-text,
  .tickers__ticker-text {
    -webkit-animation: tickerRight 30s;
    animation: tickerRight 30s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    display: flex;
    overflow: visible;
    position: absolute;
    top: 40%;
  }
}
.ticker.js-show-media,
.tickers.js-show-media {
  display: none;
  transition: none;
}
@media screen and (min-width: 1024px) {
  .ticker.js-show-media,
  .tickers.js-show-media {
    display: block;
  }
  .ticker.js-show-media img,
  .ticker.js-show-media video,
  .tickers.js-show-media img,
  .tickers.js-show-media video {
    max-width: 640px;
    width: auto;
  }
}
.ticker.js-show-media .ticker__ticker,
.tickers.js-show-media .ticker__ticker {
  background: var(--color-gradient);
}
.ticker.js-show-media .ticker__mediaPreview,
.tickers.js-show-media .ticker__mediaPreview {
  -webkit-animation: videoReveal .5s;
  animation: videoReveal .5s;
  min-height: 9.375rem;
  min-width: 14.0625rem;
  opacity: 1;
  z-index: 2;
}
.ticker.js-show-media .ticker__mediaPreview img,
.ticker.js-show-media .ticker__mediaPreview video,
.tickers.js-show-media .ticker__mediaPreview img,
.tickers.js-show-media .ticker__mediaPreview video {
  cursor: pointer;
  left: 0;
  position: absolute;
  top: 0;
}
.ticker .js-ticker-panel,
.tickers .js-ticker-panel {
  display: block;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .ticker .js-ticker-panel .js-ticker-btn,
  .tickers .js-ticker-panel .js-ticker-btn {
    -webkit-animation: panel-ticker-right 30s linear infinite;
    animation: panel-ticker-right 30s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
  .ticker .js-ticker-panel:nth-child(2n) .js-ticker-btn,
  .tickers .js-ticker-panel:nth-child(2n) .js-ticker-btn {
    -webkit-animation: panel-ticker-left 30s linear infinite;
    animation: panel-ticker-left 30s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
}
.ticker .js-basic-ticker,
.tickers .js-basic-ticker {
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}
@media screen and (min-width: 1024px) {
  .ticker .js-basic-ticker.is-active .js-ticker-btn,
  .ticker .js-ticker-panel.is-active .js-ticker-btn,
  .tickers .js-basic-ticker.is-active .js-ticker-btn,
  .tickers .js-ticker-panel.is-active .js-ticker-btn {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  .ticker .js-basic-ticker.is-active .js-ticker-btn:after,
  .ticker .js-ticker-panel.is-active .js-ticker-btn:after,
  .tickers .js-basic-ticker.is-active .js-ticker-btn:after,
  .tickers .js-ticker-panel.is-active .js-ticker-btn:after {
    background-image: var(--color-gradient);
  }
  .ticker .js-basic-ticker.is-active:hover .js-ticker-btn,
  .ticker .js-show-media.is-active .js-basic-ticker,
  .ticker .js-ticker-panel.is-active:hover .js-ticker-btn,
  .tickers .js-basic-ticker.is-active:hover .js-ticker-btn,
  .tickers .js-show-media.is-active .js-basic-ticker,
  .tickers .js-ticker-panel.is-active:hover .js-ticker-btn {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  .ticker .js-show-media.is-active .js-basic-ticker:after,
  .tickers .js-show-media.is-active .js-basic-ticker:after {
    background-image: var(--color-gradient);
    opacity: 1;
  }
  .ticker .js-show-media .ticker__mediaPreview,
  .tickers .js-show-media .ticker__mediaPreview {
    -webkit-animation: videoReveal .5s;
    animation: videoReveal .5s;
    min-height: 9.375rem;
    min-width: 14.0625rem;
    opacity: 1;
    z-index: 2;
  }
  .ticker .js-show-media .ticker__mediaPreview img,
  .ticker .js-show-media .ticker__mediaPreview video,
  .tickers .js-show-media .ticker__mediaPreview img,
  .tickers .js-show-media .ticker__mediaPreview video {
    cursor: pointer;
    left: 0;
    position: absolute;
    top: 0;
  }
}
.ticker .ticker__arrow,
.tickers .ticker__arrow {
  display: none;
  height: .9375rem;
  line-height: 1;
  margin: 1.25rem .46875rem .46875rem .9375rem;
  width: .9375rem;
}
@media screen and (min-width: 1024px) {
  .ticker .ticker__arrow,
  .tickers .ticker__arrow {
    display: inline-block;
  }
}
.ticker .ticker__arrow--mobile,
.tickers .ticker__arrow--mobile {
  filter: invert(100%);
  margin-right: .9375rem;
}
@media screen and (min-width: 1024px) {
  .ticker .ticker__arrow--mobile,
  .tickers .ticker__arrow--mobile {
    display: none;
  }
}
.tcf {
  background: var(--color-bg);
  color: var(--color-text);
  padding-bottom: 4.6875rem;
  padding-top: 5.625rem;
}
.tcf .h2 {
  margin-bottom: .9375rem;
}
.tcf-ul {
  -moz-column-gap: 10px;
  column-gap: 10px;
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 3.75rem 0 0;
  padding: 0;
  row-gap: 2.8125rem;
}
.tcf-ul .h3 {
  margin-bottom: .3125rem;
}
.tcf-ul .description {
  margin-bottom: .9375rem;
}
@media screen and (min-width: 768px) {
  .tcf {
    padding-bottom: 7.5rem;
    padding-top: 6.5625rem;
  }
  .tcf-description {
    max-width: 27.5rem;
  }
  .tcf-ul {
    grid-template-columns: repeat(12, 1fr);
    margin-top: 2.8125rem;
    row-gap: 5.625rem;
  }
  .tcf-ul .h3 {
    margin-bottom: .9375rem;
  }
  .tcf-ul .description {
    margin-bottom: 1.875rem;
    padding-right: 10%;
  }
  .tcf-ul li:nth-child(odd) {
    grid-column: 1 / span 4;
  }
  .tcf-ul li:nth-child(2n) {
    grid-column: 6 / span 4;
  }
}
.tcp {
  padding: 4.6875rem 0;
}
.tcp .h2 {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .tcp .h2 {
    margin-bottom: .9375rem;
  }
}
.tcp-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tcp-ul .h3 {
  margin-bottom: .9375rem;
}
.tcp-ul .quote-h3 {
  box-sizing: border-box;
  font-size: 1.3125rem;
  font-weight: 300;
  line-height: 1.29;
  padding-top: 2.8125rem;
  position: relative;
}
.tcp-ul .quote-h3:before {
  content: "“";
  font-size: 5.625rem;
  font-weight: 200;
  left: 0;
  line-height: 1;
  position: absolute;
  top: .4375rem;
}
@media screen and (min-width: 768px) {
  .tcp-ul .quote-h3 {
    font-size: 2.25rem;
    line-height: 1.17;
  }
}
.tcp-ul .description {
  margin-bottom: .125rem;
}
.tcp-ul a:hover {
  color: #fff;
}
.tcp-panel {
  border-bottom: 1px solid #555;
  padding: 3.25rem 0;
}
.tcp-panel:first-child {
  padding: 2.1875rem 0 3.25rem;
}
@media screen and (min-width: 768px) {
  .tcp-panel:first-child {
    padding: 3.25rem 0;
  }
}
.tcp-panel:last-child {
  border-bottom: 0;
}
.tcp .drawer-video-poster,
.tcp-image {
  max-width: 90%;
  width: 90%;
}
.tcp-link-content {
  display: block;
  padding-right: 1.875rem;
  position: relative;
}
.tcp-link-content .pointer {
  position: absolute;
  right: 0;
  top: .4375rem;
}
.tcp-link-title {
  font-weight: 700;
  margin-bottom: .375rem;
}
@media screen and (min-width: 768px) {
  .tcp {
    padding: 7.5rem 0 3.75rem;
  }
  .tcp-ul .h3 {
    margin-bottom: .9375rem;
  }
  .tcp-ul .description {
    margin-bottom: 1.875rem;
  }
  .tcp-panel {
    padding: 4.1875rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .tcp-link-content .pointer {
    position: absolute;
    right: 0;
    top: 50%;
  }
  .tcp-link-title-date {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 10px);
  }
  .tcp-link-title {
    margin-bottom: 0;
    padding-right: 1.875rem;
  }
  .tcp-link-date {
    min-width: 11rem;
    width: 11rem;
  }
}
.vf {
  background-position: 70% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 5.625rem;
  padding-top: 5.625rem;
}
.vf .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vf-video {
  display: none;
}
.vf .h3 {
  margin: .9375rem 0 .3125rem;
}
@media screen and (min-width: 768px) {
  .vf {
    background-position: 50% 50%;
  }
  .vf-video {
    display: block;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .vf .description {
    max-width: 50%;
  }
}
@keyframes panel-ticker-left {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes panel-ticker-right {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.worldPanels {
  background: #000;
  color: #fff;
  display: block;
  padding: 4.6875rem 0 0;
  position: relative;
}
.worldPanels__intro {
  padding: 0 .9375rem 3.75rem;
}
@media screen and (min-width: 1024px) {
  .worldPanels__intro {
    padding: 0 .9375rem 3.75rem;
  }
}
.worldPanels__intro h3 {
  margin: 1.875rem 0 .9375rem;
  max-width: 16.25rem;
}
@media screen and (min-width: 1024px) {
  .worldPanels__intro h3 {
    max-width: 28.125rem;
  }
}
.worldPanels__ticker {
  background: transparent;
  border: 0;
  border-top: 1px solid #00e128;
  color: #fff;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.worldPanels__ticker:after {
  background-image: linear-gradient(90deg, #f0913c, #fc4017);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .25s ease-in-out;
}
.worldPanels__ticker:focus,
.worldPanels__ticker:hover {
  border-top: 1px solid #fa8c24;
}
.worldPanels__ticker:focus:after,
.worldPanels__ticker:hover:after {
  opacity: 1;
}
.worldPanels__ticker:focus .worldPanels__arrow,
.worldPanels__ticker:hover .worldPanels__arrow {
  filter: invert(0);
}
.worldPanels__ticker-content {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  display: flex;
  padding: 1.40625rem .9375rem;
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .worldPanels__ticker-content {
    font-size: 2.25rem;
    margin-bottom: 1.875rem;
    padding: 0 100% 5.625rem 0;
  }
}
.worldPanels__arrow {
  margin: 0 .9375rem;
  visibility: hidden;
}
@media screen and (min-width: 1024px) {
  .worldPanels__arrow {
    visibility: visible;
  }
}
.worldPanels__arrow--mobile {
  margin-right: .9375rem;
}
.worldPanels__arrow--mobile img {
  filter: invert(100%);
}
@media screen and (min-width: 1024px) {
  .worldPanels__arrow--mobile {
    display: none;
  }
}
.worldPanels__ticker-text {
  text-align: left;
  width: 100%;
}
.worldPanels__ticker-text > div:first-child {
  font-weight: 700;
}
.worldPanels__ticker-text > span {
  display: none;
}
@media screen and (min-width: 1024px) {
  .worldPanels__ticker-text > span {
    display: inline-block;
  }
}
.worldPanels__ticker-text .time {
  padding-right: .46875rem;
}
.worldPanels__ticker-text .country {
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .worldPanels__ticker-text {
    display: flex;
    position: absolute;
    top: 40%;
  }
}
.worldPanels__drawer {
  background: #393939;
  padding: .9375rem 0 5.625rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .worldPanels__drawer {
    padding: 3.75rem .9375rem;
  }
}
.worldPanels__drawer button {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .worldPanels__columns {
    display: flex;
    padding-top: 0;
  }
}
.worldPanels__column {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .worldPanels__column:last-child {
    margin-left: 3.75rem;
  }
}
.worldPanels__image {
  width: 75%;
}
@media screen and (min-width: 1024px) {
  .worldPanels__image {
    width: 100%;
  }
}
.worldPanels__image img {
  width: 100%;
}
.worldPanels__quote {
  border-bottom: 1px solid #fff;
  margin: 1.875rem 0 2.8125rem;
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 1024px) {
  .worldPanels__quote {
    margin: 1.875rem 0 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.worldPanels__quote .quote-h3 {
  box-sizing: border-box;
  font-size: 1.3125rem;
  font-weight: 300;
  line-height: 1.29;
  margin-bottom: .9375rem;
  padding-top: 2.8125rem;
  position: relative;
}
.worldPanels__quote .quote-h3:before {
  content: "“";
  font-size: 5.625rem;
  font-weight: 200;
  left: 0;
  line-height: 1;
  position: absolute;
  top: .4375rem;
}
@media screen and (min-width: 768px) {
  .worldPanels__quote .quote-h3 {
    font-size: 2.25rem;
    line-height: 1.17;
  }
}
.worldPanels__cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 17.875rem;
  position: relative;
  z-index: 1;
}
.worldPanels__stats {
  display: flex;
  margin: 3.75rem 0 2.8125rem;
}
.worldPanels__stats .stat {
  display: flex;
  flex-direction: column;
  padding-right: 3.75rem;
}
.worldPanels__stats .stat-number {
  font-size: 2.625rem;
  font-weight: 100;
  line-height: 1;
}
.worldPanels__stats .stat-label {
  font-size: 1.0625rem;
}
.worldPanels__disclaimer {
  margin: 1.875rem 0 0;
}
.worldPanels.js-stop-ticker .js-ticker-button {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}
.js-drawer-open .worldPanels__arrow {
  filter: invert(0);
}
.js-drawer-open .js-wp-panel .js-ticker-button,
.js-drawer-open .js-wp-panel .js-ticker-text {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}
@media screen and (min-width: 1024px) {
  .js-wp-panel .js-ticker-button {
    -webkit-animation: panel-ticker-right 20s linear infinite;
    animation: panel-ticker-right 20s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
  .js-wp-panel:nth-child(2n) .js-ticker-button {
    -webkit-animation: panel-ticker-left 20s linear infinite;
    animation: panel-ticker-left 20s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
}
.js-wp-ticker.is-active .js-ticker-button {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.js-wp-ticker.is-active:hover .js-ticker-button {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@media screen and (min-width: 1024px) {
  .js-wp-panel.is-active .js-ticker-button,
  .js-wp-ticker.is-active .js-ticker-button {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  .js-wp-panel.is-active .js-ticker-button:after,
  .js-wp-ticker.is-active .js-ticker-button:after {
    background-image: linear-gradient(90deg, #f0913c, #fc4017);
  }
  .js-wp-panel.is-active:hover .js-ticker-button,
  .js-wp-ticker.is-active:hover .js-ticker-button {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
}
.js-drawer-open {
  transition: opacity .2s linear;
}
.js-drawer-open .worldPanels__drawer {
  -webkit-animation: panelReveal .5s;
  animation: panelReveal .5s;
  display: block;
  opacity: 1;
  transition: none;
}
.js-drawer-open .worldPanels__ticker {
  background: linear-gradient(90deg, #f0913c, #fc4017);
}
.js-drawer-open .worldPanels__mediaPreview {
  display: none;
}
.js-drawer-open .js-ticker-button {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}
.js-ticker-button,
.js-ticker-text {
  display: flex;
}
.js-drawer-open .js-wp-drawer {
  display: block;
}
.js-wp-drawer {
  display: none;
}
.js-btn-close-drawer {
  right: .9375rem;
  top: .9375rem;
}
@media screen and (min-width: 1024px) {
  .js-btn-close-drawer {
    right: 1.875rem;
    top: 3.75rem;
  }
}
.drawer-video-poster {
  max-width: 80%;
  position: relative;
}
.drawer-video-poster img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .drawer-video-poster {
    max-width: 25.625rem;
  }
}
.drawer-video-poster button {
  bottom: 2.8125rem;
  position: absolute;
  right: 1.875rem;
}
.wysiwyg.article {
  background-color: #e6e6e6;
  padding-bottom: 5.625rem;
  padding-top: 5.625rem;
}
.wysiwyg .article-content {
  background-color: #e6e6e6;
  margin-bottom: 0;
  padding-top: 0;
}
.wysiwyg .article-content + .article-disclaimer {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .wysiwyg {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}
.modal {
  background-color: #000;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.modal-container {
  align-items: center;
  height: 100%;
}
.modal-container,
.modal-content {
  display: flex;
  justify-content: center;
}
.modal-content {
  position: relative;
  width: 80%;
}
.modal-video {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.modal-iframe {
  background-color: #111;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media (orientation: landscape) {
  .modal-content.mobile {
    width: 75vh;
  }
}
@media (orientation: portrait) {
  .modal-content.mobile {
    width: 80vw;
  }
}
@media (orientation: landscape) {
  .modal-video.mobile {
    padding-top: 75vh;
  }
}
@media (orientation: portrait) {
  .modal-video.mobile {
    padding-top: 80vw;
  }
}
.modal-close {
  background-color: transparent;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.modal .btn-close {
  position: absolute;
  right: 0;
  top: -3rem;
}
@media screen and (min-width: 980px) {
  .modal-content {
    width: 75%;
  }
  .modal .btn-close {
    right: -3rem;
    top: 0;
  }
}
.footer {
  background: var(--color-bg);
  color: var(--color-text);
  display: block;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
}
.footer-video-container {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.footer-video-container video {
  display: none;
}
.footer-video-container video,
.footer-video-img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.footer-video-img {
  display: block;
}
.footer-cta-container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5.625rem 0 2.5rem;
  position: relative;
  text-align: center;
}
.footer-cta-container a {
  border: 1px solid var(--color-btn);
  border-radius: 12px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 1;
  padding: 1.375rem 4.375rem;
  text-decoration: none;
  transition: background-color .25s;
}
@media (hover: hover) {
  .footer-cta-container a:focus,
  .footer-cta-container a:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
  }
}
.footer-bg {
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: absolute;
  width: 100%;
}
.footer-nav-container {
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-bottom: 3rem;
  padding-top: 3rem;
  row-gap: 1.875rem;
}
.footer-logo {
  display: flex;
  justify-content: center;
}
.footer-logo a,
.footer-logo img {
  display: block;
}
.footer-logo img {
  width: 7.25rem;
}
.footer-copyright {
  font-size: .9375rem;
  opacity: 0.7;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-video-container video {
    display: block;
  }
  .footer-video-img {
    display: none;
  }
  .footer-cta-container a {
    font-size: 5.0625rem;
    font-weight: 400;
    min-width: 29.625rem;
    padding: 2.1875rem .9375rem;
  }
}
@media screen and (min-width: 980px) {
  .footer-cta-container {
    background-color: transparent;
    padding: 7.5rem 0;
  }
  .footer-bg {
    display: none;
  }
  .footer-nav {
    -moz-column-gap: .3125rem;
    column-gap: .3125rem;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 1.375rem;
    row-gap: 4.0625rem;
  }
  .footer-copyright {
    align-items: flex-end;
    display: flex;
    opacity: 1;
    text-align: left;
  }
  .footer-logo {
    grid-row: 1 / 3;
    justify-content: flex-start;
    order: -1;
  }
  .footer-logo a {
    position: relative;
    top: -2.25rem;
  }
  .footer-logo img {
    width: 5.9375rem;
  }
}
.footer-list ul {
  align-items: center;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list li {
  line-height: 1.2;
  margin-bottom: .9375rem;
}
.footer-list a,
.footer-list a:active,
.footer-list a:visited {
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
}
.footer-list.footer-legal a {
  font-size: .9375rem;
}
.footer-list .brain {
  margin-top: .9375rem;
}
@media (hover: hover) {
  .footer-list a:focus,
  .footer-list a:hover {
    border-bottom: 1px solid #fff;
  }
}
.footer-list label {
  display: block;
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
  opacity: 0.7;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .footer-list ul {
    align-items: flex-start;
  }
  .footer-list li {
    margin-bottom: 1px;
  }
  .footer-list a {
    font-size: .9375rem;
  }
  .footer-list label {
    font-size: .9375rem;
    font-weight: 700;
    margin-bottom: .625rem;
    opacity: 1;
    text-align: left;
  }
  .footer-list.footer-legal {
    align-items: flex-end;
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .footer-list.footer-legal ul {
    flex-direction: row;
    justify-content: flex-start;
  }
  .footer-list.footer-legal ul li {
    margin-right: .9375rem;
  }
}
.footer-sns ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-sns li {
  display: block;
  line-height: 1;
  margin-right: 1.5625rem;
}
@media screen and (min-width: 980px) {
  .footer-sns ul {
    justify-content: flex-start;
  }
  .footer-sns li {
    margin-right: .9375rem;
  }
}
.languageSwitcher {
  position: relative;
  right: 3.125rem;
  top: 1rem;
}
@media screen and (min-width: 480px) {
  .languageSwitcher {
    right: 3.75rem;
    top: 1.3125rem;
  }
}
@media screen and (min-width: 1280px) {
  .languageSwitcher {
    right: 6.25rem;
  }
}
.languageSwitcher .wpml-ls-legacy-dropdown {
  max-width: 5.3125rem;
}
.languageSwitcher .wpml-ls-legacy-dropdown a {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: .8125rem;
  padding: 0;
  position: relative;
}
.languageSwitcher .wpml-ls-legacy-dropdown a:focus,
.languageSwitcher .wpml-ls-legacy-dropdown a:hover {
  background: #000;
}
@media screen and (min-width: 480px) {
  .languageSwitcher .wpml-ls-legacy-dropdown {
    max-width: 6.25rem;
  }
  .languageSwitcher .wpml-ls-legacy-dropdown a {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .languageSwitcher .wpml-ls-legacy-dropdown {
    max-width: 12.5rem;
  }
}
.languageSwitcher .wpml-ls-legacy-dropdown > ul {
  border: 0;
}
.languageSwitcher .wpml-ls-legacy-dropdown > ul > li {
  border-bottom: 1px solid #0a8afa;
}
.languageSwitcher .wpml-ls-current-language:hover a {
  background: #000;
  color: #fff;
}
.languageSwitcher a.wpml-ls-item-toggle {
  padding: 0 0 .5rem;
}
.languageSwitcher a.wpml-ls-item-toggle:after {
  background-image: url(../images/icon-dropdown-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-top: 0;
  content: "";
  height: .625rem;
  right: 1px !important;
  top: 0 !important;
  transform: rotate(0);
  transition: transform .3s ease-out;
  width: .625rem;
}
@media screen and (min-width: 480px) {
  .languageSwitcher a.wpml-ls-item-toggle {
    padding: 0 0 .625rem;
  }
  .languageSwitcher a.wpml-ls-item-toggle:after {
    height: .8125rem;
    top: .125rem !important;
    width: .8125rem;
  }
}
.languageSwitcher.show-dropdown a.wpml-ls-item-toggle:after {
  top: .3125rem !important;
  transform: rotate(180deg);
}
.languageSwitcher .wpml-ls-sub-menu {
  background: #000;
  border: 1px solid #0a8afa;
  border-radius: 0 0 .75rem .75rem;
  border-top: 0;
  padding: .9375rem .625rem .3125rem;
}
.languageSwitcher .wpml-ls-sub-menu > li {
  margin-bottom: .625rem;
}
.leaderboard {
  background-color: #fff;
  color: #000;
  min-height: 37.5rem;
  overflow: hidden;
  padding-bottom: 5.625rem;
  padding-top: 5.625rem;
}
.leaderboard b,
.leaderboard strong {
  font-weight: 500;
}
.leaderboard__table {
  border-collapse: collapse;
  overflow: hidden;
  padding: 1.875rem 0;
  width: 100%;
}
.leaderboard__table-row {
  border-bottom: .0625rem solid #000;
}
.leaderboard__table-cell {
  padding: .75rem;
  text-align: left;
}
.leaderboard__table-cell:first-child {
  padding-left: 0;
}
.leaderboard__table-cell:last-child {
  padding-right: 0;
}
.leaderboard__table-head {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  padding: .75rem;
  text-align: left;
}
.leaderboard__table-head:first-child {
  padding-left: 0;
}
.leaderboard__table-head:last-child {
  padding-right: 0;
}
.leaderboard__table .datatable-empty {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .leaderboard__table .datatable-empty {
    padding: 90px;
  }
}
.leaderboard__rank {
  font-size: 3.1875rem;
  line-height: 1;
  margin: 0;
}
.leaderboard__rank-container {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .leaderboard__rank-container {
    padding-right: 2.5rem;
  }
}
.leaderboard__logo {
  height: 3.75rem;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .leaderboard__logo {
    height: 6.25rem;
    width: 6.25rem;
  }
}
.leaderboard__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.875rem;
}
.leaderboard__dropdown {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 7.8125rem;
}
.leaderboard__dropdown-button {
  align-items: center;
  background-color: transparent;
  border: 1px solid #0a8afa;
  border-radius: .75rem;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 300;
  justify-content: space-between;
  line-height: 1;
  padding: .4375rem .625rem;
  width: 100%;
}
.leaderboard__dropdown-button-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.leaderboard__dropdown-content {
  background-color: #fff;
  border: 1px solid #0a8afa;
  border-radius: .75rem;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-sizing: border-box;
  display: flex;
  display: none;
  flex-direction: column;
  font-size: 1rem;
  height: auto;
  left: 0;
  padding: .625rem .4375rem .3125rem;
  position: absolute;
  top: calc(100% - .125rem);
  width: 100%;
  z-index: 5;
}
.leaderboard__dropdown-content-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.leaderboard__dropdown-content-group {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.leaderboard__dropdown-content-group-title {
  font-size: .9375rem;
  margin-bottom: .3125rem;
}
.leaderboard__dropdown-content-group-input {
  accent-color: #0a8afa;
  border: 1px solid #0a8afa;
}
.leaderboard__dropdown:focus .leaderboard__dropdown-button,
.leaderboard__dropdown:has(.leaderboard__dropdown-content:hover) .leaderboard__dropdown-button,
.leaderboard__dropdown:hover .leaderboard__dropdown-button {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.leaderboard__dropdown:focus .leaderboard__dropdown-content,
.leaderboard__dropdown:has(.leaderboard__dropdown-content:hover) .leaderboard__dropdown-content,
.leaderboard__dropdown:hover .leaderboard__dropdown-content {
  display: block;
}
.leaderboard__dropdown:focus .leaderboard__dropdown-button-icon,
.leaderboard__dropdown:has(.leaderboard__dropdown-content:hover) .leaderboard__dropdown-button-icon,
.leaderboard__dropdown:hover .leaderboard__dropdown-button-icon {
  rotate: 180deg;
}
@media screen and (pointer: none) {
  .leaderboard__dropdown:focus-within .leaderboard__dropdown-button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .leaderboard__dropdown:focus-within .leaderboard__dropdown-content {
    display: block;
  }
  .leaderboard__dropdown:focus-within .leaderboard__dropdown-button-icon {
    rotate: 180deg;
  }
}
.leaderboard .datatable-disabled {
  opacity: 0.5;
}
.leaderboard .datatable-container {
  overflow: hidden;
}
.leaderboard .datatable-bottom {
  padding-top: 1.5625rem;
}
.leaderboard .datatable-info {
  display: none;
}
.leaderboard .datatable-pagination-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.leaderboard .datatable-pagination-list-item {
  display: inline-block;
  margin-right: .625rem;
}
.leaderboard .datatable-pagination-list-item button {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .75rem;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 2.3125rem;
  position: relative;
  text-decoration: none;
  transition: background-color .25s ease-out;
  width: 2.3125rem;
}
.leaderboard .datatable-pagination-list-item button:hover,
.leaderboard .datatable-pagination-list-item.datatable-active button,
.leaderboard .datatable-pagination-list-item:first-child button,
.leaderboard .datatable-pagination-list-item:last-child button {
  border-color: #0a8afa;
}
.leaderboard__footer {
  padding-top: 2.5rem;
}
.container,
.section,
section {
  display: block;
  position: relative;
}
.container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 980px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.container--divider {
  padding-left: 0;
  padding-right: 0;
}
.grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 980px) {
  .grid {
    -moz-column-gap: 10px;
    column-gap: 10px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .span1 {
    grid-column: span 1;
  }
  .span2 {
    grid-column: span 2;
  }
  .span3 {
    grid-column: span 3;
  }
  .span4 {
    grid-column: span 4;
  }
  .span5 {
    grid-column: span 5;
  }
  .span6 {
    grid-column: span 6;
  }
  .span7 {
    grid-column: span 7;
  }
  .span8 {
    grid-column: span 8;
  }
  .span9 {
    grid-column: span 9;
  }
  .span10 {
    grid-column: span 10;
  }
  .span11 {
    grid-column: span 11;
  }
  .span12 {
    grid-column: span 12;
  }
}
.search .ag {
  background-color: #000;
}
.search .ag-header .h1,
.search .ag-header .leaderboard__rank {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .archive .ag-header,
  .search .ag-header {
    margin-bottom: 7.5rem;
  }
}
.page-template-page-career-listing .article,
.single-idea .article {
  background-color: #fff;
  color: #000;
}
.page-template-page-career-listing .infoHeader {
  padding-bottom: 4.6875rem;
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */ .flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}
.flickity-viewport {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.flickity-slider {
  height: 100%;
  position: absolute;
  width: 100%;
}
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.flickity-button {
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
  position: absolute;
}
.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}
.flickity-button:focus {
  box-shadow: 0 0 0 5px #19f;
  outline: none;
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  cursor: auto;
  opacity: 0.3;
  pointer-events: none;
}
.flickity-button-icon {
  fill: currentColor;
}
.flickity-prev-next-button .flickity-button-icon {
  display: none;
}
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  left: 10px;
  right: auto;
}
.flickity-prev-next-button .flickity-button-icon {
  height: 60%;
  left: 20%;
  position: absolute;
  top: 20%;
  width: 60%;
}
.theme--dark .flickity-prev-next-button {
  background: transparent;
}
.theme--dark .flickity-prev-next-button:after {
  background: url(../images/icon-arrow-white.svg) 50% no-repeat;
}
.theme--dark .flickity-prev-next-button:active:after,
.theme--dark .flickity-prev-next-button:focus:after,
.theme--dark .flickity-prev-next-button:hover:after {
  filter: invert(100%);
}
.theme--light .flickity-prev-next-button {
  background: transparent;
}
.theme--light .flickity-prev-next-button:after {
  background: url(../images/icon-arrow-white.svg) 50% no-repeat;
  filter: invert(100%);
}
.flickity-page-dots {
  bottom: -25px;
  line-height: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}
.flickity-page-dots .dot {
  background: #333;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 10px;
  margin: 0 8px;
  opacity: 0.25;
  width: 10px;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}
.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}
