.button005 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5em 1em;
  width: 300px;
  color: #333;
  font-size: 14px;
  /*font-weight: 700;*/
  background-color: lavender;
  border: solid 1px steelblue;
  box-shadow: 0 0 10px rgba(0 0 0 / .2);
  border-radius: 6px;
  transition: 0.3s;
}

.button005 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: rotate(45deg);
}

.button005 a:hover {
  text-decoration: none;
  background-color: steelblue;
  color: #fff;
  box-shadow: 0 0 10px rgba(0 0 0 / 0);
}

.button006 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5em 1em;
  /*width: 300px;*/
  color: #333;
  font-size: 14px;
  font-weight: 700;
  background-color: lavender;
  border: solid 2px steelblue;
  box-shadow: 0 0 10px rgba(0 0 0 / .2);
  border-radius: 6px;
  transition: 0.3s;
}

.button006 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #333333;
  border-right: 3px solid #333333;
  transform: rotate(45deg);
}

.button006 a:hover {
  text-decoration: none;
  background-color: steelblue;
  color: #fff;
  box-shadow: 0 0 10px rgba(0 0 0 / 0);
}