html {
  font-size: 62.5%;
}

:root {
  --blue: #004182;
  --blue-alpha: #03030330;
  --gray: #E2E2E2;
  --gray-alpha: #00000029;
  --gold: #F5C900;
  --yellow: #FFDE5A;
  --yellow2: #FFDE71;

  --p-multiplier: 1;
  --signup-h3-multiplier: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-bottom: 3rem;
  font-size: 1rem;
  font-family: 'Arimo', sans-serif;
  background-color: #D0DCE7;
}

h1,h3,h4 {
  font-weight: 400;
}

img {
  display: block;
}

p {
  font-size: 16px;
  font-size: calc(1.6rem * var(--p-multiplier));
  line-height: 1.15em;
  color: #004182;
  color: var(--blue);
}

strong {
  font-weight: 700;
}

.main-header {
  width: 100%;
  color: #004182;
  color: var(--blue);
  text-align: center;
  background-color: #fff;
}

.eyebrow-heading {
  padding: 20px 0;

  background: #004182;
  background: var(--blue);
  border-top: 6px solid #F5C900;
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid #F5C900;
  border-bottom: 6px solid var(--gold);
  color: #fff;

  font-size: 25px;
  line-height: 29px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.heading-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
      grid-template-areas:
    "main"
    "img"
    "sub";
}

.main-heading {
  margin: 10px 0;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.15em;
}

.main-heading__sub {
  display: block;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 15px;
}

.sub-heading {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: sub;
  margin: 10px 0;
  padding: 0 10px;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.15em;
}

.header-img {
  width: 100%;
}

.header-separator {
  width: 100%;
  height: 36px;
  background: #004182;
  background: var(--blue);
  border-top: 6px solid #F5C900;
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid #F5C900;
  border-bottom: 6px solid var(--gold);
}

.lead-up-buttons {
  margin: 3rem auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 1200px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-rows: repeat(8, 1fr);
  grid-gap: 2rem;
}

.lead-up-buttons > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.lead-up-buttons > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.lead-up-buttons > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.lead-up-buttons > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.lead-up-buttons > *:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.lead-up-buttons > *:nth-child(6) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}

.lead-up-buttons > *:nth-child(7) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}

.lead-up-buttons > *:nth-child(8) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}

.lead-up-buttons > *:nth-child(9) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}

.lead-up-buttons > *:nth-child(10) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}

.lead-up-buttons > *:nth-child(11) {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
}

.lead-up-buttons > *:nth-child(12) {
  -ms-grid-row: 11;
  -ms-grid-column: 3;
}

.lead-up-buttons > *:nth-child(13) {
  -ms-grid-row: 13;
  -ms-grid-column: 1;
}

.lead-up-buttons > *:nth-child(14) {
  -ms-grid-row: 13;
  -ms-grid-column: 3;
}

.lead-up-buttons > *:nth-child(15) {
  -ms-grid-row: 15;
  -ms-grid-column: 1;
}

.lead-up-buttons > *:nth-child(16) {
  -ms-grid-row: 15;
  -ms-grid-column: 3;
}

.btn:link,
.btn:visited {
  text-decoration: none;
}

.lead-up-btn {
  position: relative;
  padding: 2rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  background: linear-gradient(180deg, #004182 0%, #002141 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 3px 3px 8px rgba(0,0,0,0.7);

  cursor: not-allowed;
  transition: all 300ms;
}

.lead-up-btn:hover {
  transform: scale(1.08);
  box-shadow: 7px 7px 8px rgba(0,0,0,0.5);
}

.lead-up-btn :not(:first-child) {
  margin-top: 1rem;
}

.lock-icon-container {
  height: 5rem;
  width: 5rem;
  background-color: #FFDE5A;
  background-color: var(--yellow);
  border-radius: 50%;
}

.lock-icon {
  padding: 1.2rem;
  height: 100%;
  width: 100%;
}

.lead-up-btn--main-text,
.lead-up-btn--sub-text {
  text-transform: uppercase;
}

.lead-up-btn--main-text {
  color: #fff;
  font-size: 20px;
}

.lead-up-btn--sub-text {
  color: #FFDE5A;
  color: var(--yellow);
  font-size: 12px;
}

.lead-up-btn__active {
  background: linear-gradient(180deg, #FFDE5A 0%, #A88700 100%);
  cursor: pointer;
}

.lead-up-btn__active > .lock-icon-container {
  display: none;
}

.lead-up-btn__active > .lead-up-btn--main-text {
  color: #004182;
  color: var(--blue);
}

.lead-up-btn__active > .lead-up-btn--sub-text {
  color: #004182;
  color: var(--blue);
}

/* UTILITY CLASSES */

/* keep these last so they override other classes in the cascade */
.is-disabled {
  cursor: not-allowed;
}

/* END UTILITY CLASSES */

/* @media screen and (max-width: 699px) {
  .lead-up-btn__event {
    grid-column: 1 / 3;
  }
} */

/* tablet and up sizing */
@media screen and (min-width: 700px) {
  :root {
    --p-multiplier: 1.25;
    --signup-h3-multiplier: 1.0869565217;
  }

  .heading-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 10px auto;
        grid-template-areas:
      "main img"
      "sub img";
    grid-row-gap: 10px;
    background: url('https://sites.agorafinancial.com/promos/LF/assets/Hughes_launch/images/blue-chart-bg/blue-chart-bg@2x.png') left center / 50% no-repeat;
  }

  .main-heading {
    position: relative;
    align-self: flex-end;
  }

  .main-heading::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 0;
    height: 8px;
    width: 58rem;
    max-width: 100%;
    background: #F5C900;
    background: var(--gold);
  }

  .sub-heading {
    align-self: flex-start;
  }

  .header-img {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: img;
    -ms-grid-row-align: center;
        align-self: center;
  }

  @media screen and (min-width: 700px) {

  .header-img {
      -ms-grid-row: 1;
      -ms-grid-row-span: 3;
      -ms-grid-column: 2;
  }
  }

  .lead-up-buttons {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-rows: repeat(5, 1fr);
  }

  .lead-up-buttons > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .lead-up-buttons > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .lead-up-buttons > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }

  .lead-up-buttons > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .lead-up-buttons > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .lead-up-buttons > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }

  .lead-up-buttons > *:nth-child(7) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .lead-up-buttons > *:nth-child(8) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }

  .lead-up-buttons > *:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }

  .lead-up-buttons > *:nth-child(10) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }

  .lead-up-buttons > *:nth-child(11) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }

  .lead-up-buttons > *:nth-child(12) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
  }

  .lead-up-buttons > *:nth-child(13) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }

  .lead-up-buttons > *:nth-child(14) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }

  .lead-up-buttons > *:nth-child(15) {
    -ms-grid-row: 9;
    -ms-grid-column: 5;
  }

  .lead-up-btn__event {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
  }

  /* UTILITY CLASSES */

  /* keep these last so they override other classes in the cascade */
  .mobile-only {
    display: none;
  }

  /* END UTILITY CLASSES */

  .sub-heading {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

@media screen and (min-width: 1050px) {
  :root {
    --p-multiplier: 1.5625;
    --signup-h3-multiplier: 1.5;
  }

  .main-heading {
    font-size: 6rem;
  }

  .main-heading::after {
    bottom: -5%;
    left: calc((100% - 58rem) / 2);
  }

  .sub-heading {
    font-size: 3rem;
  }

  .lead-up-buttons {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(5, 1fr);
    -ms-grid-rows: 1fr 2rem 1fr 2rem 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  .lead-up-buttons > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .lead-up-buttons > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .lead-up-buttons > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }

  .lead-up-buttons > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }

  .lead-up-buttons > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }

  .lead-up-buttons > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .lead-up-buttons > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .lead-up-buttons > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }

  .lead-up-buttons > *:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }

  .lead-up-buttons > *:nth-child(10) {
    -ms-grid-row: 3;
    -ms-grid-column: 9;
  }

  .lead-up-buttons > *:nth-child(11) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .lead-up-buttons > *:nth-child(12) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }

  .lead-up-buttons > *:nth-child(13) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }

  .lead-up-buttons > *:nth-child(14) {
    -ms-grid-row: 5;
    -ms-grid-column: 7;
  }

  .lead-up-buttons > *:nth-child(15) {
    -ms-grid-row: 5;
    -ms-grid-column: 9;
  }

  .lead-up-btn__event {
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
    grid-column: 4 / 6;
  }

  /* UTILITY CLASSES */

  /* END UTILITY CLASSES */
}

@media screen and (min-width: 1400px) {
  :root {
    --p-multiplier: 1.875;
    --signup-h3-multiplier: 1.8;
  }

  .main-heading {
    font-size: 7.7rem;
  }

  .main-heading::after {
    bottom: 0;
    left: calc((100% - 63rem) / 2);
    width: 63rem;
  }

  /* UTILITY CLASSES */

  /* END UTILITY CLASSES */
}