Is there a way to change the blue outline color to #D5A021 instead of blue when the button is clicked by the user?
I believe it might be related to the btn-primary
class
HTML
<a class="btn btn-primary btn-xl js-scroll-trigger" href="#services">Find Out More <i class="fa fa-chevron-down" aria-hidden="true"></i></a>
CSS
.btn-xl {
padding: 1rem 2rem
}
.btn-primary {
background-color: #D5A021;
border-color: #D5A021;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
color: #fff;
background-color: #D5A021!important;
}