By default the all events/sermons button of the countdown timer of homepage in the Native Church theme is hidden on small screens. To show it, add this css at Theme Options => Custom CSS/JS
@media screen and (max-width:767px){
.notice-bar{
padding-bottom: 100px;
position: relative
}
.notice-bar .col-md-2.hidden-xs{
display: block !important;
position: absolute;
width: 100%;
bottom: 20px;
}
.notice-bar .container, .notice-bar .container > .row{
position: static
}
}