<script type="text/javascript">(function() {

    function TheGemAdvancedAnimation() {
        this.animateClass = 'thegem-advanced-animation';
        this.animatedClass = 'thegem-advanced-animation-animated';
    }

    TheGemAdvancedAnimation.prototype = {
        initialize: function () {
            let items =  document.querySelectorAll('.'+this.animateClass);

            if ('IntersectionObserver' in window) {
                let intersectionObserver = new IntersectionObserver((entries, observer)=>{
                    entries.forEach((entry)=> {
                        if (entry.isIntersecting) {
                            this.startAnimation(entry.target);
                            intersectionObserver.unobserve(entry.target);
                        }
                    });
                });

                items.forEach((item)=>{
                    intersectionObserver.observe(item);
                });
            } else {
                items.forEach((item)=>{
                    this.startAnimation(item);
                });
            }
        },

        startAnimation: function (element) {
            if (element.classList.contains(this.animateClass)) {
                setTimeout(() => {
                    element.classList.remove(this.animateClass);
                    element.classList.add(this.animatedClass);
                }, 300);
            }
        }
    };

    window.theGemAdvancedAnimation= new TheGemAdvancedAnimation();
    document.addEventListener('DOMContentLoaded', function() {
        window.theGemAdvancedAnimation.initialize();
    });

    if (window.parent.vc) {
        window.parent.vc.events.on('shortcodeView:updated', function (event) {
            let element = event.view.el.querySelector('.thegem-advanced-animation');
            window.theGemAdvancedAnimation.startAnimation(element);
        });

        window.parent.vc.events.on('app.render', function () {
            window.theGemAdvancedAnimation.initialize();
        });
    }
})();</script>{"id":631,"date":"2024-08-29T10:55:19","date_gmt":"2024-08-29T10:55:19","guid":{"rendered":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/?page_id=631"},"modified":"2025-07-14T12:31:40","modified_gmt":"2025-07-14T12:31:40","slug":"home","status":"publish","type":"page","link":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/","title":{"rendered":"Homepage"},"content":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1548409511025{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}&#8221;][vc_column width=&#8221;1\/3&#8243; css=&#8221;.vc_custom_1548409464290{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221; el_class=&#8221;big-index-block&#8221;]<div id=\"fullwidth-block-69d84dee3941e\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d84dee3941e\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_separator color=&#8221;custom&#8221; border_width=&#8221;3&#8243; el_width=&#8221;10&#8243; accent_color=&#8221;#333333&#8243; el_class=&#8221;title-line&#8221;]<div class=\"thegem-te-heading thegem-custom-69d84dee395489355\" ><script type=\"text\/javascript\">(function() { function TheGemHeading() { this.selector = '.thegem-heading'; this.animateClass = 'thegem-heading-animate'; this.animatedClass = 'thegem-heading-animated'; this.rotatingSelector = '.thegem-heading-rotating'; } TheGemHeading.prototype = { initialize: function () { let items = document.querySelectorAll(this.selector); if ('IntersectionObserver' in window) { let intersectionObserver = new IntersectionObserver((entries, observer)=>{ entries.forEach((entry)=> { if (entry.isIntersecting) { this.startAnimation(entry.target); intersectionObserver.unobserve(entry.target); } }); }); items.forEach((item)=>{ intersectionObserver.observe(item); setTimeout(()=>this.prepareAnimation(item), 300); }); } else { items.forEach((item)=>{ this.prepareAnimation(item); this.startAnimation(item); }); } }, startAnimation: function (element) { if (element.classList.contains(this.animateClass)) { setTimeout(()=>{ element.classList.remove(this.animateClass); element.classList.add(this.animatedClass); }, 300); } let rotatingItem = element.querySelector(this.rotatingSelector); if (typeof(rotatingItem) != 'undefined' && rotatingItem != null) { document.fonts.ready.then(()=>{ this.rotating(rotatingItem); }); } }, isRotating: function (element) { return element.querySelector(this.rotatingSelector) !== null; }, isDesktop: function () { return window.innerWidth > 1024; }, isTablet: function () { return window.innerWidth <= 1024 && window.innerWidth >= 768; }, isMobile: function () { return window.innerWidth < 768; }, prepareAnimation: function (element) { if (!element || this.isRotating(element)) { return; } if (element.classList.contains('thegem-heading-animate-disable-desktop') && this.isDesktop()) return; if (element.classList.contains('thegem-heading-animate-disable-tablet') && this.isTablet()) return; if (element.classList.contains('thegem-heading-animate-disable-mobile') && this.isMobile()) return; const animationName = element.dataset.animationName; const animationDelay = parseInt(element.dataset.animationDelay) || 0; const animationInterval = parseInt(element.dataset.animationInterval) || 0; switch (animationName) { case 'lines-slide-up': case 'lines-slide-up-random': const animationLineTagWrap = '<span class=\"thegem-heading-line-wrap\">'; function animationLineTag (index) { let styles = ''; if (animationName === 'lines-slide-up' && (animationDelay > 0 || animationInterval > 0)) { styles = `animation-delay: ${(animationDelay + (animationInterval*(index+1)))}ms;`; } return '<span class=\"thegem-heading-line\"' + (styles!== '' ? ' style=\"'+styles+'\"' : '') + '>'; } let nodes = element.childNodes; let currentOffset = nodes[0].offsetTop; let index = 0; let idx = 0; let html = animationLineTagWrap + animationLineTag(index); for (let i = 0; i < nodes.length; i++) { if (nodes[i].nodeType === 3) continue; if (nodes[i].offsetTop > currentOffset + nodes[i].scrollHeight\/2) { index++; html += '<\/span><\/span>' + animationLineTagWrap + animationLineTag(index); currentOffset = nodes[i].offsetTop; if (animationName === 'lines-slide-up-random') idx = 0; } if (animationName === 'lines-slide-up-random' && (animationDelay > 0 || animationInterval > 0)) { nodes[i].style.animationDelay = (animationDelay + animationInterval*(idx+1)) + 'ms'; } html += nodes[i].outerHTML + ' '; if (animationName === 'lines-slide-up-random') idx++; } html += '<\/span><\/span>'; element.innerHTML = html; break; } }, rotating: function (element) { let items = Array.from(element.getElementsByClassName('thegem-heading-rotating-text')); if (items.length === 0) return; let duration = element.dataset.duration !== undefined ? parseInt(element.dataset.duration) : 1400; let animation = element.dataset.animation; let current = items[0]; if (animation === 'fade') { let maxWidth = Math.max(...items.map((item)=>item.clientWidth)); items.forEach((item)=>item.style.width = maxWidth + 'px'); setInterval(()=>{ let next = current.nextElementSibling !== null ? current.nextElementSibling : element.childNodes[0]; current.style.opacity = 0; setTimeout(()=>{ current.style.position = 'absolute'; next.style.position = 'relative'; next.style.opacity = 1; current = next; }, 700); }, 1000 + duration); } else { current.style.width = element.clientWidth+'px'; items.forEach((item)=>item.dataset.width = item.clientWidth); setInterval(()=>{ let next = current.nextElementSibling !== null ? current.nextElementSibling : element.childNodes[0]; let nextWidth = next.dataset.width; let currentWidth = current.dataset.width; element.style.width = nextWidth + 'px'; current.style.width = '1px'; current.style.opacity = 0; next.style.width = '1px'; setTimeout(()=>{ current.style.position = 'absolute'; current.style.width = currentWidth + 'px'; next.style.position = 'relative'; next.style.opacity = 1; next.style.width = nextWidth + 'px'; current = next; }, 500); }, 1000 + duration); } } }; window.theGemHeading = new TheGemHeading(); document.addEventListener('DOMContentLoaded', function(event) { window.theGemHeading.initialize(); }); if (window.parent.vc) { window.parent.vc.events.on('shortcodeView:updated', function (event) { let element = event.view.el.querySelector('.thegem-heading'); window.theGemHeading.prepareAnimation(element); window.theGemHeading.startAnimation(element); }); window.parent.vc.events.on('app.render', function () { window.theGemHeading.initialize(); }); }\n})();<\/script><div id=\"thegem-heading-69d84dee3948f\" class=\"thegem-heading title-xlarge fade-lr thegem-heading-animate\" style=\"text-align: left;\" ><span style=\"color: #333333; transition: color 0.3s;\">New\n<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3948f {margin: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3948f.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3948f.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3948f.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3948f.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3948f {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee3948f a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee395cd7457\" ><div id=\"thegem-heading-69d84dee395b8\" class=\"thegem-heading title-xlarge vc_custom_1638443709717 fade-rl thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"light\" style=\"color: #333333; transition: color 0.3s;\">Collection<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee395b8 {margin: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee395b8.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee395b8.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee395b8.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee395b8.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee395b8 {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee395b8 {animation-delay: 50ms;}#thegem-heading-69d84dee395b8 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee396672821\" ><div id=\"thegem-heading-69d84dee39621\" class=\"thegem-heading vc_custom_1638444251709 letters-scale-out thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 330ms\">T<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 360ms\">h<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 390ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 420ms\">r<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 450ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 480ms\">'<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 510ms\">s<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 540ms\">n<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 570ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 600ms\">t<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 630ms\">h<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 660ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 690ms\">n<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 720ms\">g<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 750ms\">l<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 780ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 810ms\">k<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 840ms\">e<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 870ms\">n<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 900ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 930ms\">w<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee39621 {margin: 0;}#thegem-heading-69d84dee39621 {font-size: 28px;}#thegem-heading-69d84dee39621 {line-height: 28px;}#thegem-heading-69d84dee39621, #thegem-heading-69d84dee39621 .light {text-transform: none;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39621.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39621.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39621.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39621.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee39621 .light, #thegem-heading-69d84dee39621 {font-family:Old Standard TT; font-weight:400; font-style:normal; }#thegem-heading-69d84dee39621 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div><style type=\"text\/css\">.thegem-button-69d84dee396c96097 .gem-button {opacity:0;animation-delay:500ms !important;animation-timing-function:cubic-bezier(0.77,0,0.175,1) !important}<\/style><div class=\"gem-button-container gem-button-position-left thegem-button-69d84dee396c96097 thegem-advanced-animation thegem-advanced-animation-fade-left\"  ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-3\" style=\"border-radius: 0px;border-color: #333333;color: #333333;\" onmouseleave=\"this.style.borderColor='#333333';this.style.backgroundColor='transparent';this.style.color='#333333';\" onmouseenter=\"this.style.borderColor='#333333';this.style.backgroundColor='#333333';this.style.color='#ffffff';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/new-in\/\" target=\"_self\">Shop New Arrivals<\/a><\/div> <div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div><\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;2\/3&#8243; css=&#8221;.vc_custom_1548409458907{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;]<div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-right\"  style=\"\"><div class=\"gem-wrapbox-inner \" ><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/1.jpg\" alt=\"\"\/><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;top&#8221; el_class=&#8221;line-top-position&#8221; css=&#8221;.vc_custom_1548410483393{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 120px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_column width=&#8221;2\/3&#8243; css=&#8221;.vc_custom_1548168276056{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;]<div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-left\"  style=\"\"><div class=\"gem-wrapbox-inner \" ><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/2.jpg\" alt=\"\"\/><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/3&#8243; css=&#8221;.vc_custom_1548168566818{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;]<div id=\"fullwidth-block-69d84dee3995f\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d84dee3995f\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_separator color=&#8221;custom&#8221; border_width=&#8221;3&#8243; el_width=&#8221;10&#8243; accent_color=&#8221;#333333&#8243; el_class=&#8221;title-line-verical-left&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider landscape-gap\" style=\"margin-top: 120px;\"><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee399d48468\" ><div id=\"thegem-heading-69d84dee399bf\" class=\"thegem-heading title-xlarge vc_custom_1638444321519 fade-rl thegem-heading-animate\" style=\"text-align: right;\" ><span style=\"color: #333333; transition: color 0.3s;\">Men's\n<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee399bf {margin: 0;}#thegem-heading-69d84dee399bf {margin-left: auto; margin-right: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee399bf.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee399bf.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee399bf.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee399bf.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee399bf {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee399bf a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee39a387094\" ><div id=\"thegem-heading-69d84dee39a29\" class=\"thegem-heading title-h2 fade-rl thegem-heading-animate\" style=\"text-align: right;\" ><span style=\"color: #333333; transition: color 0.3s;\">summer<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee39a29 {margin: 0;}#thegem-heading-69d84dee39a29 {margin-left: auto; margin-right: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39a29.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39a29.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39a29.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39a29.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee39a29 {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee39a29 {animation-delay: 40ms;}#thegem-heading-69d84dee39a29 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee39a962561\" ><div id=\"thegem-heading-69d84dee39a87\" class=\"thegem-heading title-xlarge fade-lr thegem-heading-animate\" style=\"text-align: right;\" ><span class=\"light\" style=\"color: #333333; transition: color 0.3s;\">Collection<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee39a87 {margin: 0;}#thegem-heading-69d84dee39a87 {margin-left: auto; margin-right: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39a87.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39a87.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39a87.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39a87.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee39a87 {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee39a87 {animation-delay: 90ms;}#thegem-heading-69d84dee39a87 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee39b163695\" ><div id=\"thegem-heading-69d84dee39ae6\" class=\"thegem-heading vc_custom_1638444463157 letters-scale-out thegem-heading-animate\" style=\"text-align: right;\" ><span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 380ms\">N<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 410ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 440ms\">w<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 470ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 500ms\">t<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 530ms\">y<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 560ms\">l<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 590ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 620ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 650ms\">h<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 680ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 710ms\">h<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 740ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 770ms\">r<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 800ms\">t<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 830ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 860ms\">,<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 890ms\">p<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 920ms\">a<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 950ms\">n<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 980ms\">t<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1010ms\">s<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1040ms\">&<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1070ms\">a<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1100ms\">c<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1130ms\">c<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1160ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1190ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1220ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1250ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1280ms\">r<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1310ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1340ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 1370ms\">s<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee39ae6 {margin: 0;}#thegem-heading-69d84dee39ae6 {margin-left: auto; margin-right: 0;}#thegem-heading-69d84dee39ae6 {font-size: 24px;}#thegem-heading-69d84dee39ae6 {line-height: 24px;}#thegem-heading-69d84dee39ae6, #thegem-heading-69d84dee39ae6 .light {text-transform: none;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39ae6.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39ae6.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39ae6.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39ae6.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee39ae6 .light, #thegem-heading-69d84dee39ae6 {font-family:Old Standard TT; font-weight:400; font-style:normal; }#thegem-heading-69d84dee39ae6 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div><style type=\"text\/css\">.thegem-button-69d84dee39b531154 .gem-button {opacity:0;animation-delay:550ms !important;animation-timing-function:cubic-bezier(0.77,0,0.175,1) !important}<\/style><div class=\"gem-button-container gem-button-position-right thegem-button-69d84dee39b531154 thegem-advanced-animation thegem-advanced-animation-fade-right\"  ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-3\" style=\"border-radius: 0px;border-color: #333333;color: #333333;\" onmouseleave=\"this.style.borderColor='#333333';this.style.backgroundColor='transparent';this.style.color='#333333';\" onmouseenter=\"this.style.borderColor='#333333';this.style.backgroundColor='#333333';this.style.color='#ffffff';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/product-category\/clothes\/\" target=\"_self\">Shop Collection<\/a><\/div> <div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1548251000375{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_column css=&#8221;.vc_custom_1548168276056{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;]<div id=\"fullwidth-block-69d84dee39c9c\" class=\"fullwidth-block fullwidth-block-parallax-vertical clearfix\" data-mobile-parallax-enable=\"0\" style=\"padding-top: 220px;padding-bottom: 270px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d84dee39c9c\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/3.jpg);background-repeat: no-repeat; background-size: cover;background-position: center center;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\"><div class=\"thegem-te-heading thegem-custom-69d84dee39d364288\" ><div id=\"thegem-heading-69d84dee39d1e\" class=\"thegem-heading title-h1 words-slide-up thegem-heading-animate\" style=\"text-align: center;\" ><span class=\"thegem-heading-word-wrap\"><span class=\"light thegem-heading-word\" style=\"color: #ffffff; transition: color 0.3s; animation-delay: 160ms\">Sales<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"light thegem-heading-word\" style=\"color: #ffffff; transition: color 0.3s; animation-delay: 220ms\">Now!<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee39d1e {margin: 0;}#thegem-heading-69d84dee39d1e {margin-left: auto; margin-right: auto;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39d1e.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39d1e.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39d1e.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39d1e.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee39d1e .thegem-heading-word {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee39d1e a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 10px;\"><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee39d9e916\" ><div id=\"thegem-heading-69d84dee39d8d\" class=\"thegem-heading title-xlarge words-slide-up thegem-heading-animate\" style=\"text-align: center;\" ><span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; transition: color 0.3s; animation-delay: 60ms\">SHOCK<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; transition: color 0.3s; animation-delay: 120ms\">OFFER<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee39d8d {margin: 0;}#thegem-heading-69d84dee39d8d {margin-left: auto; margin-right: auto;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39d8d.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39d8d.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39d8d.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39d8d.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee39d8d .thegem-heading-word {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee39d8d a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div>[vc_separator color=&#8221;white&#8221; border_width=&#8221;3&#8243; el_width=&#8221;10&#8243;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 35px;\"><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee39e1f8693\" ><h1 id=\"thegem-heading-69d84dee39df5\" class=\"thegem-heading letters-scale-out thegem-heading-animate\" style=\"text-align: center;\" ><span class=\"thegem-heading-word\" style=\"font-style: italic; color: #ffffff; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 330ms\">j<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 360ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 390ms\">a<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 420ms\">n<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 450ms\">s<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #ffffff; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 480ms\">f<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 510ms\">r<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 540ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 570ms\">m<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #ffffff; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 600ms\">$<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #ffffff; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 630ms\">3<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 660ms\">7<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 690ms\">.<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 720ms\">9<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 750ms\">9<\/span><\/span><\/h1><style type=\"text\/css\">#thegem-heading-69d84dee39df5 {margin: 0;}#thegem-heading-69d84dee39df5 {margin-left: auto; margin-right: auto;}#thegem-heading-69d84dee39df5 {font-size: 28px;}#thegem-heading-69d84dee39df5 {line-height: 28px;}#thegem-heading-69d84dee39df5 {letter-spacing: 0px;}#thegem-heading-69d84dee39df5, #thegem-heading-69d84dee39df5 .light {text-transform: none;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39df5.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39df5.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39df5.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39df5.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee39df5 .light, #thegem-heading-69d84dee39df5 {font-family:Old Standard TT; font-weight:400; font-style:normal; }#thegem-heading-69d84dee39df5 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;top&#8221; css=&#8221;.vc_custom_1548418790786{margin-top: -90px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/6-1.png?id=718) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_column width=&#8221;5\/12&#8243; css=&#8221;.vc_custom_1548413812566{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221; el_class=&#8221;big-index-block&#8221; offset=&#8221;vc_col-lg-5 vc_hidden-xs&#8221;]<div id=\"fullwidth-block-69d84dee39e40\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d84dee39e40\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\"><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 240px;\"><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee39ea89889\" ><div id=\"thegem-heading-69d84dee39e99\" class=\"thegem-heading title-h1 fade-lr thegem-heading-animate\" style=\"text-align: left;\" ><span style=\"color: #333333; transition: color 0.3s;\">CONTEMPORARY<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee39e99 {margin: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39e99.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39e99.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39e99.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39e99.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee39e99 {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee39e99 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee39f1c9259\" ><div id=\"thegem-heading-69d84dee39ef8\" class=\"thegem-heading vc_custom_1638450003548 letters-scale-out thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 230ms\">S<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 260ms\">t<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 290ms\">y<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 320ms\">l<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 350ms\">e<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 380ms\">f<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 410ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 440ms\">r<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 470ms\">y<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 500ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 530ms\">u<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee39ef8 {margin: 0;}#thegem-heading-69d84dee39ef8 {font-size: 28px;}#thegem-heading-69d84dee39ef8 {line-height: 28px;}#thegem-heading-69d84dee39ef8, #thegem-heading-69d84dee39ef8 .light {text-transform: none;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39ef8.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39ef8.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee39ef8.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee39ef8.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee39ef8 .light, #thegem-heading-69d84dee39ef8 {font-family:Old Standard TT; font-weight:400; font-style:normal; }#thegem-heading-69d84dee39ef8 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221; css=&#8221;.vc_custom_1548660422014{padding-top: 45px !important;}&#8221;]<span style=\"white-space: nowrap; color: #333333; z-index: 100;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor ut<br \/>\nlabore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud. Excepteur<br \/>\nsint occaecat cupidatat non proident, sunt in culpa.<\/span>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 60px;\"><\/div><style type=\"text\/css\">.thegem-button-69d84dee39f52338 .gem-button {opacity:0;animation-delay:200ms !important;animation-timing-function:cubic-bezier(0.77,0,0.175,1) !important}<\/style><div class=\"gem-button-container gem-button-position-left thegem-button-69d84dee39f52338 thegem-advanced-animation thegem-advanced-animation-fade-left\"  ><a class=\"gem-button gem-button-size-small gem-button-style-outline gem-button-text-weight-normal gem-button-border-2\" style=\"border-radius: 0px;border-color: #333333;color: #333333;\" onmouseleave=\"this.style.borderColor='#333333';this.style.backgroundColor='transparent';this.style.color='#333333';\" onmouseenter=\"this.style.borderColor='#333333';this.style.backgroundColor='#333333';this.style.color='#ffffff';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/product-category\/clothes\/\" target=\"_self\">learn more<\/a><\/div> <div class=\"clearboth\"><\/div><div class=\"gem-divider hide-on-landscape\" style=\"margin-top: 80px;\"><\/div>[vc_separator color=&#8221;custom&#8221; border_width=&#8221;3&#8243; el_width=&#8221;10&#8243; accent_color=&#8221;#333333&#8243; el_class=&#8221;title-line-bottom&#8221;]<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-7 vc_hidden-xs&#8221; css=&#8221;.vc_custom_1548251363861{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;]<div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/4-1.jpg\" alt=\"\"\/><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1548418831563{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 120px !important;padding-bottom: 0px !important;background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/8-1.png?id=720) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-7 vc_hidden-xs&#8221; css=&#8221;.vc_custom_1548252525815{padding-top: 0px !important;}&#8221;]<div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/5.jpg\" alt=\"\"\/><\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;5\/12&#8243; disable_custom_paddings_tablet=&#8221;true&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; css=&#8221;.vc_custom_1548414286834{margin-top: 0px !important;margin-bottom: 0px !important;margin-left: -100px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221; el_class=&#8221;line-top-right-position&#8221;][vc_separator color=&#8221;custom&#8221; border_width=&#8221;3&#8243; el_width=&#8221;10&#8243; accent_color=&#8221;#333333&#8243; el_class=&#8221;title-line-verical-right&#8221;]<div class=\"thegem-te-heading thegem-custom-69d84dee3a1738360\" ><div id=\"thegem-heading-69d84dee3a162\" class=\"thegem-heading title-h1 fade-rl thegem-heading-animate\" style=\"text-align: left;\" ><span style=\"color: #333333; transition: color 0.3s;\">Slap-Up<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3a162 {margin: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a162.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a162.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a162.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a162.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3a162 {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee3a162 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee3a20e1756\" ><div id=\"thegem-heading-69d84dee3a1dd\" class=\"thegem-heading vc_custom_1638450183160 letters-scale-out thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 230ms\">G<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 260ms\">o<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 290ms\">u<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 320ms\">p<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 350ms\">w<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 380ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 410ms\">t<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 440ms\">h<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 470ms\">f<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 500ms\">a<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 530ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 560ms\">h<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 590ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 620ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 650ms\">n<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3a1dd {margin: 0;}#thegem-heading-69d84dee3a1dd {font-size: 28px;}#thegem-heading-69d84dee3a1dd {line-height: 28px;}#thegem-heading-69d84dee3a1dd, #thegem-heading-69d84dee3a1dd .light {text-transform: none;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a1dd.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a1dd.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a1dd.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a1dd.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3a1dd .light, #thegem-heading-69d84dee3a1dd {font-family:Old Standard TT; font-weight:400; font-style:normal; }#thegem-heading-69d84dee3a1dd a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221; css=&#8221;.vc_custom_1548660446608{padding-top: 45px !important;}&#8221;]<span style=\"white-space: nowrap; color: #333333; z-index: 100;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor ut<br \/>\nlabore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud. Excepteur<br \/>\nsint occaecat cupidatat non proident, sunt in culpa.<\/span>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 60px;\"><\/div><style type=\"text\/css\">.thegem-button-69d84dee3a24b1555 .gem-button {opacity:0;animation-delay:200ms !important;animation-timing-function:cubic-bezier(0.77,0,0.175,1) !important}<\/style><div class=\"gem-button-container gem-button-position-left thegem-button-69d84dee3a24b1555 thegem-advanced-animation thegem-advanced-animation-fade-right\"  ><a class=\"gem-button gem-button-size-small gem-button-style-outline gem-button-text-weight-normal gem-button-border-2\" style=\"border-radius: 0px;border-color: #333333;color: #333333;\" onmouseleave=\"this.style.borderColor='#333333';this.style.backgroundColor='transparent';this.style.color='#333333';\" onmouseenter=\"this.style.borderColor='#333333';this.style.backgroundColor='#333333';this.style.color='#ffffff';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/product-category\/clothes\/\" target=\"_self\">learn more<\/a><\/div> <div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1548414504499{margin-top: 140px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}&#8221;][vc_column width=&#8221;1\/3&#8243; css=&#8221;.vc_custom_1551795899671{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221; el_class=&#8221;big-index-block laptop-title&#8221;]<div id=\"fullwidth-block-69d84dee3a264\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d84dee3a264\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_separator color=&#8221;custom&#8221; border_width=&#8221;3&#8243; el_width=&#8221;10&#8243; accent_color=&#8221;#333333&#8243; el_class=&#8221;title-line&#8221;]<div class=\"thegem-te-heading thegem-custom-69d84dee3a2c86113\" ><div id=\"thegem-heading-69d84dee3a2b8\" class=\"thegem-heading title-xlarge vc_custom_1638450286444 fade-lr thegem-heading-animate\" style=\"text-align: left;\" ><span style=\"color: #333333; transition: color 0.3s;\">New trends<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3a2b8 {margin: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a2b8.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a2b8.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a2b8.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a2b8.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3a2b8 {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee3a2b8 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee3a3251989\" ><div id=\"thegem-heading-69d84dee3a317\" class=\"thegem-heading title-xlarge fade-rl thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"light\" style=\"color: #333333; transition: color 0.3s;\">This season<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3a317 {margin: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a317.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a317.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a317.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a317.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3a317 {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee3a317 {animation-delay: 50ms;}#thegem-heading-69d84dee3a317 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee3a397226\" ><div id=\"thegem-heading-69d84dee3a373\" class=\"thegem-heading vc_custom_1638450321453 letters-scale-out thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 230ms\">F<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 260ms\">a<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 290ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 320ms\">h<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 350ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 380ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 410ms\">n<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 440ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 470ms\">h<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 500ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 530ms\">w<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #000000; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 560ms\">2<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 590ms\">0<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 620ms\">2<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 650ms\">1<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3a373 {margin: 0;}#thegem-heading-69d84dee3a373 {font-size: 28px;}#thegem-heading-69d84dee3a373 {line-height: 28px;}#thegem-heading-69d84dee3a373, #thegem-heading-69d84dee3a373 .light {text-transform: none;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a373.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a373.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a373.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a373.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3a373 .light, #thegem-heading-69d84dee3a373 {font-family:Old Standard TT; font-weight:400; font-style:normal; }#thegem-heading-69d84dee3a373 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div><style type=\"text\/css\">.thegem-button-69d84dee3a3cd3415 .gem-button {opacity:0;animation-delay:200ms !important;animation-timing-function:cubic-bezier(0.77,0,0.175,1) !important}<\/style><div class=\"gem-button-container gem-button-position-left thegem-button-69d84dee3a3cd3415 thegem-advanced-animation thegem-advanced-animation-fade-right\"  ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-3\" style=\"border-radius: 0px;border-color: #333333;color: #333333;\" onmouseleave=\"this.style.borderColor='#333333';this.style.backgroundColor='transparent';this.style.color='#333333';\" onmouseenter=\"this.style.borderColor='#333333';this.style.backgroundColor='#333333';this.style.color='#ffffff';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/new-in\/\" target=\"_self\">View new trends<\/a><\/div> <\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;2\/3&#8243; css=&#8221;.vc_custom_1548409458907{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;]<div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-right lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/9.jpg\" alt=\"\"\/><\/div><\/div>[\/vc_column][\/vc_row][vc_row content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1548254838624{margin-top: -1px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1470988880439{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-md vc_hidden-sm vc_hidden-xs&#8221;]<div id=\"fullwidth-block-69d84dee3a636\" class=\"fullwidth-block fullwidth-block-parallax-vertical clearfix\" data-mobile-parallax-enable=\"0\" style=\"padding-top: 340px;padding-bottom: 300px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d84dee3a636\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/10-3.jpg);background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"thegem-te-heading thegem-custom-69d84dee3a6b08898\" ><h1 id=\"thegem-heading-69d84dee3a690\" class=\"thegem-heading custom-year vc_custom_1752496286851\" style=\"text-align: left;\" ><span style=\"color: rgba(255,255,255,0.1); transition: color 0.3s;\">2025<\/span><\/h1><style type=\"text\/css\">#thegem-heading-69d84dee3a690 {margin: 0;}#thegem-heading-69d84dee3a690 {font-size: 300px;}#thegem-heading-69d84dee3a690, #thegem-heading-69d84dee3a690 .light {text-transform: none;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a690.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a690.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a690.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a690.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3a690 .light, #thegem-heading-69d84dee3a690 {font-family:Montserrat; font-weight:700; font-style:normal; }#thegem-heading-69d84dee3a690 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee3a7197674\" ><div id=\"thegem-heading-69d84dee3a706\" class=\"thegem-heading title-xlarge words-slide-up thegem-heading-animate\" style=\"text-align: center;\" ><span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; transition: color 0.3s; animation-delay: 80ms\">Fashion<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; transition: color 0.3s; animation-delay: 160ms\">Bags<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3a706 {margin: 0;}#thegem-heading-69d84dee3a706 {margin-left: auto; margin-right: auto;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a706.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a706.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a706.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a706.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3a706 .thegem-heading-word {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69d84dee3a706 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee3a7923528\" ><div id=\"thegem-heading-69d84dee3a76c\" class=\"thegem-heading vc_custom_1752496293644 letters-scale-out thegem-heading-animate\" style=\"text-align: center;\" ><span class=\"thegem-heading-word\" style=\"font-style: italic; color: #ffffff; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 180ms\">F<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 210ms\">a<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 240ms\">s<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 270ms\">h<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 300ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 330ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 360ms\">n<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #ffffff; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 390ms\">b<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 420ms\">a<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 450ms\">g<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 480ms\">s<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #ffffff; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 510ms\">2<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 540ms\">0<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 570ms\">2<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 600ms\">5<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3a76c {margin: 0;}#thegem-heading-69d84dee3a76c {margin-left: auto; margin-right: auto;}#thegem-heading-69d84dee3a76c {font-size: 28px;}#thegem-heading-69d84dee3a76c {line-height: 28px;}#thegem-heading-69d84dee3a76c, #thegem-heading-69d84dee3a76c .light {text-transform: none;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a76c.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a76c.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3a76c.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3a76c.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3a76c .light, #thegem-heading-69d84dee3a76c {font-family:Old Standard TT; font-weight:400; font-style:normal; }#thegem-heading-69d84dee3a76c a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;top&#8221; css=&#8221;.vc_custom_1548414946283{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6 vc_col-xs-12&#8243;]<div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/18-2.jpg\" class=\"fancybox\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/18-2.jpg\" alt=\"\"\/><\/a><\/div><\/div><\/div><div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/19-2.jpg\" class=\"fancybox\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/19-2.jpg\" alt=\"\"\/><\/a><\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; disable_custom_paddings_tablet=&#8221;true&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; css=&#8221;.vc_custom_1548426400061{margin-top: 0px !important;margin-bottom: -1px !important;padding-top: 0px !important;padding-bottom: 0px !important;padding-left: 50px !important;background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/14-2.jpg?id=723) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; offset=&#8221;vc_col-lg-3 vc_col-md-6 vc_col-xs-12 vc_hidden-xs&#8221; el_class=&#8221;custom-text&#8221;][vc_column_text]<\/p>\n<div class=\"styled-subtitle fashion-text\"><span style=\"color: #ffffff; width: 200px;\">Our new Fashion Lookbooks have been inspired by the idea of going back to nature and of a fresh start for the new season, whilst looking at British market towns and antique fairs which have fascinating shops or stalls and galleries where you can discover the most amazing keepsakes.<\/span><\/div>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6 vc_col-xs-12&#8243;]<div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/16-2.jpg\" class=\"fancybox\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/16-2.jpg\" alt=\"\"\/><\/a><\/div><\/div><\/div><div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/17-2.jpg\" class=\"fancybox\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/17-2.jpg\" alt=\"\"\/><\/a><\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6 vc_col-xs-12&#8243;]<div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/15-2.jpg\" class=\"fancybox\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/15-2.jpg\" alt=\"\"\/><\/a><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1548424584588{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1548426107853{background-color: #f4f4f4 !important;}&#8221; offset=&#8221;vc_col-lg-7 vc_col-md-7&#8243;]<div id=\"fullwidth-block-69d84dee3ac34\" class=\"fullwidth-block clearfix\"  style=\"padding-top: 100px;padding-bottom: 80px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d84dee3ac34\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_row_inner content_placement=&#8221;middle&#8221;][vc_column_inner disable_custom_paddings_tablet=&#8221;true&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; offset=&#8221;vc_col-lg-6 vc_col-md-6&#8243;]<div class=\"blog blog-style-compact clearfix item-animation-move-up\" data-next-page=\"0\"> <article id=\"post-762\" class=\"no-image item-animations-not-inited clearfix post-762 post type-post status-publish format-standard has-post-thumbnail category-our-news tag-brands tag-clothes tag-fashion tag-online tag-perfect tag-shop tag-woman\"> <div class=\"gem-compact-item-left\"> <div class=\"gem-compact-item-image\"> <a class=\"default\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/new-trends\/\"><img width=\"366\" height=\"296\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/21-thegem-blog-compact.jpg\" class=\"img-responsive wp-post-image\" alt=\"21\" \/><\/a> <\/div> <\/div> <div class=\"gem-compact-item-right\"> <div class=\"gem-compact-item-content\"> <div class=\"post-title\"> <h5 class=\"entry-title reverse-link-color\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/new-trends\/\" rel=\"bookmark\">30 Aug: <span class=\"light\">New Trends<\/span><\/a><\/h5> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bi bendum auctor, nisi elit consequat ipsum<\/p> <\/div> <\/div> <\/div> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-author\">By John Doe<\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <\/div> <\/article><!-- #post-762 --> <article id=\"post-758\" class=\"no-image item-animations-not-inited clearfix post-758 post type-post status-publish format-standard has-post-thumbnail category-our-news tag-brands tag-clothes tag-fashion tag-online tag-perfect tag-shop tag-woman\"> <div class=\"gem-compact-item-left\"> <div class=\"gem-compact-item-image\"> <a class=\"default\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/fashion-post\/\"><img width=\"366\" height=\"296\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/22-thegem-blog-compact.jpg\" class=\"img-responsive wp-post-image\" alt=\"22\" \/><\/a> <\/div> <\/div> <div class=\"gem-compact-item-right\"> <div class=\"gem-compact-item-content\"> <div class=\"post-title\"> <h5 class=\"entry-title reverse-link-color\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/fashion-post\/\" rel=\"bookmark\">30 Aug: <span class=\"light\">Fashion post<\/span><\/a><\/h5> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bi bendum auctor, nisi elit consequat ipsum<\/p> <\/div> <\/div> <\/div> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-author\">By John Doe<\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <\/div> <\/article><!-- #post-758 --> <article id=\"post-253\" class=\"no-image item-animations-not-inited clearfix post-253 post type-post status-publish format-standard has-post-thumbnail category-our-news tag-brands tag-clothes tag-fashion tag-online tag-perfect tag-shop tag-woman\"> <div class=\"gem-compact-item-left\"> <div class=\"gem-compact-item-image\"> <a class=\"default\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/lookbook-post\/\"><img width=\"366\" height=\"296\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-content\/uploads\/2019\/01\/20-thegem-blog-compact.jpg\" class=\"img-responsive wp-post-image\" alt=\"20\" \/><\/a> <\/div> <\/div> <div class=\"gem-compact-item-right\"> <div class=\"gem-compact-item-content\"> <div class=\"post-title\"> <h5 class=\"entry-title reverse-link-color\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/lookbook-post\/\" rel=\"bookmark\">26 Aug: <span class=\"light\">Lookbook Post<\/span><\/a><\/h5> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bi bendum auctor, nisi elit consequat ipsum<\/p> <\/div> <\/div> <\/div> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-author\">By John Doe<\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <\/div> <\/article><!-- #post-253 --> <\/div>[\/vc_column_inner][vc_column_inner offset=&#8221;vc_col-lg-6 vc_col-md-6&#8243;]<div class=\"thegem-te-heading thegem-custom-69d84dee3ce6c1064\" ><div id=\"thegem-heading-69d84dee3ce41\" class=\"thegem-heading title-h1 lines-slide-up-random thegem-heading-animate\" style=\"text-align: right;\" data-animation-name=\"lines-slide-up-random\" data-animation-interval=\"160\"><span class=\"light thegem-heading-word\" style=\"color: #333333; transition: color 0.3s;\">Latest<\/span> <span class=\"thegem-heading-word\" style=\"color: #333333; transition: color 0.3s;\">News<\/span> <span class=\"light thegem-heading-word\" style=\"color: #333333; transition: color 0.3s;\">From<\/span> <span class=\"light thegem-heading-word\" style=\"color: #333333; transition: color 0.3s;\">the<\/span> <span class=\"thegem-heading-word\" style=\"color: #333333; transition: color 0.3s;\">Fashion<\/span> <span class=\"light thegem-heading-word\" style=\"color: #333333; transition: color 0.3s;\">Blog<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3ce41 {margin: 0;}#thegem-heading-69d84dee3ce41 {margin-left: auto; margin-right: 0;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3ce41.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3ce41.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3ce41.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3ce41.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3ce41 {max-width: 480px;}#thegem-heading-69d84dee3ce41 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -10px;\"><\/div><div class=\"thegem-te-heading thegem-custom-69d84dee3cf023337\" ><div id=\"thegem-heading-69d84dee3cece\" class=\"thegem-heading vc_custom_1638450611028 letters-scale-out thegem-heading-animate\" style=\"text-align: right;\" ><span class=\"thegem-heading-word\" style=\"font-style: italic; color: #333333; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 230ms\">S<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 260ms\">t<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 290ms\">a<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 320ms\">y<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #333333; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 350ms\">i<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 380ms\">n<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #333333; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 410ms\">t<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 440ms\">o<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 470ms\">u<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 500ms\">c<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 530ms\">h<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #333333; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 560ms\">r<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 590ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 620ms\">c<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 650ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 680ms\">n<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 710ms\">t<\/span><\/span> <span class=\"thegem-heading-word\" style=\"font-style: italic; color: #333333; transition: color 0.3s;\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 740ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 770ms\">v<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 800ms\">e<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 830ms\">n<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 860ms\">t<\/span><span class=\"thegem-heading-letter\" style=\"animation-delay: 890ms\">s<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d84dee3cece {margin: 0;}#thegem-heading-69d84dee3cece {margin-left: auto; margin-right: 0;}#thegem-heading-69d84dee3cece {font-size: 28px;}#thegem-heading-69d84dee3cece {line-height: 28px;}#thegem-heading-69d84dee3cece, #thegem-heading-69d84dee3cece .light {text-transform: none;}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3cece.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3cece.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69d84dee3cece.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69d84dee3cece.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69d84dee3cece .light, #thegem-heading-69d84dee3cece {font-family:Old Standard TT; font-weight:400; font-style:normal; }#thegem-heading-69d84dee3cece a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 60px;\"><\/div><style type=\"text\/css\">.thegem-button-69d84dee3cf462262 .gem-button {opacity:0;animation-delay:200ms !important;animation-timing-function:cubic-bezier(0.77,0,0.175,1) !important}<\/style><div class=\"gem-button-container gem-button-position-right thegem-button-69d84dee3cf462262 thegem-advanced-animation thegem-advanced-animation-fade-right\"  ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-3\" style=\"border-radius: 0px;border-color: #333333;color: #333333;\" onmouseleave=\"this.style.borderColor='#333333';this.style.backgroundColor='transparent';this.style.color='#333333';\" onmouseenter=\"this.style.borderColor='#333333';this.style.backgroundColor='#333333';this.style.color='#ffffff';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/blog-page\/our-blog\/\" target=\"_self\">View all news<\/a><\/div> [\/vc_column_inner][\/vc_row_inner]<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;5\/12&#8243; offset=&#8221;vc_col-lg-5 vc_col-md-5 vc_hidden-sm vc_hidden-xs&#8221;][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1548409511025{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}&#8221;][vc_column width=&#8221;1\/3&#8243; css=&#8221;.vc_custom_1548409464290{margin-top: 0px&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"_links":{"self":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-json\/wp\/v2\/pages\/631"}],"collection":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-json\/wp\/v2\/comments?post=631"}],"version-history":[{"count":94,"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-json\/wp\/v2\/pages\/631\/revisions"}],"predecessor-version":[{"id":1739,"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-json\/wp\/v2\/pages\/631\/revisions\/1739"}],"wp:attachment":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-lookbook-landing\/wp-json\/wp\/v2\/media?parent=631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}