diff --git a/src/patterns/04-components/facts-and-figures/facts-and-figures.js b/src/patterns/04-components/facts-and-figures/facts-and-figures.js
index 2a787640788deda1355137f0a585a113f309dc1b..909018379896028294472e5af9457c996681bbf0 100644
--- a/src/patterns/04-components/facts-and-figures/facts-and-figures.js
+++ b/src/patterns/04-components/facts-and-figures/facts-and-figures.js
@@ -20,13 +20,15 @@
             pageDots: true,
             prevNextButtons: false,
             wrapAround: false,
+            contain: true,
             groupCells: function () {
               var width = $(window).width();
               if (width <= 600) {
                 return 1;
               }
-              else if (width <= 1024) {
-                return Math.min(2, numOfItems);
+              else if (width <= 1000) {
+                return numOfItems <= 2 ? (numOfItems - 1 > 0)
+                  ? numOfItems - 1 : 1 : 2;
               }
               else {
                 return numOfItems;