/** VARIABLES **/
:root {
  --blue-0: #1a1b22;
  --blue-0-transparent: rgba(26,27,34,0);
  --blue-25: #9396aa;
  --blue-25-transparent: rgba(147,150,170,0);
  --blue-50: #5e71e9;
  --blue-50-transparent: rgba(94,113,233,0);
  --blue-75: #5c5f75;
  --blue-75-transparent: rgba(92,95,117,0);
  --blue-100: #eff1fc;
  --blue-100-transparent: rgba(239,241,252,0);
  --blue-bg: #282a34;
  --blue-bg-transparent: rgba(40,42,52,0);
  --ease-default: cubic-bezier(0.9,0,0.05,1);
  --ease-in-quad: cubic-bezier(0.55,0.085,0.68,0.53);
  --ease-in-cubic: cubic-bezier(0.55,0.055,0.675,0.19);
  --ease-in-quart: cubic-bezier(0.895,0.03,0.685,0.22);
  --ease-in-quint: cubic-bezier(0.755,0.05,0.855,0.06);
  --ease-in-expo: cubic-bezier(0.95,0.05,0.795,0.035);
  --ease-in-circ: cubic-bezier(0.6,0.04,0.98,0.335);
  --ease-out-quad: cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-out-cubic: cubic-bezier(0.215,0.61,0.355,1);
  --ease-out-quart: cubic-bezier(0.165,0.84,0.44,1);
  --ease-out-quint: cubic-bezier(0.23,1,0.32,1);
  --ease-out-expo: cubic-bezier(0.19,1,0.22,1);
  --ease-out-circ: cubic-bezier(0.075,0.82,0.165,1);
  --ease-in-out-quad: cubic-bezier(0.455,0.03,0.515,0.955);
  --ease-in-out-cubic: cubic-bezier(0.645,0.045,0.355,1);
  --ease-in-out-quart: cubic-bezier(0.77,0,0.175,1);
  --ease-in-out-quint: cubic-bezier(0.86,0,0.07,1);
  --ease-in-out-expo: cubic-bezier(1,0,0,1);
  --ease-in-out-circ: cubic-bezier(0.785,0.135,0.15,0.86);
  --gutter: max(10px,1.2rem);
  --cb-gutter: max(90px,1.2rem);
  --cb-x-gutter: 150px;
  --cb-y-gutter: 150px;
  --bg-offset: max(180px,14vw);
  --hd-height: max(7rem,60px);
  --col-white: #fff;
  --col-text: #ffffffb2;
  --col-light: var(--blue-100);
  --col-25: var(--blue-25);
  --col-accent: var(--blue-50);
  --col-75: var(--blue-75);
  --col-dark: var(--blue-0);
  --col-bg: var(--blue-bg);
  --col-fever-red: #E03A3E;
  --col-fever-blue: #002D62;
}

@media (max-width: 768px) {
  :root {
    --bg-offset: 0;
    --cb-x-gutter: 30px;
    --cb-y-gutter: 150px;
  }
}
/** GLOBAL STYLES **/
html {
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: min(12px, 0.6944444444vw);
  line-height: 1;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-style: normal;
  background-color: var(--col-dark);
  color: var(--col-light);
  overflow: hidden;
  -ms-overflow-style: none;
  transition: background-color 1s ease-in-out;
}

body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

body, html {
  width: 100%;
  min-height: 100%;
  overscroll-behavior: none;
  scroll-behavior: auto;
}

body, div, html {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

*, :after, :before {
  box-sizing: border-box;
}

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

[role=button], button {
  font-family: "Inter", sans-serif;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

[role=button], a, button {
  color: inherit;
  cursor: pointer;
  outline: none;
}

a {
  text-decoration: none;
}

/* Loader Text */
#loaderText {
  font-size: 24px;
  color: var(--col-light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 900;
  line-height: 0.96;
}

/** header **/
header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  padding: var(--gutter);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 17.5px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}
header > a {
  max-width: 40%;
}
header > a h2 {
  color: var(--col-text);
}
header > div {
  text-align: right;
  display: flex;
  align-items: center;
  flex-direction: row;
}
header > div h2 {
  white-space: nowrap;
}
header > div img {
  max-width: 40px;
  width: 100%;
}
header > div a {
  color: var(--col-fever-red);
}
@media (max-width: 480px) {
  header > div span {
    display: none;
  }
}

/** footer **/
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8;
  width: 100%;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  padding: var(--gutter);
}
@media (max-width: 923px) {
  footer {
    padding-bottom: 10px;
  }
}
@media (min-width: 768px) {
  footer {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  footer {
    padding: var(--gutter);
    background-color: var(--col-bg);
  }
}
@media (min-width: 1100px) {
  footer {
    padding-bottom: var(--gutter);
  }
}
footer .footerLeft {
  list-style: none;
  text-transform: uppercase;
  display: none;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  footer .footerLeft {
    display: flex;
  }
}
footer .footerLeft li:after {
  content: "/";
  font-family: Arial;
  font-weight: 300;
  font-size: 23px;
  font-weight: 600;
  line-height: 29px;
  padding: 0px 2px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  footer .footerLeft li:after {
    font-size: 18px;
  }
}
footer .footerLeft li:last-child:after {
  display: none;
}
footer .footerLeft li > a {
  font-family: "Inter", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 29px;
  letter-spacing: -0.6px;
  text-align: left;
  pointer-events: auto;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1300px) {
  footer .footerLeft li > a {
    font-size: 18px;
  }
}
footer .footerLeft li > a:after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: transform 0.7s var(--ease-out-expo);
  width: 100%;
  transform: scaleX(0);
  transform-origin: right center;
}
footer .footerLeft li > a:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
footer .footerLeft li.active > a {
  font-weight: 900;
}
footer .footerLeft li.active > a:after {
  background: var(--col-fever-red);
  transform: scaleX(1);
  transform-origin: left center;
}
footer .scroll {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
footer .scroll img {
  width: 25px;
  filter: drop-shadow(2px 5px 3px var(--col-bg));
}
footer .scroll img.arrows {
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
}
footer .scroll img.arrows.rotate-up {
  transform: rotate(180deg);
  animation: none;
}
@media (max-width: 768px) {
  footer .scroll img:not(.arrows) {
    display: none;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

header, footer, .scroll {
  opacity: 0;
  transition: none;
}

/** MAIN **/
main {
  overflow: hidden;
}
main section {
  height: 100vh;
  width: 100vw;
  font-family: "Inter", sans-serif;
  position: relative;
}
main section.container {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
main section .panel {
  width: 100vw;
  height: 100%;
  display: flex;
  box-sizing: border-box;
  flex: 0 0 100vw;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
@media (min-width: 480px) {
  main section .panel {
    margin-top: 0px;
  }
}
main section .panel .panel-content {
  width: calc(100% - var(--cb-x-gutter) - 70px);
  height: calc(100% - var(--cb-y-gutter) - 70px);
  background-color: var(--col-dark);
}
main section .panel .panel-content h3 {
  color: var(--col-bg);
  filter: drop-shadow(0px 0px 1px var(--col-dark));
}
@media (min-width: 992px) {
  main section .panel .panel-content h3 {
    font-size: 400px;
    margin: -55px 0 0 -25px;
  }
}
main section .contentBox {
  z-index: 2;
  background-color: var(--col-dark);
  overflow: hidden;
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - var(--cb-x-gutter));
  width: 100px;
  height: 100px;
  transform-origin: center center;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: width, transform;
}
main section .youtubePlayer {
  z-index: 2;
  background-color: var(--col-dark);
  width: calc(100% - var(--cb-x-gutter));
  height: calc(100% - var(--cb-y-gutter));
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
}
main section .youtubePlayer .responsive {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
@media (min-height: 768px) {
  main section .youtubePlayer .responsive {
    padding-bottom: 53.25%;
  }
}
main section .youtubePlayer .responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main section .introVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 3;
}
@media (min-width: 1190px) {
  main section .introVideo {
    object-fit: contain;
  }
}
main section .playVideo {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  margin-top: 10px;
}
@media (min-width: 850px) {
  main section .playVideo {
    margin-top: 0px;
  }
}
main section .playVideo .iconContainer {
  width: 60px;
  height: 60px;
}
@media (min-width: 850px) {
  main section .playVideo .iconContainer {
    width: 100px;
    height: 100px;
  }
}
main section .playVideo .iconContainer .play, main section .playVideo .iconContainer .replay {
  background-color: var(--col-fever-red);
  border-radius: 100%;
  height: 100%;
  width: 100%;
  position: relative;
}
main section .playVideo .iconContainer .play svg, main section .playVideo .iconContainer .replay svg {
  width: 68%;
  height: 100%;
  position: absolute;
  left: 19%;
  top: 0%;
  transform: translate(-50%, -50%);
  animation: scalePlay 2s infinite;
}
main section .playVideo .iconContainer .replay {
  display: none;
}
main section .playVideo .iconContainer .replay svg {
  width: 60%;
  left: 50%;
  top: 50%;
  animation: none;
}
main section .playVideo .text {
  font-size: 30px;
  font-weight: 900;
  flex: 1;
  text-align: left;
}
main section .playVideo:hover .replay svg {
  left: 20%;
  top: 0;
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%; /* IE 9 */
}
main section .playVideo.replay .iconContainer {
  width: 30px;
  height: 30px;
}
@media (min-width: 850px) {
  main section .playVideo.replay .iconContainer {
    width: 70px;
    height: 70px;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes scalePlay {
  0%, 20%, 50%, 80%, 100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.3);
  }
  60% {
    transform: scale(1.3);
  }
}
main section .skipVideo > a {
  font-size: 18px;
  color: var(--col-light);
  text-decoration: underline;
  cursor: pointer;
  background-color: var(--col-fever-red);
  font-weight: 900;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 5px 7px;
  gap: 4px;
}
main section .skipVideo > a:hover svg {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%; /* IE 9 */
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
main section .skipVideo {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: none;
}
main section #videoControls {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  display: flex;
  gap: 4px;
  flex-direction: column;
  display: none;
}
main section #videoControls button {
  color: var(--col-light);
  text-decoration: underline;
  cursor: pointer;
  background-color: var(--col-fever-red);
  text-decoration: none;
  align-items: center;
  padding: 5px 7px;
}
main section #videoControls button svg {
  width: 30px;
  height: 100%;
}
main section .sectionImage {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-size: cover;
}
main section .sectionImage.bottom {
  background-position: bottom;
}
main section .sectionImage, main section .scroll, main section .contentText {
  opacity: 0;
}
main section .contentText {
  position: relative;
  z-index: 2;
  padding: var(--gutter);
}
@media (min-width: 768px) {
  main section .contentText {
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  main section .contentText {
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  main section .contentText {
    max-width: 90%;
  }
}
main section .contentText .ctaLinks {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  main section .contentText .ctaLinks {
    flex-direction: row;
  }
}
main section .contentText .ctaLinks button, main section .contentText .ctaLinks a {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
}
main section .contentText .ctaLinks button:after, main section .contentText .ctaLinks a:after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: transform 0.7s var(--ease-out-expo);
  width: 100%;
  transform: scaleX(0);
  transform-origin: right center;
}
main section .contentText .ctaLinks button:hover:after, main section .contentText .ctaLinks a:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
main section h3 {
  opacity: 1; /* Default to visible, GSAP will handle the animation */
  transform: translateY(0); /* Default to normal position */
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 900;
  line-height: 0.96;
  line-height: 1.1;
  letter-spacing: 1px;
}
@media (min-width: 480px) {
  main section h3 {
    font-size: 90px;
  }
}
@media (min-width: 992px) {
  main section h3 {
    font-size: 100px;
  }
}
@media (min-width: 1100px) {
  main section h3 {
    font-size: 112px;
  }
}
main section h3 span.rookie {
  display: inline-flex;
  transform-origin: left center;
  overflow: hidden;
  background-color: var(--col-fever-red);
}
main section h3 em {
  padding: 0px 8px;
}
@media (min-width: 768px) {
  main section h3 em {
    padding: 0px 20px;
  }
}
@media (min-width: 1200px) {
  main section h3 span.nowrap {
    white-space: nowrap;
  }
}

#reasonsGrid.grid-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
@media (min-width: 480px) {
  #reasonsGrid.grid-section {
    padding: 0;
  }
}
#reasonsGrid .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  width: 100%;
  height: calc(100% - var(--cb-y-gutter));
  background: url("/dist/images/GettyImages-2153003503.jpg") center 10% no-repeat;
  background-size: cover;
  overflow: auto;
}
@media (min-width: 768px) and (max-width: 992px) {
  #reasonsGrid .grid-container {
    grid-template-columns: repeat(4, 1fr);
    background-size: cover;
  }
}
@media (min-width: 993px) and (max-width: 1149px) {
  #reasonsGrid .grid-container {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1150px) {
  #reasonsGrid .grid-container {
    grid-template-columns: repeat(6, 1fr);
  }
}
#reasonsGrid .reason-title-mobile-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--col-bg);
  padding: 10px 0px 20px;
  margin-top: 15px;
}
@media (min-width: 480px) {
  #reasonsGrid .reason-title-mobile-only {
    margin-top: 0px;
  }
}
#reasonsGrid .reason-title-mobile-only h3 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: 0.1px;
  color: var(--col-fever-red);
}
#reasonsGrid .reason-title-mobile-only h4 {
  position: relative;
  padding-bottom: 6px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}
#reasonsGrid .reason-title-mobile-only h4 span {
  color: var(--col-fever-red);
}
#reasonsGrid .reason-title-mobile-only h4 svg {
  position: absolute;
  left: -10px;
  bottom: -7px;
  z-index: 4;
}
#reasonsGrid .reason-title-mobile-only h4 div {
  position: relative;
  z-index: 1;
}
#reasonsGrid .reason-title-mobile-only h4::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: 2px;
  height: calc(100% + 2px);
  width: 0;
  z-index: 0;
  background-color: var(--col-fever-red);
  transition: width 0.3s;
}
@media (min-width: 768px) {
  #reasonsGrid .reason-title-mobile-only {
    display: none;
  }
}
#reasonsGrid .grid-item {
  background: rgba(26, 27, 34, 0.8);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: default;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 0.5px solid rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
  padding: 5px;
}
@media (min-height: 780px) {
  #reasonsGrid .grid-item {
    padding: 10px;
  }
}
@media (min-height: 950px) {
  #reasonsGrid .grid-item {
    padding: 20px;
  }
}
#reasonsGrid .grid-item > div {
  transition: transform 0.3s ease-in, opacity 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#reasonsGrid .grid-item.recordHover > div {
  opacity: 0.5;
}
#reasonsGrid .grid-item .numTitle {
  display: flex;
  flex-direction: row;
  text-align: left;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#reasonsGrid .grid-item h3 {
  font-size: 50px;
  color: #676976;
  transition: color 0.3s;
  letter-spacing: 0.1px;
}
@media (max-width: 768px) {
  #reasonsGrid .grid-item h3 {
    font-size: 40px;
  }
}
#reasonsGrid .grid-item h4 {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0px;
}
#reasonsGrid .grid-item h4 span {
  color: var(--col-fever-red);
}
@media (max-width: 768px) {
  #reasonsGrid .grid-item h4 {
    font-size: 16px;
  }
}
#reasonsGrid .grid-item p {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  #reasonsGrid .grid-item p {
    font-size: 15px;
  }
}
#reasonsGrid .grid-item.special {
  grid-column: 1/span 2;
  grid-row: 1/span 1;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--col-bg);
  border: none;
}
@media (min-width: 768px) {
  #reasonsGrid .grid-item.special {
    display: flex;
  }
}
#reasonsGrid .grid-item.special h3 {
  font-size: 54px;
  line-height: 1.1;
  color: var(--col-fever-red);
}
#reasonsGrid .grid-item.special h4 {
  position: relative;
  padding-bottom: 6px;
}
#reasonsGrid .grid-item.special h4 svg {
  position: absolute;
  left: -10px;
  bottom: -7px;
  z-index: 4;
}
#reasonsGrid .grid-item.special h4 div {
  position: relative;
  z-index: 1;
}
#reasonsGrid .grid-item.special h4::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: 2px;
  height: calc(100% + 2px);
  width: 0;
  z-index: 0;
  background-color: var(--col-fever-red);
  transition: width 0.3s;
}
#reasonsGrid .grid-item.special.recordHover h4 span {
  color: #fff;
}
#reasonsGrid .grid-item.special.recordHover h4::after {
  width: calc(100% + 8px);
}
#reasonsGrid .grid-item.special.recordHover > div {
  opacity: 1;
}
#reasonsGrid .grid-item.record {
  transition: background-color 0.3s, border-color 1s;
}
#reasonsGrid .grid-item.record h3 {
  color: var(--col-fever-red);
}
#reasonsGrid .grid-item.record .numTitle {
  transition: transform 0.3s, background-color 0.3s;
}
#reasonsGrid .grid-item.record.recordHover {
  background: rgba(26, 27, 34, 0.9);
  border-color: var(--col-fever-red);
}
#reasonsGrid .grid-item.record.recordHover > div {
  opacity: 1;
}
#reasonsGrid .grid-item.record.recordHover .numTitle {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  #reasonsGrid .grid-item:hover:not(.special) {
    background: rgba(244, 58, 62, 0.9);
    border-color: val(--col-fever-red);
  }
  #reasonsGrid .grid-item:hover:not(.special) > div {
    transform: scale(1.07);
  }
  #reasonsGrid .grid-item:hover:not(.special) h3 {
    font-size: 50px;
    color: var(--col-white);
  }
}

#rookieRanks .panel {
  display: flex;
  justify-content: flex-end;
}
#rookieRanks .panel .rankImage {
  height: 100vh;
  width: 50vw;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  transition: background-image 0.5s ease;
  display: none;
}
@media (min-width: 768px) {
  #rookieRanks .panel .rankImage {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  #rookieRanks .panel .rankImage {
    width: 40vw;
  }
}
#rookieRanks .panel .rankImage > div.rankNum {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  transform: translate(calc(-50% - var(--cb-x-gutter) / 2), -50%);
  color: #fff;
  text-transform: uppercase;
  z-index: 3;
  font-size: 60px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -3.36px;
  text-align: center;
}
@media (min-width: 768px) {
  #rookieRanks .panel .rankImage > div.rankNum {
    font-size: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  #rookieRanks .panel .rankImage > div.rankNum {
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1320px) {
  #rookieRanks .panel .rankImage > div.rankNum {
    font-size: 200px;
  }
}
@media (min-width: 1400px) {
  #rookieRanks .panel .rankImage > div.rankNum {
    font-size: 300px;
  }
}
#rookieRanks .panel .rankImage > div.rankNum sup {
  font-size: 40%;
}
#rookieRanks .panel .rankImage > div.rankNum .statTitle {
  flex-direction: column;
  font-size: 24px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  flex: 1;
}
#rookieRanks .panel .rankImage > div.rankNum .statTitle span {
  display: block;
  font-size: 36px;
}
#rookieRanks .panel .rankImage > div.rankNum .statTitle .subText {
  display: inline-block;
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
  padding: 10px;
  background-color: var(--col-fever-blue);
}
#rookieRanks .panel .rankImage::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50vw - var(--cb-x-gutter));
  height: 100%;
  box-sizing: border-box;
  height: calc(100% - var(--cb-y-gutter) - 70px);
  background-color: var(--col-fever-red);
  opacity: 0.5;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  #rookieRanks .panel .rankImage::after {
    height: calc(100% - var(--cb-y-gutter));
    width: calc(40vw - 40px);
  }
}
@media (min-width: 1401px) {
  #rookieRanks .panel .rankImage::after {
    width: calc(50vw - 40px);
  }
}
#rookieRanks .ranks {
  width: 100vw;
  flex: 0 0 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  align-items: start;
  height: calc(100% - var(--cb-y-gutter));
  background-color: var(--col-dark);
  padding: 0px 20px;
}
@media (min-width: 480px) {
  #rookieRanks .ranks {
    height: calc(100% - var(--cb-y-gutter));
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  #rookieRanks .ranks {
    width: 60vw;
    flex: 0 0 calc(60vw - 40px);
  }
}
@media (min-width: 1401px) {
  #rookieRanks .ranks {
    width: 50vw;
    flex: 0 0 calc(50vw - var(--cb-x-gutter) + 70px);
    padding: var(--cb-gutter);
  }
}
#rookieRanks .ranks .wIcon {
  width: 100%;
  max-width: 10px;
}
#rookieRanks .ranks > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 10px;
}
#rookieRanks .ranks > p {
  margin-top: 20px;
  font-style: italic;
}
#rookieRanks .ranks > a, #rookieRanks .ranks > p {
  display: flex;
  gap: 10px;
}
#rookieRanks .ranks > a span, #rookieRanks .ranks > p span {
  position: relative;
  line-height: 1.4;
  font-weight: 600;
}
#rookieRanks .ranks > a span:after, #rookieRanks .ranks > p span:after {
  background: var(--col-fever-red);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: transform 0.7s var(--ease-out-expo);
  width: 100%;
  transform: scaleX(0);
  transform-origin: right center;
}
#rookieRanks .ranks > a:hover span:after, #rookieRanks .ranks > p:hover span:after {
  transform: scaleX(1);
  transform-origin: left center;
}
#rookieRanks .ranks h2 {
  color: #fff;
  text-transform: uppercase;
  z-index: 3;
  font-size: 28px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 15px;
}
@media (min-width: 480px) {
  #rookieRanks .ranks h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  #rookieRanks .ranks h2 {
    font-size: 25px;
  }
}
@media (min-width: 1025px) {
  #rookieRanks .ranks h2 {
    font-size: 30px;
  }
}
@media (min-width: 1600px) {
  #rookieRanks .ranks h2 {
    font-size: 38px;
  }
}
@media (max-height: 780px) {
  #rookieRanks .ranks h2 {
    font-size: 28px;
  }
}
#rookieRanks .ranks .rank {
  display: flex;
  flex-direction: row;
  gap: 10px;
  color: #fff;
  width: 100%;
  z-index: 3;
  font-size: 24px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}
@media (min-width: 480px) {
  #rookieRanks .ranks .rank {
    font-size: 20px;
  }
}
#rookieRanks .ranks .rank > div {
  background-color: var(--col-fever-red);
  padding: 4px 12px;
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  text-align: center;
  justify-content: center;
  transition: background-color 0.5s ease;
  cursor: default;
}
@media (min-height: 780px) {
  #rookieRanks .ranks .rank > div {
    padding: 8px 12px;
  }
}
#rookieRanks .ranks .rank.active > div {
  background-color: var(--col-fever-blue);
}
#rookieRanks .ranks .rank .number {
  min-width: 70px;
}
@media (min-width: 480px) {
  #rookieRanks .ranks .rank .number {
    min-width: 70px;
  }
}
#rookieRanks .ranks .rank .statTitle {
  flex-direction: column;
  text-transform: uppercase;
  flex: 1;
  font-size: 13px;
}
@media (min-width: 480px) {
  #rookieRanks .ranks .rank .statTitle {
    font-size: 16px;
  }
}
#rookieRanks .ranks .rank .statTitle span {
  display: block;
  font-size: 19px;
}
@media (min-width: 480px) {
  #rookieRanks .ranks .rank .statTitle span {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  #rookieRanks .ranks .rank .statTitle span {
    font-size: 24px;
  }
}
#rookieRanks .ranks .rank .stat {
  font-size: 30px;
  min-width: 90px;
}
@media (min-width: 480px) {
  #rookieRanks .ranks .rank .stat {
    font-size: 32px;
    min-width: 96px;
  }
}
@media (min-width: 992px) {
  #rookieRanks .ranks .rank .stat {
    font-size: 40px;
    min-width: 107px;
  }
}
#rookieRanks .ranks .rank .stat .wIcon {
  transform: translate(3px, -11px);
}

#numbers .numbersInfograph {
  width: 100%;
  height: calc(100% - var(--cb-y-gutter));
  background-color: var(--col-dark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 1312px) {
  #numbers .numbersInfograph {
    padding: var(--gutter);
  }
}
#numbers .numbersInfograph * {
  box-sizing: border-box;
}
#numbers .numbersInfograph h3 {
  line-height: 1.1;
  letter-spacing: 0.1px;
  color: var(--col-text);
  margin-bottom: 13px;
  padding: var(--gutter) var(--gutter) 0 var(--gutter);
  font-size: 29px;
  text-align: left;
  padding: 10px 10px 0px 10px;
}
@media (min-width: 480px) {
  #numbers .numbersInfograph h3 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  #numbers .numbersInfograph h3 {
    font-size: 54px;
  }
}
@media (min-width: 1312px) {
  #numbers .numbersInfograph h3 {
    padding: 0;
  }
}
#numbers .numbersInfograph .grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
  overflow-y: auto;
  padding: 10px;
}
@media (min-width: 768px) {
  #numbers .numbersInfograph .grid-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
  }
  #numbers .numbersInfograph .grid-wrapper > div:nth-child(7) {
    font-size: 14px;
  }
}
@media (min-width: 1312px) {
  #numbers .numbersInfograph .grid-wrapper {
    overflow-y: visible;
    padding: 0;
  }
}
@media (min-width: 1500px) {
  #numbers .numbersInfograph .grid-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}
#numbers .numbersInfograph .grid-wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
#numbers .numbersInfograph .grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--col-bg);
  padding: 7px;
  border-radius: 5px;
}
@media (min-height: 780px) {
  #numbers .numbersInfograph .grid-wrapper > div {
    padding: 12px;
  }
}
#numbers .numbersInfograph .grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
#numbers .numbersInfograph .grid-wrapper > div.image {
  padding: 0px;
}
@media (max-height: 780px) {
  #numbers .numbersInfograph .grid-wrapper > div.truncate-for-height {
    display: none;
  }
}
#numbers .numbersInfograph .grid-wrapper > div .cellGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#numbers .numbersInfograph .grid-wrapper > div .cellGroup h4 {
  font-size: 30px;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  text-align: left;
  color: var(--col-fever-red);
}
#numbers .numbersInfograph .grid-wrapper > div .cellGroup h4 sup {
  font-size: 40%;
  line-height: 100%;
}
@media (min-width: 480px) {
  #numbers .numbersInfograph .grid-wrapper > div .cellGroup h4 {
    font-size: 40px;
  }
}
#numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size1 {
  font-size: 120px;
  line-height: 90px;
  letter-spacing: -3.36px;
}
@media (min-width: 480px) {
  #numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size1 {
    font-size: 200px;
    line-height: 155px;
  }
}
#numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size2 {
  font-size: 80px;
  line-height: 62px;
  letter-spacing: -3.36px;
}
@media (min-width: 480px) {
  #numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size2 {
    font-size: 140px;
    line-height: 104px;
  }
}
#numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size25 {
  font-size: 65px;
  line-height: 47px;
  letter-spacing: -3.36px;
}
@media (min-width: 480px) {
  #numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size25 {
    font-size: 110px;
    line-height: 74px;
  }
}
#numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size3 {
  font-size: 50px;
  line-height: 40px;
  letter-spacing: -2px;
}
@media (min-width: 480px) {
  #numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size3 {
    font-size: 80px;
    line-height: 64px;
  }
}
@media (max-height: 780px) {
  #numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size3.size0-for-height {
    font-size: 30px;
    line-height: 0.96;
    letter-spacing: 0;
  }
}
@media (max-height: 780px) and (min-width: 480px) {
  #numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size3.size0-for-height {
    font-size: 40px;
  }
}
#numbers .numbersInfograph .grid-wrapper > div .cellGroup h4.size4 {
  font-size: 60px;
  letter-spacing: -2px;
}
#numbers .numbersInfograph .grid-wrapper > div.red {
  background-color: var(--col-fever-red);
}
#numbers .numbersInfograph .grid-wrapper > div.red .cellGroup h4 {
  color: #fff;
}
#numbers .numbersInfograph .grid-wrapper .wide {
  grid-column: span 2;
  justify-content: flex-start;
}
#numbers .numbersInfograph .grid-wrapper .wide .cellGroup {
  flex-direction: row;
  align-items: flex-start;
}
#numbers .numbersInfograph .grid-wrapper .wide.flip .cellGroup {
  flex-direction: row-reverse;
}
#numbers .numbersInfograph .grid-wrapper .tall {
  grid-row: span 2;
}
#numbers .numbersInfograph .grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-height: 780px) {
  #numbers .numbersInfograph .grid-wrapper .big.wide-for-height {
    grid-column: span 2;
    grid-row: auto;
    justify-content: flex-start;
  }
  #numbers .numbersInfograph .grid-wrapper .big.wide-for-height .cellGroup {
    flex-direction: row;
    align-items: flex-start;
  }
}
#numbers .numbersInfograph .grid-wrapper .pullRight .cellGroup > * {
  text-align: right;
}
#numbers .numbersInfograph .grid-wrapper .showWide {
  display: none;
}
@media (min-width: 1500px) {
  #numbers .numbersInfograph .grid-wrapper .showWide {
    display: block;
  }
}

#quotes {
  overflow: auto;
}
#quotes .quote-container {
  display: flex;
  flex-direction: column;
  z-index: 2;
  background-color: var(--col-bg);
  width: calc(100% - var(--cb-x-gutter));
  height: calc(100% - var(--cb-y-gutter));
  transform: translate(-50%, -50%);
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container {
    flex-direction: row;
    height: calc(100% - var(--cb-y-gutter));
    overflow: hidden;
  }
}
#quotes .quote-container .quote-list {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container .quote-list {
    align-items: center;
    height: 100%;
  }
}
#quotes .quote-container .author-list {
  position: absolute;
  top: 56px;
  left: 0px;
  width: 100%;
  display: grid;
  background-color: rgba(1, 45, 98, 0.9803921569);
  z-index: 2;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 15px 0px;
  border-top: 1px solid var(--col-dark);
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 764px) {
  #quotes .quote-container .author-list {
    grid-template-columns: repeat(3, 1fr);
    padding: 15px;
  }
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container .author-list {
    border-top: 0;
    background-color: var(--col-dark);
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(14, auto);
    position: relative;
    background-color: transparent;
    gap: 0px;
    padding: 0px;
    margin: 0 15px 0;
    width: auto;
    top: 0;
  }
}
#quotes .quote-container .author-list button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s ease-in-out;
  transform-origin: left center;
  text-align: left;
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container .author-list button {
    font-size: 16px;
  }
}
#quotes .quote-container .author-list button img {
  max-width: 40px;
  width: 100%;
  border-radius: 100px;
}
#quotes .quote-container .author-list button.active img {
  border: 2px solid var(--col-fever-red);
}
#quotes .quote-container .quote-panel {
  background-color: var(--col-dark);
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  width: 100%;
}
#quotes .quote-container .quote-panel .quote-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  overflow: auto;
  width: 100%;
}
@media (max-width: 1320px) {
  #quotes .quote-container .quote-panel .quote-content {
    max-width: 768px;
  }
}
#quotes .quote-container .quote-panel .quote-content #quote-text {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
  width: 90%;
  font-weight: 600;
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container .quote-panel .quote-content #quote-text {
    width: 70%;
    font-size: 30px;
    line-height: 36px;
  }
}
#quotes .quote-container .quote-panel .quote-content #quote-text div {
  margin-top: 25px;
  padding-top: 25px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  position: relative;
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container .quote-panel .quote-content #quote-text div {
    font-size: 26.5px;
    line-height: 30px;
  }
}
#quotes .quote-container .quote-panel .quote-content #quote-text div::before {
  position: absolute;
  background-color: var(--col-fever-red);
  height: 2px;
  width: 120px;
  content: "";
  top: 0px;
  left: 50%;
  margin-left: -60px;
}
#quotes .quote-container .quote-panel .quote-content #quote-text a {
  color: var(--col-fever-red);
  font-weight: 600;
  font-size: 0.7em;
}
#quotes .quote-container .quote-panel .quote-content #quote-text a svg {
  margin-left: 5px;
}
#quotes .quote-container .quote-panel .quote-content.long {
  justify-content: flex-start;
  padding-top: 15px;
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container .quote-panel .quote-content.long {
    justify-content: center;
  }
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container .quote-panel .quote-content.long #quote-text {
    font-size: 21px;
    line-height: 30px;
  }
}
#quotes .quote-container .quote-panel #quote-image {
  max-width: 90px;
  width: 100%;
  height: auto;
  border-radius: 100px;
  margin-bottom: 30px;
  margin-top: 20px;
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container .quote-panel #quote-image {
    max-width: 180px;
    margin-bottom: 40px;
    margin-top: 0px;
  }
}
#quotes .quote-container .quote-panel .mobile-current {
  display: flex;
  justify-content: space-between;
  background-color: var(--col-fever-blue);
  width: 100%;
}
@media screen and (min-width: 1320px) {
  #quotes .quote-container .quote-panel .mobile-current {
    display: none;
  }
}
#quotes .quote-container .quote-panel .mobile-current button {
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.3s ease-in-out;
  transform-origin: left center;
  text-align: left;
}
#quotes .quote-container .quote-panel .mobile-current button img {
  max-width: 40px;
  width: 100%;
  border-radius: 100px;
}
#quotes .quote-container .quote-panel .mobile-current button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/*# sourceMappingURL=styles.css.map */
