  :root {
    --c1: #0066B2;
    --c2: #2DA1D9;
    --c3: #2b2e34;
    --cl: #ffffff;
    --cd: #2b2e34;
    --tc: #0066B2;
    --tc_h: #0066B2;
    --bg1: #ffffff;
    --bg2: #2DA1D9;
    --bg3: #2b2e34;
    --lg1: linear-gradient(0deg, var(--c1)0%, var(--c2)100%);
    --box_shadow: 0 10px 25px rgba(0, 0, 0, .1);
    --max_width: 1000px;
    --width: clamp(300px, 80vw, var(--max_width));
    --heading_font: 'Poppins', sans-serif;
    --sub_heading_font: 'Rokkitt', serif;
    --body_font: 'Poppins', sans-serif;
    --body: 18px;
    --h1: 3.6rem;
    --h2: 2.4rem;
    --h3: 1.6rem;
    --h4: 1.4rem;
    --h5: 1.2rem;
    --heading_lh: 1.1em;
    --body_lh: 1.4em;
    --padding: 10px 12px;
    --section_padding: clamp(30px, 5vw, 50px);
    --gap: clamp(15px, 3vw, 20px);
    --gap_m: clamp(20px, 4vw, 30px);
    --gap_xl: clamp(40px, 8vw, 60px);
    --radius: 10px;
    --radius_m: 15px;
    --radius_xl: 20px;
    --fvh: 100vh;
    --fvh: 100svh
  }
  @media only screen and (max-width:768px) {
    :root {
      --body: 16px;
      --h1: 2.6rem;
      --h2: 1.8rem;
      --h3: 1.4rem;
      --h4: 1.2rem;
      --h5: 1.1rem
    }
  }
  * {
    margin: 0;
    padding: 0
  }
  *, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
  }
  html {
    font-size: 15px;
    font-weight: 400;
    scroll-behavior: smooth
  }
  body {
    position: relative;
    font-family: var(--body_font);
    font-size: var(--body);
    color: var(--tc);
    margin: 0
  }
  .hidden {
    display: none !important
  }
  .h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4, h5 {
    color: var(--tc_h);
    font-family: var(--heading_font);
    line-height: var(--heading_lh);
    font-weight: 700;
    letter-spacing: .02em;
    text-wrap: balance
  }
  .h1, h1 {
    font-size: var(--h1)
  }
  .h2, h2 {
    font-size: var(--h2)
  }
  .h3, h3 {
    font-size: var(--h3)
  }
  .h4, h4 {
    font-size: var(--h4)
  }
  .h5, h5 {
    font-size: var(--h5)
  }
  label, .pTxt, p {
    line-height: 1.6em;
    color: var(--tc)
  }
  .link, a {
    color: var(--tc);
    text-decoration: underline;
    cursor: pointer
  }
  .link:focus, .link:hover, a:focus, a:hover {
    color: var(--tc_h)
  }
  .link {
    padding: 0;
    margin: 0;
    background: none;
    border: none
  }
  ol, ul {
    color: var(--tc)
  }
  ul.styled li::marker {
    content: "▶"
  }
  ul.styled li {
    padding-left: .4em
  }
  li {
    margin-left: 1.2em
  }
  svg, img {
    display: block
  }
  img {
    object-fit: cover
  }
  :where(input[type="submit"], .btn) {
    --\5f color: var(--c1);
    --\5f bg: var(--bg1);
    --\5fhover_color: var(--bg1);
    --\5fhover_bg: var(--lg1);
    cursor: pointer;
    color: var(--\5f color) !important;
    background: var(--\5f bg) !important;
    border: solid 2px var(--\5f color) !important;
    border-radius: 1.5em !important;
    display: block;
    font-family: var(--sub_heading_font);
    font-size: 1.2em !important;
    line-height: 1em !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: center !important;
    text-shadow: none;
    padding: .6em 1.2em !important;
    position: relative;
  }
  :where(.btn):hover, :where(.btn):focus {
    transition: all .2s ease;
    color: var(--\5fhover_color) !important;
    background: var(--\5fhover_bg) !important;
    border-color: var(--\5fhover_bg) !important;
    box-shadow: 0 0 0 color-mix(in srgb, var(--\5fhover_bg)80%, black);
  }
  .btnGroup {
    display: flex;
    flex-direction: row;
    gap: .5em;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
  }
  .boxed-sm, .boxed {
    width: clamp(300px, 90%, var(--max_width)) !important;
    margin: 0 auto !important;
    z-index: 1
  }
  .boxed-sm {
    --max_width: 600px;
    padding: var(--gap)
  }
  .col-2, .col-3, .col-4, .col-auto {
    display: grid !important;
    gap: 1em var(--gap_m)
  }
  :root {
    --col-2: repeat(2, 1fr);
    --col-3: repeat(3, 1fr);
    --col-4: repeat(4, 1fr)
  }
  .col-2 {
    grid-template-columns: var(--col-2)
  }
  .col-3 {
    grid-template-columns: var(--col-3)
  }
  .col-4 {
    grid-template-columns: var(--col-4);
    gap: var(--gap_m)
  }
  .col-auto {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr))
  }
  @media only screen and (max-width:1000px) {
    :root {
      --col-2: repeat(2, 1fr);
      --col-3: repeat(2, 1fr);
      --col-4: repeat(2, 1fr)
    }
  }
  .col-2.split {
    gap: var(--gap_xl)
  }
  @media only screen and (min-width:600px) {
    .col-2.split > div:nth-child(odd) {
      position: relative
    }
    .col-2.split > div:nth-child(odd)::before {
      content: '';
      position: absolute;
      top: 0;
      right: calc(var(--gap_xl)/-2);
      width: 1px;
      height: 100%;
      background: var(--tc)
    }
  }
  @media only screen and (max-width:600px) {
    :root {
      --col-2: 1fr;
      --col-3: 1fr;
      --col-4: 1fr
    }
  }
  .center {
    text-align: center
  }
  .m-center {
    margin: 0 auto
  }
  .copy > * {
    margin-bottom: .5em
  }
  .copy > *:last-child {
    margin-bottom: 0
  }
  .flex {
    display: flex;
    flex-direction: column;
    gap: 1em
  }
  .flex.center {
    justify-content: center;
    align-items: center
  }
  .hero {
    display: grid;
    height: var(--fvh);
    width: 100%;
    background-color: var(--bg3);
    grid-template-columns: 1fr;
    position: relative;
    overflow: hidden
  }
  .hero > * {
    width: 100%;
    height: 100%;
    grid-row: 1/2;
    grid-column: 1/2;
    position: relative
  }
  .hero .background img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%
  }
  .hero .background .video_block {
    aspect-ratio: 16/9;
    height: 100%;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    opacity: .5
  }
  .scroll {
    position: absolute;
    top: calc(100vh - 80px);
    left: calc(50% - 1px);
    width: 2px;
    height: 35px;
    border-radius: 2px;
    background: var(--bg1);
    animation: jumpInfinite 1.5s infinite;
    opacity: .8;
    cursor: pointer
  }
  .scroll:after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--bg1);
    border-right: 2px solid var(--bg1);
    transform: rotateZ(45deg)
  }
  @keyframes jumpInfinite {
    0% {
      margin-top: 0
    }
    50% {
      margin-top: 10px
    }
    100% {
      margin-top: 0
    }
  }
  .footer {
    background-color: var(--c1);
    padding: var(--section_padding)
  }
  .footer img {
    height: 80px;
    width: auto;
    object-fit: contain;
    position: relative
  }
  .content {
    overflow: hidden
  }
  .content .boxed {
    position: relative;
    padding: var(--section_padding) 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap_m)
  }
  .content .boxed::before, .content .boxed::after {
    content: '';
    display: block;
    height: 100%;
    width: clamp(100px, 20%, 200px);
    background-image: url("/broadcast-campaign/pattern.svg");
    background-size: 100% auto;
    position: absolute;
    background-repeat: repeat-y;
    top: 0
  }
  .content .boxed::before {
    left: -3%;
    transform: translateX(-100%)
  }
  .content .boxed::after {
    right: -3%;
    transform: translateX(100%) scalex(-1)
  }
  .container {
    --tc: var(--cl);
    --tc_h: var(--cl);
    background: var(--bg2);
    padding: var(--gap_m) var(--gap_xl);
    border-radius: var(--radius_m);
    display: flex;
    flex-direction: column;
    gap: var(--gap_m)
  }
  iframe.mcc-landing-vid-frame {
    width: 100%;
    height: 100%;
    display: block
  }