.indexButtons {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  place-items: stretch;
  max-width: 100%;
  position: relative;
}
.indexButtons, .indexButtons::before, .indexButtons::after,
.indexButtons *,
.indexButtons *::before,
.indexButtons *::after {
  box-sizing: border-box;
}
.indexButtons a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0a5796;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.125;
  padding: 1.5rem;
  text-align: center;
  flex: 0 0 100%;
  transition: all 0.3s ease 0s;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.11), 0 2px 2px rgba(0, 0, 0, 0.11), 0 4px 4px rgba(0, 0, 0, 0.11), 0 6px 8px rgba(0, 0, 0, 0.11), 0 8px 16px rgba(0, 0, 0, 0.11);
}
.indexButtons a:hover, .indexButtons a:focus-visible {
  background: #fff;
  color: #0a5796;
  box-shadow: inset 0 0 0 0.25rem currentColor;
}
.indexButtons li {
  display: flex;
  align-items: stretch;
}
.indexButtons li:nth-child(1), .indexButtons li:nth-child(2), .indexButtons li:nth-child(3) {
  grid-column: span 2;
}
.indexButtons li:nth-child(1) > a, .indexButtons li:nth-child(2) > a, .indexButtons li:nth-child(3) > a {
  font-size: 1.5rem;
  position: relative;
  flex-flow: row wrap;
  align-content: center;
  background-color: #de3700;
  box-shadow: inset 0 0 0 0.25rem #de3700, 0 2px 1px rgba(0, 0, 0, 0.09), 0 4px 2px rgba(0, 0, 0, 0.09), 0 8px 4px rgba(0, 0, 0, 0.09), 0 16px 8px rgba(0, 0, 0, 0.09), 0 32px 16px rgba(0, 0, 0, 0.09);
}
.indexButtons li:nth-child(1) > a:hover, .indexButtons li:nth-child(1) > a:focus-visible, .indexButtons li:nth-child(2) > a:hover, .indexButtons li:nth-child(2) > a:focus-visible, .indexButtons li:nth-child(3) > a:hover, .indexButtons li:nth-child(3) > a:focus-visible {
  box-shadow: inset 0 0 0 0.25em currentColor;
  background: #fff;
  color: #de3700;
}
.indexButtons li:nth-child(n+4) {
  grid-column: span 2;
}
@media (max-width: 875px) {
  .indexButtons {
    grid-template-columns: repeat(2, 1fr);
  }
  .indexButtons li {
    place-self: stretch;
  }
  .indexButtons li:last-child:nth-child(odd) {
    grid-column: span 2;
  }
  .indexButtons a {
    font-size: 1.25rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 875.01px) {
  .indexButtons li {
    aspect-ratio: 4/1;
  }
  .indexButtons li:nth-child(1) a,
.indexButtons li:nth-child(2) a,
.indexButtons li:nth-child(3) a {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  }
}

@media (max-width: 500px) {
  .indexButtons {
    grid-template-columns: 1fr !important;
  }
  .indexButtons li {
    grid-column: span 1 !important;
  }
}
