.indexNavButtons {
  padding-left: 3%;
  padding-right: 3%;
  margin-bottom: 40px;
}
@media only screen and (min-width: 751px) {
  .indexNavButtons {
    padding-inline: 0;
    margin-bottom: 45px;
  }
}
.indexNavButtons ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 5px;
       column-gap: 5px;
  height: 107px;
}
@media only screen and (min-width: 751px) {
  .indexNavButtons ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: 171px;
  }
}
.indexNavButtons li {
  display: grid;
  grid-template-columns: subgrid;
  grid-row: span 2;
}
.indexNavButtons li a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  font-size: 12px;
  border-radius: 9px;
  border-bottom: 3px solid #e2d752;
  background: #ffea00;
  line-height: 14px;
  text-decoration: none;
  font-weight: bold;
}
@media only screen and (min-width: 751px) {
  .indexNavButtons li a {
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s;
  }
  .indexNavButtons li a:hover {
    opacity: 0.5;
  }
}
.indexNavButtons li a > img {
  height: 50px;
  display: block;
  margin-inline: auto;
  margin-top: 13px;
}
@media only screen and (min-width: 751px) {
  .indexNavButtons li a > img {
    height: 78px;
    margin-top: 30px;
  }
}
.indexNavButtons li a > div > div {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media only screen and (min-width: 751px) {
  .indexNavButtons li a > div > div {
    gap: 6px;
  }
  .indexNavButtons li a > div > div br {
    display: none;
  }
}
.indexNavButtons .arrow.right {
  position: relative;
  display: inline-block;
  width: 7.5px;
  height: 13.5px;
}
.indexNavButtons .arrow.right::before, .indexNavButtons .arrow.right::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 9.9px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ed963d;
  transform-origin: calc(100% - 1px) 50%;
}
.indexNavButtons .arrow.right::before {
  transform: rotate(53.6deg);
}
.indexNavButtons .arrow.right::after {
  transform: rotate(-53.6deg);
}
.indexNavButtons .arrow.bottom {
  position: relative;
  display: inline-block;
  width: 13.5px;
  height: 7.5px;
}
.indexNavButtons .arrow.bottom::before, .indexNavButtons .arrow.bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 9.9px;
  border-radius: 9999px;
  background-color: #ed963d;
  transform-origin: 50% calc(100% - 1px);
}
.indexNavButtons .arrow.bottom::before {
  transform: rotate(53.6deg);
}
.indexNavButtons .arrow.bottom::after {
  transform: rotate(-53.6deg);
}/*# sourceMappingURL=index.css.map */