Hi Maggy
Your slogan is particularly long, you can reduce the size of the text in smaller screen devices however for it to fit on smaller screen devices will eave the text to small to read. your best option may be to hide the slogan on smaller screen devices. You can do this by adding the following to the Custom CSS field of your templates parameters...
@media only screen and (max-width: 767px) {
p.site-slogan {
display: none;
}}
Ciarán