Parallax Buttons help

I would like to know more about customization of Parallax Buttons.
I found this code here:

.btn-filled, .btn-filled:visited, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .video-widget .video-controls button, input[type="submit"], button[type="submit"], .post-content .more-link {
	background : transparent !important
}
.image-bg .btn.btn-filled:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover{
	color : #000
}

But the two buttons are still not the same, how to change the button’s border - its color ?
And the color that appears when you hover the cursor on it ?
site: plastelina.com.pl
I’m new, so I’m sorry for the shortcomings but I’m learning fast

Hello there,

I hope you are doing well today.

The link you provided does not load on my end but using the demo theme here is some code to help you:


/*Button colors*/
.btn-white, .image-bg .btn, .image-bg .btn:visited {
    color: #fff;
    border-color: #fff;
    background-color: red;
}

/*Button color hover*/
.btn-white:hover, .image-bg .btn:hover, .image-bg .btn:visited:hover {
    background: #fff;
    border-color: #fff;
    color: #222;
}

Best Regards,
Support