Thank you
In the URL provided your logo appears to be resizing as it should on smaller screen devices. Something you may wish to resolve for this page is the number of columns your content is displayed in. To do so you can edit the col-4 class width using the custom CSS fields available in the 'Responsive Options' tabs of your templates parameters. So for example you can add the following to the 'Phone (L/scape) Custom CSS' field to display your content in 2 columns on mobile landscape...
.col-4 {
width: 50%;
}
And add the following to the 'Phone (Portrait) Custom CSS' field for a 1 column layout on mobile portrait...
.col-4 {
width:100%;
}
Ciarán