First of all, thank you for the nice theme.
I’d like you to modify a small bug for the next update – responsive menu runs improperly when the width of display is exactly 767px.
Here is a solution:
In style.css,
“@media screen and (min-width: 767px)”
should be replaced as
“@media screen and (min-width: 768px)”.
Because there are two other lines that “@media screen and (max-width: 767px)”,
and “(max-width: 767px)” goes well with “(min-width: 768px)”.