.btn-with-arrow {
  --color1: #ea5325;
}
.btn-with-arrow a {
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #20386A;
}
.btn-with-arrow a .icon {
  font-size: 1.2rem;
  display: flex;
  transition: transform 0.3s ease;
}
.btn-with-arrow a:hover .icon {
  transform: translateX(0.5rem);
}