/*
This file is the entry point for the SCSS files.
It imports all the other SCSS files excluding the tokens file which is imported directly into files that need it.
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

button {
  background: none;
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
  font-size: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

a,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
  outline: none;
}

body,
html {
  color: #f6f6f6;
  background-color: #0d1226;
  overflow-x: hidden;
}

.page-wrapper {
  padding-top: 6rem;
}

:target {
  scroll-margin-top: 6rem;
}

:root {
  font-size: 16px;
}

html,
body {
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  font-family: "Stack Sans Text", sans-serif;
  font-size: clamp(1.728rem, 1.56rem + 0.8vw, 2.15rem);
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  h1 {
    font-size: clamp(2.488rem, 2.12rem + 1.63vw, 3.05rem);
  }
}

h2 {
  font-family: "Stack Sans Text", sans-serif;
  font-size: clamp(1.728rem, 1.56rem + 0.8vw, 2.15rem);
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-family: "Red Hat Text", sans-serif;
  font-size: clamp(1.2rem, 1.12rem + 0.34vw, 1.375rem);
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  h3 {
    font-size: clamp(1.44rem, 1.3rem + 0.53vw, 1.72rem);
  }
}

h4 {
  font-size: clamp(1.2rem, 1.12rem + 0.34vw, 1.375rem);
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

p {
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  p.large {
    line-height: 1.5;
    font-size: clamp(1.2rem, 1.12rem + 0.34vw, 1.375rem);
  }
}

blockquote {
  font-family: "Red Hat Text", sans-serif;
  font-size: clamp(1.44rem, 1.3rem + 0.53vw, 1.72rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}

input,
textarea {
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
}

ul li::marker {
  font-size: 0.8em;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.container--full {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .container--full {
    padding-left: 3.4rem;
    padding-right: 3.4rem;
  }
}
.container--padded {
  padding: 1rem;
}
.container--padded-full {
  padding: 2rem;
}
@media (min-width: 768px) {
  .container--padded-full {
    padding: 3.4rem;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1352px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1920px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.card-group--three {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .card-group--three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-group--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card-group--four {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .card-group--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-group--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bg--dark {
  background-color: #0d1226;
  color: #f6f6f6;
}
.bg--dark p {
  color: rgba(246, 246, 246, 0.7);
}

.bg--light {
  background-color: #f6f6f6;
  color: #0d1226;
}
.bg--light p {
  color: rgba(13, 18, 38, 0.7);
}

.home {
  /* -----------------------------------
   Hero
  ----------------------------------- */
  /* -----------------------------------
   Markets
  ----------------------------------- */
  /* -----------------------------------
      Spotlight
  ----------------------------------- */
  /* -----------------------------------
      Highlights
  ----------------------------------- */
  /* -----------------------------------
   Case Study
  ----------------------------------- */
  /* -----------------------------------
   Related Content
  ----------------------------------- */
  /* -----------------------------------
   Testimonials
  ----------------------------------- */
  /* -----------------------------------
    Recent Posts
  ----------------------------------- */
}
.home .hero {
  height: 100vh;
  position: relative;
  margin-top: -6rem;
  overflow: hidden;
  display: flex;
  align-items: end;
  background-color: #0d1226;
}
.home .hero__slider {
  width: 100%;
  height: 50%;
  z-index: 1;
}
@media (min-width: 768px) {
  .home .hero__slider {
    height: 100%;
  }
}
.home .hero__slider .slick-list,
.home .hero__slider .slick-track {
  height: 100%;
}
.home .hero__slider .hero__slide {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}
.home .hero__content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #0d1226;
  background: linear-gradient(180deg, rgb(13, 18, 38) 20%, rgb(0, 0, 128) 45%, rgba(255, 255, 255, 0) 75%);
  padding-top: 10rem;
  text-align: center;
}
@media (min-width: 768px) {
  .home .hero__content {
    background: linear-gradient(180deg, rgb(13, 18, 38) 20%, rgb(0, 0, 128) 40%, rgba(255, 255, 255, 0) 75%);
  }
}
.home .hero__content .hero__heading {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .home .hero__content .hero__heading {
    max-width: 800px;
  }
}
.home .hero__content .hero__subheading {
  color: rgba(246, 246, 246, 0.7);
  text-wrap: balance;
  margin-bottom: 3rem;
}
.home .markets__list.mobile-only {
  display: block;
}
@media (min-width: 768px) {
  .home .markets__list.mobile-only {
    display: none;
  }
}
.home .markets__list.mobile-only .card-group__item {
  margin-left: 1rem;
}
.home .markets__list.mobile-only .slick-slide {
  height: auto !important;
}
.home .markets__list.mobile-only .slick-track {
  display: flex !important;
}
.home .markets__list.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .home .markets__list.desktop-only {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .home .markets__list.desktop-only {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.home .case-study__label {
  color: #e61d25;
}
.home .case-study .lead__heading {
  width: 100%;
}
@media (min-width: 1024px) {
  .home .case-study .lead__heading {
    width: 60%;
  }
}
.home .related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .home .related-content {
    padding-bottom: 2rem;
    flex-direction: row;
    align-items: stretch;
  }
}
.home .testimonials {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 1024px) {
  .home .testimonials {
    flex: 1 1 65%;
    min-width: 0;
    height: 100%;
    overflow: visible;
  }
}
.home .testimonials .slick-list {
  height: 100% !important;
}
.home .testimonials .slick-track {
  height: 100% !important;
}
.home .testimonials__carousel {
  background: linear-gradient(45deg, rgb(13, 18, 38) 0%, rgb(0, 0, 128) 100%);
  padding: 1rem 1rem;
  border-radius: 0.4rem;
  box-shadow: 0 0 39px -2px rgba(13, 18, 38, 0.6);
  color: #f6f6f6;
  min-height: 300px;
}
@media (min-width: 1024px) {
  .home .testimonials__carousel {
    padding: 4rem 3rem;
  }
}
.home .testimonials__carousel-item {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  flex: 1;
}
.home .testimonials__quote {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .home .testimonials__quote {
    max-width: 80%;
  }
}
.home .testimonials__author {
  color: rgba(246, 246, 246, 0.7);
}
@media (min-width: 1024px) {
  .home .testimonials__custom-arrow {
    position: absolute;
    bottom: -40px;
    z-index: 100;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }
  .home .testimonials__custom-arrow:hover {
    opacity: 0.25;
  }
  .home .testimonials__custom-arrow.item__icon--left {
    left: 5%;
    transform: translateX(-120%) rotate(0deg);
  }
  .home .testimonials__custom-arrow.item__icon--right {
    left: 5%;
    transform: translateX(20%) rotate(180deg);
  }
}
@media (min-width: 1024px) {
  .home .recent-posts {
    flex: 1 1 35%;
    min-width: 0;
  }
}
.home .recent-posts__title {
  font-weight: 600;
  color: #f6f6f6;
}
.home .recent-posts__excerpt {
  color: #f6f6f6;
}
.home .recent-posts__carousel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home .recent-posts__link {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  border-radius: 0.4rem;
  background-color: #0d1226;
  height: 6rem !important;
  margin-bottom: 1rem;
  border: 2px solid transparent;
}
.home .recent-posts__link:hover {
  border: 2px solid red;
}
.home .recent-posts__image-wrapper {
  height: 100%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  display: flex;
  padding: 0.4rem;
}
.home .recent-posts__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0.2rem;
}
.home .recent-posts__content {
  padding: 0 1rem;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.home .recent-posts__heading-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center !important;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.home .recent-posts__heading {
  color: rgba(13, 18, 38, 0.7);
  font-weight: 500;
  margin-bottom: 0;
}
.home .recent-posts__arrow-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}
.home .recent-posts__custom-arrow {
  position: relative;
  z-index: 100;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.home .recent-posts__custom-arrow.item__icon--up {
  transform: rotate(90deg);
}
.home .recent-posts__custom-arrow.item__icon--down {
  transform: rotate(270deg);
}
.home .recent-posts__custom-arrow:hover {
  opacity: 0.25;
}
.home .lead__heading {
  max-width: 100% !important;
}
.home .card__title {
  font-family: "Stack Sans Text", sans-serif;
  font-weight: 300;
  font-size: clamp(1.44rem, 1.3rem + 0.53vw, 1.72rem);
}
@media (min-width: 1024px) {
  .home .card__title {
    font-size: clamp(1.44rem, 1.3rem + 0.53vw, 1.72rem);
  }
}

.remarkable {
  /* -----------------------------------
  Hero
  ----------------------------------- */
  /* -----------------------------------
  Insights
  ----------------------------------- */
  /* -----------------------------------
  Testimonials
  ----------------------------------- */
}
.remarkable .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0d1226;
  width: 100%;
}
.remarkable .hero__content {
  width: 100%;
  background: linear-gradient(180deg, #0d1226 20%, #000080 100%);
  padding-top: 10rem;
  text-align: center;
}
.remarkable .hero__heading {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .remarkable .hero__heading {
    max-width: 800px;
  }
}
.remarkable .hero__subheading {
  color: rgba(246, 246, 246, 0.7);
  text-wrap: balance;
  margin-bottom: 3rem;
}
.remarkable .hero__btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .remarkable .hero__btn-group {
    margin-bottom: 6rem;
  }
}
.remarkable .hero__video {
  position: relative;
  width: 100%;
  height: 50vw;
  overflow: hidden;
  margin-bottom: -3rem;
  border-radius: 0.8rem;
  border: double 2px transparent;
  background-image: linear-gradient(45deg, rgb(13, 18, 38) 0%, rgb(0, 0, 128) 100%), linear-gradient(to bottom, white, #0d1226);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
@media (min-width: 1024px) {
  .remarkable .hero__video {
    margin-bottom: -6rem;
  }
}
.remarkable .hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.remarkable .insights {
  padding-top: 5rem;
  background-color: #0d1226;
}
@media (min-width: 1024px) {
  .remarkable .insights {
    padding-top: 12rem;
  }
}
.remarkable .insights__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.remarkable .insights__details .insights__details-description {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .remarkable .insights__details .insights__details-description {
    margin-bottom: 4rem;
    max-width: 60%;
  }
}
.remarkable .insights__toggle-tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
.remarkable .insights__toggle-tab {
  font-size: 16px;
  font-weight: 500;
  color: #f6f6f6;
  opacity: 0.25;
}
@media (min-width: 768px) {
  .remarkable .insights__toggle-tab {
    font-size: clamp(1.2rem, 1.12rem + 0.34vw, 1.375rem);
  }
}
.remarkable .insights__toggle-tab.active {
  color: #f6f6f6;
  opacity: 1;
}
.remarkable .insights__toggle-card {
  display: none;
}
.remarkable .insights__toggle-card.active {
  display: block;
}
.remarkable .insights__highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .remarkable .insights__highlights {
    padding-bottom: 6rem;
  }
}
.remarkable .insights__highlights-heading {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 100%;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .remarkable .insights__highlights-heading {
    max-width: 70%;
  }
}
@media (min-width: 1352px) {
  .remarkable .insights__highlights-heading {
    max-width: 50%;
  }
}
.remarkable .highlights__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .remarkable .highlights__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .remarkable .highlights__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.remarkable .market-features .lead__heading {
  margin-bottom: 3rem !important;
}
.remarkable .testimonials {
  align-items: center;
  background-color: #0d1226;
  padding-bottom: 4rem;
}
.remarkable .testimonials__heading {
  margin-bottom: 2rem;
  text-align: center;
  text-wrap: balance;
}
.remarkable .testimonials__icon-group {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 4rem;
}
.remarkable .testimonials__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 350px;
  gap: 1rem;
}
@media (min-width: 768px) {
  .remarkable .testimonials__list {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 350px;
  }
}
@media (min-width: 1024px) {
  .remarkable .testimonials__list {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
  }
}
.remarkable .testimonials__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #f6f6f6;
  border-radius: 0.4rem;
  height: 100%;
  order: 0;
  border: double 2px transparent;
}
@media (min-width: 768px) {
  .remarkable .testimonials__item:nth-child(3) {
    order: 2;
  }
  .remarkable .testimonials__item:nth-child(4) {
    order: 1;
  }
}
.remarkable .testimonials__item .testimonials__item-content {
  padding: 1rem;
}
@media (min-width: 1024px) {
  .remarkable .testimonials__item .testimonials__item-content {
    padding: 2rem;
  }
}
.remarkable .testimonials__item--quote {
  background-image: linear-gradient(45deg, rgb(13, 18, 38) 0%, rgb(0, 0, 128) 100%), linear-gradient(to bottom, white, #0d1226);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.remarkable .testimonials__item--metric {
  background-image: linear-gradient(45deg, rgb(13, 18, 38) 0%, rgb(13, 18, 38) 100%), linear-gradient(to bottom, white, #0d1226);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
@media (min-width: 1024px) {
  .remarkable .testimonials__item--quote {
    grid-column: span 2;
  }
}
.remarkable .testimonials__quote {
  margin-bottom: 1rem;
}
.remarkable .testimonials__author {
  color: rgba(246, 246, 246, 0.7);
}
.remarkable .testimonials__metric-number {
  font-family: "Stack Sans Text", sans-serif;
  line-height: 1;
  font-size: 100px;
  margin-bottom: 1rem;
}
.remarkable .testimonials__metric-text {
  color: rgba(246, 246, 246, 0.7);
}
.remarkable .product-card__image img {
  border-top-left-radius: 0.6rem;
}

.broadcast {
  /* -----------------------------------
   Hero
  ----------------------------------- */
}
.broadcast .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #0d1226;
  width: 100%;
  background: linear-gradient(180deg, #0d1226 20%, #000080 100%);
}
@media (min-width: 1024px) {
  .broadcast .hero {
    height: 100%;
  }
}
.broadcast .hero__content {
  width: 100%;
  padding-top: 10rem;
  text-align: center;
}
.broadcast .hero__heading {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .broadcast .hero__heading {
    max-width: 800px;
  }
}
.broadcast .hero__subheading {
  color: rgba(246, 246, 246, 0.7);
  text-wrap: balance;
  margin-bottom: 3rem;
}
.broadcast .hero__btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .broadcast .hero__btn-group {
    margin-bottom: 6rem;
  }
}
.broadcast .hero__image {
  position: relative;
  height: auto;
  margin-bottom: -3rem;
}
.broadcast .hero__image img {
  width: auto;
  max-width: none;
  height: 200px;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (min-width: 1024px) {
  .broadcast .hero__image img {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .broadcast .hero__image {
    margin-bottom: -6rem;
  }
}
.broadcast .spotlight {
  padding-top: 6rem;
}
@media (min-width: 1024px) {
  .broadcast .spotlight {
    padding-top: 12rem;
  }
}
.broadcast .product-card__image {
  padding-bottom: 1rem;
}
.broadcast .product-card__image img {
  border-radius: 0.6rem;
}

.sports-betting-fantasy {
  /* -----------------------------------
      Hero
  ----------------------------------- */
}
.sports-betting-fantasy .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #0d1226;
  width: 100%;
  background: linear-gradient(180deg, #0d1226 20%, #000080 100%);
}
.sports-betting-fantasy .hero__content {
  width: 100%;
  padding-top: 10rem;
  text-align: center;
}
.sports-betting-fantasy .hero__heading {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .sports-betting-fantasy .hero__heading {
    max-width: 800px;
  }
}
.sports-betting-fantasy .hero__subheading {
  color: rgba(246, 246, 246, 0.7);
  text-wrap: balance;
  margin-bottom: 3rem;
}
.sports-betting-fantasy .hero__btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .sports-betting-fantasy .hero__btn-group {
    margin-bottom: 6rem;
  }
}
.sports-betting-fantasy .hero__image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: -3rem;
}
.sports-betting-fantasy .hero__image img {
  width: auto;
  max-width: none;
  height: 200px;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (min-width: 1024px) {
  .sports-betting-fantasy .hero__image img {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .sports-betting-fantasy .hero__image {
    margin-bottom: -6rem;
  }
}
.sports-betting-fantasy .spotlight {
  padding-top: 6rem;
}
.sports-betting-fantasy .spotlight .product-card__image {
  padding-top: 0rem !important;
}
@media (min-width: 1024px) {
  .sports-betting-fantasy .spotlight {
    padding-top: 12rem;
  }
}

.social-digital {
  /* -----------------------------------
      Hero
  ----------------------------------- */
}
.social-digital .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #0d1226;
  width: 100%;
  background: linear-gradient(180deg, #0d1226 20%, #000080 100%);
}
@media (min-width: 1024px) {
  .social-digital .hero {
    height: 100%;
  }
}
.social-digital .hero__content {
  width: 100%;
  padding-top: 10rem;
  text-align: center;
}
.social-digital .hero__heading {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .social-digital .hero__heading {
    max-width: 800px;
  }
}
.social-digital .hero__subheading {
  color: rgba(246, 246, 246, 0.7);
  text-wrap: balance;
  margin-bottom: 3rem;
}
.social-digital .hero__btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .social-digital .hero__btn-group {
    margin-bottom: 6rem;
  }
}
.social-digital .hero__image {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: -3rem;
}
.social-digital .hero__image img {
  width: auto;
  max-width: none;
  height: 200px;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (min-width: 1024px) {
  .social-digital .hero__image img {
    height: 450px;
  }
}
@media (min-width: 1024px) {
  .social-digital .hero__image {
    margin-bottom: -6rem;
  }
}
.social-digital .spotlight {
  padding-top: 6rem;
}
.social-digital .spotlight .product-card__image {
  padding-top: 0rem !important;
}
@media (min-width: 1024px) {
  .social-digital .spotlight {
    padding-top: 12rem;
  }
}

.teams-leagues {
  /* -----------------------------------
   Hero
  ----------------------------------- */
  /* -----------------------------------
      Market Solutions
  ----------------------------------- */
}
.teams-leagues .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #0d1226;
  width: 100%;
  background: linear-gradient(180deg, #0d1226 20%, #000080 100%);
}
@media (min-width: 1024px) {
  .teams-leagues .hero {
    height: 100%;
  }
}
.teams-leagues .hero__content {
  width: 100%;
  padding-top: 10rem;
  text-align: center;
}
.teams-leagues .hero__heading {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .teams-leagues .hero__heading {
    max-width: 800px;
  }
}
.teams-leagues .hero__subheading {
  color: rgba(246, 246, 246, 0.7);
  text-wrap: balance;
  margin-bottom: 3rem;
}
.teams-leagues .hero__btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .teams-leagues .hero__btn-group {
    margin-bottom: 6rem;
  }
}
.teams-leagues .hero__image {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: -3rem;
}
.teams-leagues .hero__image img {
  width: auto;
  max-width: none;
  height: 200px;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (min-width: 1024px) {
  .teams-leagues .hero__image img {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .teams-leagues .hero__image {
    margin-bottom: -6rem;
  }
}
.teams-leagues .spotlight {
  padding-top: 6rem;
}
@media (min-width: 1024px) {
  .teams-leagues .spotlight {
    padding-top: 12rem;
  }
}
.teams-leagues .market-clubs {
  display: flex;
  align-items: center;
  position: relative;
}
.teams-leagues .market-clubs__background {
  position: relative;
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .teams-leagues .market-clubs__background {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.teams-leagues .market-clubs__heading {
  position: absolute;
  top: 2rem;
  z-index: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .teams-leagues .market-clubs__heading {
    text-wrap: balance;
    left: 50%;
    transform: translateX(-50%);
    top: 4rem;
    max-width: 50%;
  }
}
.teams-leagues .market-solutions {
  background-color: #0d1226;
}
.teams-leagues .market-solutions__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .teams-leagues .market-solutions__content {
    justify-content: center;
    flex-direction: row-reverse;
    justify-content: center;
  }
}
.teams-leagues .market-solutions__image {
  display: flex;
  margin-bottom: 2rem;
  background-color: #f6f6f6;
  border-radius: 0.6rem;
  border: 2px solid #df00ff;
  overflow: hidden;
  aspect-ratio: 16/9;
  height: 200px;
}
@media (min-width: 768px) {
  .teams-leagues .market-solutions__image {
    height: 300px;
    flex: 1 40%;
    margin-bottom: 0;
  }
}
.teams-leagues .market-solutions__image img {
  padding-top: 1rem;
  padding-left: 1rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}
.teams-leagues .market-solutions__main {
  display: flex;
  flex-direction: column;
  height: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .teams-leagues .market-solutions__main {
    flex: 1 1 60%;
    text-align: left;
    padding-right: 3rem;
  }
}
.teams-leagues .market-solutions__main-heading {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .teams-leagues .market-solutions__main-heading {
    margin-bottom: 1rem;
  }
}
.teams-leagues .market-solutions__main-text {
  margin-bottom: 2rem;
  color: rgba(246, 246, 246, 0.7);
}
@media (min-width: 768px) {
  .teams-leagues .market-solutions__main-text {
    margin-bottom: 3rem;
  }
}
.teams-leagues .market-solutions__features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .teams-leagues .market-solutions__features-list {
    flex-direction: row;
    gap: 3rem;
  }
}
.teams-leagues .market-solutions__features-item-heading {
  margin-bottom: 0.4rem;
}
.teams-leagues .market-solutions__features-item-text {
  color: rgba(246, 246, 246, 0.7);
}
.teams-leagues .toggle {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .teams-leagues .toggle {
    margin-top: 4rem;
  }
}
@media (min-width: 768px) {
  .teams-leagues .toggle__tabs {
    justify-content: flex-start;
    align-items: baseline;
  }
}
.teams-leagues .spotlight .product-card__image {
  padding-top: 0rem !important;
}
.teams-leagues .product-card__list-item {
  text-wrap: unset !important;
}

.high-school-college {
  /* -----------------------------------
      Hero
  ----------------------------------- */
  /* -----------------------------------
      Product Features
  ----------------------------------- */
}
.high-school-college .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0d1226;
  width: 100%;
}
.high-school-college .hero__content {
  width: 100%;
  background: linear-gradient(180deg, #0d1226 20%, #000080 100%);
  padding-top: 10rem;
  text-align: center;
}
.high-school-college .hero__heading {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .high-school-college .hero__heading {
    max-width: 1000px;
  }
}
.high-school-college .hero__subheading {
  color: rgba(246, 246, 246, 0.7);
  text-wrap: balance;
  margin-bottom: 3rem;
}
.high-school-college .hero__btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .high-school-college .hero__btn-group {
    margin-bottom: 6rem;
  }
}
.high-school-college .hero__video {
  position: relative;
  width: 100%;
  height: 50vw;
  overflow: hidden;
  margin-bottom: -3rem;
  border-radius: 0.8rem;
  border: double 2px transparent;
  z-index: 10;
  background-image: linear-gradient(45deg, rgb(13, 18, 38) 0%, rgb(0, 0, 128) 100%), linear-gradient(to bottom, white, #0d1226);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
@media (min-width: 1024px) {
  .high-school-college .hero__video {
    margin-bottom: -6rem;
  }
}
.high-school-college .hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.high-school-college .market-overview {
  background-color: #0d1226;
}
.high-school-college .key-features .lead__heading {
  margin-bottom: 3rem;
}
.high-school-college .product-features {
  color: #f6f6f6;
  background-color: #0d1226;
}
.high-school-college .product-features__overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .high-school-college .product-features__overview {
    text-align: left;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .high-school-college .product-features__overview-content {
    flex: 1 1 50%;
    padding-right: 6rem;
  }
}
.high-school-college .product-features__overview-heading {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .high-school-college .product-features__overview-heading {
    max-width: 80%;
    text-wrap: balance;
  }
}
.high-school-college .product-features__overview-text {
  color: rgba(246, 246, 246, 0.7);
}
.high-school-college .product-features__overview-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 5rem;
  margin: 0 -3rem 0 -3rem;
  margin-bottom: 2rem;
  gap: 0.4rem;
}
@media (min-width: 768px) {
  .high-school-college .product-features__overview-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    flex: 1 1 40%;
    margin: 0 0 0 0;
    padding-right: 2rem;
  }
}
.high-school-college .product-features__overview-image {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.6rem;
}
@media (min-width: 768px) {
  .high-school-college .product-features__overview-image:nth-child(even) {
    transform: translateY(-15%);
  }
}
.high-school-college .product-overview {
  padding-top: 3rem;
  background-color: #0d1226;
}
@media (min-width: 1024px) {
  .high-school-college .product-overview {
    padding-top: 6rem;
  }
}
.high-school-college .product-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .high-school-college .product-details {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.high-school-college .product-details--strategy {
  background-color: #0d1226;
}
.high-school-college .product-details--social {
  background-color: #0d1226;
  padding-top: 0;
}
.high-school-college .product-details--digital .product-details__heading {
  color: #0d1226;
}
.high-school-college .product-details--digital .product-details__description {
  color: rgba(13, 18, 38, 0.7);
}
.high-school-college .product-details__heading {
  margin-bottom: 1rem;
  text-wrap: balance;
  text-align: center;
}
@media (min-width: 768px) {
  .high-school-college .product-details__heading {
    max-width: 50%;
  }
}
.high-school-college .product-details__description {
  color: rgba(246, 246, 246, 0.7);
  text-wrap: balance;
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .high-school-college .product-details__description {
    max-width: 70%;
  }
}
@media (min-width: 1024px) {
  .high-school-college .product-details__description {
    max-width: 60%;
  }
}
.high-school-college .product-details__list {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .high-school-college .product-details__list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .high-school-college .product-details__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.high-school-college .insights__highlights {
  background-color: #0d1226;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .high-school-college .insights__highlights {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.high-school-college .insights__highlights-heading {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 100%;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .high-school-college .insights__highlights-heading {
    max-width: 70%;
  }
}
@media (min-width: 1352px) {
  .high-school-college .insights__highlights-heading {
    max-width: 50%;
  }
}
.high-school-college .highlights__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .high-school-college .highlights__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .high-school-college .highlights__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.our-edge {
  /* -----------------------------------
      Hero
  ----------------------------------- */
  /* -----------------------------------
      Product Features
  ----------------------------------- */
  /* -----------------------------------
      Timeline
  ----------------------------------- */
  /* -----------------------------------
      Partners
  ----------------------------------- */
  /* -----------------------------------
      News & Press
  ----------------------------------- */
}
.our-edge .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0d1226;
  width: 100%;
}
.our-edge .hero__content {
  width: 100%;
  background: linear-gradient(180deg, #0d1226 20%, #000080 100%);
  padding-top: 10rem;
  text-align: center;
}
.our-edge .hero__heading {
  margin-bottom: 3rem;
}
.our-edge .hero__subheading {
  text-wrap: balance;
  margin-bottom: 3rem;
}
.our-edge .hero__btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .our-edge .hero__btn-group {
    margin-bottom: 6rem;
  }
}
.our-edge .hero__video {
  position: relative;
  width: 100%;
  height: 50vw;
  overflow: hidden;
  margin-bottom: -3rem;
  border-radius: 0.8rem;
  border: double 2px transparent;
  z-index: 10;
  background-image: linear-gradient(45deg, rgb(13, 18, 38) 0%, rgb(0, 0, 128) 100%), linear-gradient(to bottom, white, #0d1226);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
@media (min-width: 1024px) {
  .our-edge .hero__video {
    margin-bottom: -6rem;
  }
}
.our-edge .hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.our-edge .product-features {
  color: #f6f6f6;
  background-color: #0d1226;
}
.our-edge .product-features__overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .our-edge .product-features__overview {
    text-align: left;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .our-edge .product-features__overview-content {
    flex: 1 1 50%;
    padding-right: 6rem;
  }
}
.our-edge .product-features__overview-heading {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .our-edge .product-features__overview-heading {
    max-width: 80%;
    text-wrap: balance;
  }
}
.our-edge .product-features__overview-text {
  color: rgba(246, 246, 246, 0.7);
}
.our-edge .product-features__overview-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 5rem;
  margin: 0 -3rem 0 -3rem;
  margin-bottom: 2rem;
  gap: 0.4rem;
}
@media (min-width: 768px) {
  .our-edge .product-features__overview-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    flex: 1 1 40%;
    margin: 0 0 0 0;
    padding-right: 2rem;
  }
}
.our-edge .product-features__overview-image {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.6rem;
}
@media (min-width: 768px) {
  .our-edge .product-features__overview-image:nth-child(even) {
    transform: translateY(-15%);
  }
}
.our-edge .product-overview {
  padding-top: 3rem;
  background-color: #0d1226;
}
@media (min-width: 1024px) {
  .our-edge .product-overview {
    padding-top: 6rem;
  }
}
.our-edge .product-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .our-edge .product-details {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.our-edge .product-details--strategy {
  background-color: #0d1226;
}
.our-edge .product-details--social {
  background-color: #0d1226;
  padding-top: 0;
}
.our-edge .product-details--digital .product-details__heading {
  color: #0d1226;
}
.our-edge .product-details--digital .product-details__description {
  color: rgba(13, 18, 38, 0.7);
}
.our-edge .product-details__heading {
  margin-bottom: 1rem;
  text-wrap: balance;
  text-align: center;
}
@media (min-width: 768px) {
  .our-edge .product-details__heading {
    max-width: 50%;
  }
}
.our-edge .product-details__description {
  color: rgba(246, 246, 246, 0.7);
  text-wrap: balance;
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .our-edge .product-details__description {
    max-width: 70%;
  }
}
@media (min-width: 1024px) {
  .our-edge .product-details__description {
    max-width: 60%;
  }
}
.our-edge .product-details__list {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .our-edge .product-details__list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .our-edge .product-details__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.our-edge .insights__highlights {
  background-color: #0d1226;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .our-edge .insights__highlights {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.our-edge .insights__highlights-heading {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 100%;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .our-edge .insights__highlights-heading {
    max-width: 70%;
  }
}
@media (min-width: 1352px) {
  .our-edge .insights__highlights-heading {
    max-width: 50%;
  }
}
.our-edge .highlights__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .our-edge .highlights__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .our-edge .highlights__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .our-edge .timeline {
    padding-bottom: 8rem;
  }
}
.our-edge .timeline__heading {
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .our-edge .timeline__heading {
    text-align: left;
  }
}
.our-edge .timeline__subtext {
  color: rgba(246, 246, 246, 0.7);
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .our-edge .timeline__subtext {
    text-align: left;
    max-width: 75%;
  }
}
.our-edge .timeline__heading, .our-edge .timeline__subtext {
  position: relative;
  z-index: 10;
}
.our-edge .timeline__item {
  position: relative;
  flex: 0 0 250px;
  border-top: 2px solid #e61d25;
  padding-right: 2rem;
}
.our-edge .timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-color: #e61d25;
  border-radius: 50%;
}
.our-edge .timeline__item-content {
  padding-top: 2rem;
}
.our-edge .timeline__item-text {
  max-width: 300px;
  color: rgba(246, 246, 246, 0.7);
}
.our-edge .timeline__item-year {
  margin-bottom: 0.6rem;
}
.our-edge .timeline .timeline__pin-container {
  position: relative;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .our-edge .timeline .timeline__pin-container {
    padding-left: 3.4rem;
  }
}
.our-edge .timeline .slick-track {
  padding: 1rem 0;
}
.our-edge .timeline .slick-arrows {
  position: absolute;
  bottom: -40px;
  left: 7%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  z-index: 10;
}
.our-edge .timeline__custom-arrow {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.our-edge .timeline__custom-arrow:hover {
  opacity: 0.25;
}
.our-edge .timeline .slick-slide {
  margin: 0;
}
.our-edge .timeline .slick-list {
  margin: 0;
}
.our-edge .timeline .slick-track {
  display: flex;
}
.our-edge .partners {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .our-edge .partners {
    padding-top: 6rem;
  }
}
.our-edge .partners__heading {
  max-width: 75%;
  text-align: center;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  margin-bottom: 3rem;
}
.our-edge .partners__carousel {
  padding: 2rem 0 2rem 0;
  background: linear-gradient(90deg, #000080 0%, rgba(0, 0, 128, 0) 35%, rgba(0, 0, 128, 0) 75%, #000080 100%);
}
.our-edge .partners__item {
  margin: 0 1rem;
  flex: 0 0 auto;
}
.our-edge .partners__item img {
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.our-edge .news .btn--show-all,
.our-edge .press .btn--show-all {
  margin: 6rem auto 0;
}
.our-edge .news .card-group__list,
.our-edge .press .card-group__list {
  row-gap: 4rem;
}
.our-edge .news .card-group__item,
.our-edge .press .card-group__item {
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .our-edge .news .card-group__item:nth-child(n+5),
  .our-edge .press .card-group__item:nth-child(n+5) {
    display: none;
  }
  .our-edge .news.show-all .card-group__item,
  .our-edge .press.show-all .card-group__item {
    display: block;
  }
}
.our-edge .slick-slide {
  padding: 0 20px;
}

.news-press {
  /* -----------------------------------
      Hero
  ----------------------------------- */
}
.news-press .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0d1226;
  width: 100%;
}
.news-press .hero__content {
  width: 100%;
  background: linear-gradient(180deg, #0d1226 20%, #000080 100%);
  padding-top: 10rem;
  padding-bottom: 2rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .news-press .hero__content {
    padding-bottom: 15rem;
  }
}
.news-press .hero__heading {
  margin-bottom: 1rem;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .news-press .hero__heading {
    max-width: 1000px;
  }
}
.news-press .hero__subheading {
  text-wrap: balance;
  margin-bottom: 3rem;
}
.news-press .hero__btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .news-press .hero__btn-group {
    margin-bottom: 6rem;
  }
}
.news-press .hero__video {
  position: relative;
  width: 100%;
  height: 56.25vw;
  overflow: hidden;
  margin-bottom: -3rem;
  border-radius: 0.8rem;
  border: double 2px transparent;
  z-index: 10;
  background-image: linear-gradient(45deg, rgb(13, 18, 38) 0%, rgb(0, 0, 128) 100%), linear-gradient(to bottom, white, #0d1226);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
@media (min-width: 1024px) {
  .news-press .hero__video {
    margin-bottom: -6rem;
  }
}
.news-press .hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.news-press .card-group--four {
  row-gap: 3.6rem !important;
}
.news-press .articles {
  margin-top: 0;
  background-color: #0d1226;
}
@media (min-width: 1024px) {
  .news-press .articles {
    padding-top: 0;
    margin-top: -10rem;
  }
}
.news-press .news .btn--show-all,
.news-press .press .btn--show-all {
  margin-top: 3rem;
  display: block;
}
@media (min-width: 1024px) {
  .news-press .news .btn--show-all,
  .news-press .press .btn--show-all {
    margin: 3rem auto 0;
    margin: 6rem auto 0;
  }
}
.news-press .news .card-group__item:nth-child(n+5),
.news-press .press .card-group__item:nth-child(n+5) {
  display: none;
}
.news-press .news.show-all .card-group__item,
.news-press .press.show-all .card-group__item {
  display: block;
}
.news-press .card__image {
  background-color: white;
}

.blog-post {
  background-color: #0d1226;
  padding-top: 6rem;
}
.blog-post__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .blog-post__layout {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}
.blog-post__main {
  flex: 3;
}
.blog-post__sidebar {
  flex: 1;
}
.blog-post .post__thumbnail {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .blog-post .post__thumbnail {
    margin-bottom: 3rem;
  }
}
.blog-post .post__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.6rem;
}
.blog-post .post__date {
  color: #e61d25;
  margin-bottom: 1rem;
}
.blog-post .post__title {
  margin-bottom: 1rem;
  text-wrap: balance;
}
.blog-post .post__content {
  color: rgba(246, 246, 246, 0.7);
}
.blog-post .post__content figure {
  margin: 0;
}
.blog-post .post__content p {
  margin-bottom: 1rem;
}
.blog-post .post__content h2,
.blog-post .post__content h3,
.blog-post .post__content h4 {
  color: #f6f6f6;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.blog-post .post__content a {
  text-decoration: underline;
}
.blog-post .post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.4rem;
  margin: 0 0 2rem 0;
}
.blog-post .post__content ul,
.blog-post .post__content ol {
  margin-left: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
}
.blog-post .post__content ul {
  list-style-type: disc;
}
.blog-post .post__content ol {
  list-style-type: decimal;
}
.blog-post .post__content blockquote {
  padding-left: 1rem;
  font-style: italic;
  margin: 2rem 0;
}
.blog-post .post__content figcaption {
  text-align: center;
}
.blog-post .post__content strong {
  font-weight: 600;
}
.blog-post .post__content hr {
  margin-bottom: 1rem;
}
.blog-post .post__footer {
  display: flex;
  flex-direction: column;
  margin-top: 6rem;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .blog-post .post__footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
.blog-post .post__share-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .blog-post .sidebar {
    position: sticky;
    top: 6rem;
  }
}
.blog-post .sidebar__title {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.8rem;
  text-decoration-color: #e61d25;
  margin-bottom: 2rem;
}
.blog-post .sidebar__post {
  opacity: 0.25;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.blog-post .sidebar__post:hover {
  opacity: 1;
}
.blog-post .sidebar__post-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .blog-post .sidebar__post-link {
    display: hidden;
  }
}
@media (min-width: 1024px) {
  .blog-post .sidebar__post-link-arrow {
    display: none;
  }
}

.careers {
  /* -----------------------------------
      Hero
  ----------------------------------- */
}
.careers .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0d1226;
  width: 100%;
}
.careers .hero__content {
  width: 100%;
  background: linear-gradient(180deg, #0d1226 20%, #000080 100%);
  padding-top: 10rem;
  padding-bottom: 6rem;
  text-align: center;
}
.careers .hero__heading {
  margin-bottom: 1rem;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .careers .hero__heading {
    max-width: 1000px;
  }
}
.careers .hero__subheading {
  text-wrap: balance;
  margin-bottom: 3rem;
}
.careers .hero__btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .careers .hero__btn-group {
    margin-bottom: 6rem;
  }
}
.careers .hero__video {
  position: relative;
  width: 100%;
  height: 56.25vw;
  overflow: hidden;
  margin-bottom: -3rem;
  border-radius: 0.8rem;
  border: double 2px transparent;
  z-index: 10;
  background-image: linear-gradient(45deg, rgb(13, 18, 38) 0%, rgb(0, 0, 128) 100%), linear-gradient(to bottom, white, #0d1226);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
@media (min-width: 1024px) {
  .careers .hero__video {
    margin-bottom: -6rem;
  }
}
.careers .hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.careers .card__text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
  padding-bottom: 0;
}

.careers-post {
  background-color: #0d1226;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.careers-post .post__title {
  margin-bottom: 1rem;
  text-wrap: balance;
}
.careers-post .post__content {
  color: rgba(246, 246, 246, 0.7);
}
@media (min-width: 1024px) {
  .careers-post .post__content {
    max-width: 75%;
  }
}
.careers-post .post__content p {
  margin-bottom: 1rem;
}
.careers-post .post__content h2,
.careers-post .post__content h3,
.careers-post .post__content h4 {
  color: #f6f6f6;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.careers-post .post__content a {
  text-decoration: underline;
}
.careers-post .post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.4rem;
  margin: 2rem 0;
}
.careers-post .post__content ul,
.careers-post .post__content ol {
  margin-left: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
}
.careers-post .post__content ul {
  list-style-type: disc;
}
.careers-post .post__content ol {
  list-style-type: decimal;
}
.careers-post .post__content blockquote {
  padding-left: 1rem;
  font-style: italic;
  margin: 2rem 0;
}
.careers-post .post__content figure {
  margin: 2rem 0;
}
.careers-post .post__content figcaption {
  text-align: center;
}
.careers-post .post__content strong {
  font-weight: 600;
}
.careers-post .post__content hr {
  margin-bottom: 1rem;
}

.privacy-policy .hero {
  padding-top: 6rem;
}
.privacy-policy figure {
  margin: 0;
}
.privacy-policy p {
  margin-bottom: 1rem;
}
.privacy-policy h2,
.privacy-policy h3,
.privacy-policy h4 {
  color: #f6f6f6;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.privacy-policy a {
  text-decoration: underline;
}
.privacy-policy img {
  max-width: 100%;
  height: auto;
  border-radius: 0.4rem;
  margin: 0 0 2rem 0;
}
.privacy-policy ul,
.privacy-policy ol {
  margin-left: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
}
.privacy-policy ul {
  list-style-type: disc;
}
.privacy-policy ol {
  list-style-type: decimal;
}
.privacy-policy blockquote {
  padding-left: 1rem;
  font-style: italic;
  margin: 2rem 0;
}
.privacy-policy figcaption {
  text-align: center;
}
.privacy-policy strong {
  font-weight: bold;
}
.privacy-policy hr {
  margin-bottom: 1rem;
}

.error-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding-top: 6rem;
  background: linear-gradient(180deg, rgb(13, 18, 38) 0%, rgb(0, 0, 128) 50%, rgba(255, 255, 255, 0) 100%);
}
.error-404__content {
  max-width: 600px;
}
.error-404__title {
  margin-bottom: 1rem;
}
.error-404__message {
  margin-bottom: 2rem;
}

.header {
  position: fixed;
  width: 100%;
  color: white;
  background: transparent;
  height: 6rem;
  z-index: 1000;
  background-color: #0d1226;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo img {
  height: 1.6rem;
  width: auto;
  display: block;
}
.header__toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: block;
  padding: 1rem 1rem 1rem 1rem;
  margin-right: -1rem;
}
.header__menu {
  list-style: none;
  margin: 0;
  padding-bottom: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #0d1226;
  display: none;
  flex-direction: row;
  z-index: 1000;
}
.header__menu--open {
  display: flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .menu__link {
  display: block;
  text-decoration: none;
  color: #f6f6f6;
}
.header .menu__link:hover, .header .menu__link:active {
  text-decoration: underline;
}
.header .menu__dropdown {
  display: none;
}
.header .menu__dropdown--open {
  display: block;
  padding-bottom: 2rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 80vh;
  overflow-y: auto;
  background-color: #0d1226;
}
.header .menu__dropdown--open .item {
  border: 2px solid red;
  border-radius: 0.6rem;
  padding: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.header .menu__dropdown--open .item a {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.header .menu__dropdown--open .item p {
  font-size: clamp(1.44rem, 1.3rem + 0.53vw, 1.72rem) !important;
  z-index: 1;
}
.header .menu__dropdown--open .item--broadcast {
  border: 2px solid #ffff00;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("/wp-content/uploads/2025/11/b54b92c9797558abd8c8531cc80943e27c899e3a.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .menu__dropdown--open .item--betting {
  border: 2px solid #e61d25;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("/wp-content/uploads/2025/12/d9d8a236c3cb3a91018d593207b0bdbeb133940a-e1765386820427-1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .menu__dropdown--open .item--consumers {
  border: 2px solid #00ff66;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("/wp-content/uploads/2026/01/240211-49ERSSUPERBOWL-36-BL-KQED-1020x680-1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .menu__dropdown--open .item--social-digital {
  border: 2px solid #00f3ff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("/wp-content/uploads/2025/11/2815338fa86a30bad93553bd352da349e8f4e148.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .menu__dropdown--open .item--teams-leagues {
  border: 2px solid #df00ff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("/wp-content/uploads/2025/11/ffae1272bf94d9993e1712fb109bb5b7bdcc33a7.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .menu__dropdown--open .item--high-school-college {
  border: 2px solid #ff6a00;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("/wp-content/uploads/2026/01/AdobeStock_462093851.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .dropdown__secondary {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.header .dropdown__secondary p {
  margin-bottom: 1rem;
}
.header .menu__dropdown--small ul.dropdown__small-links li {
  margin-bottom: 0.5rem;
}

/* Desktop styles */
@media (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
  .header__menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: none;
    width: auto;
    height: 100%;
    padding: 0;
  }
  .menu__item {
    height: 100%;
    border: none;
    display: flex;
    padding-left: 2rem;
    padding-right: 2rem;
    align-items: center;
    justify-content: center;
  }
  .menu__item:hover {
    cursor: pointer;
  }
  .menu__item:hover .link {
    opacity: 1;
    text-decoration: underline;
  }
  .menu__link {
    opacity: 0.6;
    position: relative;
    padding: 0;
    text-decoration: none;
  }
  .menu__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: white;
    padding-top: 2rem;
    padding-bottom: 4rem;
    z-index: 90;
    background-color: #0d1226;
  }
  .menu__item--small-dropdown {
    position: relative;
    /* Show dropdown on hover */
  }
  .menu__item--small-dropdown:hover .menu__dropdown--small {
    display: block;
  }
  .menu__dropdown--small {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding: 1rem 2rem;
    background-color: #0d1226;
    z-index: 200;
    width: auto !important;
    right: auto !important;
    grid-template-columns: none !important;
  }
  .menu__dropdown--small ul.dropdown__small-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu__dropdown--small ul.dropdown__small-links li {
    margin-bottom: 0.5rem;
  }
  .menu__dropdown--small ul.dropdown__small-links li a {
    display: block;
    color: #f6f6f6;
    text-decoration: none;
  }
  .menu__dropdown--small ul.dropdown__small-links li a:hover {
    color: white;
    text-decoration: underline;
  }
  /* Show on hover for desktop */
  .menu__item--small-dropdown:hover .menu__dropdown--small {
    display: block;
  }
  .dropdown__content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1rem;
    width: 100%;
  }
  .dropdown__primary {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .dropdown__primary .item {
    position: relative;
    padding: 1rem;
    border-radius: 0.6rem;
    overflow: hidden;
    cursor: pointer;
  }
  .dropdown__primary .item a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .dropdown__primary .item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: background-color 0.5s ease;
  }
  .dropdown__primary .item:hover::before {
    opacity: 0.4;
  }
  .dropdown__primary .item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.6;
    background-image: url("/wp-content/uploads/2025/11/2815338fa86a30bad93553bd352da349e8f4e148.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: grayscale(0%);
    transition: transform 0.5s ease, filter 0.5s ease, background-color 0.5s ease, opacity 0.5s ease;
  }
  .dropdown__primary .item:hover::after {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(100%);
    background-color: rgba(0, 0, 0, 0);
  }
  .dropdown__primary .item > * {
    position: relative;
    z-index: 1;
  }
  .dropdown__primary .item .item__icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }
  .dropdown__primary .item--broadcast {
    opacity: 0.8;
    border: 2px solid #ffff00;
  }
  .dropdown__primary .item--broadcast:hover {
    opacity: 1;
  }
  .dropdown__primary .item--broadcast:hover::before {
    background-color: #ffff00;
  }
  .dropdown__primary .item--broadcast::after {
    background-image: url("/wp-content/uploads/2025/11/b54b92c9797558abd8c8531cc80943e27c899e3a.jpg");
  }
  .dropdown__primary .item--betting {
    opacity: 0.8;
    border: 2px solid #e61d25;
  }
  .dropdown__primary .item--betting:hover {
    opacity: 1;
  }
  .dropdown__primary .item--betting:hover::before {
    background-color: #e61d25;
  }
  .dropdown__primary .item--betting::after {
    background-image: url("/wp-content/uploads/2025/12/d9d8a236c3cb3a91018d593207b0bdbeb133940a-e1765386820427-1.jpg");
  }
  .dropdown__primary .item--consumers {
    opacity: 0.8;
    border: 2px solid #00ff66;
  }
  .dropdown__primary .item--consumers:hover {
    opacity: 1;
  }
  .dropdown__primary .item--consumers:hover::before {
    background-color: #00ff66;
  }
  .dropdown__primary .item--consumers::after {
    background-image: url("/wp-content/uploads/2026/01/240211-49ERSSUPERBOWL-36-BL-KQED-1020x680-1.jpg");
  }
  .dropdown__primary .item--social-digital {
    opacity: 0.8;
    border: 2px solid #00f3ff;
  }
  .dropdown__primary .item--social-digital:hover {
    opacity: 1;
  }
  .dropdown__primary .item--social-digital:hover::before {
    background-color: #00f3ff;
  }
  .dropdown__primary .item--social-digital::after {
    background-image: url("/wp-content/uploads/2025/11/2815338fa86a30bad93553bd352da349e8f4e148.jpg");
  }
  .dropdown__primary .item--teams-leagues {
    opacity: 0.8;
    border: 2px solid #df00ff;
  }
  .dropdown__primary .item--teams-leagues:hover {
    opacity: 1;
  }
  .dropdown__primary .item--teams-leagues:hover::before {
    background-color: #df00ff;
  }
  .dropdown__primary .item--teams-leagues::after {
    background-image: url("/wp-content/uploads/2025/11/ffae1272bf94d9993e1712fb109bb5b7bdcc33a7.jpg");
  }
  .dropdown__primary .item--high-school-college {
    opacity: 0.8;
    border: 2px solid #ff6a00;
  }
  .dropdown__primary .item--high-school-college:hover {
    opacity: 1;
  }
  .dropdown__primary .item--high-school-college:hover::before {
    background-color: #ff6a00;
  }
  .dropdown__primary .item--high-school-college::after {
    background-image: url("/wp-content/uploads/2026/01/AdobeStock_462093851.jpg");
  }
  .dropdown__primary .item:hover .item__icon {
    transform: rotate(135deg);
  }
  .dropdown__secondary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 1rem;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .dropdown__secondary .btn {
    color: white;
  }
  .menu__item--has-dropdown:hover .menu__dropdown {
    display: block;
  }
}
.footer-container {
  background-color: #f6f6f6;
}
.footer-container--contact {
  padding-top: 12rem;
}
@media (min-width: 768px) {
  .footer-container--contact {
    padding-top: 10rem;
  }
}
.footer-container--dark {
  background-color: #0d1226;
}

/* -----------------------------------
   Footer wrapper
----------------------------------- */
.footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: linear-gradient(45deg, rgb(0, 0, 128) 0%, rgb(13, 18, 38) 100%);
}
@media (min-width: 1024px) {
  .footer {
    padding-top: 4rem;
    background: linear-gradient(45deg, rgb(13, 18, 38) 0%, rgb(0, 0, 128) 100%);
  }
}

/* -----------------------------------
   Header
----------------------------------- */
.footer__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer__header {
    text-align: left;
  }
}
.footer__header--contact {
  margin-top: 8rem;
}
@media (min-width: 1024px) {
  .footer__header--contact {
    margin-top: 8rem;
  }
}
.footer__header--high-school-college {
  margin-top: 4rem;
}
@media (min-width: 1024px) {
  .footer__header--high-school-college {
    margin-top: 6rem;
  }
}

.footer__title {
  margin-bottom: 2rem;
  text-wrap: balance;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .footer__title {
    max-width: 90%;
  }
}
@media (min-width: 1352px) {
  .footer__title {
    max-width: 60%;
  }
}

/* -----------------------------------
   Links
----------------------------------- */
.footer__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__links {
    justify-content: flex-start;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .footer__links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    text-align: left;
  }
}
.footer__links .footer__links-group {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .footer__links .footer__links-group {
    align-items: start;
    flex: 0 0 auto;
  }
  .footer__links .footer__links-group:nth-child(1) {
    margin-right: 2rem;
  }
  .footer__links .footer__links-group:nth-child(2) {
    margin-right: 6rem;
  }
  .footer__links .footer__links-group:nth-child(3) {
    margin-right: 0;
  }
}
.footer__links .footer__links-group--social {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .footer__links .footer__links-group--social {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0;
  }
}
.footer__links .footer__links-group--social .footer__link {
  opacity: 1;
}
.footer__links .footer__links-title {
  margin-bottom: 0.6rem;
}
.footer__links .footer__links-divider {
  border: none;
  border-top: 1px solid #e61d25;
  width: 80%;
  margin-bottom: 0.6rem;
}
@media (min-width: 768px) {
  .footer__links .footer__links-divider {
    margin-left: 0;
    width: 6rem;
  }
}
@media (min-width: 1024px) {
  .footer__links .footer__links-divider {
    width: 8rem;
  }
}
@media (min-width: 1024px) {
  .footer__links .footer__links-list {
    -moz-columns: 2;
         columns: 2;
  }
}
.footer__links .footer__links-list--social {
  -moz-columns: unset;
       columns: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__links .footer__links-list--social {
    justify-content: start;
  }
}
@media (min-width: 1024px) {
  .footer__links .footer__links-list--social {
    margin-bottom: 0;
  }
}
.footer__links .footer__links-list--social .footer__link {
  margin-right: 0.6rem;
}
.footer__links .footer__link {
  display: block;
  color: #f6f6f6;
  opacity: 0.4;
}
.footer__links .footer__link:hover {
  color: #f6f6f6;
  opacity: 1;
}
@media (min-width: 1024px) {
  .footer__links .footer__link {
    margin-right: 1rem;
  }
}
.footer__links .footer__link img {
  height: 30px;
  width: auto;
}

/* -----------------------------------
   COPYRIGHT
----------------------------------- */
.footer__copyright {
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__copyright {
    text-align: left;
  }
}

.footer__copyright-divider {
  border: none;
  border-top: 1px solid #f6f6f6;
  width: 100%;
  margin-bottom: 1.6rem;
}

.footer__copyright-text {
  opacity: 50%;
  margin: 0;
}

/* -----------------------------------
   Signup
  ----------------------------------- */
.signup {
  padding-top: 12rem;
}
@media (min-width: 768px) {
  .signup {
    padding-top: 10rem;
  }
}
@media (min-width: 1024px) {
  .signup {
    padding-top: 8rem;
  }
}
.signup--light {
  background-color: #f6f6f6;
}
.signup__container {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0.5rem;
  background-color: red;
}
@media (min-width: 768px) {
  .signup__container {
    flex-direction: row;
  }
}
.signup__content {
  text-align: center;
}
@media (min-width: 768px) {
  .signup__content {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .signup__content, .signup__form {
    flex: 0 0 50%;
  }
}
.signup__image {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  max-height: 300px;
  width: auto;
}
@media (min-width: 1024px) {
  .signup__image {
    max-height: 300px;
    width: auto;
  }
}
.signup__title {
  text-wrap: balance;
  margin-bottom: 0.6rem;
}
.signup__subtitle {
  color: rgba(246, 246, 246, 0.7);
  margin-bottom: 1rem;
}
.signup__lable {
  color: rgba(246, 246, 246, 0.7);
}
@media (min-width: 768px) {
  .signup__form {
    padding-left: 6rem;
  }
}
.signup__form .wpcf7-form-control {
  margin-bottom: 0.8rem;
}
.signup__form .wpcf7-submit {
  margin-top: 0.5rem;
}
.signup__input, .signup__textarea {
  margin-top: 0.4rem;
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: rgba(13, 18, 38, 0.1);
  border: none;
  border-radius: 0.4rem;
  color: #f6f6f6;
  resize: none;
  outline: none;
}
.signup__input::-moz-placeholder, .signup__textarea::-moz-placeholder {
  color: white;
  opacity: 0.7;
}
.signup__input::placeholder, .signup__textarea::placeholder {
  color: white;
  opacity: 0.7;
}
.signup__input:active, .signup__textarea:active {
  opacity: 1;
}
.signup__input:focus, .signup__textarea:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
  opacity: 1;
}
@media (min-width: 1024px) {
  .signup__input, .signup__textarea {
    font-size: 1.1rem;
    padding: 1rem 1.2rem;
  }
}
.signup__textarea {
  max-height: 120px;
}
.signup__submit {
  width: 100%;
}
@media (min-width: 1024px) {
  .signup__submit {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}

.wpcf7-response-output {
  margin: 0 !important;
}
@media (min-width: 1024px) {
  .wpcf7-response-output {
    margin-left: 6rem !important;
  }
}

.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: #f6f6f6;
}

#contact-form {
  scroll-margin-top: 8rem;
}

[data-anchor] {
  scroll-margin-top: 8rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  min-height: 420px;
  background-image: linear-gradient(180deg, #000080 10%, rgba(0, 0, 128, 0) 100%), url("/wp-content/uploads/2025/12/b822eae40c34be066b4f54a3f4bed6ad48c299af.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
@media (min-width: 768px) {
  .contact-block {
    justify-content: center;
    align-items: baseline;
    text-align: left;
    background-image: linear-gradient(90deg, #000080 0%, rgba(0, 0, 128, 0) 50%), url("/wp-content/uploads/2025/12/b822eae40c34be066b4f54a3f4bed6ad48c299af.jpg");
  }
}
.contact-block__heading {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .contact-block__heading {
    max-width: 50%;
    text-wrap: balance;
  }
}
.contact-block__description {
  margin-bottom: 2rem;
  text-wrap: balance;
  color: rgba(246, 246, 246, 0.7);
}
@media (min-width: 768px) {
  .contact-block__description {
    max-width: 75%;
  }
}
.contact-block__btn {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}

/* -----------------------------------
   Signup
  ----------------------------------- */
.offerings {
  background-color: #f6f6f6;
  color: #0d1226;
}
@media (min-width: 768px) {
  .offerings__container {
    flex-direction: row;
    align-items: end;
  }
}
.offerings__overview {
  text-align: center;
}
.offerings__heading {
  margin-bottom: 1rem;
}
.offerings__text {
  color: rgba(13, 18, 38, 0.7);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .offerings__text {
    margin-bottom: 4rem;
  }
}
.offerings__subscription-options {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .offerings__subscription-options {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4rem;
  }
}
.offerings__contact {
  position: relative;
  text-align: center;
  color: #f6f6f6;
  padding: 2rem;
  border-radius: 0.6rem;
  background-color: #ff6a00;
  z-index: 20;
}
.offerings__contact .btn:hover:not(:disabled) {
  color: #f6f6f6;
  background-color: #ff6a00;
}
.offerings .card .btn {
  width: 100%;
}

.toggle__tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .toggle__tabs {
    margin-bottom: 3rem;
  }
}
.toggle__tab {
  font-size: 16px;
  font-weight: 500;
  color: #f6f6f6;
  opacity: 0.25;
}
@media (min-width: 768px) {
  .toggle__tab {
    font-size: clamp(1.2rem, 1.12rem + 0.34vw, 1.375rem);
  }
}
.toggle__tab.active {
  color: #f6f6f6;
  opacity: 1;
  text-decoration: underline;
}
.toggle__item {
  display: none;
}
.toggle__item.active {
  display: block;
}

.lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .lead {
    align-items: center;
    text-align: center;
  }
}
.lead__label {
  margin-bottom: 1rem;
  color: #e61d25;
}
.lead__heading {
  text-wrap: balance;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .lead__heading {
    max-width: 50%;
  }
}
.lead__text {
  text-wrap: balance;
  margin-bottom: 2rem;
  font-size: clamp(1.2rem, 1.12rem + 0.34vw, 1.375rem);
  color: rgba(246, 246, 246, 0.7);
}
@media (min-width: 768px) {
  .lead__text {
    margin-bottom: 3rem;
    max-width: 60%;
  }
}
.lead--left {
  align-items: baseline;
  text-align: left;
}
.lead--left-mob {
  align-items: baseline;
  text-align: left;
}
@media (min-width: 768px) {
  .lead--left-mob {
    align-items: center;
    text-align: center;
  }
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
  padding: 0.5rem 1.4rem;
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #f6f6f6;
  background-color: #e61d25;
  border: 2px solid transparent;
  border-radius: 0.4rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  transition: all 0.3s ease;
  touch-action: manipulation;
}
.btn:hover:not(:disabled) {
  background-color: rgb(201.0589641434, 22.2410358566, 29.3581673307);
}
.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(234, 76, 137, 0.4);
}
.btn:active:not(:disabled) {
  transform: scale(0.98);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  .btn {
    font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  }
}
.btn--primary {
  background-color: #e61d25;
  color: #f6f6f6;
  border-color: transparent;
}
.btn--primary:hover:not(:disabled) {
  background-color: rgb(187.2828685259, 20.7171314741, 27.3466135458);
}
.btn--secondary {
  background-color: transparent;
  border-color: transparent;
  border-color: #e61d25;
}
.btn--secondary:hover:not(:disabled) {
  background-color: #e61d25;
}
.btn--submit {
  background-color: #f6f6f6;
  color: #e61d25;
  border-color: transparent;
}
.btn--submit:hover:not(:disabled) {
  background-color: transparent;
  color: #f6f6f6;
  border-color: #f6f6f6;
}
.btn--broadcast {
  background-color: #ffff00;
  color: #0d1226;
  border-color: transparent;
}
.btn--broadcast:hover:not(:disabled) {
  color: #0d1226;
  background-color: #cccc00;
}
.btn--betting {
  background-color: #e61d25;
  color: #f6f6f6;
  border-color: transparent;
}
.btn--betting:hover:not(:disabled) {
  color: #f6f6f6;
  background-color: rgb(187.2828685259, 20.7171314741, 27.3466135458);
}
.btn--social-digital {
  background-color: #00f3ff;
  color: #0d1226;
  border-color: transparent;
}
.btn--social-digital:hover:not(:disabled) {
  color: #0d1226;
  background-color: rgb(0, 194.4, 204);
}
.btn--teams-leagues {
  background-color: #df00ff;
  color: #f6f6f6;
  border-color: transparent;
}
.btn--teams-leagues:hover:not(:disabled) {
  color: #f6f6f6;
  background-color: rgb(178.4, 0, 204);
}
.btn--consumers {
  background-color: #00ff66;
  color: #0d1226;
  border-color: transparent;
}
.btn--consumers:hover:not(:disabled) {
  color: #0d1226;
  background-color: rgb(0, 204, 81.6);
}
.btn--high-school-college {
  border: 3px solid #ff6a00;
  background-color: #ff6a00;
  color: #f6f6f6;
  border-color: transparent;
}
.btn--high-school-college:hover:not(:disabled) {
  color: #f6f6f6;
  background-color: rgb(204, 84.8, 0);
}
.btn--high-school-college-white {
  background-color: #f6f6f6;
  color: #ff6a00;
  border-color: transparent;
}
.btn--high-school-college-white:hover:not(:disabled) {
  background-color: transparent;
  color: #f6f6f6;
  border-color: #f6f6f6;
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
  font-size: 1em;
  width: 1em;
  height: 1em;
}
.btn__icon svg,
.btn__icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.btn__icon--left {
  order: 0;
  margin-right: 0.5rem;
}
.btn__icon--right {
  order: 2;
  margin-left: 0.5rem;
}
.btn__text {
  order: 1;
  display: inline-flex;
  align-items: center;
}

.link:active {
  color: white;
  text-decoration: underline;
}
.link--arrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(13, 18, 38, 0.7);
}
.link--arrow .arrow-active {
  transition: all 0.3s ease;
}
.link--arrow .arrow-incoming {
  position: absolute;
  margin-left: 3rem;
  transition: all 0.3s ease;
}
.link--arrow:hover .item__icon {
  background: #000080;
}
.link--arrow:hover .arrow-incoming {
  margin-left: 0;
}
.link--arrow:hover .arrow-active {
  margin-right: 3rem;
}
.link--arrow .item__icon {
  width: 0.6rem;
  height: 0.6rem;
}
.link--arrow .item__icon .material-symbols-outlined {
  font-size: 1.2rem;
}

.item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  background: #e61d25;
  color: #f6f6f6;
  border-radius: 50%;
  padding: 0.8rem;
  width: 0.1rem;
  height: 0.1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.item__icon--left {
  transform: rotate(0deg);
}
.item__icon--right {
  transform: rotate(180deg);
}
.item__icon--down {
  transform: rotate(90deg);
}
.item__icon--broadcast {
  background: #ffff00;
}
.item__icon--broadcast .material-symbols-outlined {
  color: #0d1226;
}
.item__icon--betting {
  background: #e61d25;
}
.item__icon--consumers {
  background: #00ff66;
}
.item__icon--consumers .material-symbols-outlined {
  color: #0d1226;
}
.item__icon--social-digital {
  background: #00f3ff;
}
.item__icon--social-digital .material-symbols-outlined {
  color: #0d1226;
}
.item__icon--teams-leagues {
  background: #df00ff;
}
.item__icon--high-school-college {
  background: #ff6a00;
}

.material-symbols-outlined {
  color: #f6f6f6;
  font-size: 1rem !important;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  border-radius: 0.6rem;
  background-color: #f6f6f6;
  color: #0d1226;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .product-card {
    flex-direction: row;
    gap: 2.4rem;
  }
}
.product-card__content {
  flex: 1 1 auto;
  padding: 1.6rem 1rem 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .product-card__content {
    padding-top: 4rem;
    padding-left: 2rem;
    padding-bottom: 4rem;
    flex: 0 0 50%;
    min-height: auto;
  }
}
@media (min-width: 1024px) {
  .product-card__content {
    flex: 0 0 60%;
  }
}
.product-card__heading {
  margin-bottom: 1rem;
}
.product-card__text {
  color: rgba(13, 18, 38, 0.7) !important;
  margin-bottom: 2rem;
}
.product-card__list {
  list-style-type: disc;
  color: rgba(13, 18, 38, 0.7) !important;
}
.product-card__list-item {
  color: rgba(13, 18, 38, 0.7) !important;
  margin-left: 1rem;
  text-wrap: balance;
}
.product-card__image {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  margin-left: 2rem;
}
@media (min-width: 1024px) {
  .product-card__image {
    padding-top: 1rem;
    flex: 0 0 50%;
    min-height: auto;
  }
}
@media (min-width: 1024px) {
  .product-card__image {
    flex: 0 0 40%;
  }
}
.product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
  display: block;
}
.product-card--broadcast {
  border: 2px solid #ffff00;
}
.product-card--betting {
  border: 2px solid #e61d25;
}
.product-card--social-digital {
  border: 2px solid #00f3ff;
}
.product-card--teams-leagues {
  border: 2px solid #df00ff;
}

.market-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 1rem;
  border-radius: 0.6rem;
  background-color: #f6f6f6;
}
.market-card img {
  width: 100%;
  border-radius: 0.4rem;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}
.market-card h3 {
  color: #0d1226;
  margin-bottom: 1rem;
}
.market-card p {
  color: rgba(13, 18, 38, 0.7);
  margin-bottom: 1rem;
}
.market-card a {
  margin-bottom: 1rem;
}
.market-card.broadcast {
  border: 3px solid #ffff00;
}
.market-card.betting {
  border: 3px solid #e61d25;
}
.market-card.digital {
  border: 3px solid #00f3ff;
}
.market-card.league {
  border: 3px solid #df00ff;
}
.market-card.consumers {
  border: 3px solid #00ff66;
}
.market-card.school {
  border: 3px solid #ff6a00;
}

.icon__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
@media (min-width: 1024px) {
  .icon__card {
    align-items: start;
    text-align: left;
  }
}
.icon__card--box {
  padding: 2rem;
  background-color: #f6f6f6;
  border-radius: 0.6rem;
  color: #0d1226;
}
.icon__card--box .icon__card-icon {
  padding: 0.6rem;
  border-radius: 0.6rem;
  background-color: #00f3ff;
}
.icon__card--box .icon__card-heading {
  color: #0d1226;
}
.icon__card--box .icon__card-description {
  color: rgba(13, 18, 38, 0.7);
}
.icon__card--social-digital {
  border: 2px solid #00f3ff;
}
.icon__card--high-school-college {
  border: 2px solid #ff6a00;
}

.icon__card-icon {
  height: 3rem;
  width: 3rem;
  margin-bottom: 1rem;
}

.icon__card-heading {
  max-width: 70%;
  margin-bottom: 1rem;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .icon__card-heading {
    max-width: 100%;
  }
}

.icon__card-text {
  color: rgba(246, 246, 246, 0.7);
}

.feature-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.6rem;
  margin-bottom: 3rem;
}
.feature-card__image {
  width: 100%;
  margin-bottom: 1.6rem;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid transparent;
  border-radius: 0.6rem;
}
.feature-card__title {
  margin-bottom: 1rem;
}
.feature-card__text {
  color: rgba(246, 246, 246, 0.7);
}
.feature-card--broadcast .feature-card__image {
  border: 1px solid #ffff00;
}
.feature-card--betting .feature-card__image {
  border: 1px solid #e61d25;
}
.feature-card--social-digital .feature-card__image {
  border: 1px solid #00f3ff;
}
.feature-card--league .feature-card__image {
  border: 1px solid #df00ff;
}
.feature-card--consumers .feature-card__image {
  border: 1px solid #00ff66;
}
.feature-card--school .feature-card__image {
  border: 1px solid #ff6a00;
}

.menuToggle .hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: none;
  outline: none;
  cursor: pointer;
  position: relative;
  width: 15px;
  height: 25px;
  z-index: 6;
  margin-right: 0;
}
.menuToggle .hamburger:before, .menuToggle .hamburger:after {
  border-radius: 1rem;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: white;
  transition: 0.4s ease;
}
.menuToggle .hamburger:before {
  top: 22px;
}
.menuToggle .hamburger:after {
  bottom: 22px;
}
.menuToggle .hamburger.is-active:before {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.menuToggle .hamburger.is-active:after {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
}

.card {
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  height: 100%;
}
.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
  margin-bottom: 1.6rem;
  border: 2px solid transparent;
}
.card__number {
  aspect-ratio: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  color: #f6f6f6;
  background-color: #ff6a00;
  border-radius: 0.6rem;
  font-size: clamp(1.2rem, 1.12rem + 0.34vw, 1.375rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.card__title {
  color: #f6f6f6;
  margin-bottom: 0.6rem;
}
.card__text {
  color: rgba(246, 246, 246, 0.7);
}
.card:has(.btn) .card__text {
  padding-bottom: 1rem;
}
.card__list-heading {
  margin-top: 1rem;
}
.card__list {
  color: rgba(246, 246, 246, 0.7);
  list-style-type: disc;
  margin-bottom: 2rem;
}
.card__list-item {
  color: rgba(246, 246, 246, 0.7);
  margin-left: 1.4rem;
}
.card__date {
  color: rgba(246, 246, 246, 0.7);
  margin-bottom: 1rem;
}
.card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.card--boxed {
  border-radius: 0.6rem;
  padding: 0.5rem;
  background-color: #f6f6f6;
  color: #0d1226;
}
.card--boxed .card__details {
  display: flex;
  flex-direction: column;
  padding: 0 0.8rem 0.8rem 0.8rem;
  height: 100%;
}
.card--boxed p {
  color: rgba(13, 18, 38, 0.7);
}
.card--boxed-subscription {
  padding: 1.4rem;
}
.card.border--broadcast {
  border: 2px solid #ffff00;
}
.card.border--betting {
  border: 2px solid #e61d25;
}
.card.border--social-digital {
  border: 2px solid #00f3ff;
}
.card.border--teams-leagues {
  border: 2px solid #df00ff;
}
.card.border--consumers {
  border: 2px solid #00ff66;
}
.card.border--high-school-college {
  border: 2px solid #ff6a00;
}
.card--dark {
  color: rgba(13, 18, 38, 0.7);
}
.card--dark .card__title {
  color: #0d1226;
  margin-bottom: 0.6rem;
}
.card--dark .card__text {
  color: rgba(13, 18, 38, 0.7);
}
.card--dark .card__list {
  color: rgba(13, 18, 38, 0.7);
}
.card--dark .card__list-item {
  color: rgba(13, 18, 38, 0.7);
}
.card--border .card__image {
  border: 2px solid #e61d25;
}
.card--broadcast .card__image {
  border: 2px solid #ffff00;
}
.card--betting .card__image {
  border: 2px solid #e61d25;
}
.card--social-digital .card__image {
  border: 2px solid #00f3ff;
}
.card--teams-leagues .card__image {
  border: 2px solid #df00ff;
}
.card--consumers .card__image {
  border: 2px solid #00ff66;
}
.card--high-school-college .card__image {
  border: 2px solid #ff6a00;
}/*# sourceMappingURL=main.css.map */