{"id":957,"date":"2020-10-07T14:04:54","date_gmt":"2020-10-07T14:04:54","guid":{"rendered":"https:\/\/codex-themes.com\/thegem\/?page_id=957"},"modified":"2023-05-15T21:12:48","modified_gmt":"2023-05-15T21:12:48","slug":"alert-boxes","status":"publish","type":"page","link":"https:\/\/codex-themes.com\/thegem\/elements\/alert-boxes\/","title":{"rendered":"Alert Boxes"},"content":{"rendered":"<p>[vc_row css=&#8221;.vc_custom_1634049086658{margin-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1634047199373{padding-top: 0px !important;}&#8221;]<div id=\"fullwidth-block-69d487714321c\" class=\"fullwidth-block clearfix\"  style=\"background-color: #31323f;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d487714321c\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Alert-Box-01.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_row_inner][vc_column_inner css=&#8221;.vc_custom_1634049254725{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-lg vc_hidden-sm vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 38px;\"><\/div>[\/vc_column_inner][\/vc_row_inner]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 132px;\"><\/div><div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-xlarge  gem-icon-shape-square gem-simple-icon\"  style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #00bcd4;\"><span class=\"back-angle\">&#xf243;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #00bcd4;\"><span class=\"back-angle\">&#xf243;<\/span><\/span><\/div><\/div><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 35px;\"><\/div><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) { this.rotating(rotatingItem); } }, isRotating: function (element) { return element.querySelector(this.rotatingSelector) !== null; }, prepareAnimation: function (element) { if (!element || this.isRotating(element)) { 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 current = element.querySelector('.thegem-heading-rotating-text'); element.style.width = element.clientWidth+'px'; current.style.width = element.clientWidth+'px'; setInterval(()=>{ let next = current.nextElementSibling !== null ? current.nextElementSibling : element.childNodes[0]; let nextWidth = next.clientWidth; let currentWidth = current.clientWidth; 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); }, 2500); } }; 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-69d48771432cb\" class=\"thegem-heading title-xlarge 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; animation-delay: 120ms\">Alert<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 240ms\">Boxes<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d48771432cb {margin: 0;}#thegem-heading-69d48771432cb {margin-left: auto; margin-right: auto;}#thegem-heading-69d48771432cb .thegem-heading-word {animation-timing-function: cubic-bezier(0.25,1,0.5,1);}<\/style><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 45px;\"><\/div><div id=\"thegem-heading-69d48771433fa\" class=\"thegem-heading styled-subtitle words-slide-right thegem-heading-animate\" style=\"text-align: center;\" ><span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 320ms\">Make<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 340ms\">the<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 360ms\">most<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 380ms\">of<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 400ms\">your<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 420ms\">content.<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 440ms\">Make<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 460ms\">it<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 480ms\">work<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 500ms\">for<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 520ms\">you.<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 540ms\">With<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 560ms\">Call-To-Action<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 580ms\">Boxes<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 600ms\">in<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 620ms\">different<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 640ms\">styles<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 660ms\">and<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 680ms\">layouts.<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 700ms\">You<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 720ms\">can<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 740ms\">use<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 760ms\">icons<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 780ms\">or<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 800ms\">images<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 820ms\">as<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 840ms\">CTAs<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 860ms\">in<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 880ms\">different<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 900ms\">shapes<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 920ms\">&<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 940ms\">sizes.<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 960ms\">With<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 980ms\">awesome<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 1000ms\">buttons<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 1020ms\">&<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #ffffff; animation-delay: 1040ms\">backgrounds!<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d48771433fa {margin: 0;}#thegem-heading-69d48771433fa {margin-left: auto; margin-right: auto;}#thegem-heading-69d48771433fa {max-width: 900px;}#thegem-heading-69d48771433fa .thegem-heading-word {animation-duration: 400ms;}#thegem-heading-69d48771433fa .thegem-heading-word {animation-timing-function: cubic-bezier(0.3, 0, 0, 1);}<\/style><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 35px;\"><\/div><div id=\"custom-header-69d4877143445\" class=\"custom-header gem-custom-header-no-icon  centreed_breadcrumbs fullwidth-block clearfix\" style=\"padding-left: 21px; padding-right: 21px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"custom-header-69d4877143445\")); }<\/script><div class=\"gem-icon gem-icon-pack-material gem-icon-size-xlarge  gem-icon-shape-none gem-simple-icon\" style=\"opacity:1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"\"><span class=\"back-angle\">&#x;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"\"><span class=\"back-angle\">&#x;<\/span><\/span><\/div><\/div>\n\t\t\t<div class=\"gem-custom-header-conteiner\"><div style=\"\" class=\"custom-header-title\"><span style=\" max-width:900px;\"><\/span><\/div><div class=\"custom-header-subtitle styled-subtitle\" style=\"padding-bottom:90px;\"><span class=\"light\" style=\"max-width:900px; color:#ffffff; \"><\/span><\/div><div class=\"breadcrumbs\"><span><a href=\"https:\/\/codex-themes.com\/thegem\/\" itemprop=\"url\"><span itemprop=\"title\">Home<\/span><\/a><\/span><\/div><!-- .breadcrumbs --><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;140px&#8221;][vc_column_text]<\/p>\n<h1 style=\"text-align: center;\"><span class=\"light\">asymmetric<\/span> styles<\/h1>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;40px&#8221;][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.[\/vc_column_text][vc_empty_space height=&#8221;80px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #f0f3f2;background-position: center top;\"><div class=\"gem-alert-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-large  gem-icon-shape-circle\"  style=\"border-color: #ffffff;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #ffffff;\"><span class=\"gem-icon-half-1\" style=\"color: #99a9b5;\"><span class=\"back-angle\">&#xf2b9;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #99a9b5;\"><span class=\"back-angle\">&#xf2b9;<\/span><\/span><\/div><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h2><span class=\"light\">alert box with icons<\/span><\/h2>\n<p>[\/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure.[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d48771436335853\" ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 3px;background-color: #00bcd4;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#00bcd4';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#5c6bc0';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy now<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[vc_empty_space height=&#8221;80px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border: 3px solid #b6c6c9;\"><div class=\"gem-textbox-content\" style=\"background-position: center top;\"><div class=\"gem-alert-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-medium  gem-icon-shape-circle\"  style=\"border-color: #ffffff;border-color: #00bcd4;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #ffffff;\"><span class=\"gem-icon-half-1\" style=\"color: #00bcd4;\"><span class=\"back-angle\">&#xf129;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #00bcd4;\"><span class=\"back-angle\">&#xf129;<\/span><\/span><\/div><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure.[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d487714369d2365\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-2\" style=\"border-radius: 3px;border-color: #7e91ff;color: #7e91ff;\" onmouseleave=\"this.style.borderColor='#7e91ff';this.style.backgroundColor='transparent';this.style.color='#7e91ff';\" onmouseenter=\"this.style.borderColor='#00bcd4';this.style.backgroundColor='#00bcd4';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy now<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[vc_empty_space height=&#8221;80px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border: 1px solid #dfe5e8;\"><div class=\"gem-textbox-content\" style=\"background-position: center top;\"><div class=\"gem-alert-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-large angle-90deg gem-icon-shape-circle gem-simple-icon\"  style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #7ebeff;\"><span class=\"back-angle\">&#xf3f0;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #7e91ff;\"><span class=\"back-angle\">&#xf3f0;<\/span><\/span><\/div><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<div class=\"styled-subtitle\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.<\/div>\n<p>[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d48771436f24819\" ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 25px;background-color: #46485c;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#46485c';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#7ebeff';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy now<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[vc_empty_space height=&#8221;80px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #f0f3f2;background-position: center top;\"><div class=\"gem-alert-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-alert-box-image image-size-large image-shape-circle\"><img src=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces1-thegem-person.png\" alt=\"#\" class=\"img-responsive\" srcset=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces1-thegem-person-160.png 1x, https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces1-thegem-person.png 2x\" \/><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h2><span class=\"light\">images instead of icons<\/span><\/h2>\n<p>[\/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure.[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d48771437403467\" ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal gem-button-icon-position-left\" style=\"border-radius: 0px;background-color: #662d91;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#662d91';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#46485c';\" href=\"https:\/\/codexthemes.ticksy.com\/\" target=\"_self\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf24d;<\/i>live chat<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[vc_empty_space height=&#8221;80px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/city_alertbox_background.jpg);background-repeat: no-repeat; background-size: cover;background-position: center center;\"><div class=\"gem-alert-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-alert-box-image image-size-large image-shape-square\"><img src=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces-400x400px-1_1_21-thegem-person.jpg\" alt=\"#\" class=\"img-responsive\" srcset=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces-400x400px-1_1_21-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces-400x400px-1_1_21-thegem-person.jpg 2x\" \/><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h2><span class=\"light\" style=\"color: #ffffff;\">images for background<\/span><\/h2>\n<p>[\/vc_column_text][vc_column_text]<span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure.<\/span>[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d487714428b2191\" ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal gem-button-icon-position-left\" style=\"border-radius: 3px;background-color: #00bcd4;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#00bcd4';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#4dddb6';\" href=\"https:\/\/codexthemes.ticksy.com\/\" target=\"_self\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf374;<\/i>support<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[vc_empty_space height=&#8221;80px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #f0f3f2;background-position: center top;\"><div class=\"gem-alert-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h2>text only + button<\/h2>\n<p>[\/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure.[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d48771449df2318\" ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal gem-button-icon-position-left\" style=\"border-radius: 25px;background-color: #ff7070;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#ff7070';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#ffb932';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf287;<\/i>buy the gem<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453275241598{padding-right: 21px !important;padding-left: 21px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1453275255490{margin-bottom: 21px !important;padding-top: 21px !important;background-color: #ffb932 !important;}&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border: 6px solid #ffffff;\"><div class=\"gem-textbox-content\" style=\"background-color: #ffb932;background-position: center top;\"><div class=\"gem-alert-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h1><span style=\"color: #ffffff;\">big promo alert box!<\/span><\/h1>\n<p>[\/vc_column_text][vc_column_text]<\/p>\n<div class=\"styled-subtitle\">Awesome Total Sale -70% Off For All Collection During This Season!<\/div>\n<p>[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d4877144a209561\" ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal gem-button-icon-position-left\" style=\"border-radius: 0px;background-color: #2c2e3d;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#2c2e3d';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#5d4e3a';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf287;<\/i>shop now<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;150px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column]<div id=\"fullwidth-block-69d4877144b05\" class=\"fullwidth-block fullwidth-block-parallax-vertical clearfix\" data-mobile-parallax-enable=\"0\" style=\"padding-top: 115px;padding-bottom: 85px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d4877144b05\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Alert-Box-02.jpg);background-repeat: no-repeat; background-size: cover;background-position: center center;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\"><div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-position: center top;\"><div class=\"gem-alert-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-large  gem-icon-shape-romb\"  style=\"border-color: #212331;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #212331;\"><div class=\"romb-icon-conteiner\"><span class=\"gem-icon-half-1\" style=\"color: #deffab;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #deffab;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h2><span style=\"color: #deffab;\">100% fullwidth background<\/span><\/h2>\n<p>[\/vc_column_text][vc_column_text]<\/p>\n<div class=\"styled-subtitle\"><span style=\"color: #deffab;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.<\/span><\/div>\n<p>[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d4877144b6f9065\" ><a class=\"gem-button gem-button-size-large gem-button-style-outline gem-button-text-weight-normal gem-button-border-4\" style=\"border-radius: 40px;border-color: #deffab;color: #deffab;\" onmouseleave=\"this.style.borderColor='#deffab';this.style.backgroundColor='transparent';this.style.color='#deffab';\" onmouseenter=\"this.style.borderColor='#212331';this.style.backgroundColor='#212331';this.style.color='#deffab';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy now<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;140px&#8221;][vc_column_text]<\/p>\n<h1 style=\"text-align: center;\"><span class=\"light\">use different<\/span>\u00a0icon sizes<\/h1>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;40px&#8221;][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border-top-left-radius: 200px;border-top-right-radius: 200px;\"><div class=\"gem-textbox-content\" style=\"background-color: #f4f6f7;background-position: center top;\">[vc_empty_space height=&#8221;75px&#8221;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-circle\"  style=\"border-color: #46485c;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #46485c;\"><span class=\"gem-icon-half-1\" style=\"color: #ccff90;\"><span class=\"back-angle\">&#xf1c4;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ccff90;\"><span class=\"back-angle\">&#xf1c4;<\/span><\/span><\/div><\/div><\/div>[vc_empty_space height=&#8221;105px&#8221;][vc_row_inner][vc_column_inner][vc_column_text]<\/p>\n<div class=\"styled-subtitle\" style=\"text-align: center;\"><span class=\"light\">Small<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -10px;\"><\/div>[vc_column_text]<\/p>\n<h2 style=\"text-align: center;\"><span class=\"light\" style=\"color: #00bcd4;\">24\/50<\/span><\/h2>\n<p>[\/vc_column_text][\/vc_column_inner][\/vc_row_inner]<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border-top-left-radius: 200px;border-top-right-radius: 200px;\"><div class=\"gem-textbox-content\" style=\"background-color: #f4f6f7;background-position: center top;\">[vc_empty_space height=&#8221;60px&#8221;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-medium  gem-icon-shape-circle\"  style=\"border-color: #1cbbb4;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #1cbbb4;\"><span class=\"gem-icon-half-1\" style=\"color: #3c3950;\"><span class=\"back-angle\">&#xf2a4;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #3c3950;\"><span class=\"back-angle\">&#xf2a4;<\/span><\/span><\/div><\/div><\/div>[vc_empty_space height=&#8221;90px&#8221;][vc_row_inner][vc_column_inner][vc_column_text]<\/p>\n<div class=\"styled-subtitle\" style=\"text-align: center;\"><span class=\"light\">Medium<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -10px;\"><\/div>[vc_column_text]<\/p>\n<h2 style=\"text-align: center;\"><span class=\"light\" style=\"color: #00bcd4;\">48\/80<\/span><\/h2>\n<p>[\/vc_column_text][\/vc_column_inner][\/vc_row_inner]<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border-top-left-radius: 200px;border-top-right-radius: 200px;\"><div class=\"gem-textbox-content\" style=\"background-color: #f4f6f7;background-position: center top;\">[vc_empty_space height=&#8221;20px&#8221;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-large  gem-icon-shape-circle\"  style=\"border-color: #aed581;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #aed581;\"><span class=\"gem-icon-half-1\" style=\"color: #546e7a;\"><span class=\"back-angle\">&#xf483;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #546e7a;\"><span class=\"back-angle\">&#xf483;<\/span><\/span><\/div><\/div><\/div>[vc_empty_space height=&#8221;50px&#8221;][vc_row_inner][vc_column_inner][vc_column_text]<\/p>\n<div class=\"styled-subtitle\" style=\"text-align: center;\"><span class=\"light\">Large<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -10px;\"><\/div>[vc_column_text]<\/p>\n<h2 style=\"text-align: center;\"><span class=\"light\" style=\"color: #00bcd4;\">96\/160<\/span><\/h2>\n<p>[\/vc_column_text][\/vc_column_inner][\/vc_row_inner]<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border-top-left-radius: 200px;border-top-right-radius: 200px;\"><div class=\"gem-textbox-content\" style=\"background-color: #f4f6f7;background-position: center top;padding-left: 10px;padding-right: 10px;\"><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -20px;\"><\/div><div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-xlarge  gem-icon-shape-circle\"  style=\"border-color: #cfdd82;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #cfdd82;\"><span class=\"gem-icon-half-1\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf25c;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf25c;<\/span><\/span><\/div><\/div><\/div>[vc_empty_space height=&#8221;10px&#8221;][vc_row_inner][vc_column_inner][vc_column_text]<\/p>\n<div class=\"styled-subtitle\" style=\"text-align: center;\"><span class=\"light\">XLarge<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -10px;\"><\/div>[vc_column_text]<\/p>\n<h2 style=\"text-align: center;\"><span class=\"light\" style=\"color: #00bcd4;\">144\/240<\/span><\/h2>\n<p>[\/vc_column_text][\/vc_column_inner][\/vc_row_inner]<\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;65px&#8221;][vc_column_text]<\/p>\n<h1 style=\"text-align: center;\"><span class=\"light\">and\u00a0different <\/span>shape types<\/h1>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column offset=&#8221;vc_col-lg-4 vc_col-md-12&#8243;][vc_column_text]<\/p>\n<h3 style=\"text-align: center;\"><span class=\"light\" style=\"color: #99a9b5;\">outlined<\/span><\/h3>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;30px&#8221;][vc_row_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-circle\"  style=\"margin-top: 10px;border-color: #b6c6c9;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-square\"  style=\"margin-top: 10px;border-color: #b6c6c9;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-hexagon\"  style=\"border-color: #ffffff;margin-top: 10px;border-color: #b6c6c9;opacity: 1;\"><div class=\"gem-icon-shape-hexagon-back\"><div class=\"gem-icon-shape-hexagon-back-inner\"><div class=\"gem-icon-shape-hexagon-back-inner-before\" style=\"background-color: #b6c6c9\"><\/div><\/div><\/div><div class=\"gem-icon-shape-hexagon-top\"><div class=\"gem-icon-shape-hexagon-top-inner\"><div class=\"gem-icon-shape-hexagon-top-inner-before\" style=\"background-color: #ffffff;\"><\/div><\/div><\/div><div class=\"gem-icon-inner\" style=\"background-color: #ffffff;\"><span class=\"gem-icon-half-1\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-romb\"  style=\"border-color: #b6c6c9;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><div class=\"romb-icon-conteiner\"><span class=\"gem-icon-half-1\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][vc_empty_space height=&#8221;45px&#8221;][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor.[\/vc_column_text][\/vc_column][vc_column offset=&#8221;vc_col-lg-4 vc_col-md-12&#8243;][vc_column_text]<\/p>\n<h3 style=\"text-align: center;\"><span class=\"light\" style=\"color: #99a9b5;\">flat<\/span><\/h3>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;30px&#8221;][vc_row_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-circle\"  style=\"border-color: #b6c6c9;margin-top: 10px;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #b6c6c9;\"><span class=\"gem-icon-half-1\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-square\"  style=\"border-color: #b6c6c9;margin-top: 10px;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #b6c6c9;\"><span class=\"gem-icon-half-1\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-hexagon\"  style=\"border-color: #b6c6c9;margin-top: 10px;opacity: 1;\"><div class=\"gem-icon-shape-hexagon-back\"><div class=\"gem-icon-shape-hexagon-back-inner\"><div class=\"gem-icon-shape-hexagon-back-inner-before\" style=\"background-color: #b6c6c9\"><\/div><\/div><\/div><div class=\"gem-icon-shape-hexagon-top\"><div class=\"gem-icon-shape-hexagon-top-inner\"><div class=\"gem-icon-shape-hexagon-top-inner-before\" style=\"background-color: #b6c6c9;\"><\/div><\/div><\/div><div class=\"gem-icon-inner\" style=\"background-color: #b6c6c9;\"><span class=\"gem-icon-half-1\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-romb\"  style=\"border-color: #b6c6c9;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #b6c6c9;\"><div class=\"romb-icon-conteiner\"><span class=\"gem-icon-half-1\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][vc_empty_space height=&#8221;45px&#8221;][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor.[\/vc_column_text][\/vc_column][vc_column offset=&#8221;vc_col-lg-4 vc_col-md-12&#8243;][vc_column_text]<\/p>\n<h3 style=\"text-align: center;\"><span class=\"light\" style=\"color: #99a9b5;\">with alpha<\/span><\/h3>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;30px&#8221;][vc_row_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-circle\"  style=\"border-color: #f9a19a;margin-top: 10px;border-color: #fcd0cc;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #f9a19a;\"><span class=\"gem-icon-half-1\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-square\"  style=\"border-color: #f9a19a;margin-top: 10px;border-color: #fcd0cc;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #f9a19a;\"><span class=\"gem-icon-half-1\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-hexagon\"  style=\"border-color: #f9a19a;margin-top: 10px;border-color: #fcd0cc;opacity: 1;\"><div class=\"gem-icon-shape-hexagon-back\"><div class=\"gem-icon-shape-hexagon-back-inner\"><div class=\"gem-icon-shape-hexagon-back-inner-before\" style=\"background-color: #fcd0cc\"><\/div><\/div><\/div><div class=\"gem-icon-shape-hexagon-top\"><div class=\"gem-icon-shape-hexagon-top-inner\"><div class=\"gem-icon-shape-hexagon-top-inner-before\" style=\"background-color: #f9a19a;\"><\/div><\/div><\/div><div class=\"gem-icon-inner\" style=\"background-color: #f9a19a;\"><span class=\"gem-icon-half-1\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-small  gem-icon-shape-romb\"  style=\"border-color: #f9a19a;border-color: #fcd0cc;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #f9a19a;\"><div class=\"romb-icon-conteiner\"><span class=\"gem-icon-half-1\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffffff;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][vc_empty_space height=&#8221;45px&#8221;][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor.[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][vc_empty_space height=&#8221;140px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-top gem-textbox-top-ticket\"><svg width=\"100%\" height=\"14\" style=\"fill: #906ad3;\"><defs><pattern id=\"pattern-1775535985-64\" x=\"16\" y=\"0\" width=\"32\" height=\"16\" patternUnits=\"userSpaceOnUse\" ><path d=\"M 0,14.5 16,-0.5 32,14.5\" \/><\/pattern><\/defs><rect x=\"0\" y=\"0\" width=\"100%\" height=\"14\" style=\"fill: url(#pattern-1775535985-64);\" \/><\/svg><\/div><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #906ad3;background-position: center top;padding-top: 20px;padding-bottom: 20px;\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d4877144d381504\" ><a class=\"gem-button gem-button-size-giant gem-button-style-outline gem-button-text-weight-normal gem-button-border-6\" style=\"border-radius: 0px;border-color: #ffffff;color: #ffffff;\" onmouseleave=\"this.style.borderColor='#ffffff';this.style.backgroundColor='transparent';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#704fab';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">great, i want buy now!<\/a><\/div> <\/div><\/div><div class=\"gem-textbox-bottom gem-textbox-bottom-ticket\"><svg width=\"100%\" height=\"14\" style=\"fill: #906ad3;\"><defs><pattern id=\"pattern-1775535985-82\" x=\"16\" y=\"-1\" width=\"32\" height=\"16\" patternUnits=\"userSpaceOnUse\" ><path d=\"M 0,-0.5 16,14.5 32,-0.5\" \/><\/pattern><\/defs><rect x=\"0\" y=\"-1\" width=\"100%\" height=\"14\" style=\"fill: url(#pattern-1775535985-82);\" \/><\/svg><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;130px&#8221;][vc_column_text]<\/p>\n<h1 style=\"text-align: center;\"><span class=\"light\">beautiful<\/span> centered styles<\/h1>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;40px&#8221;][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;100px&#8221;][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453462338721{margin-bottom: 0px !important;}&#8221; el_class=&#8221;big_bold_alert&#8221;][vc_column]<div id=\"fullwidth-block-69d4877144e51\" class=\"fullwidth-block fullwidth-block-parallax-vertical clearfix\" data-mobile-parallax-enable=\"0\" style=\"padding-top: 55px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d4877144e51\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Alert-Box-03.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\"><div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-position: center top;\"><div class=\"gem-alert-box centered-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-xlarge  gem-icon-shape-square gem-simple-icon\"  style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #deffab;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #deffab;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">big-n-bold alert<\/span><\/h1>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;20px&#8221;][vc_column_text]<\/p>\n<div class=\"styled-subtitle\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam nostrud exercitation ullamco laboris nisi.<\/span><\/div>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;40px&#8221;]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d4877144e8b8879\" ><a class=\"gem-button gem-button-size-large gem-button-style-outline gem-button-text-weight-normal gem-button-border-4\" style=\"border-radius: 40px;border-color: #deffab;color: #deffab;\" onmouseleave=\"this.style.borderColor='#deffab';this.style.backgroundColor='transparent';this.style.color='#deffab';\" onmouseenter=\"this.style.borderColor='#deffab';this.style.backgroundColor='#deffab';this.style.color='#2a2b37';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy it now<\/a><\/div> <div class=\"gem-button-container gem-button-position-inline thegem-button-69d4877144ea41630\" ><a class=\"gem-button gem-button-size-large gem-button-style-outline gem-button-text-weight-normal gem-button-border-4\" style=\"border-radius: 40px;border-color: #7e8cff;color: #7e8cff;\" onmouseleave=\"this.style.borderColor='#7e8cff';this.style.backgroundColor='transparent';this.style.color='#7e8cff';\" onmouseenter=\"this.style.borderColor='#7e8cff';this.style.backgroundColor='#7e8cff';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/item\/thegem-creative-multipurpose-wordpress-theme\/16061685?ref=CodexThemes\" target=\"_self\">see more<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[vc_empty_space height=&#8221;80px&#8221;]<\/div><\/div><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -27px;\"><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453451168852{margin-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69d4877144eed\" class=\"fullwidth-block clearfix\"  style=\"background-color: #f0f3f2;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d4877144eed\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_empty_space height=&#8221;75px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-position: center top;\"><div class=\"gem-alert-box centered-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-alert-box-image image-size-medium image-shape-square\"><img src=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces1-thegem-person.png\" alt=\"#\" class=\"img-responsive\" srcset=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces1-thegem-person-80.png 1x, https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces1-thegem-person-160.png 2x\" \/><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h2 style=\"text-align: center;\">medium alert box<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;20px&#8221;][vc_column_text]<\/p>\n<div class=\"styled-subtitle\" style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam nostrud exercitation ullamco laboris nisiut aliquip ex ea commodo.<\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -10px;\"><\/div><\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d4877144f374314\" ><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: #01b9b1;color: #01b9b1;\" onmouseleave=\"this.style.borderColor='#01b9b1';this.style.backgroundColor='transparent';this.style.color='#01b9b1';\" onmouseenter=\"this.style.borderColor='#01b9b1';this.style.backgroundColor='#01b9b1';this.style.color='#ffffff';\" href=\"\" target=\"_self\">hello!<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[vc_empty_space height=&#8221;70px&#8221;]<\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column]<div id=\"fullwidth-block-69d48771451d7\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d48771451d7\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_empty_space height=&#8221;85px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-position: center top;\"><div class=\"gem-alert-box centered-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-medium  gem-icon-shape-circle\"  style=\"border-color: #ffb932;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #ffb932;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #ffb932;\"><span class=\"back-angle\">&#xf287;<\/span><\/span><\/div><\/div><\/div><div class=\"gem-alert-box-content\">[vc_empty_space height=&#8221;10px&#8221;][vc_column_text]<\/p>\n<h2 style=\"text-align: center;\"><span class=\"light\">thin\u00a0alert box<\/span><\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;20px&#8221;][vc_column_text]<\/p>\n<div style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam nostrud exercitation ullamco laboris nisiut aliquip ex ea commodo. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat.<\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"\"><\/div><\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771452109546\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-thin gem-button-border-1\" style=\"border-radius: 0px;border-color: #6c136f;color: #6c136f;\" onmouseleave=\"this.style.borderColor='#6c136f';this.style.backgroundColor='transparent';this.style.color='#6c136f';\" onmouseenter=\"this.style.borderColor='#6c136f';this.style.backgroundColor='#6c136f';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">purchase now<\/a><\/div> <div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771452259650\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-thin gem-button-border-1\" style=\"border-radius: 0px;border-color: #99a9b5;color: #99a9b5;\" onmouseleave=\"this.style.borderColor='#99a9b5';this.style.backgroundColor='transparent';this.style.color='#99a9b5';\" onmouseenter=\"this.style.borderColor='#ffb932';this.style.backgroundColor='#ffb932';this.style.color='#ffffff';\" href=\"\" target=\"_self\">leave me alone<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[vc_empty_space height=&#8221;85px&#8221;]<\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453363010373{margin-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69d4877145362\" class=\"fullwidth-block fullwidth-block-parallax-vertical clearfix\" data-mobile-parallax-enable=\"0\" style=\"padding-top: 170px;padding-bottom: 140px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d4877145362\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Alert-Box-04.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_single_image image=&#8221;1274&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221;][vc_empty_space height=&#8221;30px&#8221;][vc_column_text]<\/p>\n<h2 style=\"text-align: center;\"><span class=\"light\" style=\"color: #ffffff;\">transparent png image<\/span><\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;20px&#8221;][vc_column_text]<\/p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam nostrud exercitation ullamco laboris nisiut aliquip ex ea commodo. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat. Cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\u00a0<\/span><\/p>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;30px&#8221;]<div class=\"gem-button-container gem-button-position-center thegem-button-69d487714538f2012\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-thin gem-button-border-1\" style=\"border-radius: 40px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">this is great!<\/a><\/div> <\/div><\/div><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -27px;\"><\/div>[\/vc_column][\/vc_row][vc_row][vc_column]<div id=\"fullwidth-block-69d48771453ad\" class=\"fullwidth-block clearfix\"  style=\"background-color: #212331;padding-top: 65px;padding-bottom: 65px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d48771453ad\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_row_inner][vc_column_inner css=&#8221;.vc_custom_1453364973046{margin-top: 10px !important;}&#8221; offset=&#8221;vc_col-lg-4 vc_col-md-6&#8243;][vc_single_image image=&#8221;1287&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221;][\/vc_column_inner][vc_column_inner css=&#8221;.vc_custom_1453365073482{margin-top: 37px !important;}&#8221; offset=&#8221;vc_col-lg-6 vc_col-md-6 vc_col-xs-12&#8243;][vc_column_text]<\/p>\n<div class=\"styled-subtitle\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Not just a wordpress theme. A real design jewel!<\/span><\/div>\n<p>[\/vc_column_text][\/vc_column_inner][vc_column_inner offset=&#8221;vc_col-lg-2 vc_col-md-12 vc_col-xs-12&#8243;]<div class=\"gem-button-container gem-button-position-center thegem-button-69d48771453d21183\" ><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: #ff405b;color: #ff405b;\" onmouseleave=\"this.style.borderColor='#ff405b';this.style.backgroundColor='transparent';this.style.color='#ff405b';\" onmouseenter=\"this.style.borderColor='#ff405b';this.style.backgroundColor='#ff405b';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy now!<\/a><\/div> [\/vc_column_inner][\/vc_row_inner]<\/div><\/div><div class=\"fullwidth-bottom-marker marker-direction-outside\"><svg width=\"140\" height=\"70\" style=\"fill: #212331\"><path d=\"M 0,0 Q 65,5 70,70 Q 75,5 140,0\" \/><\/svg><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;200px&#8221;][vc_column_text]<\/p>\n<h1 style=\"text-align: center;\">perfect <span class=\"light\">fit in sidebar<br \/>\nand content area<\/span><\/h1>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;50px&#8221;][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.[\/vc_column_text][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453376963435{margin-bottom: 10px !important;}&#8221;][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6&#8243; el_class=&#8221;abwa_1&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #f4f6f7;background-position: center top;\"><div class=\"gem-alert-box centered-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-large  gem-icon-shape-circle\"  style=\"border-color: #ffffff;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #ffffff;\"><span class=\"gem-icon-half-1\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf120;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #b6c6c9;\"><span class=\"back-angle\">&#xf120;<\/span><\/span><\/div><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h5>alert box with alerts<\/h5>\n<p>[\/vc_column_text][vc_column_text]<\/p>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt<\/p>\n<p>[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771453fe3689\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 0px;background-color: #63cc8b;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#63cc8b';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#b6c6c9';this.style.color='#3c3950';\" href=\"https:\/\/themeforest.net\/item\/thegem-creative-multipurpose-wordpress-theme\/16061685?ref=CodexThemes\" target=\"_self\">yes<\/a><\/div> <div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771454103425\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 3px;background-color: #ff6f91;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#ff6f91';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#b6c6c9';this.style.color='#3c3950';\" href=\"\" target=\"_self\">no<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6&#8243; el_class=&#8221;abwa_2&#8243;]<div class=\"gem-textbox  centered-box\"  ><div class=\"gem-textbox-inner\" style=\"border: 3px solid #b6c6c9;\"><div class=\"gem-textbox-content\" style=\"background-position: center top;padding-top: 32px;padding-left: 20px;padding-right: 20px;\">[vc_empty_space height=&#8221;60px&#8221;]<div class=\"gem-icon gem-icon-pack-material gem-icon-size-medium  gem-icon-shape-circle\"  style=\"border-color: #00bcd4;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #00bcd4;\"><span class=\"back-angle\">&#xf3cb;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #00bcd4;\"><span class=\"back-angle\">&#xf3cb;<\/span><\/span><\/div><\/div>[vc_empty_space height=&#8221;80px&#8221;][vc_column_text]<\/p>\n<h5 style=\"text-align: center;\"><span style=\"color: #99a9b5;\">alert box with alerts<\/span><\/h5>\n<p>[\/vc_column_text][vc_column_text css=&#8221;.vc_custom_1453463768046{margin-bottom: 22px !important;}&#8221;]<\/p>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt<\/p>\n<p>[\/vc_column_text]<div class=\"gem-button-container gem-button-position-center thegem-button-69d48771454a67692\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-outline gem-button-text-weight-normal gem-button-border-2\" style=\"border-radius: 0px;border-color: #99a9b5;color: #99a9b5;\" onmouseleave=\"this.style.borderColor='#99a9b5';this.style.backgroundColor='transparent';this.style.color='#99a9b5';\" onmouseenter=\"this.style.borderColor='#00bcd4';this.style.backgroundColor='#00bcd4';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">purchase now!<\/a><\/div> <\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6&#8243; el_class=&#8221;abwa_3&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border: 1px solid #dfe5e8;\"><div class=\"gem-textbox-content\" style=\"background-position: center top;\"><div class=\"gem-alert-box centered-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-large angle-90deg gem-icon-shape-square gem-simple-icon\"  style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #7ebeff;\"><span class=\"back-angle\">&#xf3f0;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #7e91ff;\"><span class=\"back-angle\">&#xf3f0;<\/span><\/span><\/div><\/div><\/div><div class=\"gem-alert-box-content\">[vc_empty_space height=&#8221;30px&#8221;][vc_column_text]<\/p>\n<h5 style=\"text-align: center;\"><span class=\"light\">alert box with alerts<\/span><\/h5>\n<p>[\/vc_column_text][vc_column_text]<\/p>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt<\/p>\n<p>[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771454d56498\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-flat gem-button-text-weight-thin\" style=\"border-radius: 15px;background-color: #46485c;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#46485c';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#7ebeff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy<\/a><\/div> <div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771454ea5688\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-flat gem-button-text-weight-thin\" style=\"border-radius: 15px;background-color: #7e91ff;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#7e91ff';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#4c5fc9';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/item\/thegem-creative-multipurpose-wordpress-theme\/16061685?ref=CodexThemes\" target=\"_self\">more<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3 vc_col-md-6&#8243; el_class=&#8221;abwa_4&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #ffb932;background-position: center top;padding-top: 20px;padding-bottom: 20px;padding-left: 20px;padding-right: 20px;\"><div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border: 6px solid #ffffff;\"><div class=\"gem-textbox-content\" style=\"background-color: #ffb932;background-position: center top;\"><div class=\"gem-alert-box centered-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h4><span style=\"color: #ffffff;\">hot promo alert box<br \/>\n<span style=\"color: #ff0000;\">70% off<\/span><\/span><\/h4>\n<p>[\/vc_column_text][vc_column_text]<\/p>\n<div class=\"styled-subtitle\">Awesome Total Sale -70% Off For All Collection During This Season!<\/div>\n<p>[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d487714554d3996\" ><a class=\"gem-button gem-button-size-small gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 0px;background-color: #2c2e3d;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#2c2e3d';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#5d4e3a';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy now!<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;5px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/2&#8243; el_class=&#8221;abwa_5&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #f4f6f7;background-position: center top;\"><div class=\"gem-alert-box centered-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-alert-box-image image-size-medium image-shape-circle\"><img src=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces1-thegem-person.png\" alt=\"#\" class=\"img-responsive\" srcset=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces1-thegem-person-80.png 1x, https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces1-thegem-person-160.png 2x\" \/><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h4 style=\"text-align: center;\"><span class=\"light\">alert box with picture<\/span><\/h4>\n<p>[\/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, \u00a0commodo consequat.[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d4877145583164\" ><a class=\"gem-button gem-button-size-small gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 3px;background-color: #662d91;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#662d91';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#26293a';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy now<\/a><\/div> <div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771455931752\" ><a class=\"gem-button gem-button-size-small gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 3px;background-color: #00bcd4;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#00bcd4';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#26293a';\" href=\"\" target=\"_self\">more demo<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; el_class=&#8221;abwa_6&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #f4f6f7;background-image: url(https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/city_alertbox_with_picture_background.png);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><div class=\"gem-alert-box centered-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-picture\"><div class=\"gem-alert-box-image image-size-medium image-shape-square\"><img src=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces-400x400px-1_1_21-thegem-person.jpg\" alt=\"#\" class=\"img-responsive\" srcset=\"https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces-400x400px-1_1_21-thegem-person-80.jpg 1x, https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Faces-400x400px-1_1_21-thegem-person-160.jpg 2x\" \/><\/div><\/div><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h4 style=\"text-align: center;\"><span class=\"light\" style=\"color: #ffffff;\">alert box with picture<\/span><\/h4>\n<p>[\/vc_column_text][vc_column_text]<span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, \u00a0commodo consequat.<\/span>[\/vc_column_text]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771455d0770\" ><a class=\"gem-button gem-button-size-small gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 3px;background-color: #ffb932;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#ffb932';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#4dddb6';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy now<\/a><\/div> <div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771455df2370\" ><a class=\"gem-button gem-button-size-small gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 3px;background-color: #212331;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#212331';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#4dddb6';\" href=\"\" target=\"_self\">more demo<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column el_class=&#8221;abwa_7&#8243;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #f4f6f7;background-position: center top;\"><div class=\"gem-alert-box centered-box\"><div class=\"gem-alert-inner\"><div class=\"gem-alert-box-content\">[vc_column_text]<\/p>\n<h2 style=\"text-align: center;\">only text alert message<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;20px&#8221;][vc_column_text]<\/p>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\/p>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;10px&#8221;]<\/div><div class=\"gem-alert-box-buttons\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771458c38047\" ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 25px;background-color: #3c3950;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#3c3950';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#99a9b5';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">purchase!<\/a><\/div> <div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771458dc377\" ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 25px;background-color: #00bcd4;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#00bcd4';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#99a9b5';\" href=\"https:\/\/themeforest.net\/item\/thegem-creative-multipurpose-wordpress-theme\/16061685?ref=CodexThemes\" target=\"_self\">read more<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453379495264{margin-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69d4877145900\" class=\"fullwidth-block clearfix\"  style=\"background-color: #2c2e3d;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d4877145900\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_empty_space height=&#8221;150px&#8221;][vc_column_text]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><span class=\"light\">call-to-action fullsize<\/span> buttons<\/span><\/h1>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;40px&#8221;][vc_column_text]<\/p>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit<\/p>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;90px&#8221;]<\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1453380022766{margin-bottom: 0px !important;padding-bottom: 170px !important;background-color: #2c2e3d !important;}&#8221;][vc_column][vc_empty_space height=&#8221;10px&#8221;]<div class=\"gem-textbox \"  ><div class=\"gem-textbox-top gem-textbox-top-ticket\"><svg width=\"100%\" height=\"14\" style=\"fill: #522e73;\"><defs><pattern id=\"pattern-1775535985-39\" x=\"16\" y=\"0\" width=\"32\" height=\"16\" patternUnits=\"userSpaceOnUse\" ><path d=\"M 0,14.5 16,-0.5 32,14.5\" \/><\/pattern><\/defs><rect x=\"0\" y=\"0\" width=\"100%\" height=\"14\" style=\"fill: url(#pattern-1775535985-39);\" \/><\/svg><\/div><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-color: #522e73;background-position: center top;padding-top: 20px;padding-bottom: 20px;\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d48771459316976\" ><a class=\"gem-button gem-button-size-giant gem-button-style-outline gem-button-text-weight-normal gem-button-border-6 gem-button-icon-position-left\" style=\"border-radius: 0px;border-color: #ffffff;color: #ffffff;\" onmouseleave=\"this.style.borderColor='#ffffff';this.style.backgroundColor='transparent';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#301449';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf2c4;<\/i>ok, show me more...<\/a><\/div> <\/div><\/div><div class=\"gem-textbox-bottom gem-textbox-bottom-ticket\"><svg width=\"100%\" height=\"14\" style=\"fill: #522e73;\"><defs><pattern id=\"pattern-1775535985-85\" x=\"16\" y=\"-1\" width=\"32\" height=\"16\" patternUnits=\"userSpaceOnUse\" ><path d=\"M 0,-0.5 16,14.5 32,-0.5\" \/><\/pattern><\/defs><rect x=\"0\" y=\"-1\" width=\"100%\" height=\"14\" style=\"fill: url(#pattern-1775535985-85);\" \/><\/svg><\/div><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453456214909{margin-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1453455696972{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;]<div id=\"fullwidth-block-69d4877145946\" class=\"fullwidth-block clearfix\"  style=\"background-color: #00ffff;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d4877145946\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\"><div class=\"gem-textbox  centered-box\"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-position: center top;padding-top: 10px;padding-bottom: 30px;\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771459a13906\" ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal gem-button-icon-position-left\" style=\"border-radius: 25px;background-color: #3c3950;color: #00ffff;\" onmouseleave=\"this.style.backgroundColor='#3c3950';this.style.color='#00ffff';\" onmouseenter=\"this.style.backgroundColor='#188c94';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf23e;<\/i>purchase now!<\/a><\/div> <div class=\"gem-button-container gem-button-position-inline thegem-button-69d48771459c11594\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-2 gem-button-icon-position-left\" style=\"border-radius: 25px;border-color: #3c3950;color: #3c3950;\" onmouseleave=\"this.style.borderColor='#3c3950';this.style.backgroundColor='transparent';this.style.color='#3c3950';\" onmouseenter=\"this.style.borderColor='#3c3950';this.style.backgroundColor='#3c3950';this.style.color='#00ffff';\" href=\"https:\/\/themeforest.net\/item\/thegem-creative-multipurpose-wordpress-theme\/16061685?ref=CodexThemes\" target=\"_self\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf491;<\/i>more details<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453457387647{margin-bottom: 0px !important;}&#8221;][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -24px;\"><\/div><div id=\"fullwidth-block-69d48771459db\" class=\"fullwidth-block clearfix\"  style=\"background-color: #2c2e3d;padding-top: 120px;padding-bottom: 120px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d48771459db\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d48771459fb2466 gem-button-with-separator\" ><div class=\"gem-button-separator gem-button-separator-type-single\"><div class=\"gem-button-separator-holder\"><div class=\"gem-button-separator-line\" style=\"border-color: #ffffff;\"><\/div><\/div><div class=\"gem-button-separator-button\"><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-3 gem-button-icon-position-left\" style=\"border-radius: 25px;border-color: #ffffff;color: #ffffff;\" onmouseleave=\"this.style.borderColor='#ffffff';this.style.backgroundColor='transparent';this.style.color='#ffffff';\" onmouseenter=\"this.style.borderColor='#ffffff';this.style.backgroundColor='#ffffff';this.style.color='#2c2e3d';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf1e7;<\/i>purchase now<\/a><\/div><div class=\"gem-button-separator-holder\"><div class=\"gem-button-separator-line\" style=\"border-color: #ffffff;\"><\/div><\/div><\/div><\/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_1453468952452{margin-bottom: 0px !important;background-color: #46485c !important;}&#8221;][vc_column width=&#8221;1\/12&#8243; css=&#8221;.vc_custom_1453469530411{padding-top: 0px !important;}&#8221; offset=&#8221;vc_col-lg-2 vc_hidden-md vc_hidden-sm vc_hidden-xs&#8221;][vc_separator style=&#8221;double&#8221; css=&#8221;.vc_custom_1453469021769{padding-top: 0px !important;}&#8221;][\/vc_column][vc_column css=&#8221;.vc_custom_1453469577235{padding-top: 0px !important;}&#8221; offset=&#8221;vc_col-lg-8 vc_col-md-12 vc_col-xs-12&#8243;]<div class=\"gem-textbox  centered-box\"  ><div class=\"gem-textbox-inner\" style=\"\"><div class=\"gem-textbox-content\" style=\"background-position: center top;padding-top: 40px;padding-bottom: 20px;\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d4877145a295055\" ><a class=\"gem-button gem-button-size-large gem-button-style-outline gem-button-text-weight-thin gem-button-border-1 gem-button-icon-position-left\" style=\"border-radius: 0px;border-color: #00ffff;color: #00ffff;\" onmouseleave=\"this.style.borderColor='#00ffff';this.style.backgroundColor='transparent';this.style.color='#00ffff';\" onmouseenter=\"this.style.borderColor='#10d1d1';this.style.backgroundColor='#10d1d1';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf287;<\/i>buy the gem<\/a><\/div> <div class=\"gem-button-container gem-button-position-inline thegem-button-69d4877145a466476\" ><a class=\"gem-button gem-button-size-large gem-button-style-outline gem-button-text-weight-thin gem-button-border-1 gem-button-icon-position-left\" style=\"border-radius: 0px;border-color: #ffa749;color: #ffa749;\" onmouseleave=\"this.style.borderColor='#ffa749';this.style.backgroundColor='transparent';this.style.color='#ffa749';\" onmouseenter=\"this.style.borderColor='#ffa749';this.style.backgroundColor='#ffa749';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/item\/thegem-creative-multipurpose-wordpress-theme\/16061685?ref=CodexThemes\" target=\"_self\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf59a;<\/i>more details<\/a><\/div> <\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/12&#8243; css=&#8221;.vc_custom_1453469550874{padding-top: 0px !important;}&#8221; offset=&#8221;vc_col-lg-2 vc_hidden-md vc_hidden-sm vc_hidden-xs&#8221;][vc_separator style=&#8221;double&#8221; css=&#8221;.vc_custom_1453469033009{padding-top: 0px !important;}&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][vc_empty_space height=&#8221;110px&#8221;]<div class=\"gem-button-container gem-button-position-center thegem-button-69d4877145a675581 gem-button-with-separator\" ><div class=\"gem-button-separator gem-button-separator-type-strong-double\"><div class=\"gem-button-separator-holder\"><div class=\"gem-button-separator-line\" style=\"border-color: #5f727f;\"><\/div><\/div><div class=\"gem-button-separator-button\"><a class=\"gem-button gem-button-size-large gem-button-style-outline gem-button-text-weight-normal gem-button-border-3 gem-button-icon-position-left\" style=\"border-radius: 3px;border-color: #5f727f;color: #5f727f;\" onmouseleave=\"this.style.borderColor='#5f727f';this.style.backgroundColor='transparent';this.style.color='#5f727f';\" onmouseenter=\"this.style.borderColor='#5f727f';this.style.backgroundColor='#5f727f';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\"><i class=\"gem-print-icon gem-icon-pack-material \">&#xf1e6;<\/i>i want it right now!<\/a><\/div><div class=\"gem-button-separator-holder\"><div class=\"gem-button-separator-line\" style=\"border-color: #5f727f;\"><\/div><\/div><\/div><\/div> [vc_empty_space height=&#8221;110px&#8221;][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453457465613{margin-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69d4877145a77\" class=\"fullwidth-block clearfix\"  style=\"background-color: #f0f3f2;padding-top: 65px;padding-bottom: 65px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d4877145a77\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_row_inner][vc_column_inner css=&#8221;.vc_custom_1453364973046{margin-top: 10px !important;}&#8221; offset=&#8221;vc_col-lg-4 vc_col-md-6&#8243;][vc_single_image image=&#8221;1545&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221;][\/vc_column_inner][vc_column_inner css=&#8221;.vc_custom_1453365073482{margin-top: 37px !important;}&#8221; offset=&#8221;vc_col-lg-6 vc_col-md-6 vc_col-xs-12&#8243;][vc_column_text]<\/p>\n<div class=\"styled-subtitle\" style=\"text-align: center;\"><span style=\"color: #3c3950;\">Not just a wordpress theme. A real design jewel!<\/span><\/div>\n<p>[\/vc_column_text][\/vc_column_inner][vc_column_inner offset=&#8221;vc_col-lg-2 vc_col-md-12 vc_col-xs-12&#8243;]<div class=\"gem-button-container gem-button-position-center thegem-button-69d4877145a982001\" ><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: #ff405b;color: #ff405b;\" onmouseleave=\"this.style.borderColor='#ff405b';this.style.backgroundColor='transparent';this.style.color='#ff405b';\" onmouseenter=\"this.style.backgroundColor='#ff405b';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/checkout\/from_item\/16061685?license=regular\" target=\"_blank\">buy now!<\/a><\/div> [\/vc_column_inner][\/vc_row_inner]<\/div><\/div><div class=\"fullwidth-bottom-marker marker-direction-outside\"><svg width=\"140\" height=\"70\" style=\"fill: #f0f3f2\"><path d=\"M 0,0 Q 65,5 70,70 Q 75,5 140,0\" \/><\/svg><\/div><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1453363010373{margin-bottom: 0px !important;}&#8221;][vc_column el_class=&#8221;notop_pad&#8221;]<div id=\"fullwidth-block-69d4877145b6c\" class=\"fullwidth-block fullwidth-block-parallax-vertical clearfix\" data-mobile-parallax-enable=\"0\" style=\"padding-top: 170px;padding-bottom: 140px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d4877145b6c\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/wp-content\/uploads\/2016\/01\/Alert-Box-05.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_empty_space height=&#8221;180px&#8221;]<div class=\"centered-box\"><div class=\"gem-icon gem-icon-pack-material gem-icon-size-medium  gem-icon-shape-circle\"  style=\"margin-bottom: 70px;border-color: #acac67;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #acac67;\"><span class=\"back-angle\">&#xf531;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #acac67;\"><span class=\"back-angle\">&#xf531;<\/span><\/span><\/div><\/div><\/div>[vc_column_text]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span class=\"light\" style=\"color: #ffffff;\">amazing, yeah?<\/span><\/div>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;70px&#8221;][vc_column_text]<\/p>\n<div class=\"styled-subtitle\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam nostrud exercitation ullamco laboris nisiut aliquip ex ea commodo. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat. Cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\u00a0<\/span><\/div>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;200px&#8221;]<\/div><\/div><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -27px;\"><\/div>[\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row css=&#8221;.vc_custom_1634049086658{margin-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1634047199373{padding-top: 0px !important;}&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;140px&#8221;][vc_column_text] asymmetric styles [\/vc_column_text][vc_empty_space height=&#8221;40px&#8221;][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":17,"menu_order":2,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"_links":{"self":[{"href":"https:\/\/codex-themes.com\/thegem\/wp-json\/wp\/v2\/pages\/957"}],"collection":[{"href":"https:\/\/codex-themes.com\/thegem\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/codex-themes.com\/thegem\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/wp-json\/wp\/v2\/comments?post=957"}],"version-history":[{"count":16,"href":"https:\/\/codex-themes.com\/thegem\/wp-json\/wp\/v2\/pages\/957\/revisions"}],"predecessor-version":[{"id":39304,"href":"https:\/\/codex-themes.com\/thegem\/wp-json\/wp\/v2\/pages\/957\/revisions\/39304"}],"up":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/wp-json\/wp\/v2\/pages\/17"}],"wp:attachment":[{"href":"https:\/\/codex-themes.com\/thegem\/wp-json\/wp\/v2\/media?parent=957"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}