Dawn 12- mobile version button color change

Hello, after searching for a solution here in previous discussions, I could not change the colour of button only in the mobile version.

The website is www.shmrnc.cz (password: linh). I need to change the colour for button in the carousel (the carousel will be updated, more slides added → so i would need to apply this change for all the slides in carousel

)…The current is colour is #FFB6C1, I would to make the button be #000000 and the text color #FFB6C1.

I attach the screenshot, so you can see the issue.

Thanks in advance!

Hi @Vari41

Please add this code at the bottom of your base.css file to do that

@media (max-width: 767px) {
.banner--mobile-bottom .slideshow__text .button {
    background: #000 !important;
    color: #ffb6c1 !important;
}
}

Thank you very much! works great!

Very welcome