There seems to be a delay during thumbnail wraparound (when it starts back at first) on a flexslider with lazy loading. I have been able to reproduce in portfolio.html by replacing the "Morning Dew" code below:
<div class="slide"><a href="portfolio-single-gallery.html"><img src="images/portfolio/4/4.jpg" alt="Morning Dew"></a></div>
<div class="slide"><a href="portfolio-single-gallery.html"><img src="images/portfolio/4/4-1.jpg" alt="Morning Dew"></a></div>with this:
<div class="slide"><a href="portfolio-single-gallery.html"><img class="lazy" src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 3'%3E%3C/svg%3E" width="800" height="600" data-src="images/portfolio/4/4.jpg" alt="Morning Dew"></a></div>
<div class="slide"><a href="portfolio-single-gallery.html"><img class="lazy" src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 3'%3E%3C/svg%3E" width="800" height="600" data-src="images/portfolio/4/4-1.jpg" alt="Morning Dew"></a></div>This issue is relative to my link shown below and was not present in v6 (https://www.aaronbonine.com/v6/portfolio-birds.html), but probably easier to troubleshoot without all the other scripts on my page.
