body {
  padding-bottom: 40px !important;
}

h2 {
  margin: 0 0 40px;
  font-size: 32px;
  line-height: 40px;
}

h3 {
  margin: 40px 0 24px;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}

h3 span.material-icons {
  display: none;
  margin: -2px 8px 0 0;
  vertical-align: middle;
}

.hidden {
  display: none;
}

.options-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
}

.option-large {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e8eaed;
  border-radius: 20px;
  color: #5f6368;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Google Sans;
  font-size: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.option-large:not(.selected):hover {
  background-color: #e8f0fe;
}

.option-large.selected {
  background-color: #4285f4;
  color: #fff;
}

.option-small {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e8eaed;
  border-radius: 8px;
  color: #5f6368;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Google Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  padding: 8px;
}

.option-small:not(.selected):hover {
  background-color: #e8f0fe;
}

.option-small::before {
  content: 'radio_button_unchecked';
  font-family: 'Material Icons';
  font-size: 16px;
  line-height: 1;
  margin-right: 4px;
}

.option-small.selected::before {
  content: 'check_circle_filled';
  height: 16px;
  width: 16px;
}

.option-small.selected {
  background-color: #4285f4;
  color: #fff;
}

.header-divider {
  border-bottom: 1px solid #ddd;
}

.solution:not(:last-child) {
  margin-bottom: 8px;
}

.solution a {
  color: #3c4043;
  font-weight: 500;
  margin-right: 12px;
  text-decoration: underline;
}

.solution a:hover {
  color: #4285f4;
}

.solution span {
  color: #757575;
  font-size: 14px;
}

.jump-heading {
  font-family: "Google Sans";
  font-size: 24px;
  margin-bottom: 24px;
}

.solution-header {
  color: #4285f4;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.solution-header:first-child {
  margin-top: 0;
}

.solutions-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 48px) / 3);
  flex: 0 0 calc((100% - 48px) / 3);
  margin-right: 24px;
}

.pathways-card {
  border: 1px solid #dadce0;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
}

.pathways-card__media {
  background-color: #e8eaed;
}

.pathways-card__media a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pathways-card__media img {
  height: 116px;
  margin: 15px 0;
  width: 116px;
}

.pathways-card__description {
  background-color: #fff;
  padding: 16px;
}

.pathways-card__description__eyebrow {
  color: #4285f4;
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.pathways-card__description__title {
  color: #1a73e8;
  display: block;
  font: 400 24px/32px Google Sans,sans-serif;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.pathways-card__description__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 16px;
}

.solutions-wrapper {
  background-color: #e8eaed;
  border-radius: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 16px;
}

.active h3 {
  color: #4285f4;
  font-weight: 500;
}

.active h3 span {
  display: inline-block;
}

@media only screen and (max-width: 840px) {
  .card-wrapper {
    -ms-flex-preferred-size: calc((100% - 24px) / 2);
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media only screen and (max-width: 600px) {
  .options-wrapper--large {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .options-wrapper--small {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .solutions-columns {
    display: block;
  }

  .card-wrapper {
    margin: 0 0 32px;
  }
}
