.anchorButtons3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  {#
  column-gap: 16px;
  row-gap: 16px;
  #}
}

.anchorButtons3_item a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px 16px 16px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  border: 2px solid #E08025;
  border-radius: 40px;
  color: #E08025;
  position: relative;
  transition: .3s;
}

.anchorButtons3_item a::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #E08025;
  border-right: 3px solid #E08025;
  transform: rotate(135deg);  
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 7px;
  top: 0;
  right: 18px;
  margin: auto;
}

.anchorButtons3_item a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .anchorButtons3 {
    gap: 8px;
  }
  .anchorButtons3_item a {
    padding: 16px 24px 16px 8px;
    letter-spacing: 0;
    font-size: 1.5rem;
  }
}

