.hero-buttons .solid-button,
.hero-buttons .outline-button{
  position:relative;
  justify-content:center;
  min-width:218px;
  height:64px;
  padding:0 24px;
  gap:14px;
  text-align:center;
  text-transform:none;
  letter-spacing:0;
  font-size:13px!important;
  font-weight:600;
}

.hero-buttons .button-icon{
  position:static;
  width:18px;
  height:18px;
  transform:none;
  display:grid;
  place-items:center;
  transition:transform .22s ease;
}

.hero-buttons .button-icon svg{
  display:block;
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.hero-buttons .outline-button:hover .button-icon,
.hero-buttons .solid-button:hover .button-icon{
  transform:translateX(3px);
}

@media(max-width:520px){
  .hero-buttons .solid-button,
  .hero-buttons .outline-button{width:100%;min-width:0}
}
