Regular Expressions 101

Save & Share

  • Regex Version: ver. 1
  • Update Regex
    ctrl+⇧+s
  • Save new Regex
    ctrl+s
  • Add to Community Library

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

~
~
g

Test String

Code Generator

Generated Code

# coding=utf8 # the above tag defines encoding for this document and is for Python 2.x compatibility import re regex = r"(?:<style[^>]*?>|(?!^)\G)(?:(?:(?!</style)[^{}:])*{[^{}]*?:[^{}()]*?})*?(?:([^{}:]*){[^{}]*?:\s*url\s*\(\s*([^{}()]*?)\s*\)\s*})" test_str = ("\n" "<!DOCTYPE html> <!--[if IE 9 ]><html lang=\"en-US\" class=\"ie9 loading-site no-js\"> <![endif]--> <!--[if IE 8 ]><html lang=\"en-US\" class=\"ie8 loading-site no-js\"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--><html lang=\"en-US\" class=\"loading-site no-js\"> <!--<![endif]--><head><meta charset=\"UTF-8\" /><link rel=\"profile\" href=\"http://gmpg.org/xfn/11\" /><link rel=\"pingback\" href=\"https://flatsome3.uxthemes.com/xmlrpc.php\" /> <script>document.documentElement.className = document.documentElement.className + ' yes-js js_active js'</script> <script>(function(html){html.className = html.className.replace(/\\bno-js\\b/,'js')})(document.documentElement);</script> <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1\" /><title>Cute Shop - Flatsome</title><meta name=\"robots\" content=\"index, follow\" /><meta name=\"googlebot\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" /><meta name=\"bingbot\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" /><link rel=\"canonical\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/\" /><meta property=\"og:locale\" content=\"en_US\" /><meta property=\"og:type\" content=\"article\" /><meta property=\"og:title\" content=\"Cute Shop - Flatsome\" /><meta property=\"og:url\" content=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/\" /><meta property=\"og:site_name\" content=\"Flatsome\" /><meta property=\"article:modified_time\" content=\"2020-06-18T19:10:25+00:00\" /><meta property=\"og:image\" content=\"https://flatsome3.uxthemes.com/wp-content/uploads/2016/02/cute-shop-hmp.jpg\" /><meta property=\"og:image:width\" content=\"436\" /><meta property=\"og:image:height\" content=\"359\" /><meta name=\"twitter:card\" content=\"summary\" /> <script type=\"application/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https://schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https://flatsome3.uxthemes.com/#website\",\"url\":\"https://flatsome3.uxthemes.com/\",\"name\":\"Flatsome\",\"description\":\"Best selling WooCommerce theme\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":\"https://flatsome3.uxthemes.com/?s={search_term_string}\",\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https://flatsome3.uxthemes.com/wp-content/uploads/2016/02/cute-shop-hmp.jpg\",\"width\":436,\"height\":359},{\"@type\":\"WebPage\",\"@id\":\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/#webpage\",\"url\":\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/\",\"name\":\"Cute Shop - Flatsome\",\"isPartOf\":{\"@id\":\"https://flatsome3.uxthemes.com/#website\"},\"primaryImageOfPage\":{\"@id\":\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/#primaryimage\"},\"datePublished\":\"2016-02-17T10:15:15+00:00\",\"dateModified\":\"2020-06-18T19:10:25+00:00\",\"breadcrumb\":{\"@id\":\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https://flatsome3.uxthemes.com/\",\"url\":\"https://flatsome3.uxthemes.com/\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"position\":2,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https://flatsome3.uxthemes.com/demos/\",\"url\":\"https://flatsome3.uxthemes.com/demos/\",\"name\":\"Demos\"}},{\"@type\":\"ListItem\",\"position\":3,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https://flatsome3.uxthemes.com/demos/shop-demos/\",\"url\":\"https://flatsome3.uxthemes.com/demos/shop-demos/\",\"name\":\"Shop Demos\"}},{\"@type\":\"ListItem\",\"position\":4,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/\",\"url\":\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/\",\"name\":\"Cute Shop\"}}]}]}</script> <link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel=\"alternate\" type=\"application/rss+xml\" title=\"Flatsome &raquo; Feed\" href=\"https://flatsome3.uxthemes.com/feed/\" /><link rel=\"alternate\" type=\"application/rss+xml\" title=\"Flatsome &raquo; Comments Feed\" href=\"https://flatsome3.uxthemes.com/comments/feed/\" /><link data-minify=\"1\" rel='stylesheet' id='wc-block-style-css' href='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/style-3eea9c0569ee25cd5cbe9ddb7a28fff1.css' type='text/css' media='all' /><link data-minify=\"1\" rel='stylesheet' id='contact-form-7-css' href='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/plugins/contact-form-7/includes/css/styles-5e86426b2d580a73ffdaa9bf6e421b79.css' type='text/css' media='all' /><style id='woocommerce-inline-inline-css' type='text/css'>.woocommerce form .form-row .required{visibility:visible}</style><link data-minify=\"1\" rel='stylesheet' id='jquery-selectBox-css' href='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/plugins/yith-woocommerce-wishlist/assets/css/jquery.selectBox-ed10dba3de0446aa3e72aa601a24d898.css' type='text/css' media='all' /><link data-minify=\"1\" rel='stylesheet' id='flatsome-icons-css' href='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/assets/css/fl-icons-a52e178dfb095dba771a76b0acfeee4a.css' type='text/css' media='all' /><link data-minify=\"1\" rel='stylesheet' id='flatsome-woocommerce-wishlist-css' href='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/wishlist-8e63a6ba1475c8fb995982316bad8b0f.css' type='text/css' media='all' /><link data-minify=\"1\" rel='stylesheet' id='flatsome-main-css' href='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/assets/css/flatsome-4ec22cacb425f882c5a13249087c0e2f.css' type='text/css' media='all' /><link data-minify=\"1\" rel='stylesheet' id='flatsome-shop-css' href='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/assets/css/flatsome-shop-d98393ce8b9ed59eb4c1d2341de5d4a9.css' type='text/css' media='all' /><link rel='stylesheet' id='flatsome-googlefonts-css' href='//fonts.googleapis.com/css?family=Slabo+27px%3Aregular%2Cdefault%7COpen+Sans%3Aregular%2Cdefault%7CMontserrat%3Aregular%2C400%7CDancing+Script%3Aregular%2C400&#038;display=swap&#038;ver=3.9' type='text/css' media='all' /> <script type=\"text/javascript\">(function(a,d){if(a._nsl===d){a._nsl=[];var c=function(){if(a.jQuery===d)setTimeout(c,33);else{for(var b=0;b<a._nsl.length;b++)a._nsl[b].call(a,a.jQuery);a._nsl={push:function(b){b.call(a,a.jQuery)}}}};c()}})(window);</script><script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-includes/js/jquery/jquery-1.12.4-wp.js'></script> <link rel='https://api.w.org/' href='https://flatsome3.uxthemes.com/wp-json/' /><link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"https://flatsome3.uxthemes.com/xmlrpc.php?rsd\" /><link rel=\"wlwmanifest\" type=\"application/wlwmanifest+xml\" href=\"https://flatsome3.uxthemes.com/wp-includes/wlwmanifest.xml\" /><link rel='shortlink' href='https://flatsome3.uxthemes.com/?p=4008' /><link rel=\"alternate\" type=\"application/json+oembed\" href=\"https://flatsome3.uxthemes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fflatsome3.uxthemes.com%2Fdemos%2Fshop-demos%2Fcute-shop%2F\" /><link rel=\"alternate\" type=\"text/xml+oembed\" href=\"https://flatsome3.uxthemes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fflatsome3.uxthemes.com%2Fdemos%2Fshop-demos%2Fcute-shop%2F&#038;format=xml\" /><style>.bg{opacity:0;transition:opacity 1s;-webkit-transition:opacity 1s}.bg-loaded{opacity:1}</style><!--[if IE]><link rel=\"stylesheet\" type=\"text/css\" href=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/themes/flatsome/assets/css/ie-fallback.css\"><script src=\"//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.1/html5shiv.js\"></script><script>var head = document.getElementsByTagName('head')[0],style = document.createElement('style');style.type = 'text/css';style.styleSheet.cssText = ':before,:after{content:none !important';head.appendChild(style);setTimeout(function(){head.removeChild(style);}, 0);</script><script src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/themes/flatsome/assets/libs/ie-flexibility.js\"></script><![endif]--> <noscript><style>.woocommerce-product-gallery{opacity:1!important}</style></noscript><link rel=\"icon\" href=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/cropped-logo_example-280x280.png\" sizes=\"32x32\" /><link rel=\"icon\" href=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/cropped-logo_example-280x280.png\" sizes=\"192x192\" /><link rel=\"apple-touch-icon\" href=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/cropped-logo_example-280x280.png\" /><meta name=\"msapplication-TileImage\" content=\"https://flatsome3.uxthemes.com/wp-content/uploads/2016/04/cropped-logo_example-280x280.png\" /><style id=\"custom-css\" type=\"text/css\">:root{--primary-color:#a16695}.header-main{height:90px}#logo img{max-height:90px}#logo{width:200px}.header-top{min-height:30px}.has-transparent+.page-title:first-of-type,.has-transparent+#main>.page-title,.has-transparent+#main>div>.page-title,.has-transparent+#main .page-header-wrapper:first-of-type .page-title{padding-top:120px}.header.show-on-scroll,.stuck .header-main{height:70px!important}.stuck #logo img{max-height:70px!important}.header-bottom{background-color:#f1f1f1}@media (max-width:549px){.header-main{height:70px}#logo img{max-height:70px}}.nav-dropdown-has-arrow li.has-dropdown:before{border-bottom-color:#fff}.nav .nav-dropdown{border-color:#fff}.nav-dropdown-has-arrow li.has-dropdown:after{border-bottom-color:#FFF}.nav .nav-dropdown{background-color:#FFF}.accordion-title.active,.has-icon-bg .icon .icon-inner,.logo a,.primary.is-underline,.primary.is-link,.badge-outline .badge-inner,.nav-outline>li.active>a,.nav-outline>li.active>a,.cart-icon strong,[data-color='primary'],.is-outline.primary{color:#a16695}[data-text-color=\"primary\"]{color:#a16695!important}[data-text-bg=\"primary\"]{background-color:#a16695}.scroll-to-bullets a,.featured-title,.label-new.menu-item>a:after,.nav-pagination>li>.current,.nav-pagination>li>span:hover,.nav-pagination>li>a:hover,.has-hover:hover .badge-outline .badge-inner,button[type=\"submit\"],.button.wc-forward:not(.checkout):not(.checkout-button),.button.submit-button,.button.primary:not(.is-outline),.featured-table .title,.is-outline:hover,.has-icon:hover .icon-label,.nav-dropdown-bold .nav-column li>a:hover,.nav-dropdown.nav-dropdown-bold>li>a:hover,.nav-dropdown-bold.dark .nav-column li>a:hover,.nav-dropdown.nav-dropdown-bold.dark>li>a:hover,.is-outline:hover,.tagcloud a:hover,.grid-tools a,input[type='submit']:not(.is-form),.box-badge:hover .box-text,input.button.alt,.nav-box>li>a:hover,.nav-box>li.active>a,.nav-pills>li.active>a,.current-dropdown .cart-icon strong,.cart-icon:hover strong,.nav-line-bottom>li>a:before,.nav-line-grow>li>a:before,.nav-line>li>a:before,.banner,.header-top,.slider-nav-circle .flickity-prev-next-button:hover svg,.slider-nav-circle .flickity-prev-next-button:hover .arrow,.primary.is-outline:hover,.button.primary:not(.is-outline),input[type='submit'].primary,input[type='submit'].primary,input[type='reset'].button,input[type='button'].primary,.badge-inner{background-color:#a16695}.nav-vertical.nav-tabs>li.active>a,.scroll-to-bullets a.active,.nav-pagination>li>.current,.nav-pagination>li>span:hover,.nav-pagination>li>a:hover,.has-hover:hover .badge-outline .badge-inner,.accordion-title.active,.featured-table,.is-outline:hover,.tagcloud a:hover,blockquote,.has-border,.cart-icon strong:after,.cart-icon strong,.blockUI:before,.processing:before,.loading-spin,.slider-nav-circle .flickity-prev-next-button:hover svg,.slider-nav-circle .flickity-prev-next-button:hover .arrow,.primary.is-outline:hover{border-color:#a16695}.nav-tabs>li.active>a{border-top-color:#a16695}.widget_shopping_cart_content .blockUI.blockOverlay:before{border-left-color:#a16695}.woocommerce-checkout-review-order .blockUI.blockOverlay:before{border-left-color:#a16695}.slider .flickity-prev-next-button:hover svg,.slider .flickity-prev-next-button:hover .arrow{fill:#a16695}[data-icon-label]:after,.secondary.is-underline:hover,.secondary.is-outline:hover,.icon-label,.button.secondary:not(.is-outline),.button.alt:not(.is-outline),.badge-inner.on-sale,.button.checkout,.single_add_to_cart_button,.current .breadcrumb-step{background-color:#D26E4B}[data-text-bg=\"secondary\"]{background-color:#D26E4B}.secondary.is-underline,.secondary.is-link,.secondary.is-outline,.stars a.active,.star-rating:before,.woocommerce-page .star-rating:before,.star-rating span:before,.color-secondary{color:#D26E4B}[data-text-color=\"secondary\"]{color:#D26E4B!important}.secondary.is-outline:hover{border-color:#D26E4B}body{font-size:100%}@media screen and (max-width:549px){body{font-size:100%}}body{font-family:\"Open Sans\",sans-serif}body{color:#777}.nav>li>a{font-family:\"Montserrat\",sans-serif}.nav>li>a{font-weight:400}h1,h2,h3,h4,h5,h6,.heading-font,.off-canvas-center .nav-sidebar.nav-vertical>li>a{font-family:\"Slabo 27px\",sans-serif}h1,h2,h3,h4,h5,h6,.heading-font{color:#555}.alt-font{font-family:\"Dancing Script\",sans-serif}.alt-font{font-weight:400!important}a:hover{color:#111}.tagcloud a:hover{border-color:#111;background-color:#111}@media screen and (min-width:550px){.products .box-vertical .box-image{min-width:247px!important;width:247px!important}}.absolute-footer,html{background-color:#fff}.lazy-load{opacity:1;background-color:rgba(0,0,0,.03)}@media (max-width:849px){.banner-layers{overflow:hidden!important}}.label-new.menu-item>a:after{content:\"New\"}.label-hot.menu-item>a:after{content:\"Hot\"}.label-sale.menu-item>a:after{content:\"Sale\"}.label-popular.menu-item>a:after{content:\"Popular\"}</style></head><body class=\"page-template page-template-page-blank page-template-page-blank-php page page-id-4008 page-child parent-pageid-3021 theme-flatsome woocommerce-no-js lightbox nav-dropdown-has-arrow parallax-mobile\"><a class=\"skip-link screen-reader-text\" href=\"#main\">Skip to content</a><div id=\"wrapper\"><header id=\"header\" class=\"header has-sticky sticky-jump\"><div class=\"header-wrapper\"><div id=\"top-bar\" class=\"header-top hide-for-sticky nav-dark\"><div class=\"flex-row container\"><div class=\"flex-col hide-for-medium flex-left\"><ul class=\"nav nav-left medium-nav-center nav-small nav-divided\"><li class=\"html custom html_topbar_left\"><strong class=\"uppercase\">Add anything here or just remove it....</strong></li></ul></div><div class=\"flex-col hide-for-medium flex-center\"><ul class=\"nav nav-center nav-small nav-divided\"></ul></div><div class=\"flex-col hide-for-medium flex-right\"><ul class=\"nav top-bar-nav nav-right nav-small nav-divided\"><li id=\"menu-item-3167\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3167\"><a href=\"https://flatsome3.uxthemes.com/pages/about/\" class=\"nav-top-link\">About</a></li><li id=\"menu-item-8516\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8516\"><a href=\"https://flatsome3.uxthemes.com/pages/our-stores/\" class=\"nav-top-link\">Our Stores</a></li><li id=\"menu-item-3121\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3121\"><a href=\"https://flatsome3.uxthemes.com/blog/\" class=\"nav-top-link\">Blog</a></li><li id=\"menu-item-3119\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3119\"><a href=\"https://flatsome3.uxthemes.com/pages/contact/\" class=\"nav-top-link\">Contact</a></li><li id=\"menu-item-3118\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3118\"><a href=\"https://flatsome3.uxthemes.com/pages/faq/\" class=\"nav-top-link\">FAQ</a></li><li class=\"header-newsletter-item has-icon\"><a href=\"#header-newsletter-signup\" class=\"tooltip is-small\"\n" "title=\"Sign up for Newsletter\"><i class=\"icon-envelop\"></i> <span class=\"header-newsletter-title hide-for-medium\"> Newsletter </span> </a><div id=\"header-newsletter-signup\"\n" "class=\"lightbox-by-id lightbox-content mfp-hide lightbox-white \"\n" "style=\"max-width:700px ;padding:0px\"><div class=\"banner has-hover\" id=\"banner-873889865\"><div class=\"banner-inner fill\"><div class=\"banner-bg fill\" ><div class=\"bg fill bg-fill \"></div><div class=\"overlay\"></div><div class=\"is-border is-dashed\"\n" "style=\"border-color:rgba(255,255,255,.3);border-width:2px 2px 2px 2px;margin:10px;\"></div></div><div class=\"banner-layers container\"><div class=\"fill banner-link\"></div><div id=\"text-box-190247645\" class=\"text-box banner-layer x10 md-x10 lg-x10 y50 md-y50 lg-y50 res-text\"><div data-animate=\"fadeInUp\"><div class=\"text dark\"><div class=\"text-inner text-left\"><h3 class=\"uppercase\">Sign up for Newsletter</h3><p class=\"lead\">Signup for our newsletter to get notified about sales and new products. Add any text here or remove it.</p><div role=\"form\" class=\"wpcf7\" id=\"wpcf7-f7042-o1\" lang=\"en-US\" dir=\"ltr\"><div class=\"screen-reader-response\" aria-live=\"polite\"></div><form action=\"/demos/shop-demos/cute-shop/#wpcf7-f7042-o1\" method=\"post\" class=\"wpcf7-form mailchimp-ext-0.5.20\" novalidate=\"novalidate\"><div style=\"display: none;\"> <input type=\"hidden\" name=\"_wpcf7\" value=\"7042\" /> <input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.9\" /> <input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" /> <input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f7042-o1\" /> <input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" /></div><div class=\"flex-row form-flat medium-flex-wrap\"><div class=\"flex-col flex-grow\"> <span class=\"wpcf7-form-control-wrap your-email\"><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" class=\"wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email (required)\" /></span></div><div class=\"flex-col ml-half\"> <input type=\"submit\" value=\"Sign Up\" class=\"wpcf7-form-control wpcf7-submit button\" /></div></div><div class=\"wpcf7-response-output wpcf7-display-none\" aria-hidden=\"true\"></div><p style=\"display: none !important\"><span class=\"wpcf7-form-control-wrap referer-page\"><input type=\"hidden\" name=\"referer-page\" value=\"https://flatsome3.uxthemes.com/\" class=\"wpcf7-form-control wpcf7-text referer-page\" aria-invalid=\"false\"></span></p></form></div></div></div></div><style scope=\"scope\">#text-box-190247645{width:60%}#text-box-190247645 .text{font-size:100%}@media (min-width:550px){#text-box-190247645{width:50%}}</style></div></div></div><style scope=\"scope\">#banner-873889865{padding-top:500px}#banner-873889865 .bg.bg-loaded{background-image:url(https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/Letters-C.jpg)}#banner-873889865 .overlay{background-color:rgba(0,0,0,.4)}</style></div></div></li><li class=\"has-dropdown header-language-dropdown\"> <a href=\"#\"> Languages <i class=\"icon-angle-down\" ></i> </a><ul class=\"nav-dropdown nav-dropdown-default\"><li><a>You need Polylang or WPML plugin for this to work. You can remove it from Theme Options.</a></li></ul></li><li class=\"header-wishlist-icon\"> <a href=\"https://flatsome3.uxthemes.com/my-account/wishlist/\" class=\"wishlist-link is-small\"> <span class=\"hide-for-medium header-wishlist-title\"> Wishlist </span> <i class=\"wishlist-icon icon-heart\"\n" "> </i> </a></li><li class=\"html header-social-icons ml-0\"><div class=\"social-icons follow-icons\" ><a href=\"http://url\" target=\"_blank\" data-label=\"Facebook\" rel=\"noopener noreferrer nofollow\" class=\"icon plain facebook tooltip\" title=\"Follow on Facebook\"><i class=\"icon-facebook\" ></i></a><a href=\"http://url\" target=\"_blank\" rel=\"noopener noreferrer nofollow\" data-label=\"Instagram\" class=\"icon plain instagram tooltip\" title=\"Follow on Instagram\"><i class=\"icon-instagram\" ></i></a><a href=\"http://url\" target=\"_blank\" data-label=\"Twitter\" rel=\"noopener noreferrer nofollow\" class=\"icon plain twitter tooltip\" title=\"Follow on Twitter\"><i class=\"icon-twitter\" ></i></a><a href=\"mailto:your@email\" data-label=\"E-mail\" rel=\"nofollow\" class=\"icon plain email tooltip\" title=\"Send us an email\"><i class=\"icon-envelop\" ></i></a></div></li></ul></div><div class=\"flex-col show-for-medium flex-grow\"><ul class=\"nav nav-center nav-small mobile-nav nav-divided\"><li class=\"html custom html_topbar_left\"><strong class=\"uppercase\">Add anything here or just remove it....</strong></li></ul></div></div></div><div id=\"masthead\" class=\"header-main \"><div class=\"header-inner flex-row container logo-left medium-logo-center\" role=\"navigation\"><div id=\"logo\" class=\"flex-col logo\"> <a href=\"https://flatsome3.uxthemes.com/\" title=\"Flatsome - Best selling WooCommerce theme\" rel=\"home\"> <img width=\"200\" height=\"90\" src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/themes/flatsome/assets/img/logo.png\" class=\"header_logo header-logo\" alt=\"Flatsome\"/><img width=\"200\" height=\"90\" src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/logo-light.png\" class=\"header-logo-dark\" alt=\"Flatsome\"/></a></div><div class=\"flex-col show-for-medium flex-left\"><ul class=\"mobile-nav nav nav-left \"><li class=\"nav-icon has-icon\"> <a href=\"#\" data-open=\"#main-menu\" data-pos=\"left\" data-bg=\"main-menu-overlay\" data-color=\"\" class=\"is-small\" aria-label=\"Menu\" aria-controls=\"main-menu\" aria-expanded=\"false\"> <i class=\"icon-menu\" ></i> </a></li></ul></div><div class=\"flex-col hide-for-medium flex-left\n" "flex-grow\"><ul class=\"header-nav header-nav-main nav nav-left nav-uppercase\" ><li class=\"header-search header-search-dropdown has-icon has-dropdown menu-item-has-children\"> <a href=\"#\" aria-label=\"Search\" class=\"is-small\"><i class=\"icon-search\" ></i></a><ul class=\"nav-dropdown nav-dropdown-default\"><li class=\"header-search-form search-form html relative has-icon\"><div class=\"header-search-form-wrapper\"><div class=\"searchform-wrapper ux-search-box relative is-normal\"><form role=\"search\" method=\"get\" class=\"searchform\" action=\"https://flatsome3.uxthemes.com/\"><div class=\"flex-row relative\"><div class=\"flex-col flex-grow\"> <label class=\"screen-reader-text\" for=\"woocommerce-product-search-field-0\">Search for:</label> <input type=\"search\" id=\"woocommerce-product-search-field-0\" class=\"search-field mb-0\" placeholder=\"Search&hellip;\" value=\"\" name=\"s\" /> <input type=\"hidden\" name=\"post_type\" value=\"product\" /></div><div class=\"flex-col\"> <button type=\"submit\" value=\"Search\" class=\"ux-search-submit submit-button secondary button icon mb-0\"> <i class=\"icon-search\" ></i> </button></div></div><div class=\"live-search-results text-left z-top\"></div></form></div></div></li></ul></li><li id=\"menu-item-3219\" class=\"menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-menu-ancestor current_page_ancestor menu-item-has-children menu-item-3219 active has-dropdown\"><a href=\"https://flatsome3.uxthemes.com/demos/\" class=\"nav-top-link\">Demos<i class=\"icon-angle-down\" ></i></a><ul class=\"sub-menu nav-dropdown nav-dropdown-default\"><li id=\"menu-item-3215\" class=\"menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-page-parent menu-item-has-children menu-item-3215 nav-dropdown-col\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/\">Shop Demos</a><ul class=\"sub-menu nav-column nav-dropdown-default\"><li id=\"menu-item-3218\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3218\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/classic-shop/\">Classic Shop</a></li><li id=\"menu-item-3202\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3202\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/simple-slider/\">Simple Slider</a></li><li id=\"menu-item-3200\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3200\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/fullscreen-fashion/\">Fullscreen Fashion</a></li><li id=\"menu-item-8548\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8548\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/video-cover/\">Video Cover</a></li><li id=\"menu-item-8552\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8552\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/slider-cover/\">Slider Cover</a></li><li id=\"menu-item-3201\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3201\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/grid-style-1/\">Grid Style 1</a></li><li id=\"menu-item-3197\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3197\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/grid-style-2/\">Grid Style 2</a></li><li id=\"menu-item-8406\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8406\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/grid-style-3/\">Grid Style 3</a></li></ul></li><li id=\"menu-item-3263\" class=\"menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-menu-ancestor current-menu-parent current-page-parent current_page_parent current_page_ancestor menu-item-has-children menu-item-3263 active nav-dropdown-col\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/\">More Shop Demos</a><ul class=\"sub-menu nav-column nav-dropdown-default\"><li id=\"menu-item-3259\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3259\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/mega-shop/\">Mega Shop</a></li><li id=\"menu-item-4010\" class=\"menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-4008 current_page_item menu-item-4010 active\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/\" aria-current=\"page\">Cute Shop</a></li><li id=\"menu-item-4027\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4027\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/sport-shop/\">Sport Shop</a></li><li id=\"menu-item-7318\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7318\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/vendor-shop/\">Vendor Shop</a></li><li id=\"menu-item-3290\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3290\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/parallax-shop/\">Parallax Shop</a></li><li id=\"menu-item-8113\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8113\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/big-sale/\">Big Sale</a></li><li id=\"menu-item-7226\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7226\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/sale-countdown/\">Sale Countdown</a></li></ul></li><li id=\"menu-item-3216\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3216 nav-dropdown-col\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/\">Business Demos</a><ul class=\"sub-menu nav-column nav-dropdown-default\"><li id=\"menu-item-3224\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3224\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/agency/\">Agency</a></li><li id=\"menu-item-4046\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4046\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/simple-corporate/\">Corporate</a></li><li id=\"menu-item-8196\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8196\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/freelancer/\">Freelancer</a></li><li id=\"menu-item-7040\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7040\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/explore/\">Explore</a></li><li id=\"menu-item-3222\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3222\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/lifestyle/\">Lifestyle</a></li></ul></li></ul></li><li id=\"menu-item-3234\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-has-children menu-item-3234 has-dropdown\"><a href=\"https://flatsome3.uxthemes.com/\" class=\"nav-top-link\">Features<i class=\"icon-angle-down\" ></i></a><ul class=\"sub-menu nav-dropdown nav-dropdown-default\"><li id=\"menu-item-3211\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-has-children menu-item-3211 nav-dropdown-col\"><a href=\"https://flatsome3.uxthemes.com/\">Features</a><ul class=\"sub-menu nav-column nav-dropdown-default\"><li id=\"menu-item-7185\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7185\"><a href=\"https://flatsome3.uxthemes.com/features/core-features/\">Core Features</a></li><li id=\"menu-item-10984\" class=\"label-new menu-item menu-item-type-post_type menu-item-object-page menu-item-10984\"><a href=\"https://flatsome3.uxthemes.com/features/whats-new/\">What&#8217;s New</a></li><li id=\"menu-item-3214\" class=\"label-popular menu-item menu-item-type-post_type menu-item-object-page menu-item-3214\"><a href=\"https://flatsome3.uxthemes.com/features/ux-page-builder/\">UX Builder</a></li><li id=\"menu-item-3231\" class=\"label-popular menu-item menu-item-type-post_type menu-item-object-page menu-item-3231\"><a href=\"https://flatsome3.uxthemes.com/features/header-designer/\">Header Designer</a></li><li id=\"menu-item-10973\" class=\"label-new menu-item menu-item-type-post_type menu-item-object-page menu-item-10973\"><a href=\"https://flatsome3.uxthemes.com/features/flatsome-studio/\">Flatsome Studio</a></li><li id=\"menu-item-7371\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7371\"><a href=\"https://flatsome3.uxthemes.com/features/fast-performance/\">Fast Performance</a></li><li id=\"menu-item-8662\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8662\"><a href=\"https://flatsome3.uxthemes.com/features/parallax-scrolling/\">Parallax Scrolling</a></li><li id=\"menu-item-9956\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9956\"><a href=\"https://flatsome3.uxthemes.com/features/single-page-navigation/\">Single Page Navigation</a></li><li id=\"menu-item-9332\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9332\"><a href=\"https://flatsome3.uxthemes.com/features/sticky-sections/\">Sticky Sections</a></li><li id=\"menu-item-9765\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9765\"><a href=\"https://flatsome3.uxthemes.com/features/getting-started/\">Getting Started</a></li><li id=\"menu-item-9774\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9774\"><a href=\"https://flatsome3.uxthemes.com/features/footer-features/\">Footer Features</a></li></ul></li><li id=\"menu-item-8582\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-has-children menu-item-8582 nav-dropdown-col\"><a href=\"https://flatsome3.uxthemes.com/\">More</a><ul class=\"sub-menu nav-column nav-dropdown-default\"><li id=\"menu-item-7183\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7183\"><a href=\"https://flatsome3.uxthemes.com/features/blog-features/\">Blog Features</a></li><li id=\"menu-item-3229\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3229\"><a href=\"https://flatsome3.uxthemes.com/features/portfolio-features/\">Portfolio Features</a></li><li id=\"menu-item-3946\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3946\"><a href=\"https://flatsome3.uxthemes.com/features/blocks-element/\">Blocks Element</a></li><li id=\"menu-item-7188\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7188\"><a href=\"https://flatsome3.uxthemes.com/features/documentation/\">Videos &#038; Docs</a></li><li id=\"menu-item-9763\" class=\"label-hot menu-item menu-item-type-post_type menu-item-object-page menu-item-9763\"><a href=\"https://flatsome3.uxthemes.com/features/customer-reviews/\">Customer Reviews</a></li><li id=\"menu-item-9764\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9764\"><a href=\"https://flatsome3.uxthemes.com/features/elements-overview/\">Elements Overview</a></li><li id=\"menu-item-3230\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3230\"><a href=\"https://flatsome3.uxthemes.com/features/woocommerce/\">WooCommerce</a><ul class=\"sub-menu nav-column nav-dropdown-default\"><li id=\"menu-item-9767\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9767\"><a href=\"/features/woocommerce/#shop-features\">Category Features</a></li><li id=\"menu-item-9768\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9768\"><a href=\"/features/woocommerce/#product-features\">Product Features</a></li><li id=\"menu-item-9769\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9769\"><a href=\"/features/woocommerce/#catalogue-mode\">Catalogue Mode</a></li></ul></li></ul></li><li id=\"menu-item-7338\" class=\"image-column menu-item menu-item-type-custom menu-item-object-custom menu-item-7338\"><a href=\"#\" class=\"dropdown-image-column\"><img width=\"180\" height=\"480\" src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2017/11/custom-image-1.jpg\" title=\"Image Column\" alt=\"Image Column\"/></a></li></ul></li><li id=\"menu-item-3320\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3320 has-dropdown\"><a href=\"https://flatsome3.uxthemes.com/shop/\" class=\"nav-top-link\">Shop<i class=\"icon-angle-down\" ></i></a><ul class=\"sub-menu nav-dropdown nav-dropdown-default\"><li id=\"menu-item-9823\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9823\"><a href=\"https://flatsome3.uxthemes.com/features/woocommerce/\">WooCommerce</a></li></ul></li><li id=\"menu-item-3204\" class=\"menu-flyout menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3204 has-dropdown\"><a href=\"https://flatsome3.uxthemes.com/pages/\" class=\"nav-top-link\">Pages<i class=\"icon-angle-down\" ></i></a><ul class=\"sub-menu nav-dropdown nav-dropdown-default\"><li id=\"menu-item-3209\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3209\"><a href=\"https://flatsome3.uxthemes.com/pages/portfolio/\">Portfolio</a></li><li id=\"menu-item-3205\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3205\"><a href=\"https://flatsome3.uxthemes.com/pages/about/\">About</a></li><li id=\"menu-item-3206\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3206\"><a href=\"https://flatsome3.uxthemes.com/pages/contact/\">Contact</a></li><li id=\"menu-item-8416\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8416\"><a href=\"https://flatsome3.uxthemes.com/pages/our-stores/\">Our Stores</a></li><li id=\"menu-item-8547\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8547\"><a href=\"https://flatsome3.uxthemes.com/pages/maintenance/\">Maintenance</a></li><li id=\"menu-item-10976\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-10976\"><a href=\"https://flatsome3.uxthemes.com/pages/layouts/\">Page layouts</a></li></ul></li><li id=\"menu-item-3203\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3203\"><a href=\"https://flatsome3.uxthemes.com/blog/\" class=\"nav-top-link\">Blog</a></li><li id=\"menu-item-3210\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3210\"><a href=\"https://flatsome3.uxthemes.com/elements/\" class=\"nav-top-link\">Elements</a></li></ul></div><div class=\"flex-col hide-for-medium flex-right\"><ul class=\"header-nav header-nav-main nav nav-right nav-uppercase\"><li class=\"account-item has-icon\n" "\"\n" "><a href=\"https://flatsome3.uxthemes.com/my-account/\"\n" "class=\"nav-top-link nav-top-not-logged-in \"\n" "data-open=\"#login-form-popup\" > <span> Login </span> </a></li><li class=\"header-divider\"></li><li class=\"cart-item has-icon has-dropdown\"><a href=\"https://flatsome3.uxthemes.com/cart/\" title=\"Cart\" class=\"header-cart-link is-small\"><span class=\"header-cart-title\"> Cart / <span class=\"cart-price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>0,00</span></span> </span><span class=\"cart-icon image-icon\"> <strong>0</strong> </span> </a><ul class=\"nav-dropdown nav-dropdown-default\"><li class=\"html widget_shopping_cart\"><div class=\"widget_shopping_cart_content\"><p class=\"woocommerce-mini-cart__empty-message\">No products in the cart.</p></div></li></ul></li></ul></div><div class=\"flex-col show-for-medium flex-right\"><ul class=\"mobile-nav nav nav-right \"><li class=\"cart-item has-icon\"><a href=\"https://flatsome3.uxthemes.com/cart/\" class=\"header-cart-link off-canvas-toggle nav-top-link is-small\" data-open=\"#cart-popup\" data-class=\"off-canvas-cart\" title=\"Cart\" data-pos=\"right\"> <span class=\"cart-icon image-icon\"> <strong>0</strong> </span> </a><div id=\"cart-popup\" class=\"mfp-hide widget_shopping_cart\"><div class=\"cart-popup-inner inner-padding\"><div class=\"cart-popup-title text-center\"><h4 class=\"uppercase\">Cart</h4><div class=\"is-divider\"></div></div><div class=\"widget_shopping_cart_content\"><p class=\"woocommerce-mini-cart__empty-message\">No products in the cart.</p></div><div class=\"cart-sidebar-content relative\"></div></div></div></li></ul></div></div><div class=\"container\"><div class=\"top-divider full-width\"></div></div></div><div class=\"header-bg-container fill\"><div class=\"header-bg-image fill\"></div><div class=\"header-bg-color fill\"></div></div></div></header><main id=\"main\" class=\"\"><div id=\"content\" role=\"main\" class=\"content-area\"><section class=\"section\" id=\"section_444827282\"><div class=\"bg section-bg fill bg-fill bg-loaded\" ><div class=\"effect-snow bg-effect fill no-click\"></div><div class=\"is-border\"\n" "style=\"border-color:rgba(0, 0, 0, 0.13);border-width:1px 0px 1px 0px;\"></div></div><div class=\"section-content relative\"><div class=\"banner-grid-wrapper\"><div id=\"banner-grid-1336195619\" class=\"banner-grid row row-grid row-small row-box-shadow-1\" data-packery-options=\"\"><div class=\"col grid-col small-12 large-4 grid-col-1\" ><div class=\"col-inner\"><div class=\"banner has-hover\" id=\"banner-1598294219\"><div class=\"banner-inner fill\"><div class=\"banner-bg fill\" ><div class=\"bg fill bg-fill \"></div></div><div class=\"banner-layers container\"><div class=\"fill banner-link\"></div><div id=\"text-box-799723936\" class=\"text-box banner-layer x50 md-x50 lg-x50 y80 md-y80 lg-y80 res-text\"><div class=\"text dark\"><div class=\"text-inner text-center\"><h2 class=\"alt-font\">A Cute Title</h2><h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2><p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p> <a class=\"button primary is-outline is-xlarge\" > <span>Click me!</span> </a></div></div><style scope=\"scope\">#text-box-799723936{width:70%}#text-box-799723936 .text{font-size:100%}</style></div></div></div><div class=\"height-fix is-invisible\"><img width=\"600\" height=\"600\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20600%20600%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/bunny-600x600.jpg\" class=\"lazy-load attachment-large size-large\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/bunny-600x600.jpg 600w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/bunny-600x600-100x100.jpg 100w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/bunny-600x600-510x510.jpg 510w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/bunny-600x600-280x280.jpg 280w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/bunny-600x600-400x400.jpg 400w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></div><style scope=\"scope\">#banner-1598294219 .bg.bg-loaded{background-image:url(https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/bunny-600x600.jpg)}#banner-1598294219 .bg{background-position:64% 30%}</style></div></div></div><div class=\"col grid-col small-12 large-3 grid-col-1\" ><div class=\"col-inner\"><div class=\"banner has-hover\" id=\"banner-1975480871\"><div class=\"banner-inner fill\"><div class=\"banner-bg fill\" ><div class=\"bg fill bg-fill \"></div></div><div class=\"banner-layers container\"><div class=\"fill banner-link\"></div><div id=\"text-box-1718728281\" class=\"text-box banner-layer x50 md-x50 lg-x50 y10 md-y10 lg-y10 res-text\"><div class=\"text dark\"><div class=\"text-inner text-center\"><h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2> <a class=\"button primary is-outline is-larger\" > <span>Shop now</span> </a></div></div><style scope=\"scope\">#text-box-1718728281{width:60%}#text-box-1718728281 .text{font-size:100%}@media (min-width:550px){#text-box-1718728281{width:70%}}</style></div></div></div><div class=\"height-fix is-invisible\"><img width=\"622\" height=\"800\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20622%20800%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/unspecified6-622x800.jpg\" class=\"lazy-load attachment-large size-large\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/unspecified6-622x800.jpg 622w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/unspecified6-510x656.jpg 510w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/unspecified6-400x514.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/unspecified6-768x987.jpg 768w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/unspecified6.jpg 960w\" sizes=\"(max-width: 622px) 100vw, 622px\" /></div><style scope=\"scope\">#banner-1975480871 .bg.bg-loaded{background-image:url(https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/unspecified6-622x800.jpg)}#banner-1975480871 .bg{background-position:51% 56%}</style></div></div></div><div class=\"col grid-col small-14 large-5 grid-col-1-3\" ><div class=\"col-inner\"><div class=\"banner has-hover\" id=\"banner-1166562998\"><div class=\"banner-inner fill\"><div class=\"banner-bg fill\" ><div class=\"bg fill bg-fill \"></div><div class=\"overlay\"></div></div><div class=\"banner-layers container\"><div class=\"fill banner-link\"></div><div id=\"text-box-1258243040\" class=\"text-box banner-layer x10 md-x10 lg-x10 y80 md-y80 lg-y80 res-text\"><div class=\"text \"><div class=\"text-inner text-left\"><h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2> <a class=\"button primary is-outline is-larger\" > <span>Shop now</span> </a></div></div><style scope=\"scope\">#text-box-1258243040{width:42%}#text-box-1258243040 .text{font-size:100%}</style></div></div></div><div class=\"height-fix is-invisible\"><img width=\"400\" height=\"347\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20347%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/Skjermbilde-2015-11-29-kl.-20.11.01-600x520-400x347.png\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/Skjermbilde-2015-11-29-kl.-20.11.01-600x520-400x347.png 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/Skjermbilde-2015-11-29-kl.-20.11.01-600x520-510x442.png 510w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/Skjermbilde-2015-11-29-kl.-20.11.01-600x520.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><style scope=\"scope\">#banner-1166562998 .bg.bg-loaded{background-image:url(https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/Skjermbilde-2015-11-29-kl.-20.11.01-600x520-400x347.png)}#banner-1166562998 .overlay{background-color:rgba(255,255,255,.15)}#banner-1166562998 .bg{background-position:51% 30%}</style></div></div></div><div class=\"col grid-col small-12 large-5 grid-col-2-3\" ><div class=\"col-inner\"><div class=\"banner has-hover\" id=\"banner-1977483124\"><div class=\"banner-inner fill\"><div class=\"banner-bg fill\" ><div class=\"bg fill bg-fill \"></div><div class=\"overlay\"></div></div><div class=\"banner-layers container\"><div class=\"fill banner-link\"></div><div id=\"text-box-688659312\" class=\"text-box banner-layer x50 md-x50 lg-x50 y50 md-y50 lg-y50 res-text\"><div class=\"text dark\"><div class=\"text-inner text-center\"><h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2><div id=\"timer-1217222589\" class=\"ux-timer dark\" data-text-plural=\"s\" data-text-hour=\"hour\" data-text-day=\"day\" data-text-week=\"week\" data-text-min=\"min\" data-text-sec=\"sec\" data-text-hour-p=\"\" data-text-day-p=\"\" data-text-week-p=\"\" data-text-min-p=\"\" data-text-sec-p=\"\" data-countdown=\"2019/12/31 18:00\"><span>&nbsp;<div class=\"loading-spin dark centered\"></div><strong>&nbsp;</strong></span></div><style scope=\"scope\">#timer-1217222589{font-size:268%}#timer-1217222589 span{background-color:rgba(0,0,0,.1)}</style></div></div><style scope=\"scope\">#text-box-688659312{width:60%}#text-box-688659312 .text{font-size:100%}@media (min-width:550px){#text-box-688659312{width:70%}}</style></div></div></div><div class=\"height-fix is-invisible\"><img width=\"750\" height=\"750\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20750%20750%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/14052207_900307180075165_938236414_n.jpg\" class=\"lazy-load attachment-large size-large\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/14052207_900307180075165_938236414_n.jpg 750w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/14052207_900307180075165_938236414_n-100x100.jpg 100w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/14052207_900307180075165_938236414_n-510x510.jpg 510w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/14052207_900307180075165_938236414_n-280x280.jpg 280w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/14052207_900307180075165_938236414_n-400x400.jpg 400w\" sizes=\"(max-width: 750px) 100vw, 750px\" /></div><style scope=\"scope\">#banner-1977483124 .bg.bg-loaded{background-image:url(https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/14052207_900307180075165_938236414_n.jpg)}#banner-1977483124 .overlay{background-color:rgba(0,0,0,.3)}#banner-1977483124{background-color:rgb(0,0,0)}#banner-1977483124 .bg{background-position:71% 19%}</style></div></div></div></div><style scope=\"scope\">#banner-grid-1336195619 .grid-col-1{height:617px}#banner-grid-1336195619 .grid-col-1-2{height:308.5px}#banner-grid-1336195619 .grid-col-1-3{height:205.666666667px}#banner-grid-1336195619 .grid-col-2-3{height:411.333333333px}#banner-grid-1336195619 .grid-col-1-4{height:154.25px}#banner-grid-1336195619 .grid-col-3-4{height:462.75px}</style></div></div><style scope=\"scope\">#section_444827282{padding-top:30px;padding-bottom:30px;background-color:rgb(237,239,241)}</style></section><section class=\"section\" id=\"section_1516922371\"><div class=\"bg section-bg fill bg-fill bg-loaded\" ></div><div class=\"section-content relative\"><div class=\"row row-divided\" id=\"row-705333761\"><div class=\"col medium-4 small-12 large-4\" data-animate=\"fadeInUp\"><div class=\"col-inner text-center\" ><div class=\"icon-box featured-box icon-box-center text-center\" style=\"margin:px px px px;\"><div class=\"icon-box-img has-icon-bg\" style=\"width: 51px\"><div class=\"icon\"><div class=\"icon-inner\" style=\"border-width:3px;\"> <?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\"> <svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\"> <path fill=\"#000\" d=\"M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899z\"></path> </svg></div></div></div><div class=\"icon-box-text last-reset\"><h3>Free Shipping on orders above 99$</h3><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p></div></div></div></div><div class=\"col medium-4 small-12 large-4\" data-animate=\"fadeInUp\"><div class=\"col-inner text-center\" ><div class=\"icon-box featured-box icon-box-center text-center\" style=\"margin:px px px px;\"><div class=\"icon-box-img has-icon-bg\" style=\"width: 51px\"><div class=\"icon\"><div class=\"icon-inner\" style=\"border-width:3px;\"> <?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\"> <svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\"> <path fill=\"#444\" d=\"M24.11 10c0.566-0.402 1.11-0.851 1.608-1.348 1.044-1.044 1.742-2.328 1.966-3.616 0.246-1.412-0.115-2.723-0.988-3.597-0.697-0.697-1.641-1.065-2.73-1.065-1.551 0-3.185 0.744-4.483 2.043-2.077 2.077-3.288 4.945-3.94 6.991-0.482-2.056-1.444-4.833-3.313-6.702-1.003-1.003-2.285-1.518-3.495-1.518-0.989 0-1.931 0.344-2.633 1.046-1.562 1.562-1.351 4.306 0.471 6.128 0.65 0.65 1.409 1.189 2.21 1.638h-6.782v8h2v14h24v-14h2v-8h-5.89zM21.073 4.007c0.866-0.866 1.948-1.384 2.892-1.384 0.334 0 0.803 0.070 1.139 0.406 0.813 0.813 0.357 2.697-0.977 4.031-1.373 1.373-3.221 2.318-4.826 2.939h-1.584c0.58-1.798 1.627-4.264 3.356-5.993zM7.31 5.028c-0.022-0.285-0.002-0.82 0.381-1.203 0.32-0.32 0.743-0.387 1.042-0.387v0c0.664 0 1.358 0.313 1.904 0.859 1.059 1.058 1.93 2.743 2.521 4.871 0.016 0.057 0.031 0.115 0.047 0.171-0.057-0.015-0.114-0.031-0.171-0.047-2.128-0.591-3.813-1.462-4.871-2.521-0.495-0.495-0.805-1.13-0.853-1.743zM14 30h-8v-13h8v13zM14 16h-10v-4h10v4zM26 30h-8v-13h8v13zM28 16h-10v-4h10v4z\"></path> </svg></div></div></div><div class=\"icon-box-text last-reset\"><h3>Give a Gift to a Friend</h3><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed dia.</p></div></div></div></div><div class=\"col medium-4 small-12 large-4\" data-animate=\"fadeInUp\"><div class=\"col-inner text-center\" ><div class=\"icon-box featured-box icon-box-center text-center\" style=\"margin:px px px px;\"><div class=\"icon-box-img has-icon-bg\" style=\"width: 51px\"><div class=\"icon\"><div class=\"icon-inner\" style=\"border-width:3px;\"> <?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\"> <svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\"> <path fill=\"#444\" d=\"M29.714 10.643q0-1.446-0.384-2.554t-0.982-1.759-1.455-1.063-1.679-0.554-1.75-0.143-2 0.455-1.973 1.143-1.545 1.286-1.071 1.098q-0.321 0.393-0.875 0.393t-0.875-0.393q-0.429-0.5-1.071-1.098t-1.545-1.286-1.973-1.143-2-0.455-1.75 0.143-1.679 0.554-1.455 1.063-0.982 1.759-0.384 2.554q0 3 3.339 6.339l10.375 10 10.357-9.982q3.357-3.357 3.357-6.357zM32 10.643q0 3.946-4.089 8.036l-11.125 10.714q-0.321 0.321-0.786 0.321t-0.786-0.321l-11.143-10.75q-0.179-0.143-0.491-0.464t-0.991-1.17-1.214-1.741-0.955-2.161-0.42-2.464q0-3.929 2.268-6.143t6.268-2.214q1.107 0 2.259 0.384t2.143 1.036 1.705 1.223 1.357 1.214q0.643-0.643 1.357-1.214t1.705-1.223 2.143-1.036 2.259-0.384q4 0 6.268 2.214t2.268 6.143z\"></path> </svg></div></div></div><div class=\"icon-box-text last-reset\"><h3>Loved by our Customers</h3><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed.</p></div></div></div></div><style scope=\"scope\"></style></div></div><style scope=\"scope\">#section_1516922371{padding-top:30px;padding-bottom:30px;background-color:rgb(255,255,255)}</style></section><div class=\"container section-title-container\" style=\"margin-top:10px;\"><h3 class=\"section-title section-title-bold-center\"><b></b><span class=\"section-title-main\" style=\"font-size:undefined%;\">Shop Now</span><b></b></h3></div><div class=\"row large-columns-5 medium-columns-3 small-columns-2 row-small has-shadow row-box-shadow-1 slider row-slider slider-nav-reveal\" data-flickity-options='{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}'><div class=\"product-category col\" ><div class=\"col-inner\"> <a href=\"https://flatsome3.uxthemes.com/product-category/clothing/\"><div class=\"box box-category has-hover box-overlay dark box-text-middle \"><div class=\"box-image\" ><div class=\"image-zoom\" > <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/06/hoodie_4_front-247x296.jpg\" alt=\"Clothing\" width=\"300\" height=\"300\" /><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0.08)\"></div></div></div><div class=\"box-text text-center is-small\" ><div class=\"box-text-inner\"><h5 class=\"uppercase header-title\"> Clothing</h5></div></div></div> </a></div></div><div class=\"product-category col\" ><div class=\"col-inner\"> <a href=\"https://flatsome3.uxthemes.com/product-category/women/\"><div class=\"box box-category has-hover box-overlay dark box-text-middle \"><div class=\"box-image\" ><div class=\"image-zoom\" > <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/589864-5295_1-247x296.jpeg\" alt=\"Women\" width=\"300\" height=\"300\" /><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0.08)\"></div></div></div><div class=\"box-text text-center is-small\" ><div class=\"box-text-inner\"><h5 class=\"uppercase header-title\"> Women</h5></div></div></div> </a></div></div><div class=\"product-category col\" ><div class=\"col-inner\"> <a href=\"https://flatsome3.uxthemes.com/product-category/booking/\"><div class=\"box box-category has-hover box-overlay dark box-text-middle \"><div class=\"box-image\" ><div class=\"image-zoom\" > <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/booking-247x296.jpg\" alt=\"Booking\" width=\"300\" height=\"300\" /><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0.08)\"></div></div></div><div class=\"box-text text-center is-small\" ><div class=\"box-text-inner\"><h5 class=\"uppercase header-title\"> Booking</h5></div></div></div> </a></div></div><div class=\"product-category col\" ><div class=\"col-inner\"> <a href=\"https://flatsome3.uxthemes.com/product-category/men/\"><div class=\"box box-category has-hover box-overlay dark box-text-middle \"><div class=\"box-image\" ><div class=\"image-zoom\" > <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/602779-0083_1-247x296.jpeg\" alt=\"Men\" width=\"300\" height=\"300\" /><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0.08)\"></div></div></div><div class=\"box-text text-center is-small\" ><div class=\"box-text-inner\"><h5 class=\"uppercase header-title\"> Men</h5></div></div></div> </a></div></div><div class=\"product-category col\" ><div class=\"col-inner\"> <a href=\"https://flatsome3.uxthemes.com/product-category/bags/\"><div class=\"box box-category has-hover box-overlay dark box-text-middle \"><div class=\"box-image\" ><div class=\"image-zoom\" > <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/282259-0001_2-247x296.jpeg\" alt=\"Bags\" width=\"300\" height=\"300\" /><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0.08)\"></div></div></div><div class=\"box-text text-center is-small\" ><div class=\"box-text-inner\"><h5 class=\"uppercase header-title\"> Bags</h5></div></div></div> </a></div></div><div class=\"product-category col\" ><div class=\"col-inner\"> <a href=\"https://flatsome3.uxthemes.com/product-category/music/\"><div class=\"box box-category has-hover box-overlay dark box-text-middle \"><div class=\"box-image\" ><div class=\"image-zoom\" > <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/06/cd_5_angle-247x296.jpg\" alt=\"Music\" width=\"300\" height=\"300\" /><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0.08)\"></div></div></div><div class=\"box-text text-center is-small\" ><div class=\"box-text-inner\"><h5 class=\"uppercase header-title\"> Music</h5></div></div></div> </a></div></div><div class=\"product-category col\" ><div class=\"col-inner\"> <a href=\"https://flatsome3.uxthemes.com/product-category/posters/\"><div class=\"box box-category has-hover box-overlay dark box-text-middle \"><div class=\"box-image\" ><div class=\"image-zoom\" > <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/06/poster_1_up-247x296.jpg\" alt=\"Posters\" width=\"300\" height=\"300\" /><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0.08)\"></div></div></div><div class=\"box-text text-center is-small\" ><div class=\"box-text-inner\"><h5 class=\"uppercase header-title\"> Posters</h5></div></div></div> </a></div></div><div class=\"product-category col\" ><div class=\"col-inner\"> <a href=\"https://flatsome3.uxthemes.com/product-category/shoes/\"><div class=\"box box-category has-hover box-overlay dark box-text-middle \"><div class=\"box-image\" ><div class=\"image-zoom\" > <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/217212-0001_2-247x296.jpg\" alt=\"Shoes\" width=\"300\" height=\"300\" /><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0.08)\"></div></div></div><div class=\"box-text text-center is-small\" ><div class=\"box-text-inner\"><h5 class=\"uppercase header-title\"> Shoes</h5></div></div></div> </a></div></div></div><div class=\"row\" id=\"row-1820599253\"><div class=\"col medium-3 small-12 large-3\" ><div class=\"col-inner\" ></div></div><div class=\"col medium-5 small-12 large-5\" ><div class=\"col-inner\" ></div></div><div class=\"col medium-4 small-12 large-4\" ><div class=\"col-inner\" ></div></div></div><div class=\"container section-title-container\" style=\"margin-top:10px;\"><h3 class=\"section-title section-title-bold-center\"><b></b><span class=\"section-title-main\" style=\"font-size:undefined%;\">Weekly Featured Products</span><b></b></h3></div><div class=\"row large-columns-5 medium-columns-3 small-columns-2 row-small has-shadow row-box-shadow-1 slider row-slider slider-nav-reveal slider-nav-push\" data-flickity-options='{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}'><div class=\"col\" ><div class=\"col-inner\"><div class=\"badge-container absolute left top z-1\"></div><div class=\"product-small box has-hover box-normal box-text-bottom\"><div class=\"box-image\" ><div class=\"\" > <a href=\"https://flatsome3.uxthemes.com/shop/men/t-shirts/osaka-entry-tee-superdry/\"> <img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/538228-0286_2-247x296.jpeg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"\" /><img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/538228-0286_1-247x296.jpeg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" /> </a></div><div class=\"image-tools top right show-on-hover\"><div class=\"wishlist-icon\"> <button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Wishlist\"> <i class=\"icon-heart\" ></i> </button><div class=\"wishlist-popup dark\"><div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-395 wishlist-fragment on-first-load\" data-fragment-ref=\"395\" data-fragment-options=\"{&quot;base_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/demos\\/shop-demos\\/cute-shop?page&amp;pagename=demos\\/shop-demos\\/cute-shop&quot;,&quot;wishlist_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/my-account\\/wishlist\\/&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:395,&quot;parent_product_id&quot;:395,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:false,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"><div class=\"yith-wcwl-add-button\"> <a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop?page&#038;pagename=demos%2Fshop-demos%2Fcute-shop&#038;add_to_wishlist=395\" rel=\"nofollow\" data-product-id=\"395\" data-product-type=\"simple\" data-original-product-id=\"395\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist</span> </a></div></div></div></div></div><div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\"> <a class=\"quick-view\" data-prod=\"395\" href=\"#quick-view\">Quick View</a></div></div><div class=\"box-text text-center\" ><div class=\"title-wrapper\"><p class=\"category uppercase is-smaller no-text-overflow product-cat op-7\"> Men</p><p class=\"name product-title\"><a href=\"https://flatsome3.uxthemes.com/shop/men/t-shirts/osaka-entry-tee-superdry/\">Osaka Entry Tee Superdry 12</a></p></div><div class=\"price-wrapper\"> <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>29,00</span></span></div></div></div></div></div><div class=\"col\" ><div class=\"col-inner\"><div class=\"badge-container absolute left top z-1\"></div><div class=\"product-small box has-hover box-normal box-text-bottom\"><div class=\"box-image\" ><div class=\"\" > <a href=\"https://flatsome3.uxthemes.com/shop/shoes/all-star-canvas-hi-converse/\"> <img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/282004-0427_2-247x296.jpeg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"\" /><img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/282004-0286_2-247x296.jpeg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" /> </a></div><div class=\"image-tools top right show-on-hover\"><div class=\"wishlist-icon\"> <button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Wishlist\"> <i class=\"icon-heart\" ></i> </button><div class=\"wishlist-popup dark\"><div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-270 wishlist-fragment on-first-load\" data-fragment-ref=\"270\" data-fragment-options=\"{&quot;base_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/demos\\/shop-demos\\/cute-shop?page&amp;pagename=demos\\/shop-demos\\/cute-shop&quot;,&quot;wishlist_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/my-account\\/wishlist\\/&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:270,&quot;parent_product_id&quot;:270,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:false,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"><div class=\"yith-wcwl-add-button\"> <a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop?page&#038;pagename=demos%2Fshop-demos%2Fcute-shop&#038;add_to_wishlist=270\" rel=\"nofollow\" data-product-id=\"270\" data-product-type=\"variable\" data-original-product-id=\"270\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist</span> </a></div></div></div></div></div><div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\"> <a class=\"quick-view\" data-prod=\"270\" href=\"#quick-view\">Quick View</a></div></div><div class=\"box-text text-center\" ><div class=\"title-wrapper\"><p class=\"category uppercase is-smaller no-text-overflow product-cat op-7\"> Shoes</p><p class=\"name product-title\"><a href=\"https://flatsome3.uxthemes.com/shop/shoes/all-star-canvas-hi-converse/\">All Star Canvas Hi Converse</a></p></div><div class=\"price-wrapper\"> <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>29,00</span></span></div></div></div></div></div><div class=\"col\" ><div class=\"col-inner\"><div class=\"badge-container absolute left top z-1\"></div><div class=\"product-small box has-hover box-normal box-text-bottom\"><div class=\"box-image\" ><div class=\"\" > <a href=\"https://flatsome3.uxthemes.com/shop/women/sweaters/fluro-big-pullover-designers-remix/\"> <img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/252678-0029_2-247x296.jpeg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"\" /><img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/252678-0029_1-247x296.jpeg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" /> </a></div><div class=\"image-tools top right show-on-hover\"><div class=\"wishlist-icon\"> <button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Wishlist\"> <i class=\"icon-heart\" ></i> </button><div class=\"wishlist-popup dark\"><div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-167 wishlist-fragment on-first-load\" data-fragment-ref=\"167\" data-fragment-options=\"{&quot;base_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/demos\\/shop-demos\\/cute-shop?page&amp;pagename=demos\\/shop-demos\\/cute-shop&quot;,&quot;wishlist_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/my-account\\/wishlist\\/&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:167,&quot;parent_product_id&quot;:167,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:false,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"><div class=\"yith-wcwl-add-button\"> <a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop?page&#038;pagename=demos%2Fshop-demos%2Fcute-shop&#038;add_to_wishlist=167\" rel=\"nofollow\" data-product-id=\"167\" data-product-type=\"simple\" data-original-product-id=\"167\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist</span> </a></div></div></div></div></div><div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\"> <a class=\"quick-view\" data-prod=\"167\" href=\"#quick-view\">Quick View</a></div></div><div class=\"box-text text-center\" ><div class=\"title-wrapper\"><p class=\"category uppercase is-smaller no-text-overflow product-cat op-7\"> Sweaters</p><p class=\"name product-title\"><a href=\"https://flatsome3.uxthemes.com/shop/women/sweaters/fluro-big-pullover-designers-remix/\">Fluro Big Pullover Designers Remix</a></p></div><div class=\"price-wrapper\"> <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>49,00</span></span></div></div></div></div></div><div class=\"col\" ><div class=\"col-inner\"><div class=\"badge-container absolute left top z-1\"><div class=\"callout badge badge-circle\"><div class=\"badge-inner secondary on-sale\"><span class=\"onsale\">Sale!</span></div></div><div class=\"badge callout badge-circle\"><div class=\"badge-inner callout-new-bg is-small new-bubble\">New</div></div></div><div class=\"product-small box has-hover box-normal box-text-bottom\"><div class=\"box-image\" ><div class=\"\" > <a href=\"https://flatsome3.uxthemes.com/shop/women/tops/varanise-cn-tee-hilfiger-denim/\"> <img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/278453-0012_2-247x296.jpeg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"\" /><img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/278453-0012_1-247x296.jpeg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" /> </a></div><div class=\"image-tools top right show-on-hover\"><div class=\"wishlist-icon\"> <button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Wishlist\"> <i class=\"icon-heart\" ></i> </button><div class=\"wishlist-popup dark\"><div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-132 wishlist-fragment on-first-load\" data-fragment-ref=\"132\" data-fragment-options=\"{&quot;base_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/demos\\/shop-demos\\/cute-shop?page&amp;pagename=demos\\/shop-demos\\/cute-shop&quot;,&quot;wishlist_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/my-account\\/wishlist\\/&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:132,&quot;parent_product_id&quot;:132,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:false,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"><div class=\"yith-wcwl-add-button\"> <a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop?page&#038;pagename=demos%2Fshop-demos%2Fcute-shop&#038;add_to_wishlist=132\" rel=\"nofollow\" data-product-id=\"132\" data-product-type=\"simple\" data-original-product-id=\"132\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist</span> </a></div></div></div></div></div><div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\"> <a class=\"quick-view\" data-prod=\"132\" href=\"#quick-view\">Quick View</a></div></div><div class=\"box-text text-center\" ><div class=\"title-wrapper\"><p class=\"category uppercase is-smaller no-text-overflow product-cat op-7\"> Tops</p><p class=\"name product-title\"><a href=\"https://flatsome3.uxthemes.com/shop/women/tops/varanise-cn-tee-hilfiger-denim/\">Varanise CN Tee Hilfiger Denim</a></p></div><div class=\"price-wrapper\"> <span class=\"price\"><del><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>19,00</span></del> <ins><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>15,00</span></ins></span></div></div></div></div></div><div class=\"col\" ><div class=\"col-inner\"><div class=\"badge-container absolute left top z-1\"></div><div class=\"product-small box has-hover box-normal box-text-bottom\"><div class=\"box-image\" ><div class=\"\" > <a href=\"https://flatsome3.uxthemes.com/shop/women/jeans/lucy-slim-jeans-nok-379-noisy-may/\"> <img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/441242-0033_2-247x296.jpeg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"\" /><img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/441242-0033_1-247x296.jpeg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" /> </a></div><div class=\"image-tools top right show-on-hover\"><div class=\"wishlist-icon\"> <button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Wishlist\"> <i class=\"icon-heart\" ></i> </button><div class=\"wishlist-popup dark\"><div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-229 wishlist-fragment on-first-load\" data-fragment-ref=\"229\" data-fragment-options=\"{&quot;base_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/demos\\/shop-demos\\/cute-shop?page&amp;pagename=demos\\/shop-demos\\/cute-shop&quot;,&quot;wishlist_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/my-account\\/wishlist\\/&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:229,&quot;parent_product_id&quot;:229,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:false,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"><div class=\"yith-wcwl-add-button\"> <a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop?page&#038;pagename=demos%2Fshop-demos%2Fcute-shop&#038;add_to_wishlist=229\" rel=\"nofollow\" data-product-id=\"229\" data-product-type=\"simple\" data-original-product-id=\"229\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist</span> </a></div></div></div></div></div><div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\"> <a class=\"quick-view\" data-prod=\"229\" href=\"#quick-view\">Quick View</a></div></div><div class=\"box-text text-center\" ><div class=\"title-wrapper\"><p class=\"category uppercase is-smaller no-text-overflow product-cat op-7\"> Women</p><p class=\"name product-title\"><a href=\"https://flatsome3.uxthemes.com/shop/women/jeans/lucy-slim-jeans-nok-379-noisy-may/\">Lucy Slim Jeans Noisy May</a></p></div><div class=\"price-wrapper\"> <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>129,00</span></span></div></div></div></div></div><div class=\"col\" ><div class=\"col-inner\"><div class=\"badge-container absolute left top z-1\"></div><div class=\"product-small box has-hover box-normal box-text-bottom\"><div class=\"box-image\" ><div class=\"\" > <a href=\"https://flatsome3.uxthemes.com/shop/men/t-shirts/ss-crew-california-sub-river-island/\"> <img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/271174-0066_1-247x296.jpeg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" /> </a></div><div class=\"image-tools top right show-on-hover\"><div class=\"wishlist-icon\"> <button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Wishlist\"> <i class=\"icon-heart\" ></i> </button><div class=\"wishlist-popup dark\"><div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-432 wishlist-fragment on-first-load\" data-fragment-ref=\"432\" data-fragment-options=\"{&quot;base_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/demos\\/shop-demos\\/cute-shop?page&amp;pagename=demos\\/shop-demos\\/cute-shop&quot;,&quot;wishlist_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/my-account\\/wishlist\\/&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:432,&quot;parent_product_id&quot;:432,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:false,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"><div class=\"yith-wcwl-add-button\"> <a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop?page&#038;pagename=demos%2Fshop-demos%2Fcute-shop&#038;add_to_wishlist=432\" rel=\"nofollow\" data-product-id=\"432\" data-product-type=\"simple\" data-original-product-id=\"432\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist</span> </a></div></div></div></div></div><div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\"> <a class=\"quick-view\" data-prod=\"432\" href=\"#quick-view\">Quick View</a></div></div><div class=\"box-text text-center\" ><div class=\"title-wrapper\"><p class=\"category uppercase is-smaller no-text-overflow product-cat op-7\"> Men</p><p class=\"name product-title\"><a href=\"https://flatsome3.uxthemes.com/shop/men/t-shirts/ss-crew-california-sub-river-island/\">SS Crew California Sub River Island</a></p></div><div class=\"price-wrapper\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 3.67 out of 5\"><span style=\"width:73.4%\">Rated <strong class=\"rating\">3.67</strong> out of 5</span></div> <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>19,00</span></span></div></div></div></div></div><div class=\"col\" ><div class=\"col-inner\"><div class=\"badge-container absolute left top z-1\"><div class=\"callout badge badge-circle\"><div class=\"badge-inner secondary on-sale\"><span class=\"onsale\">Sale!</span></div></div></div><div class=\"product-small box has-hover box-normal box-text-bottom\"><div class=\"box-image\" ><div class=\"\" > <a href=\"https://flatsome3.uxthemes.com/shop/men/t-shirts/wicked-ss-o-neck-selected-homme/\"> <img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/602779-0083_2-247x296.jpeg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"\" /><img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/602779-0083_1-247x296.jpeg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" /> </a></div><div class=\"image-tools top right show-on-hover\"><div class=\"wishlist-icon\"> <button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Wishlist\"> <i class=\"icon-heart\" ></i> </button><div class=\"wishlist-popup dark\"><div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-416 wishlist-fragment on-first-load\" data-fragment-ref=\"416\" data-fragment-options=\"{&quot;base_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/demos\\/shop-demos\\/cute-shop?page&amp;pagename=demos\\/shop-demos\\/cute-shop&quot;,&quot;wishlist_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/my-account\\/wishlist\\/&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:416,&quot;parent_product_id&quot;:416,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:false,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"><div class=\"yith-wcwl-add-button\"> <a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop?page&#038;pagename=demos%2Fshop-demos%2Fcute-shop&#038;add_to_wishlist=416\" rel=\"nofollow\" data-product-id=\"416\" data-product-type=\"simple\" data-original-product-id=\"416\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist</span> </a></div></div></div></div></div><div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\"> <a class=\"quick-view\" data-prod=\"416\" href=\"#quick-view\">Quick View</a></div></div><div class=\"box-text text-center\" ><div class=\"title-wrapper\"><p class=\"category uppercase is-smaller no-text-overflow product-cat op-7\"> Men</p><p class=\"name product-title\"><a href=\"https://flatsome3.uxthemes.com/shop/men/t-shirts/wicked-ss-o-neck-selected-homme/\">Wicked SS O-Neck Selected Homme</a></p></div><div class=\"price-wrapper\"> <span class=\"price\"><del><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>19,00</span></del> <ins><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>15,00</span></ins></span></div></div></div></div></div><div class=\"col\" ><div class=\"col-inner\"><div class=\"badge-container absolute left top z-1\"></div><div class=\"product-small box has-hover box-normal box-text-bottom\"><div class=\"box-image\" ><div class=\"\" > <a href=\"https://flatsome3.uxthemes.com/shop/women/sweaters/union-sweater-nly-trend/\"> <img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/917540-0030_2-247x296.jpeg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"\" /><img width=\"247\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20247%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/917540-0030_1-247x296.jpeg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" /> </a></div><div class=\"image-tools top right show-on-hover\"><div class=\"wishlist-icon\"> <button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Wishlist\"> <i class=\"icon-heart\" ></i> </button><div class=\"wishlist-popup dark\"><div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-182 wishlist-fragment on-first-load\" data-fragment-ref=\"182\" data-fragment-options=\"{&quot;base_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/demos\\/shop-demos\\/cute-shop?page&amp;pagename=demos\\/shop-demos\\/cute-shop&quot;,&quot;wishlist_url&quot;:&quot;https:\\/\\/flatsome3.uxthemes.com\\/my-account\\/wishlist\\/&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:182,&quot;parent_product_id&quot;:182,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:false,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"><div class=\"yith-wcwl-add-button\"> <a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop?page&#038;pagename=demos%2Fshop-demos%2Fcute-shop&#038;add_to_wishlist=182\" rel=\"nofollow\" data-product-id=\"182\" data-product-type=\"simple\" data-original-product-id=\"182\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist</span> </a></div></div></div></div></div><div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\"> <a class=\"quick-view\" data-prod=\"182\" href=\"#quick-view\">Quick View</a></div></div><div class=\"box-text text-center\" ><div class=\"title-wrapper\"><p class=\"category uppercase is-smaller no-text-overflow product-cat op-7\"> Women</p><p class=\"name product-title\"><a href=\"https://flatsome3.uxthemes.com/shop/women/sweaters/union-sweater-nly-trend/\">Union Sweater NLY Trend</a></p></div><div class=\"price-wrapper\"> <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>101,00</span></span></div></div></div></div></div></div><div class=\"container section-title-container\" style=\"margin-top:10px;\"><h3 class=\"section-title section-title-bold-center\"><b></b><span class=\"section-title-main\" style=\"font-size:undefined%;\">Follow us on Instgram</span><b></b></h3></div><div class=\"row large-columns-8 medium-columns-3 small-columns-2 row-collapse row-full-width slider row-slider\" data-flickity-options='{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}'><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/CCXsSTSnrsd/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.29350-15/106684281_207108960568114_2584772152498603780_n.jpg?_nc_cat=103&_nc_sid=8ae9d6&_nc_ohc=-KMBLad7KxEAX_rsBCR&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=3fcfd28e2a96f201026bf0c0c7fa65c8&oe=5F2E399E\" alt=\"Lin og musselinkjoler sydd til popup butikken jeg hadde i vår🌸🥰Sjekk den fargepaletten 💞elsker strukturen og fargene på plaggene 🤩💞\n" "Pattern: from ohmeohmysewing (with som changes in the back)\" /><div class=\"caption\">Lin og musselinkjoler sydd til popup butikken jeg hadde i vår🌸🥰Sjekk den fargepaletten 💞elsker strukturen og fargene på plaggene 🤩💞\n" "Pattern: from ohmeohmysewing (with som changes in the back)</div> </a></div></div></div></div><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/CBEbSmUn5Fw/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/101936682_4140754845949607_3114267776715904043_n.jpg?_nc_cat=105&_nc_sid=8ae9d6&_nc_ohc=j4aNLGE41iUAX_Y3c_i&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=116fae62c7c8eb9fd7eb4e0c4642060a&oe=5F2D4B17\" alt=\"Ei heilt nye pie, i heilt nye heimesydde klede 🥰 elinekristin\" /><div class=\"caption\">Ei heilt nye pie, i heilt nye heimesydde klede 🥰 elinekristin</div> </a></div></div></div></div><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/CBd5YxBH572/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.29350-15/103665732_2591677547816238_5474346143640132842_n.jpg?_nc_cat=108&_nc_sid=8ae9d6&_nc_ohc=S9Ai1RIhx7QAX-sg0fA&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=eba0617f6cb808e02c5b7a348a7b5f30&oe=5F2DCF53\" alt=\"𝘕𝘺𝘵𝘦𝘳 𝘥𝘦 𝘷𝘢𝘳𝘮𝘦 𝘰𝘨 𝘨𝘰𝘥𝘦 𝘥𝘢𝘨𝘦𝘯𝘦 ♡☀️\n" "~ᴿᵉᵏˡᵃᵐᵉ~ kappahl jollyroomno\n" "𝘏𝘦𝘳𝘭𝘪𝘨𝘦 𝘱𝘭𝘢𝘺𝘴𝘶𝘪𝘵𝘴 𝘰𝘨 𝘴𝘰𝘭𝘣𝘳𝘪𝘭𝘭𝘦𝘳 𝘧𝘳𝘢 𝘒𝘢𝘱𝘱𝘈𝘩𝘭 ☀️\n" ".\n" "Strandstoler er sponset av jollyroomno ☀️\n" ".\n" ".\n" ".\" /><div class=\"caption\">𝘕𝘺𝘵𝘦𝘳 𝘥𝘦 𝘷𝘢𝘳𝘮𝘦 𝘰𝘨 𝘨𝘰𝘥𝘦 𝘥𝘢𝘨𝘦𝘯𝘦 ♡☀️\n" "~ᴿᵉᵏˡᵃᵐᵉ~ kappahl jollyroomno\n" "𝘏𝘦𝘳𝘭𝘪𝘨𝘦 𝘱𝘭𝘢𝘺𝘴𝘶𝘪𝘵𝘴 𝘰𝘨 𝘴𝘰𝘭𝘣𝘳𝘪𝘭𝘭𝘦𝘳 𝘧𝘳𝘢 𝘒𝘢𝘱𝘱𝘈𝘩𝘭 ☀️\n" ".\n" "Strandstoler er sponset av jollyroomno ☀️\n" ".\n" ".\n" ".</div> </a></div></div></div></div><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/B-z8_bsHrpg/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/92549138_249510032898111_8965897776732004751_n.jpg?_nc_cat=103&_nc_sid=8ae9d6&_nc_ohc=xaeCn9CPFsYAX_SbP-W&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=71eda4fb449aab88c0e4a9c7ccd1300b&oe=5F2D4146\" alt=\"𝘚𝘢𝘮𝘮𝘦𝘯 𝘬𝘭𝘢𝘳𝘦𝘳 𝘷𝘪 𝘢𝘭𝘵 ♡\n" ". ~ᴿᵉᵏˡᵃᵐᵉ~kappahl newbielovers ♡❀\n" "𝘑𝘦𝘯𝘵𝘦𝘯𝘦 𝘪 𝘷𝘢𝘬𝘬𝘦𝘳 𝘴𝘬𝘫𝘰𝘳𝘵𝘦 𝘰𝘨 𝘴𝘬𝘫ø𝘳𝘵 𝘴𝘰𝘮 𝘦𝘳 𝘦𝘯 𝘥𝘦𝘭 𝘢𝘷 𝘕𝘦𝘸𝘣𝘪𝘦 𝘒𝘢𝘱𝘱𝘈𝘩𝘭\n" "𝘴𝘪𝘯 10 å𝘳𝘴 𝘫𝘶𝘣𝘪𝘭𝘦𝘶𝘮𝘴𝘬𝘰𝘭𝘭𝘦𝘬𝘴𝘫𝘰𝘯 𝘰𝘨 𝘧å𝘦𝘴 𝘬𝘶𝘯 𝘴𝘰𝘮 𝘰𝘯𝘭𝘪𝘯𝘦 𝘦𝘹𝘤𝘭𝘶𝘴𝘪𝘷𝘦 ♡❀ .\n" ".\n" ".\n" ".\n" ".\n" ".\n" ".\n" ".\n" ".\n" "#reklame #yeskappahl #yesnewbie #newbielovers #kappahlkids #kappahl #newbielimitededition #newbiestore #cute #kidsclothes #newbiebykappahl #newbie #barna #kidsofinstagram #kidswear #kidsstyle #instamatki #twinsisters #littleshabbyy #barneklærpånett #barnemote #barneklær #mammalivet #twingirls #mamawithacamera #twins #happykids #nordickids #nordickidsliving\" /><div class=\"caption\">𝘚𝘢𝘮𝘮𝘦𝘯 𝘬𝘭𝘢𝘳𝘦𝘳 𝘷𝘪 𝘢𝘭𝘵 ♡\n" ". ~ᴿᵉᵏˡᵃᵐᵉ~kappahl newbielovers ♡❀\n" "𝘑𝘦𝘯𝘵𝘦𝘯𝘦 𝘪 𝘷𝘢𝘬𝘬𝘦𝘳 𝘴𝘬𝘫𝘰𝘳𝘵𝘦 𝘰𝘨 𝘴𝘬𝘫ø𝘳𝘵 𝘴𝘰𝘮 𝘦𝘳 𝘦𝘯 𝘥𝘦𝘭 𝘢𝘷 𝘕𝘦𝘸𝘣𝘪𝘦 𝘒𝘢𝘱𝘱𝘈𝘩𝘭\n" "𝘴𝘪𝘯 10 å𝘳𝘴 𝘫𝘶𝘣𝘪𝘭𝘦𝘶𝘮𝘴𝘬𝘰𝘭𝘭𝘦𝘬𝘴𝘫𝘰𝘯 𝘰𝘨 𝘧å𝘦𝘴 𝘬𝘶𝘯 𝘴𝘰𝘮 𝘰𝘯𝘭𝘪𝘯𝘦 𝘦𝘹𝘤𝘭𝘶𝘴𝘪𝘷𝘦 ♡❀ .\n" ".\n" ".\n" ".\n" ".\n" ".\n" ".\n" ".\n" ".\n" "#reklame #yeskappahl #yesnewbie #newbielovers #kappahlkids #kappahl #newbielimitededition #newbiestore #cute #kidsclothes #newbiebykappahl #newbie #barna #kidsofinstagram #kidswear #kidsstyle #instamatki #twinsisters #littleshabbyy #barneklærpånett #barnemote #barneklær #mammalivet #twingirls #mamawithacamera #twins #happykids #nordickids #nordickidsliving</div> </a></div></div></div></div><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/CAk45vAn9Ue/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/100923678_286418135823560_5867076194699614214_n.jpg?_nc_cat=101&_nc_sid=8ae9d6&_nc_ohc=KuOyLt1T8g4AX90eSlf&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=5fefb50661dc7dfde3c250d2bb804b71&oe=5F2C40F0\" alt=\"𝘚𝘮𝘢𝘬 𝘢𝘷 𝘴𝘰𝘭 𝘰𝘨 𝘷𝘢𝘳𝘮𝘦 ♡\n" "~ᴿᵉᵏˡᵃᵐᵉ~\n" "𝘑𝘦𝘯𝘵𝘦𝘯𝘦 𝘪 𝘧𝘪𝘯𝘦𝘴𝘵𝘦 𝘬𝘫𝘰𝘭𝘦𝘳 𝘧𝘳𝘢 𝘕𝘦𝘸𝘣𝘪𝘦 newbielovers kappahl 𝘊𝘢𝘱𝘵𝘶𝘳𝘦 𝘚𝘱𝘳𝘪𝘯𝘨 𝘓𝘪𝘮𝘪𝘵𝘦𝘥 𝘌𝘥𝘪𝘵𝘪𝘰𝘯 ♡𝘋𝘳ø𝘮𝘮𝘦𝘳 𝘮𝘦𝘨 𝘣𝘰𝘳𝘵 𝘵𝘪𝘭 𝘯𝘰𝘦𝘯 𝘯𝘺𝘦 𝘥𝘢𝘨𝘦𝘳 𝘮𝘦𝘥 𝘴𝘰𝘭 𝘰𝘨 𝘷𝘢𝘳𝘮𝘦 𝘴𝘭𝘪𝘬 𝘷𝘪 𝘩𝘢𝘥𝘥𝘦 𝘧𝘰𝘳 𝘯𝘰𝘦𝘯 𝘥𝘢𝘨𝘦𝘳 𝘴𝘪𝘥𝘦𝘯. ♡ ☀️𝘚𝘺𝘯𝘦𝘴 𝘥𝘦𝘵 𝘦𝘳 𝘴𝘢̊ 𝘬𝘰𝘴𝘦𝘭𝘪𝘨 𝘰𝘨 𝘩𝘦𝘳𝘭𝘪𝘨 𝘢̊ 𝘵𝘪𝘭𝘣𝘳𝘪𝘯𝘨𝘦 𝘥𝘢𝘨𝘦𝘯 𝘱𝘢̊ 𝘴𝘵𝘳𝘢𝘯𝘥𝘦𝘯, 𝘰𝘨 𝘦𝘳 𝘴𝘢̊ 𝘩𝘦𝘳𝘭𝘪𝘨 𝘢̊ 𝘴𝘦 𝘩𝘷𝘰𝘳 𝘬𝘫𝘦𝘬𝘵 𝘫𝘦𝘯𝘵𝘦𝘯𝘦 𝘩𝘢𝘳 𝘥𝘦𝘵 𝘪 𝘴𝘢𝘮𝘮𝘦𝘯. ♡☀️\" /><div class=\"caption\">𝘚𝘮𝘢𝘬 𝘢𝘷 𝘴𝘰𝘭 𝘰𝘨 𝘷𝘢𝘳𝘮𝘦 ♡\n" "~ᴿᵉᵏˡᵃᵐᵉ~\n" "𝘑𝘦𝘯𝘵𝘦𝘯𝘦 𝘪 𝘧𝘪𝘯𝘦𝘴𝘵𝘦 𝘬𝘫𝘰𝘭𝘦𝘳 𝘧𝘳𝘢 𝘕𝘦𝘸𝘣𝘪𝘦 newbielovers kappahl 𝘊𝘢𝘱𝘵𝘶𝘳𝘦 𝘚𝘱𝘳𝘪𝘯𝘨 𝘓𝘪𝘮𝘪𝘵𝘦𝘥 𝘌𝘥𝘪𝘵𝘪𝘰𝘯 ♡𝘋𝘳ø𝘮𝘮𝘦𝘳 𝘮𝘦𝘨 𝘣𝘰𝘳𝘵 𝘵𝘪𝘭 𝘯𝘰𝘦𝘯 𝘯𝘺𝘦 𝘥𝘢𝘨𝘦𝘳 𝘮𝘦𝘥 𝘴𝘰𝘭 𝘰𝘨 𝘷𝘢𝘳𝘮𝘦 𝘴𝘭𝘪𝘬 𝘷𝘪 𝘩𝘢𝘥𝘥𝘦 𝘧𝘰𝘳 𝘯𝘰𝘦𝘯 𝘥𝘢𝘨𝘦𝘳 𝘴𝘪𝘥𝘦𝘯. ♡ ☀️𝘚𝘺𝘯𝘦𝘴 𝘥𝘦𝘵 𝘦𝘳 𝘴𝘢̊ 𝘬𝘰𝘴𝘦𝘭𝘪𝘨 𝘰𝘨 𝘩𝘦𝘳𝘭𝘪𝘨 𝘢̊ 𝘵𝘪𝘭𝘣𝘳𝘪𝘯𝘨𝘦 𝘥𝘢𝘨𝘦𝘯 𝘱𝘢̊ 𝘴𝘵𝘳𝘢𝘯𝘥𝘦𝘯, 𝘰𝘨 𝘦𝘳 𝘴𝘢̊ 𝘩𝘦𝘳𝘭𝘪𝘨 𝘢̊ 𝘴𝘦 𝘩𝘷𝘰𝘳 𝘬𝘫𝘦𝘬𝘵 𝘫𝘦𝘯𝘵𝘦𝘯𝘦 𝘩𝘢𝘳 𝘥𝘦𝘵 𝘪 𝘴𝘢𝘮𝘮𝘦𝘯. ♡☀️</div> </a></div></div></div></div><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/B-KMCFcH6oP/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/91073056_868176893610342_1976815878263043350_n.jpg?_nc_cat=110&_nc_sid=8ae9d6&_nc_ohc=5S0EjVhU4sAAX9opTmC&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=1a70b54ffe8b4d7272f47e5fea534280&oe=5F2BB437\" alt=\"• Bestillingssøm •Elsker duse, ensfargede stoff kombinert med mønster 💛 Her er litt av ukas bestillinger.\" /><div class=\"caption\">• Bestillingssøm •Elsker duse, ensfargede stoff kombinert med mønster 💛 Her er litt av ukas bestillinger.</div> </a></div></div></div></div><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/B86-gLqnkyD/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/87330125_656665005078230_1650771563160137272_n.jpg?_nc_cat=104&_nc_sid=8ae9d6&_nc_ohc=Pa0UNZo6aHwAX9-dEjG&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=b7bf8d28038f748979d21204594bc225&oe=5F2C9CEC\" alt=\"𝘎𝘰𝘰𝘥 𝘕𝘪𝘨𝘩𝘵 ♡ .\n" ".\n" ".\n" "Alt på bildet er fra den nydelige kolleksjonen Magic Forest fra Newbie newbielovers kappahl ~ᴿᵉᵏˡᵃᵐᵉ~ ♡✨ .\n" ".\n" ".\n" ".\n" ".#reklame #yeskappahl #yesnewbie #newbielovers #kappahlkids #kappahl #newbielimitededition #newbiestore #spring #ss20 #newbiebykappahl #newbie #sengtøy #goodnight #bedset #godnatt #barneklærpånett #barnemote #barneklær #mammalivet #twingirls #corka #mamawithacamera #coreczkamamusi #newbisiowemamy #twins #douther #happykids #nordickids #nordickidsliving\" /><div class=\"caption\">𝘎𝘰𝘰𝘥 𝘕𝘪𝘨𝘩𝘵 ♡ .\n" ".\n" ".\n" "Alt på bildet er fra den nydelige kolleksjonen Magic Forest fra Newbie newbielovers kappahl ~ᴿᵉᵏˡᵃᵐᵉ~ ♡✨ .\n" ".\n" ".\n" ".\n" ".#reklame #yeskappahl #yesnewbie #newbielovers #kappahlkids #kappahl #newbielimitededition #newbiestore #spring #ss20 #newbiebykappahl #newbie #sengtøy #goodnight #bedset #godnatt #barneklærpånett #barnemote #barneklær #mammalivet #twingirls #corka #mamawithacamera #coreczkamamusi #newbisiowemamy #twins #douther #happykids #nordickids #nordickidsliving</div> </a></div></div></div></div><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/CBgP_UzHWJY/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.29350-15/103945381_118956143183353_3322738615039988483_n.jpg?_nc_cat=109&_nc_sid=8ae9d6&_nc_ohc=j4pq3czNN_oAX-AYysh&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=ecb58be0a902565a04f1dc1f9686f919&oe=5F2B6CA0\" alt=\"𝘏𝘢̊𝘱𝘦𝘳 𝘥𝘶 𝘩𝘢𝘳 𝘩𝘢𝘵𝘵 𝘦𝘯 𝘩𝘦𝘳𝘭𝘪𝘨 𝘥𝘢𝘨 ♡☀️\n" "~ᴿᵉᵏˡᵃᵐᵉ~ kappahl\n" "𝘕𝘺𝘥𝘦𝘭𝘪𝘨 𝘣𝘪𝘬𝘪𝘯𝘪 𝘧𝘳𝘢 𝘒𝘢𝘱𝘱𝘈𝘩𝘭 ♡\n" "𝘈𝘬𝘬𝘶𝘳𝘢𝘵 𝘯𝘢̊ 𝘧𝘢̊𝘳 𝘥𝘶 -25% 𝘱𝘢̊ 𝘢𝘭𝘵 𝘣𝘢𝘥𝘦𝘵ø𝘺 𝘩𝘰𝘴 kappahl 𝘨𝘫𝘦𝘭𝘥𝘦𝘳 𝘣𝘢̊𝘥𝘦 𝘣𝘢𝘳𝘯, 𝘥𝘢𝘮𝘦 𝘰𝘨 𝘩𝘦𝘳𝘳𝘦 (𝘪𝘬𝘬𝘦 𝘕𝘦𝘸𝘣𝘪𝘦) ☀️\n" ".\n" ".\n" ".\n" ".\n" ".\n" ". #sologsommer #yeskappahl #kappahlkids #badetøy #sommerklær #kappahl #sommeroutfit #norgesferie #kidsclothes #kidsofinstagram #summer2020 #jenteklær #tvillinger #sologblåhimmel #gladebarn #inspirasjonforjenter #twinsisters #sommer2020 #barneklærpånett #barnemote #barneklær #mammalivet #twingirls #mamawithacamera #twins #sologvarme #minikids #blizniaki #summerfeeling #bestofpinkorblueno pinkorblue.no\" /><div class=\"caption\">𝘏𝘢̊𝘱𝘦𝘳 𝘥𝘶 𝘩𝘢𝘳 𝘩𝘢𝘵𝘵 𝘦𝘯 𝘩𝘦𝘳𝘭𝘪𝘨 𝘥𝘢𝘨 ♡☀️\n" "~ᴿᵉᵏˡᵃᵐᵉ~ kappahl\n" "𝘕𝘺𝘥𝘦𝘭𝘪𝘨 𝘣𝘪𝘬𝘪𝘯𝘪 𝘧𝘳𝘢 𝘒𝘢𝘱𝘱𝘈𝘩𝘭 ♡\n" "𝘈𝘬𝘬𝘶𝘳𝘢𝘵 𝘯𝘢̊ 𝘧𝘢̊𝘳 𝘥𝘶 -25% 𝘱𝘢̊ 𝘢𝘭𝘵 𝘣𝘢𝘥𝘦𝘵ø𝘺 𝘩𝘰𝘴 kappahl 𝘨𝘫𝘦𝘭𝘥𝘦𝘳 𝘣𝘢̊𝘥𝘦 𝘣𝘢𝘳𝘯, 𝘥𝘢𝘮𝘦 𝘰𝘨 𝘩𝘦𝘳𝘳𝘦 (𝘪𝘬𝘬𝘦 𝘕𝘦𝘸𝘣𝘪𝘦) ☀️\n" ".\n" ".\n" ".\n" ".\n" ".\n" ". #sologsommer #yeskappahl #kappahlkids #badetøy #sommerklær #kappahl #sommeroutfit #norgesferie #kidsclothes #kidsofinstagram #summer2020 #jenteklær #tvillinger #sologblåhimmel #gladebarn #inspirasjonforjenter #twinsisters #sommer2020 #barneklærpånett #barnemote #barneklær #mammalivet #twingirls #mamawithacamera #twins #sologvarme #minikids #blizniaki #summerfeeling #bestofpinkorblueno pinkorblue.no</div> </a></div></div></div></div><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/CBJJmQAgWmX/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/101837106_102507234801225_6729704502784105379_n.jpg?_nc_cat=107&_nc_sid=8ae9d6&_nc_ohc=eR8j2zwS-fAAX9h_DWA&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=ec11c33b7cad8c831f2b5bef60cf4167&oe=5F2E84CF\" alt=\"Jeg vil gjerne introdusere Theo. Han er 4 måneder gammel og holder kjærlig sin nye venn sauen 🐑 Vi trenger alle en klem fra en venn i disse dager. Ha en fin søndag dere 💛 mariazinhamn -\n" "I like to introduce you with Theo. He is 4 months old and lovingly holding his sheep friend 🐑 We all need a hug from a friend these days. Happy Sunday to y’all!\n" "#pattioslo #softtoy #playwithkids\" /><div class=\"caption\">Jeg vil gjerne introdusere Theo. Han er 4 måneder gammel og holder kjærlig sin nye venn sauen 🐑 Vi trenger alle en klem fra en venn i disse dager. Ha en fin søndag dere 💛 mariazinhamn -\n" "I like to introduce you with Theo. He is 4 months old and lovingly holding his sheep friend 🐑 We all need a hug from a friend these days. Happy Sunday to y’all!\n" "#pattioslo #softtoy #playwithkids</div> </a></div></div></div></div><div class=\"col\"><div class=\"col-inner\"><div class=\"img has-hover no-overflow\"><div class=\"dark instagram-image-container image-overlay-remove instagram-image-type--image\"> <a href=\"https://www.instagram.com/p/B_JrLjMnSsX/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"plain\"> <img class=\"lazy-load\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/93770185_151865516357482_6239200853867079404_n.jpg?_nc_cat=106&_nc_sid=8ae9d6&_nc_ohc=MiSIgHfmHOkAX8OKjek&_nc_ht=scontent-atl3-1.cdninstagram.com&oh=a15bfd5f8a744c89447344424065ac74&oe=5F2D5873\" alt=\"Ha en fin dag 💛\" /><div class=\"caption\">Ha en fin dag 💛</div> </a></div></div></div></div></div></div></main><footer id=\"footer\" class=\"footer-wrapper\"><div class=\"absolute-footer light medium-text-center text-center\"><div class=\"container clearfix\"><div class=\"footer-secondary pull-right\"><div class=\"payment-icons inline-block\"><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 32\"> <path d=\"M10.781 7.688c-0.251-1.283-1.219-1.688-2.344-1.688h-8.376l-0.061 0.405c5.749 1.469 10.469 4.595 12.595 10.501l-1.813-9.219zM13.125 19.688l-0.531-2.781c-1.096-2.907-3.752-5.594-6.752-6.813l4.219 15.939h5.469l8.157-20.032h-5.501l-5.062 13.688zM27.72 26.061l3.248-20.061h-5.187l-3.251 20.061h5.189zM41.875 5.656c-5.125 0-8.717 2.72-8.749 6.624-0.032 2.877 2.563 4.469 4.531 5.439 2.032 0.968 2.688 1.624 2.688 2.499 0 1.344-1.624 1.939-3.093 1.939-2.093 0-3.219-0.251-4.875-1.032l-0.688-0.344-0.719 4.499c1.219 0.563 3.437 1.064 5.781 1.064 5.437 0.032 8.97-2.688 9.032-6.843 0-2.282-1.405-4-4.376-5.439-1.811-0.904-2.904-1.563-2.904-2.499 0-0.843 0.936-1.72 2.968-1.72 1.688-0.029 2.936 0.314 3.875 0.752l0.469 0.248 0.717-4.344c-1.032-0.406-2.656-0.844-4.656-0.844zM55.813 6c-1.251 0-2.189 0.376-2.72 1.688l-7.688 18.374h5.437c0.877-2.467 1.096-3 1.096-3 0.592 0 5.875 0 6.624 0 0 0 0.157 0.688 0.624 3h4.813l-4.187-20.061h-4zM53.405 18.938c0 0 0.437-1.157 2.064-5.594-0.032 0.032 0.437-1.157 0.688-1.907l0.374 1.72c0.968 4.781 1.189 5.781 1.189 5.781-0.813 0-3.283 0-4.315 0z\"></path> </svg></div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 32\"> <path d=\"M35.255 12.078h-2.396c-0.229 0-0.444 0.114-0.572 0.303l-3.306 4.868-1.4-4.678c-0.088-0.292-0.358-0.493-0.663-0.493h-2.355c-0.284 0-0.485 0.28-0.393 0.548l2.638 7.745-2.481 3.501c-0.195 0.275 0.002 0.655 0.339 0.655h2.394c0.227 0 0.439-0.111 0.569-0.297l7.968-11.501c0.191-0.275-0.006-0.652-0.341-0.652zM19.237 16.718c-0.23 1.362-1.311 2.276-2.691 2.276-0.691 0-1.245-0.223-1.601-0.644-0.353-0.417-0.485-1.012-0.374-1.674 0.214-1.35 1.313-2.294 2.671-2.294 0.677 0 1.227 0.225 1.589 0.65 0.365 0.428 0.509 1.027 0.404 1.686zM22.559 12.078h-2.384c-0.204 0-0.378 0.148-0.41 0.351l-0.104 0.666-0.166-0.241c-0.517-0.749-1.667-1-2.817-1-2.634 0-4.883 1.996-5.321 4.796-0.228 1.396 0.095 2.731 0.888 3.662 0.727 0.856 1.765 1.212 3.002 1.212 2.123 0 3.3-1.363 3.3-1.363l-0.106 0.662c-0.040 0.252 0.155 0.479 0.41 0.479h2.147c0.341 0 0.63-0.247 0.684-0.584l1.289-8.161c0.040-0.251-0.155-0.479-0.41-0.479zM8.254 12.135c-0.272 1.787-1.636 1.787-2.957 1.787h-0.751l0.527-3.336c0.031-0.202 0.205-0.35 0.41-0.35h0.345c0.899 0 1.747 0 2.185 0.511 0.262 0.307 0.341 0.761 0.242 1.388zM7.68 7.473h-4.979c-0.341 0-0.63 0.248-0.684 0.584l-2.013 12.765c-0.040 0.252 0.155 0.479 0.41 0.479h2.378c0.34 0 0.63-0.248 0.683-0.584l0.543-3.444c0.053-0.337 0.343-0.584 0.683-0.584h1.575c3.279 0 5.172-1.587 5.666-4.732 0.223-1.375 0.009-2.456-0.635-3.212-0.707-0.832-1.962-1.272-3.628-1.272zM60.876 7.823l-2.043 12.998c-0.040 0.252 0.155 0.479 0.41 0.479h2.055c0.34 0 0.63-0.248 0.683-0.584l2.015-12.765c0.040-0.252-0.155-0.479-0.41-0.479h-2.299c-0.205 0.001-0.379 0.148-0.41 0.351zM54.744 16.718c-0.23 1.362-1.311 2.276-2.691 2.276-0.691 0-1.245-0.223-1.601-0.644-0.353-0.417-0.485-1.012-0.374-1.674 0.214-1.35 1.313-2.294 2.671-2.294 0.677 0 1.227 0.225 1.589 0.65 0.365 0.428 0.509 1.027 0.404 1.686zM58.066 12.078h-2.384c-0.204 0-0.378 0.148-0.41 0.351l-0.104 0.666-0.167-0.241c-0.516-0.749-1.667-1-2.816-1-2.634 0-4.883 1.996-5.321 4.796-0.228 1.396 0.095 2.731 0.888 3.662 0.727 0.856 1.765 1.212 3.002 1.212 2.123 0 3.3-1.363 3.3-1.363l-0.106 0.662c-0.040 0.252 0.155 0.479 0.41 0.479h2.147c0.341 0 0.63-0.247 0.684-0.584l1.289-8.161c0.040-0.252-0.156-0.479-0.41-0.479zM43.761 12.135c-0.272 1.787-1.636 1.787-2.957 1.787h-0.751l0.527-3.336c0.031-0.202 0.205-0.35 0.41-0.35h0.345c0.899 0 1.747 0 2.185 0.511 0.261 0.307 0.34 0.761 0.241 1.388zM43.187 7.473h-4.979c-0.341 0-0.63 0.248-0.684 0.584l-2.013 12.765c-0.040 0.252 0.156 0.479 0.41 0.479h2.554c0.238 0 0.441-0.173 0.478-0.408l0.572-3.619c0.053-0.337 0.343-0.584 0.683-0.584h1.575c3.279 0 5.172-1.587 5.666-4.732 0.223-1.375 0.009-2.456-0.635-3.212-0.707-0.832-1.962-1.272-3.627-1.272z\"></path> </svg></div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 32\"> <path d=\"M7.114 14.656c-1.375-0.5-2.125-0.906-2.125-1.531 0-0.531 0.437-0.812 1.188-0.812 1.437 0 2.875 0.531 3.875 1.031l0.563-3.5c-0.781-0.375-2.406-1-4.656-1-1.594 0-2.906 0.406-3.844 1.188-1 0.812-1.5 2-1.5 3.406 0 2.563 1.563 3.688 4.125 4.594 1.625 0.594 2.188 1 2.188 1.656 0 0.625-0.531 0.969-1.5 0.969-1.188 0-3.156-0.594-4.437-1.343l-0.563 3.531c1.094 0.625 3.125 1.281 5.25 1.281 1.688 0 3.063-0.406 4.031-1.157 1.063-0.843 1.594-2.062 1.594-3.656-0.001-2.625-1.595-3.719-4.188-4.657zM21.114 9.125h-3v-4.219l-4.031 0.656-0.563 3.563-1.437 0.25-0.531 3.219h1.937v6.844c0 1.781 0.469 3 1.375 3.75 0.781 0.625 1.907 0.938 3.469 0.938 1.219 0 1.937-0.219 2.468-0.344v-3.688c-0.282 0.063-0.938 0.22-1.375 0.22-0.906 0-1.313-0.5-1.313-1.563v-6.156h2.406l0.595-3.469zM30.396 9.031c-0.313-0.062-0.594-0.093-0.876-0.093-1.312 0-2.374 0.687-2.781 1.937l-0.313-1.75h-4.093v14.719h4.687v-9.563c0.594-0.719 1.437-0.968 2.563-0.968 0.25 0 0.5 0 0.812 0.062v-4.344zM33.895 2.719c-1.375 0-2.468 1.094-2.468 2.469s1.094 2.5 2.468 2.5 2.469-1.124 2.469-2.5-1.094-2.469-2.469-2.469zM36.239 23.844v-14.719h-4.687v14.719h4.687zM49.583 10.468c-0.843-1.094-2-1.625-3.469-1.625-1.343 0-2.531 0.563-3.656 1.75l-0.25-1.469h-4.125v20.155l4.688-0.781v-4.719c0.719 0.219 1.469 0.344 2.125 0.344 1.157 0 2.876-0.313 4.188-1.75 1.281-1.375 1.907-3.5 1.907-6.313 0-2.499-0.469-4.405-1.407-5.593zM45.677 19.532c-0.375 0.687-0.969 1.094-1.625 1.094-0.468 0-0.906-0.093-1.281-0.281v-7c0.812-0.844 1.531-0.938 1.781-0.938 1.188 0 1.781 1.313 1.781 3.812 0.001 1.437-0.219 2.531-0.656 3.313zM62.927 10.843c-1.032-1.312-2.563-2-4.501-2-4 0-6.468 2.938-6.468 7.688 0 2.625 0.656 4.625 1.968 5.875 1.157 1.157 2.844 1.719 5.032 1.719 2 0 3.844-0.469 5-1.251l-0.501-3.219c-1.157 0.625-2.5 0.969-4 0.969-0.906 0-1.532-0.188-1.969-0.594-0.5-0.406-0.781-1.094-0.875-2.062h7.75c0.031-0.219 0.062-1.281 0.062-1.625 0.001-2.344-0.5-4.188-1.499-5.5zM56.583 15.094c0.125-2.093 0.687-3.062 1.75-3.062s1.625 1 1.687 3.062h-3.437z\"></path> </svg></div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 32\"> <path d=\"M42.667-0c-4.099 0-7.836 1.543-10.667 4.077-2.831-2.534-6.568-4.077-10.667-4.077-8.836 0-16 7.163-16 16s7.164 16 16 16c4.099 0 7.835-1.543 10.667-4.077 2.831 2.534 6.568 4.077 10.667 4.077 8.837 0 16-7.163 16-16s-7.163-16-16-16zM11.934 19.828l0.924-5.809-2.112 5.809h-1.188v-5.809l-1.056 5.809h-1.584l1.32-7.657h2.376v4.753l1.716-4.753h2.508l-1.32 7.657h-1.585zM19.327 18.244c-0.088 0.528-0.178 0.924-0.264 1.188v0.396h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.364-0.66 2.244-0.66h0.66v-0.396c0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0.086-0.351 0.175-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.244 0.616 2.244 1.848 0 0.353-0.046 0.749-0.132 1.188-0.089 0.616-0.179 1.188-0.264 1.716zM24.079 15.076c-0.264-0.086-0.66-0.132-1.188-0.132s-0.792 0.177-0.792 0.528c0 0.177 0.044 0.31 0.132 0.396l0.528 0.264c0.792 0.442 1.188 1.012 1.188 1.716 0 1.409-0.838 2.112-2.508 2.112-0.792 0-1.366-0.044-1.716-0.132 0.086-0.351 0.175-0.836 0.264-1.452 0.703 0.177 1.188 0.264 1.452 0.264 0.614 0 0.924-0.175 0.924-0.528 0-0.175-0.046-0.308-0.132-0.396-0.178-0.175-0.396-0.308-0.66-0.396-0.792-0.351-1.188-0.924-1.188-1.716 0-1.407 0.792-2.112 2.376-2.112 0.792 0 1.32 0.045 1.584 0.132l-0.265 1.451zM27.512 15.208h-0.924c0 0.442-0.046 0.838-0.132 1.188 0 0.088-0.022 0.264-0.066 0.528-0.046 0.264-0.112 0.442-0.198 0.528v0.528c0 0.353 0.175 0.528 0.528 0.528 0.175 0 0.35-0.044 0.528-0.132l-0.264 1.452c-0.264 0.088-0.66 0.132-1.188 0.132-0.881 0-1.32-0.44-1.32-1.32 0-0.528 0.086-1.099 0.264-1.716l0.66-4.225h1.584l-0.132 0.924h0.792l-0.132 1.585zM32.66 17.32h-3.3c0 0.442 0.086 0.749 0.264 0.924 0.264 0.264 0.66 0.396 1.188 0.396s1.1-0.175 1.716-0.528l-0.264 1.584c-0.442 0.177-1.012 0.264-1.716 0.264-1.848 0-2.772-0.924-2.772-2.773 0-1.142 0.264-2.024 0.792-2.64 0.528-0.703 1.188-1.056 1.98-1.056 0.703 0 1.274 0.22 1.716 0.66 0.35 0.353 0.528 0.881 0.528 1.584 0.001 0.617-0.046 1.145-0.132 1.585zM35.3 16.132c-0.264 0.97-0.484 2.201-0.66 3.697h-1.716l0.132-0.396c0.35-2.463 0.614-4.4 0.792-5.809h1.584l-0.132 0.924c0.264-0.44 0.528-0.703 0.792-0.792 0.264-0.264 0.528-0.308 0.792-0.132-0.088 0.088-0.31 0.706-0.66 1.848-0.353-0.086-0.661 0.132-0.925 0.66zM41.241 19.697c-0.353 0.177-0.838 0.264-1.452 0.264-0.881 0-1.584-0.308-2.112-0.924-0.528-0.528-0.792-1.32-0.792-2.376 0-1.32 0.35-2.42 1.056-3.3 0.614-0.879 1.496-1.32 2.64-1.32 0.44 0 1.056 0.132 1.848 0.396l-0.264 1.584c-0.528-0.264-1.012-0.396-1.452-0.396-0.707 0-1.235 0.264-1.584 0.792-0.353 0.442-0.528 1.144-0.528 2.112 0 0.616 0.132 1.056 0.396 1.32 0.264 0.353 0.614 0.528 1.056 0.528 0.44 0 0.924-0.132 1.452-0.396l-0.264 1.717zM47.115 15.868c-0.046 0.264-0.066 0.484-0.066 0.66-0.088 0.442-0.178 1.035-0.264 1.782-0.088 0.749-0.178 1.254-0.264 1.518h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.32-0.66 2.112-0.66h0.66c0.086-0.086 0.132-0.218 0.132-0.396 0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0-0.351 0.086-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.245 0.616 2.245 1.848 0.001 0.089-0.021 0.264-0.065 0.529zM49.69 16.132c-0.178 0.528-0.396 1.762-0.66 3.697h-1.716l0.132-0.396c0.35-1.935 0.614-3.872 0.792-5.809h1.584c0 0.353-0.046 0.66-0.132 0.924 0.264-0.44 0.528-0.703 0.792-0.792 0.35-0.175 0.614-0.218 0.792-0.132-0.353 0.442-0.574 1.056-0.66 1.848-0.353-0.086-0.66 0.132-0.925 0.66zM54.178 19.828l0.132-0.528c-0.353 0.442-0.838 0.66-1.452 0.66-0.707 0-1.188-0.218-1.452-0.66-0.442-0.614-0.66-1.232-0.66-1.848 0-1.142 0.308-2.067 0.924-2.773 0.44-0.703 1.056-1.056 1.848-1.056 0.528 0 1.056 0.264 1.584 0.792l0.264-2.244h1.716l-1.32 7.657h-1.585zM16.159 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.397c-0.881 0-1.32 0.31-1.32 0.924zM31.076 15.076c-0.088 0-0.178-0.043-0.264-0.132h-0.264c-0.528 0-0.881 0.353-1.056 1.056h1.848v-0.396l-0.132-0.264c-0.001-0.086-0.047-0.175-0.133-0.264zM43.617 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.396c-0.881 0-1.32 0.31-1.32 0.924zM53.782 15.076c-0.353 0-0.66 0.22-0.924 0.66-0.178 0.264-0.264 0.749-0.264 1.452 0 0.792 0.264 1.188 0.792 1.188 0.35 0 0.66-0.175 0.924-0.528 0.264-0.351 0.396-0.879 0.396-1.584-0.001-0.792-0.311-1.188-0.925-1.188z\"></path> </svg></div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 32\"> <path d=\"M13.043 8.356c-0.46 0-0.873 0.138-1.24 0.413s-0.662 0.681-0.885 1.217c-0.223 0.536-0.334 1.112-0.334 1.727 0 0.568 0.119 0.99 0.358 1.265s0.619 0.413 1.141 0.413c0.508 0 1.096-0.131 1.765-0.393v1.327c-0.693 0.262-1.389 0.393-2.089 0.393-0.884 0-1.572-0.254-2.063-0.763s-0.736-1.229-0.736-2.161c0-0.892 0.181-1.712 0.543-2.462s0.846-1.32 1.452-1.709 1.302-0.584 2.089-0.584c0.435 0 0.822 0.038 1.159 0.115s0.7 0.217 1.086 0.421l-0.616 1.276c-0.369-0.201-0.673-0.333-0.914-0.398s-0.478-0.097-0.715-0.097zM19.524 12.842h-2.47l-0.898 1.776h-1.671l3.999-7.491h1.948l0.767 7.491h-1.551l-0.125-1.776zM19.446 11.515l-0.136-1.786c-0.035-0.445-0.052-0.876-0.052-1.291v-0.184c-0.153 0.408-0.343 0.84-0.569 1.296l-0.982 1.965h1.739zM27.049 12.413c0 0.711-0.257 1.273-0.773 1.686s-1.213 0.62-2.094 0.62c-0.769 0-1.389-0.153-1.859-0.46v-1.398c0.672 0.367 1.295 0.551 1.869 0.551 0.39 0 0.694-0.072 0.914-0.217s0.329-0.343 0.329-0.595c0-0.147-0.024-0.275-0.070-0.385s-0.114-0.214-0.201-0.309c-0.087-0.095-0.303-0.269-0.648-0.52-0.481-0.337-0.818-0.67-1.013-1s-0.293-0.685-0.293-1.066c0-0.439 0.108-0.831 0.324-1.176s0.523-0.614 0.922-0.806 0.857-0.288 1.376-0.288c0.755 0 1.446 0.168 2.073 0.505l-0.569 1.189c-0.543-0.252-1.044-0.378-1.504-0.378-0.289 0-0.525 0.077-0.71 0.23s-0.276 0.355-0.276 0.607c0 0.207 0.058 0.389 0.172 0.543s0.372 0.36 0.773 0.615c0.421 0.272 0.736 0.572 0.945 0.9s0.313 0.712 0.313 1.151zM33.969 14.618h-1.597l0.7-3.22h-2.46l-0.7 3.22h-1.592l1.613-7.46h1.597l-0.632 2.924h2.459l0.632-2.924h1.592l-1.613 7.46zM46.319 9.831c0 0.963-0.172 1.824-0.517 2.585s-0.816 1.334-1.415 1.722c-0.598 0.388-1.288 0.582-2.067 0.582-0.891 0-1.587-0.251-2.086-0.753s-0.749-1.198-0.749-2.090c0-0.902 0.172-1.731 0.517-2.488s0.82-1.338 1.425-1.743c0.605-0.405 1.306-0.607 2.099-0.607 0.888 0 1.575 0.245 2.063 0.735s0.73 1.176 0.73 2.056zM43.395 8.356c-0.421 0-0.808 0.155-1.159 0.467s-0.627 0.739-0.828 1.283-0.3 1.135-0.3 1.771c0 0.5 0.116 0.877 0.348 1.133s0.558 0.383 0.979 0.383 0.805-0.148 1.151-0.444c0.346-0.296 0.617-0.714 0.812-1.255s0.292-1.148 0.292-1.822c0-0.483-0.113-0.856-0.339-1.12-0.227-0.264-0.546-0.396-0.957-0.396zM53.427 14.618h-1.786l-1.859-5.644h-0.031l-0.021 0.163c-0.111 0.735-0.227 1.391-0.344 1.97l-0.757 3.511h-1.436l1.613-7.46h1.864l1.775 5.496h0.021c0.042-0.259 0.109-0.628 0.203-1.107s0.407-1.942 0.94-4.388h1.43l-1.613 7.461zM13.296 20.185c0 0.98-0.177 1.832-0.532 2.556s-0.868 1.274-1.539 1.652c-0.672 0.379-1.464 0.568-2.376 0.568h-2.449l1.678-7.68h2.15c0.977 0 1.733 0.25 2.267 0.751s0.801 1.219 0.801 2.154zM8.925 23.615c0.536 0 1.003-0.133 1.401-0.399s0.71-0.657 0.934-1.174c0.225-0.517 0.337-1.108 0.337-1.773 0-0.54-0.131-0.95-0.394-1.232s-0.64-0.423-1.132-0.423h-0.624l-1.097 5.001h0.575zM18.64 24.96h-4.436l1.678-7.68h4.442l-0.293 1.334h-2.78l-0.364 1.686h2.59l-0.299 1.334h-2.59l-0.435 1.98h2.78l-0.293 1.345zM20.509 24.96l1.678-7.68h1.661l-1.39 6.335h2.78l-0.294 1.345h-4.436zM26.547 24.96l1.694-7.68h1.656l-1.694 7.68h-1.656zM33.021 23.389c0.282-0.774 0.481-1.27 0.597-1.487l2.346-4.623h1.716l-4.061 7.68h-1.814l-0.689-7.68h1.602l0.277 4.623c0.015 0.157 0.022 0.39 0.022 0.699-0.007 0.361-0.018 0.623-0.033 0.788h0.038zM41.678 24.96h-4.437l1.678-7.68h4.442l-0.293 1.334h-2.78l-0.364 1.686h2.59l-0.299 1.334h-2.59l-0.435 1.98h2.78l-0.293 1.345zM45.849 22.013l-0.646 2.947h-1.656l1.678-7.68h1.949c0.858 0 1.502 0.179 1.933 0.536s0.646 0.881 0.646 1.571c0 0.554-0.15 1.029-0.451 1.426s-0.733 0.692-1.298 0.885l1.417 3.263h-1.803l-1.124-2.947h-0.646zM46.137 20.689h0.424c0.474 0 0.843-0.1 1.108-0.3s0.396-0.504 0.396-0.914c0-0.287-0.086-0.502-0.258-0.646s-0.442-0.216-0.812-0.216h-0.402l-0.456 2.076zM53.712 20.39l2.031-3.11h1.857l-3.355 4.744-0.646 2.936h-1.645l0.646-2.936-1.281-4.744h1.694l0.7 3.11z\"></path> </svg></div></div></div><div class=\"footer-primary pull-left\"><div class=\"menu-secondary-container\"><ul id=\"menu-secondary-1\" class=\"links footer-nav uppercase\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3167\"><a href=\"https://flatsome3.uxthemes.com/pages/about/\">About</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8516\"><a href=\"https://flatsome3.uxthemes.com/pages/our-stores/\">Our Stores</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3121\"><a href=\"https://flatsome3.uxthemes.com/blog/\">Blog</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3119\"><a href=\"https://flatsome3.uxthemes.com/pages/contact/\">Contact</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3118\"><a href=\"https://flatsome3.uxthemes.com/pages/faq/\">FAQ</a></li></ul></div><div class=\"copyright-footer\"> Copyright 2020 &copy; <strong>UX Themes</strong></div></div></div></div> <a href=\"#top\" class=\"back-to-top button icon invert plain fixed bottom z-1 is-outline hide-for-medium circle\" id=\"top-link\"><i class=\"icon-angle-up\" ></i></a></footer></div><div id=\"main-menu\" class=\"mobile-sidebar no-scrollbar mfp-hide\"><div class=\"sidebar-menu no-scrollbar \"><ul class=\"nav nav-sidebar nav-vertical nav-uppercase\"><li class=\"header-search-form search-form html relative has-icon\"><div class=\"header-search-form-wrapper\"><div class=\"searchform-wrapper ux-search-box relative is-normal\"><form role=\"search\" method=\"get\" class=\"searchform\" action=\"https://flatsome3.uxthemes.com/\"><div class=\"flex-row relative\"><div class=\"flex-col flex-grow\"> <label class=\"screen-reader-text\" for=\"woocommerce-product-search-field-1\">Search for:</label> <input type=\"search\" id=\"woocommerce-product-search-field-1\" class=\"search-field mb-0\" placeholder=\"Search&hellip;\" value=\"\" name=\"s\" /> <input type=\"hidden\" name=\"post_type\" value=\"product\" /></div><div class=\"flex-col\"> <button type=\"submit\" value=\"Search\" class=\"ux-search-submit submit-button secondary button icon mb-0\"> <i class=\"icon-search\" ></i> </button></div></div><div class=\"live-search-results text-left z-top\"></div></form></div></div></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-menu-ancestor current_page_ancestor menu-item-has-children menu-item-3219\"><a href=\"https://flatsome3.uxthemes.com/demos/\">Demos</a><ul class=\"sub-menu nav-sidebar-ul children\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-page-parent menu-item-has-children menu-item-3215\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/\">Shop Demos</a><ul class=\"sub-menu nav-sidebar-ul\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3218\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/classic-shop/\">Classic Shop</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3202\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/simple-slider/\">Simple Slider</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3200\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/fullscreen-fashion/\">Fullscreen Fashion</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8548\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/video-cover/\">Video Cover</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8552\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/slider-cover/\">Slider Cover</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3201\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/grid-style-1/\">Grid Style 1</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3197\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/grid-style-2/\">Grid Style 2</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8406\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/grid-style-3/\">Grid Style 3</a></li></ul></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-menu-ancestor current-menu-parent current-page-parent current_page_parent current_page_ancestor menu-item-has-children menu-item-3263\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/\">More Shop Demos</a><ul class=\"sub-menu nav-sidebar-ul\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3259\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/mega-shop/\">Mega Shop</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-4008 current_page_item menu-item-4010\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/\" aria-current=\"page\">Cute Shop</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4027\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/sport-shop/\">Sport Shop</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7318\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/vendor-shop/\">Vendor Shop</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3290\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/parallax-shop/\">Parallax Shop</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8113\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/big-sale/\">Big Sale</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7226\"><a href=\"https://flatsome3.uxthemes.com/demos/shop-demos/sale-countdown/\">Sale Countdown</a></li></ul></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3216\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/\">Business Demos</a><ul class=\"sub-menu nav-sidebar-ul\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3224\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/agency/\">Agency</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4046\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/simple-corporate/\">Corporate</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8196\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/freelancer/\">Freelancer</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7040\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/explore/\">Explore</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3222\"><a href=\"https://flatsome3.uxthemes.com/demos/business-demos/lifestyle/\">Lifestyle</a></li></ul></li></ul></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-has-children menu-item-3234\"><a href=\"https://flatsome3.uxthemes.com/\">Features</a><ul class=\"sub-menu nav-sidebar-ul children\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-has-children menu-item-3211\"><a href=\"https://flatsome3.uxthemes.com/\">Features</a><ul class=\"sub-menu nav-sidebar-ul\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7185\"><a href=\"https://flatsome3.uxthemes.com/features/core-features/\">Core Features</a></li><li class=\"label-new menu-item menu-item-type-post_type menu-item-object-page menu-item-10984\"><a href=\"https://flatsome3.uxthemes.com/features/whats-new/\">What&#8217;s New</a></li><li class=\"label-popular menu-item menu-item-type-post_type menu-item-object-page menu-item-3214\"><a href=\"https://flatsome3.uxthemes.com/features/ux-page-builder/\">UX Builder</a></li><li class=\"label-popular menu-item menu-item-type-post_type menu-item-object-page menu-item-3231\"><a href=\"https://flatsome3.uxthemes.com/features/header-designer/\">Header Designer</a></li><li class=\"label-new menu-item menu-item-type-post_type menu-item-object-page menu-item-10973\"><a href=\"https://flatsome3.uxthemes.com/features/flatsome-studio/\">Flatsome Studio</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7371\"><a href=\"https://flatsome3.uxthemes.com/features/fast-performance/\">Fast Performance</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8662\"><a href=\"https://flatsome3.uxthemes.com/features/parallax-scrolling/\">Parallax Scrolling</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9956\"><a href=\"https://flatsome3.uxthemes.com/features/single-page-navigation/\">Single Page Navigation</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9332\"><a href=\"https://flatsome3.uxthemes.com/features/sticky-sections/\">Sticky Sections</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9765\"><a href=\"https://flatsome3.uxthemes.com/features/getting-started/\">Getting Started</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9774\"><a href=\"https://flatsome3.uxthemes.com/features/footer-features/\">Footer Features</a></li></ul></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-has-children menu-item-8582\"><a href=\"https://flatsome3.uxthemes.com/\">More</a><ul class=\"sub-menu nav-sidebar-ul\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7183\"><a href=\"https://flatsome3.uxthemes.com/features/blog-features/\">Blog Features</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3229\"><a href=\"https://flatsome3.uxthemes.com/features/portfolio-features/\">Portfolio Features</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3946\"><a href=\"https://flatsome3.uxthemes.com/features/blocks-element/\">Blocks Element</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-7188\"><a href=\"https://flatsome3.uxthemes.com/features/documentation/\">Videos &#038; Docs</a></li><li class=\"label-hot menu-item menu-item-type-post_type menu-item-object-page menu-item-9763\"><a href=\"https://flatsome3.uxthemes.com/features/customer-reviews/\">Customer Reviews</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9764\"><a href=\"https://flatsome3.uxthemes.com/features/elements-overview/\">Elements Overview</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3230\"><a href=\"https://flatsome3.uxthemes.com/features/woocommerce/\">WooCommerce</a><ul class=\"sub-menu nav-sidebar-ul\"><li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9767\"><a href=\"/features/woocommerce/#shop-features\">Category Features</a></li><li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9768\"><a href=\"/features/woocommerce/#product-features\">Product Features</a></li><li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9769\"><a href=\"/features/woocommerce/#catalogue-mode\">Catalogue Mode</a></li></ul></li></ul></li><li class=\"image-column menu-item menu-item-type-custom menu-item-object-custom menu-item-7338\"><a href=\"#\">Image Column</a></li></ul></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3320\"><a href=\"https://flatsome3.uxthemes.com/shop/\">Shop</a><ul class=\"sub-menu nav-sidebar-ul children\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-9823\"><a href=\"https://flatsome3.uxthemes.com/features/woocommerce/\">WooCommerce</a></li></ul></li><li class=\"menu-flyout menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3204\"><a href=\"https://flatsome3.uxthemes.com/pages/\">Pages</a><ul class=\"sub-menu nav-sidebar-ul children\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3209\"><a href=\"https://flatsome3.uxthemes.com/pages/portfolio/\">Portfolio</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3205\"><a href=\"https://flatsome3.uxthemes.com/pages/about/\">About</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3206\"><a href=\"https://flatsome3.uxthemes.com/pages/contact/\">Contact</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8416\"><a href=\"https://flatsome3.uxthemes.com/pages/our-stores/\">Our Stores</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-8547\"><a href=\"https://flatsome3.uxthemes.com/pages/maintenance/\">Maintenance</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-10976\"><a href=\"https://flatsome3.uxthemes.com/pages/layouts/\">Page layouts</a></li></ul></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3203\"><a href=\"https://flatsome3.uxthemes.com/blog/\">Blog</a></li><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-3210\"><a href=\"https://flatsome3.uxthemes.com/elements/\">Elements</a></li><li class=\"account-item has-icon menu-item\"> <a href=\"https://flatsome3.uxthemes.com/my-account/\"\n" "class=\"nav-top-link nav-top-not-logged-in\"> <span class=\"header-account-title\"> Login </span> </a></li><li class=\"header-newsletter-item has-icon\"><a href=\"#header-newsletter-signup\" class=\"tooltip\" title=\"Sign up for Newsletter\"><i class=\"icon-envelop\"></i> <span class=\"header-newsletter-title\"> Newsletter </span> </a></li><li class=\"html header-social-icons ml-0\"><div class=\"social-icons follow-icons\" ><a href=\"http://url\" target=\"_blank\" data-label=\"Facebook\" rel=\"noopener noreferrer nofollow\" class=\"icon plain facebook tooltip\" title=\"Follow on Facebook\"><i class=\"icon-facebook\" ></i></a><a href=\"http://url\" target=\"_blank\" rel=\"noopener noreferrer nofollow\" data-label=\"Instagram\" class=\"icon plain instagram tooltip\" title=\"Follow on Instagram\"><i class=\"icon-instagram\" ></i></a><a href=\"http://url\" target=\"_blank\" data-label=\"Twitter\" rel=\"noopener noreferrer nofollow\" class=\"icon plain twitter tooltip\" title=\"Follow on Twitter\"><i class=\"icon-twitter\" ></i></a><a href=\"mailto:your@email\" data-label=\"E-mail\" rel=\"nofollow\" class=\"icon plain email tooltip\" title=\"Send us an email\"><i class=\"icon-envelop\" ></i></a></div></li></ul></div></div><div id=\"shop-menu-replace\" style=\"display:none;\"><li class=\"menu-item nav-dropdown-col\"> <a href=\"#\">Category Page</a><ul class=\"nav-column nav-dropdown-default\"><li class=\"menu-item\"><a href=\"/features/woocommerce/#shop-features\">Overview</a></li><li class=\"menu-item\"><a href=\"/product-category/posters/?style=layout-parallax-shop\">Off-Canvas Filtering</a></li><li class=\"menu-item\"><a href=\"/product-category/men/?style=layout-fullscreen-fashion\">Full Width Layout</a></li><li class=\"menu-item\"><a href=\"/product-category/clothing/?list_layout\">List layout</a></li><li class=\"menu-item\"><a href=\"/product-category/clothing/?masonry_layout\">Masonry layout</a></li><li class=\"menu-item\"><a href=\"/product-category/women/\">Top Content</a></li><li class=\"menu-item\"><a href=\"/product-category/clothing/?transparent_header\">Transparent Header</a></li><li class=\"menu-item\"><a href=\"/product-category/clothing/?dark\">Dark Style</a></li></ul></li><li class=\"menu-item nav-dropdown-col\"> <a href=\"#\">Product Page</a><ul class=\"nav-column nav-dropdown-default\"><li class=\"label-new menu-item\"><li class=\"menu-item\"><a href=\"/features/woocommerce/#product-features\">Overview</a></li><li class=\"menu-item\"><a href=\"/shop/shoes/all-star-canvas-hi-converse/?left\">Left Column</a></li><li class=\"menu-item\"><a href=\"/shop/shoes/all-star-canvas-hi-converse/?right\">Right Column</a></li><li class=\"menu-item\"><a href=\"/shop/booking/yoga-course/?style=layout-explore\">Full Width Gallery</a></li><li class=\"menu-item\"><a href=\"/shop/women/fluro-big-pullover-designers-remix/?style=layout-parallax-shop\">Vertical Gallery</a></li><li class=\"menu-item\"><a href=\"/shop/clothing/ship-your-idea/\">Variations</a></li><li class=\"menu-item\"><a href=\"/shop/women/beyond-top-nly-trend/?transparent_header\">Transparent Header</a></li><li class=\"menu-item\"><a href=\"/shop/bags/adelia-bag-nypd/\">Affiliate</a></li></li></ul></li><li class=\"menu-item nav-dropdown-col\"> <a href=\"#\">More..</a><ul class=\"nav-column nav-dropdown-default\"><li class=\"label-new menu-item\"><li class=\"menu-item\"><a href=\"/shop/women/varanise-cn-tee-hilfiger-denim/?accordion\">Accordion Style</a></li><li class=\"menu-item\"><a href=\"/shop/women/varanise-cn-tee-hilfiger-denim/?sections\">Section Style</a></li><li class=\"menu-item\"><a href=\"/shop/women/varanise-cn-tee-hilfiger-denim/?vertical_tabs\">Vertical Tabs</a></li><li class=\"menu-item\"><a href=\"/shop/women/varanise-cn-tee-hilfiger-denim/?tabs_normal\">Normal Tabs</a></li><li class=\"menu-item\"><a href=\"/shop/women/beyond-top-nly-trend/?dark\">Dark Style</a></li><li class=\"menu-item\"><a href=\"/shop/women/beyond-top-nly-trend/?zoom\">Image Zoom</a></li><li class=\"menu-item\"><a href=\"/features/whats-new/\">Catalogue Mode</a></li><li class=\"menu-item\"><a href=\"/features/woocommerce/#product-page-examples\">Product Examples</a></li></li></ul></li></div> <script>jQuery('.header #menu-item-9823').replaceWith(jQuery('#shop-menu-replace').html());</script> <div id=\"login-form-popup\" class=\"lightbox-content mfp-hide\"><div class=\"woocommerce-notices-wrapper\"></div><div class=\"account-container lightbox-inner\"><div class=\"col2-set row row-divided row-large\" id=\"customer_login\"><div class=\"col-1 large-6 col pb-0\"><div class=\"account-login-inner\"><h3 class=\"uppercase\">Login</h3><form class=\"woocommerce-form woocommerce-form-login login\" method=\"post\"><p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\"> <label for=\"username\">Username or email address&nbsp;<span class=\"required\">*</span></label> <input type=\"text\" class=\"woocommerce-Input woocommerce-Input--text input-text\" name=\"username\" id=\"username\" autocomplete=\"username\" value=\"\" /></p><p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\"> <label for=\"password\">Password&nbsp;<span class=\"required\">*</span></label> <input class=\"woocommerce-Input woocommerce-Input--text input-text\" type=\"password\" name=\"password\" id=\"password\" autocomplete=\"current-password\" /></p><p class=\"form-row\"> <label class=\"woocommerce-form__label woocommerce-form__label-for-checkbox woocommerce-form-login__rememberme\"> <input class=\"woocommerce-form__input woocommerce-form__input-checkbox\" name=\"rememberme\" type=\"checkbox\" id=\"rememberme\" value=\"forever\" /> <span>Remember me</span> </label> <input type=\"hidden\" id=\"woocommerce-login-nonce\" name=\"woocommerce-login-nonce\" value=\"fa156c16eb\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/demos/shop-demos/cute-shop/\" /> <button type=\"submit\" class=\"woocommerce-button button woocommerce-form-login__submit\" name=\"login\" value=\"Log in\">Log in</button></p><p class=\"woocommerce-LostPassword lost_password\"> <a href=\"https://flatsome3.uxthemes.com/my-account/lost-password/\">Lost your password?</a></p></form></div></div><div class=\"col-2 large-6 col pb-0\"><div class=\"account-register-inner\"><h3 class=\"uppercase\">Register</h3><form method=\"post\" class=\"woocommerce-form woocommerce-form-register register\" ><p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\"> <label for=\"reg_email\">Email address&nbsp;<span class=\"required\">*</span></label> <input type=\"email\" class=\"woocommerce-Input woocommerce-Input--text input-text\" name=\"email\" id=\"reg_email\" autocomplete=\"email\" value=\"\" /></p><p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\"> <label for=\"reg_password\">Password&nbsp;<span class=\"required\">*</span></label> <input type=\"password\" class=\"woocommerce-Input woocommerce-Input--text input-text\" name=\"password\" id=\"reg_password\" autocomplete=\"new-password\" /></p><div class=\"woocommerce-privacy-policy-text\"><p>Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our <a href=\"https://flatsome3.uxthemes.com/privacy-policy/\" class=\"woocommerce-privacy-policy-link\" target=\"_blank\">privacy policy</a>.</p></div><p class=\"woocommerce-form-row form-row\"> <input type=\"hidden\" id=\"woocommerce-register-nonce\" name=\"woocommerce-register-nonce\" value=\"1e2b70b0a9\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/demos/shop-demos/cute-shop/\" /> <button type=\"submit\" class=\"woocommerce-Button woocommerce-button button woocommerce-form-register__submit\" name=\"register\" value=\"Register\">Register</button></p></form></div></div></div></div></div> <script>jQuery(\"#wrapper a:not(.not), .mobile-sidebar a\").each(function(){\n" " var link = jQuery(this).attr(\"href\");\n" " var link_end = \"?style=\";\n" " var style = \"layout-cute-shop\";\n" " if(link){\n" " if(link.indexOf('style=') > -1) return;\n" " if(link.indexOf('?') > -1) {link_end = \"&style=\";}\n" " if(link.indexOf('#') > -1) {link_end = \"\"; style=\"\"}\n" " jQuery(this).attr(\"href\",link+link_end+style);\n" " }\n" " });\n\n" " // Remove from demos\n" " jQuery('#menu-item-3219 a, .logo a').each(function(){\n" " var old = jQuery(this).attr('href');\n" " old = old.replace(\"&style=layout-cute-shop\", \"\");\n" " old = old.replace(\"?style=layout-cute-shop\", \"\");\n" " jQuery(this).attr('href',old);\n" " });\n\n" " jQuery('#wrapper .cart-item').hover(function(){\n" " jQuery(this).find('a').each(function(){\n" " var link = jQuery(this).attr(\"href\");\n" " var link_end = \"?style=\";\n" " var style = \"layout-cute-shop\";\n" " if(link){\n" " if(link.indexOf('?') > -1) {link_end = \"&style=\";}\n" " if(link.indexOf('#') > -1) {link_end = \"\"; style=\"\"}\n" " jQuery(this).attr(\"href\",link+link_end+style);\n" " }\n" " });\n" " });</script> <script type=\"text/javascript\">var c = document.body.className;\n" " c = c.replace(/woocommerce-no-js/, 'woocommerce-js');\n" " document.body.className = c;</script> <script type=\"text/template\" id=\"tmpl-variation-template\"><div class=\"woocommerce-variation-description\">{{{ data.variation.variation_description }}}</div>\n" " <div class=\"woocommerce-variation-price\">{{{ data.variation.price_html }}}</div>\n" " <div class=\"woocommerce-variation-availability\">{{{ data.variation.availability_html }}}</div></script> <script type=\"text/template\" id=\"tmpl-unavailable-variation-template\"><p>Sorry, this product is unavailable. Please choose a different combination.</p></script> <link data-minify=\"1\" rel='stylesheet' id='flatsome-effects-css' href='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/assets/css/effects-33437f09cdc538def1a36ce37b423fd0.css' type='text/css' media='all' /><link data-minify=\"1\" rel='stylesheet' id='flatsome-countdown-style-css' href='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/inc/shortcodes/ux_countdown/ux-countdown-8a8dffa66fffa0a867dd76fe052bdf3d.css' type='text/css' media='all' /> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.selectBox.min-1.2.0.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var yith_wcwl_l10n = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"redirect_to_cart\":\"no\",\"multi_wishlist\":\"\",\"hide_add_button\":\"1\",\"enable_ajax_loading\":\"\",\"ajax_loader_url\":\"https:\\/\\/flatsome3.uxthemes.com\\/wp-content\\/plugins\\/yith-woocommerce-wishlist\\/assets\\/images\\/ajax-loader-alt.svg\",\"remove_from_wishlist_after_add_to_cart\":\"1\",\"is_wishlist_responsive\":\"1\",\"labels\":{\"cookie_disabled\":\"We are sorry, but this feature is available only if cookies on your browser are enabled.\",\"added_to_cart_message\":\"<div class=\\\"woocommerce-notices-wrapper\\\"><div class=\\\"woocommerce-message\\\" role=\\\"alert\\\">Product added to cart successfully<\\/div><\\/div>\"},\"actions\":{\"add_to_wishlist_action\":\"add_to_wishlist\",\"remove_from_wishlist_action\":\"remove_from_wishlist\",\"reload_wishlist_and_adding_elem_action\":\"reload_wishlist_and_adding_elem\",\"load_mobile_action\":\"load_mobile\",\"delete_item_action\":\"delete_item\",\"save_title_action\":\"save_title\",\"save_privacy_action\":\"save_privacy\",\"load_fragments\":\"load_fragments\"}}; /* ]]> */</script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.yith-wcwl-83ecaac8e7a4541515d50a3bf2ea13c1.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var wpcf7 = {\"apiSettings\":{\"root\":\"https:\\/\\/flatsome3.uxthemes.com\\/wp-json\\/contact-form-7\\/v1\",\"namespace\":\"contact-form-7\\/v1\"},\"cached\":\"1\"}; /* ]]> */</script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/plugins/contact-form-7/includes/js/scripts-b4fa50f00d38a89434a0e94e81ec63b3.js' defer></script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min-2.70.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var wc_add_to_cart_params = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\",\"i18n_view_cart\":\"View cart\",\"cart_url\":\"https:\\/\\/flatsome3.uxthemes.com\\/cart\\/\",\"is_cart\":\"\",\"cart_redirect_after_add\":\"no\"}; /* ]]> */</script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min-4.2.2.js' defer></script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min-2.1.4.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var woocommerce_params = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\"}; /* ]]> */</script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min-4.2.2.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var wc_cart_fragments_params = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\",\"cart_hash_key\":\"wc_cart_hash_25d1134b4977a105cfb604869b56105e\",\"fragment_name\":\"wc_fragments_25d1134b4977a105cfb604869b56105e\",\"request_timeout\":\"5000\"}; /* ]]> */</script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min-4.2.2.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var zerospam = {\"key\":\"Ya)jz0&67UDIvkql38JWhO3iqTDO!Rpau9pO#RwuGbYzNU&qWfFoyu*HQMyyJgoo\"}; /* ]]> */</script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/plugins/zero-spam/js/zerospam-234410dd817574abe14018afa28a2dc8.js' defer></script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-includes/js/hoverIntent.min-1.8.1.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var flatsomeVars = {\"ajaxurl\":\"https:\\/\\/flatsome3.uxthemes.com\\/wp-admin\\/admin-ajax.php\",\"rtl\":\"\",\"sticky_height\":\"70\",\"lightbox\":{\"close_markup\":\"<button title=\\\"%title%\\\" type=\\\"button\\\" class=\\\"mfp-close\\\"><svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" class=\\\"feather feather-x\\\"><line x1=\\\"18\\\" y1=\\\"6\\\" x2=\\\"6\\\" y2=\\\"18\\\"><\\/line><line x1=\\\"6\\\" y1=\\\"6\\\" x2=\\\"18\\\" y2=\\\"18\\\"><\\/line><\\/svg><\\/button>\",\"close_btn_inside\":false},\"user\":{\"can_edit_pages\":false}}; /* ]]> */</script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/assets/js/flatsome-22d968c52542f6519d3748a240b037ac.js' defer></script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/wishlist-c1b0a165efc92bdd40da72559f1817f4.js' defer></script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/inc/extensions/flatsome-instant-page/flatsome-instant-page-9b1ee5977d1de19cd592b80cd857d6dc.js' defer></script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/inc/extensions/flatsome-live-search/flatsome-live-search-d87ec8b739004a9dd3d6230703bb48d2.js' defer></script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load-c5115bbb51b622544dcc49afc2053f9c.js' defer></script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/assets/js/woocommerce-34cd5ff5fb9a4a09ef38b27658003448.js' defer></script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-includes/js/wp-embed.min.js' defer></script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-content/themes/flatsome/assets/libs/packery.pkgd.min-3.11.3.js' defer></script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/themes/flatsome/inc/shortcodes/ux_countdown/countdown-script-min.js' defer></script> <script data-minify=\"1\" type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/min/1/wp-content/themes/flatsome/inc/shortcodes/ux_countdown/ux-countdown-e65c3880d5eb99fbfce7cca13a11ba94.js' defer></script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-includes/js/underscore.min-1.8.3.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var _wpUtilSettings = {\"ajax\":{\"url\":\"\\/wp-admin\\/admin-ajax.php\"}}; /* ]]> */</script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-includes/js/wp-util.min.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var wc_add_to_cart_variation_params = {\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\",\"i18n_no_matching_variations_text\":\"Sorry, no products matched your selection. Please choose a different combination.\",\"i18n_make_a_selection_text\":\"Please select some product options before adding this product to your cart.\",\"i18n_unavailable_text\":\"Sorry, this product is unavailable. Please choose a different combination.\"}; /* ]]> */</script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min-4.2.2.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var _zxcvbnSettings = {\"src\":\"https:\\/\\/flatsome3.uxthemes.com\\/wp-includes\\/js\\/zxcvbn.min.js\"}; /* ]]> */</script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-includes/js/zxcvbn-async.min-1.0.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var pwsL10n = {\"unknown\":\"Password strength unknown\",\"short\":\"Very weak\",\"bad\":\"Weak\",\"good\":\"Medium\",\"strong\":\"Strong\",\"mismatch\":\"Mismatch\"}; /* ]]> */</script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-admin/js/password-strength-meter.min.js' defer></script> <script type='text/javascript'>/* <![CDATA[ */ var wc_password_strength_meter_params = {\"min_password_strength\":\"3\",\"stop_checkout\":\"\",\"i18n_password_error\":\"Please enter a stronger password.\",\"i18n_password_hint\":\"Hint: The password should be at least twelve characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! \\\" ? $ % ^ & ).\"}; /* ]]> */</script> <script type='text/javascript' src='https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/cache/busting/1/wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.min-4.2.2.js' defer></script> <script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n" " (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n" " m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n" " })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');\n\n" " ga('create', 'UA-84502185-1', 'auto');\n" " ga('send', 'pageview');</script> <style>.flatsome-features .box-text{display:none}.demo-button{display:block;margin-bottom:3px;transition:all .3s;-webkit-transition:all .3s;background-color:rgba(0,0,0,.4);text-align:center;padding:5px;border-radius:3px}.demo-button p{margin-bottom:0;color:#FFF;font-weight:bolder;font-size:13px;line-height:1.3;text-transform:uppercase}.demo-button:hover{background-color:#0073aa!important;transform:translateX(0)}.demo-lightbox{max-width:1000px!important}.demo-lightbox img{width:100%}</style><div class=\"demo-wrapper hide-for-small\" style=\"width: 70px; overflow: hidden; color:#FFF; text-align: center; padding: 0; margin: 0; position: fixed; right:5px; top:45%; z-index: 25;\"> <a href=\"#open\" data-open=\"#theme-demos\" class=\"demo-button\" data-class=\"demo-lightbox\" data-pos=\"center\"> <img src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/themes/flatsome/assets/img/logo-icon.svg\" style=\"width: 32px; margin-bottom: 3px;\"/><p style=\"font-size:11px;\">Demos</p> </a><a href=\"https://bit.ly/buy-flatsome\" class=\"demo-button\" target=\"_blank\"><p style=\"font-size: 22px;\"><small style=\"vertical-align: top\">$</small>59</p><p style=\"font-size:11px;\">Buy Now</p> </a> <a href=\"https://bit.ly/flatsome-support\" class=\"demo-button\" target=\"_blank\"> <img src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/plugins/flatsome-demo/themeforest/emailsupport2.png\" style=\"width: 36px; margin-bottom: 5px;\"/><p style=\"font-size:11px;\">Support</p> </a></div><div id=\"theme-demos\" class=\"mfp-hide\"> <div class=\"row row-small align-center flatsome-demos\" id=\"row-2122951818\"><div class=\"col medium-9 small-12 large-9\" ><div class=\"col-inner text-center\" ><h2>Flatsome Theme Demos</h2><p class=\"lead\">Flatsome includes many pre-made homepages and settings you can add with a single click. These are just examples. You can mix and match headers, pages, colors and fonts using the Theme Option Panel.</p></div></div><style scope=\"scope\"></style></div><div class=\"container section-title-container\" ><h3 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" >Shop Demos</span><b></b></h3></div><div class=\"row large-columns-3 medium-columns- small-columns-2 row-small has-shadow row-box-shadow-1 row-box-shadow-4-hover\"><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/classic-shop/\" title=\"Classic Shop\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"332\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20332%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/classic-shop-400x332.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/classic-shop-400x332.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/classic-shop.jpg 435w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Classic Shop</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/cute-shop/\" title=\"Cute Shop\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"329\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20329%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/02/cute-shop-hmp-400x329.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/02/cute-shop-hmp-400x329.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/02/cute-shop-hmp.jpg 436w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Cute Shop</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/parallax-shop/\" title=\"Parallax Shop\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"336\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20336%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/parallax-shop-400x336.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/parallax-shop-400x336.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/parallax-shop.jpg 435w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Parallax Shop</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/big-sale/\" title=\"Big Sale\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"336\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20336%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/big-sale-400x336.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/big-sale-400x336.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/big-sale.jpg 435w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Big Sale</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/fullscreen-fashion/\" title=\"Fullscreen Fashion\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"332\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20332%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/full-screen-fashion-400x332.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/full-screen-fashion-400x332.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/full-screen-fashion.jpg 435w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Fullscreen Fashion</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/grid-style-1/\" title=\"Grid Style 1\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"351\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20351%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/12/grid-style-1-400x351.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/12/grid-style-1-400x351.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/12/grid-style-1.jpg 418w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Grid Style 1</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/grid-style-2/\" title=\"Grid Style 2\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"341\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20341%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/grid-style-2-400x341.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/grid-style-2-400x341.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/grid-style-2.jpg 436w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Grid Style 2</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/grid-style-3/\" title=\"Grid Style 3\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"341\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20341%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/grid-style-3-hmp-400x341.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/grid-style-3-hmp-400x341.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/grid-style-3-hmp.jpg 436w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Grid Style 3</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/mega-shop/\" title=\"Mega Shop\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"332\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20332%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/mega-shop-400x332.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/mega-shop-400x332.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/mega-shop.jpg 435w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Mega Shop</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/sale-countdown/\" title=\"Sale Countdown\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"336\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20336%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/sale-countdown-400x336.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/sale-countdown-400x336.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/sale-countdown.jpg 435w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Sale Countdown</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/simple-slider/\" title=\"Simple Slider\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"336\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20336%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/simple-slider-400x336.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/simple-slider-400x336.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2013/08/simple-slider.jpg 435w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Simple Slider</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/slider-cover/\" title=\"Slider Cover\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"302\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20302%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/slider-cover-400x302.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/slider-cover-400x302.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/slider-cover.jpg 492w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Slider Cover</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/sport-shop/\" title=\"Sport Shop\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"336\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20336%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/02/sport-shop-400x336.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/02/sport-shop-400x336.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/02/sport-shop.jpg 435w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Sport Shop</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/vendor-shop/\" title=\"Vendor Shop\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"333\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20333%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/vendor-shop-hmp-400x333.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/vendor-shop-hmp-400x333.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/vendor-shop-hmp.jpg 436w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Vendor Shop</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/shop-demos/video-cover/\" title=\"Video Cover\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"308\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20308%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/video-cover-400x308.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/video-cover-400x308.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/video-cover.jpg 476w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.63);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Video Cover</p></div></div></div> </a></div></div></div><div class=\"container section-title-container\" ><h3 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" >Business Demos</span><b></b></h3></div><div class=\"row large-columns-3 medium-columns- small-columns-2 row-small has-shadow row-box-shadow-1 row-box-shadow-4-hover\"><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/business-demos/simple-corporate/\" title=\"Corporate\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"301\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20301%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/02/corporate-400x301.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/02/corporate-400x301.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/02/corporate.jpg 495w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.76);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Corporate</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/business-demos/freelancer/\" title=\"Freelancer\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"276\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20276%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/freelancer-400x276.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/freelancer-400x276.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/freelancer-510x352.jpg 510w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/07/freelancer.jpg 533w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.76);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Freelancer</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/business-demos/agency/\" title=\"Agency\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"336\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20336%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/agency-400x336.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/agency-400x336.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/agency.jpg 435w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.76);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Agency</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/business-demos/explore/\" title=\"Explore\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"296\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/go-explore-400x296.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/go-explore-400x296.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2016/04/go-explore.jpg 498w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.76);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Explore</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/business-demos/booking/\" title=\"Booking\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"309\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20309%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/coming-soon-400x309.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/coming-soon-400x309.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/coming-soon.jpg 495w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.76);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Booking</p></div></div></div> </a></div></div><div class=\"page-col col\" ><div class=\"col-inner\" > <a class=\"plain\" href=\"https://flatsome3.uxthemes.com/demos/business-demos/lifestyle/\" title=\"Lifestyle\" target=\"\"><div class=\"page-box box has-hover box-default\"><div class=\"box-image\" ><div class=\"box-image\" > <img width=\"400\" height=\"309\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20309%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/coming-soon-1-400x309.jpg\" class=\"lazy-load attachment-medium size-medium\" alt=\"\" srcset=\"\" data-srcset=\"https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/coming-soon-1-400x309.jpg 400w, https://fzi4k1gk2dw3t0fqy18sw8qi-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/coming-soon-1.jpg 495w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></div><div class=\"overlay\" style=\"background-color: rgba(0, 0, 0, 0)\"></div></div><div class=\"box-text text-center\" style=\"background-color:rgba(255, 255, 255, 0.76);padding:5px 5px 5px 5px;\"><div class=\"box-text-inner\"><p>Lifestyle</p></div></div></div> </a></div></div></div></div></div></body></html>\n" "<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me -->") matches = re.finditer(regex, test_str) for matchNum, match in enumerate(matches, start=1): print ("Match {matchNum} was found at {start}-{end}: {match}".format(matchNum = matchNum, start = match.start(), end = match.end(), match = match.group())) for groupNum in range(0, len(match.groups())): groupNum = groupNum + 1 print ("Group {groupNum} found at {start}-{end}: {group}".format(groupNum = groupNum, start = match.start(groupNum), end = match.end(groupNum), group = match.group(groupNum))) # Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Python, please visit: https://docs.python.org/3/library/re.html