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

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

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

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

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

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

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

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

        window.parent.vc.events.on('app.render', function () {
            window.theGemAdvancedAnimation.initialize();
        });
    }
})();</script>{"id":14273,"date":"2023-11-30T20:09:15","date_gmt":"2023-11-30T20:09:15","guid":{"rendered":"http:\/\/democontent.codex-themes.com\/thegem\/?page_id=14273"},"modified":"2021-12-26T11:58:13","modified_gmt":"2021-12-26T08:58:13","slug":"homepage-banking-finance","status":"publish","type":"page","link":"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/","title":{"rendered":"Homepage: Banking &amp; Finance"},"content":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content&#8221; full_height=&#8221;yes&#8221; ken_burns_direction=&#8221;zoom_out&#8221; ken_burns_transition_speed=&#8221;15000&#8243; ken_burns_enabled=&#8221;true&#8221; css=&#8221;.vc_custom_1637581087346{margin-bottom: 0px !important;}&#8221; ken_burns_image=&#8221;24683&#8243;][vc_column css=&#8221;.vc_custom_1637582858775{padding-top: 150px !important;}&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider divider-on-laptop\" style=\"margin-top: 75px;\"><\/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 items = Array.from(element.getElementsByClassName('thegem-heading-rotating-text')); if (items.length === 0) return; let duration = element.dataset.duration !== undefined ? parseInt(element.dataset.duration) : 1400; let current = items[0]; current.style.width = element.clientWidth+'px'; items.forEach((item)=>item.dataset.width = item.clientWidth); setInterval(()=>{ let next = current.nextElementSibling !== null ? current.nextElementSibling : element.childNodes[0]; let nextWidth = next.dataset.width; let currentWidth = current.dataset.width; element.style.width = nextWidth + 'px'; current.style.width = '1px'; current.style.opacity = 0; next.style.width = '1px'; setTimeout(()=>{ current.style.position = 'absolute'; current.style.width = currentWidth + 'px'; next.style.position = 'relative'; next.style.opacity = 1; next.style.width = nextWidth + 'px'; current = next; }, 500); }, 1000 + duration); } }; window.theGemHeading = new TheGemHeading(); document.addEventListener('DOMContentLoaded', function(event) { window.theGemHeading.initialize(); }); if (window.parent.vc) { window.parent.vc.events.on('shortcodeView:updated', function (event) { let element = event.view.el.querySelector('.thegem-heading'); window.theGemHeading.prepareAnimation(element); window.theGemHeading.startAnimation(element); }); window.parent.vc.events.on('app.render', function () { window.theGemHeading.initialize(); }); }\n})();<\/script><div id=\"thegem-heading-69d04c2d3cc8c\" class=\"thegem-heading title-xlarge letters-slide-up thegem-heading-animate\" style=\"text-align: center;\" ><span class=\"light thegem-heading-word\" style=\"color: #ffffff;\"><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 15ms\">W<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 30ms\">e<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 45ms\">l<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 60ms\">c<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 75ms\">o<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 90ms\">m<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 105ms\">e<\/span><\/span><\/span> <span class=\"light thegem-heading-word\" style=\"color: #ffffff;\"><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 120ms\">T<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 135ms\">o<\/span><\/span><\/span> <span class=\"thegem-heading-word\" style=\"color: #ffffff;\"><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 150ms\">G<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 165ms\">e<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 180ms\">m<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 195ms\">b<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 210ms\">i<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 225ms\">z<\/span><\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69d04c2d3cc8c {margin: 0;}#thegem-heading-69d04c2d3cc8c {margin-left: auto; margin-right: auto;}#thegem-heading-69d04c2d3cc8c .thegem-heading-letter {animation-duration: 800ms;}#thegem-heading-69d04c2d3cc8c .thegem-heading-letter {animation-timing-function: cubic-bezier(0,1,0.3,1);}<\/style><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 55px;\"><\/div><div id=\"thegem-heading-69d04c2d3cdb0\" class=\"thegem-heading styled-subtitle lines-slide-up thegem-heading-animate\" style=\"text-align: center;\" data-animation-name=\"lines-slide-up\" data-animation-delay=\"200\" data-animation-interval=\"80\"><span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">Lorem<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">ipsum<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">dolor<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">sit<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">amet,<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">consectetur<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">adipisicing<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">elit,<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">sed<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">do<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">eiusmod<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">tempor<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">incididunt<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">ut<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">labore<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">et<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">dolore<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">magna<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">aliqua.<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">Ut<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">enim<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">ad<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">minim<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">veniam,<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">quis<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">nostrud<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">exercitation<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">ullamco<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">laboris<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">nisi<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">ut<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">aliquip<\/span> <span class=\"thegem-heading-word\" style=\"color: #b4b4b4;\">ex<\/span><\/div><style type=\"text\/css\">#thegem-heading-69d04c2d3cdb0 {margin: 0;}#thegem-heading-69d04c2d3cdb0 {margin-left: auto; margin-right: auto;}#thegem-heading-69d04c2d3cdb0 {max-width: 1060px;}<\/style><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 30px;\"><\/div>[vc_row_inner css=&#8221;.vc_custom_1638373703886{margin-bottom: 0px !important;}&#8221;][vc_column_inner el_class=&#8221;custom-button-align&#8221; css=&#8221;.vc_custom_1638373721086{padding-top: 0px !important;}&#8221;]<style type=\"text\/css\">.thegem-button-69d04c2d3ce3f9416 .gem-button {opacity:0;animation-delay:350ms !important}<\/style><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d3ce3f9416 thegem-advanced-animation thegem-advanced-animation-slide-up\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-3\" 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='#f74334';\" href=\"https:\/\/themeforest.net\/item\/thegem-creative-multipurpose-wordpress-theme\/16061685?ref=CodexThemes\" target=\"_self\">Purchase Now<\/a><\/div> <style type=\"text\/css\">.thegem-button-69d04c2d3ce723223 .gem-button {opacity:0;animation-delay:500ms !important}<\/style><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d3ce723223 thegem-advanced-animation thegem-advanced-animation-slide-up\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-3\" style=\"border-radius: 25px;border-color: #f74334;color: #f74334;\" onmouseleave=\"this.style.borderColor='#f74334';this.style.backgroundColor='transparent';this.style.color='#f74334';\" onmouseenter=\"this.style.borderColor='#f74334';this.style.backgroundColor='#f74334';this.style.color='#ffffff';\" href=\"https:\/\/themeforest.net\/item\/thegem-creative-multipurpose-wordpress-theme\/16061685?ref=CodexThemes\" target=\"_self\">More Details<\/a><\/div> [\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div>[vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<h2 style=\"text-align: center;\"><span style=\"color: #212121;\">main advantages<\/span><\/h2>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -70px;\"><\/div><div class=\"quickfinder quickfinder-style-classic quickfinder-binded row inline-row quickfinder-icon-position-top-float quickfinder-alignment-left quickfinder-title-bold\" data-hover-border-color=\"#dadada\"><div id=\"post-14525\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-border-reverse icon-size-small quickfinder-box-style-soft-outlined lazy-loading post-14525 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"border-color: rgba(255,255,255,0.01);\"> <div class=\"quickfinder-item-table\">\t<div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle\" style=\"border-color: #f44336;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf26d;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf26d;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">Euro<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div>\t<\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14526\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-border-reverse icon-size-small quickfinder-box-style-soft-outlined lazy-loading post-14526 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"border-color: rgba(255,255,255,0.01);\"> <div class=\"quickfinder-item-table\">\t<div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle\" style=\"border-color: #f44336;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf26e;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf26e;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">Sterling<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div>\t<\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14527\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-border-reverse icon-size-small quickfinder-box-style-soft-outlined lazy-loading post-14527 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"border-color: rgba(255,255,255,0.01);\"> <div class=\"quickfinder-item-table\">\t<div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle\" style=\"border-color: #f44336;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf272;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf272;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">Dollar<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div>\t<\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14528\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-border-reverse icon-size-small quickfinder-box-style-soft-outlined lazy-loading post-14528 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"border-color: rgba(255,255,255,0.01);\"> <div class=\"quickfinder-item-table\">\t<div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle\" style=\"border-color: #f44336;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf270;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf270;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">Rouble<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div>\t<\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div>[\/vc_column][\/vc_row][vc_row][vc_column]<div id=\"fullwidth-block-69d04c2d3db13\" class=\"fullwidth-block clearfix\"  style=\"padding-top: 150px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d04c2d3db13\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/7-19.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">WHY CHOOSING US<\/span><\/h1>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 85px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<p style=\"text-align: center;\"><span style=\"color: #8f8f8f;\">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.<\/span><\/p>\n<p>[\/vc_column_text]<div class=\"quickfinder quickfinder-style-classic quickfinder-binded row inline-row quickfinder-icon-position-top quickfinder-alignment-left quickfinder-title-bold\" data-hover-box-color=\"#ffffff\"><div id=\"post-14547\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-2 col-sm-3 col-xs-4 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-14547 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf108;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf108;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">TOOLBOX<\/div> <div class=\"quickfinder-item-text\" style=\"color: #8e8e8e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14550\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-2 col-sm-3 col-xs-4 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-14550 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf267;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf267;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">PERFECT<\/div> <div class=\"quickfinder-item-text\" style=\"color: #8e8e8e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14551\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-2 col-sm-3 col-xs-4 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-14551 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf2bd;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf2bd;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">RETINA<\/div> <div class=\"quickfinder-item-text\" style=\"color: #8e8e8e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14553\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-2 col-sm-3 col-xs-4 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-14553 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf3ea;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf3ea;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">MULTILING<\/div> <div class=\"quickfinder-item-text\" style=\"color: #8e8e8e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14554\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-2 col-sm-3 col-xs-4 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-14554 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf3e3;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf3e3;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">Playfully<\/div> <div class=\"quickfinder-item-text\" style=\"color: #8e8e8e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14555\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-2 col-sm-3 col-xs-4 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-14555 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf424;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf424;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">DEVELOPMENT<\/div> <div class=\"quickfinder-item-text\" style=\"color: #8e8e8e;\">Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidi labore et dolore magna<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1458565911911{margin-bottom: 0px !important;}&#8221;][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 130px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">WHAT WE OFFER\u00a0<\/span><\/h1>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/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<br \/>\naliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat[\/vc_column_text]<div class=\"quickfinder quickfinder-style-classic row inline-row quickfinder-icon-position-top quickfinder-alignment-center quickfinder-title-bold\" data-hover-box-color=\"#ffffff\" data-hover-border-color=\"#dadada\" data-hover-title-color=\"#f55043\"><div id=\"post-14588\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-image-scale icon-size-large quickfinder-box-style-soft-outlined lazy-loading post-14588 thegem_qf_item type-thegem_qf_item status-publish has-post-thumbnail\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"background-color: #f4f4f4;border-color: #ffffff;\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper quickfinder-item-picture quickfinder-item-image-shape-circle\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/8-20-thegem-person.jpg\" class=\" quickfinder-img-size-large wp-post-image\" alt=\"8-20\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/8-20-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/8-20-thegem-person.jpg 2x\" sizes=\"100vw\" \/> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">dolor amet Lorem ipsum sit<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/services\/\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14605\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-image-scale icon-size-large quickfinder-box-style-soft-outlined lazy-loading post-14605 thegem_qf_item type-thegem_qf_item status-publish has-post-thumbnail\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"background-color: #f4f4f4;border-color: #ffffff;\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper quickfinder-item-picture quickfinder-item-image-shape-circle\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/9-14-thegem-person.jpg\" class=\" quickfinder-img-size-large wp-post-image\" alt=\"9-14\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/9-14-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/9-14-thegem-person.jpg 2x\" sizes=\"100vw\" \/> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">dolor amet Lorem ipsum sit<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/services\/\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14606\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-image-scale icon-size-large quickfinder-box-style-soft-outlined lazy-loading post-14606 thegem_qf_item type-thegem_qf_item status-publish has-post-thumbnail\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"background-color: #f4f4f4;border-color: #ffffff;\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper quickfinder-item-picture quickfinder-item-image-shape-circle\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/10-18-thegem-person.jpg\" class=\" quickfinder-img-size-large wp-post-image\" alt=\"10-18\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/10-18-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/10-18-thegem-person.jpg 2x\" sizes=\"100vw\" \/> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">dolor amet Lorem ipsum sit<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/services\/\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-14607\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-image-scale icon-size-large quickfinder-box-style-soft-outlined lazy-loading post-14607 thegem_qf_item type-thegem_qf_item status-publish has-post-thumbnail\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"background-color: #f4f4f4;border-color: #ffffff;\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper quickfinder-item-picture quickfinder-item-image-shape-circle\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/11-8-thegem-person.jpg\" class=\" quickfinder-img-size-large wp-post-image\" alt=\"11-8\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/11-8-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/11-8-thegem-person.jpg 2x\" sizes=\"100vw\" \/> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #212121;\">dolor amet Lorem ipsum sit<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/services\/\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div><style type=\"text\/css\">.thegem-button-69d04c2d40c981187.lazy-loading-before-start-animation .lazy-loading-item {opacity: 0;} body.thegem-effects-disabled .thegem-button-69d04c2d40c981187.lazy-loading-before-start-animation .lazy-loading-item {opacity: 1;}<\/style><div class=\"gem-button-container gem-button-position-center thegem-button-69d04c2d40c981187 lazy-loading lazy-loading-before-start-animation\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-3 lazy-loading-item\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 25px;border-color: #f34238;color: #f34238;\" onmouseleave=\"this.style.borderColor='#f34238';this.style.backgroundColor='transparent';this.style.color='#f34238';\" onmouseenter=\"this.style.backgroundColor='#f34238';this.style.color='#ffffff';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/services\/\" target=\"_self\">read more<\/a><\/div> <div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[\/vc_column][\/vc_row][vc_row el_class=&#8221;new-tabs&#8221; css=&#8221;.vc_custom_1458718440886{margin-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69d04c2d40ccd\" class=\"fullwidth-block clearfix\"  style=\"background-color: #f4f4f4;padding-top: 100px;padding-bottom: 50px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d04c2d40ccd\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h2 style=\"text-align: center;\"><span style=\"color: #212121;\">ADDITIONAL SERVICES WE PROVIDE<\/span><\/h2>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div>[vc_tta_tabs style=&#8221;flat&#8221; color=&#8221;grey&#8221; spacing=&#8221;25&#8243; alignment=&#8221;center&#8221; active_section=&#8221;1&#8243; no_fill_content_area=&#8221;true&#8221;][vc_tta_section title=&#8221;service 1&#8243; tab_id=&#8221;1458566107131-447997f6-7693&#8243;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 20px;\"><\/div>[vc_row_inner][vc_column_inner width=&#8221;1\/4&#8243;][vc_round_chart style=&#8221;custom&#8221; stroke_width=&#8221;0&#8243; legend=&#8221;&#8221; tooltips=&#8221;&#8221; values=&#8221;%5B%7B%22title%22%3A%22One%22%2C%22value%22%3A%2213%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23e24847%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22value%22%3A%227%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23bfbbba%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22value%22%3A%2280%22%2C%22color%22%3A%22green%22%2C%22custom_color%22%3A%22%23d4d0d1%22%7D%5D&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;][vc_line_chart style=&#8221;custom&#8221; legend=&#8221;&#8221; tooltips=&#8221;&#8221; x_values=&#8221;85% , 60% , 24%&#8221; values=&#8221;%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2285%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23d4d0d1%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23bfbbba%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22y_values%22%3A%2224%22%2C%22color%22%3A%22green%22%2C%22custom_color%22%3A%22%23e24847%22%7D%5D&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243;][vc_column_text]<span style=\"color: #9e9e9e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\/span>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div><div class=\"gem-list gem-list-type-square gem-list-color-5\" ><ul>\n<li>Lorem ipsum dolor sit amet,<\/li>\n<li>consectetur adipisicing elit,<\/li>\n<li>sed do eiusmod tempo<\/li>\n<li>Lorem ipsum dolor sit amet<\/li>\n<\/ul>\n<\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_tta_section][vc_tta_section title=&#8221;service 2&#8243; tab_id=&#8221;1458647270147-c9edfcfd-efb9&#8243;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 20px;\"><\/div>[vc_row_inner][vc_column_inner width=&#8221;1\/4&#8243;][vc_round_chart style=&#8221;custom&#8221; stroke_width=&#8221;0&#8243; legend=&#8221;&#8221; tooltips=&#8221;&#8221; values=&#8221;%5B%7B%22title%22%3A%22One%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23e24847%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23bfbbba%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22value%22%3A%2250%22%2C%22color%22%3A%22green%22%2C%22custom_color%22%3A%22%23d4d0d1%22%7D%5D&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;][vc_line_chart style=&#8221;custom&#8221; legend=&#8221;&#8221; tooltips=&#8221;&#8221; x_values=&#8221;85% , 60% , 24%&#8221; values=&#8221;%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2225%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23d4d0d1%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2250%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23bfbbba%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22y_values%22%3A%2224%22%2C%22color%22%3A%22green%22%2C%22custom_color%22%3A%22%23e24847%22%7D%5D&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243;][vc_column_text]<span style=\"color: #9e9e9e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\/span>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div><div class=\"gem-list gem-list-type-square gem-list-color-5\" ><ul>\n<li>Lorem ipsum dolor sit amet,\u00a0ipsum dolor sit amet,<\/li>\n<li>consectetur adipisicing elit,\u00a0do eiusmod tempo<\/li>\n<li>sed do eiusmod tempo\u00a0ipsum dolor sit amet<\/li>\n<li>Lorem ipsum dolor sit amet\u00a0consectetur adipisicing<\/li>\n<\/ul>\n<\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_tta_section][vc_tta_section title=&#8221;service 3&#8243; tab_id=&#8221;1458647293242-9d739818-8a8c&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 20px;\"><\/div>[vc_row_inner][vc_column_inner width=&#8221;1\/4&#8243;][vc_round_chart style=&#8221;custom&#8221; stroke_width=&#8221;0&#8243; legend=&#8221;&#8221; tooltips=&#8221;&#8221; values=&#8221;%5B%7B%22title%22%3A%22One%22%2C%22value%22%3A%2290%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23e24847%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22value%22%3A%225%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23bfbbba%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22value%22%3A%225%22%2C%22color%22%3A%22green%22%2C%22custom_color%22%3A%22%23d4d0d1%22%7D%5D&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;][vc_line_chart style=&#8221;custom&#8221; legend=&#8221;&#8221; tooltips=&#8221;&#8221; x_values=&#8221;85% , 60% , 24%&#8221; values=&#8221;%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23d4d0d1%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2220%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23bfbbba%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22y_values%22%3A%2270%22%2C%22color%22%3A%22green%22%2C%22custom_color%22%3A%22%23e24847%22%7D%5D&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243;][vc_column_text]<span style=\"color: #9e9e9e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\/span>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div><div class=\"gem-list gem-list-type-square gem-list-color-5\" ><ul>\n<li>Lorem ipsum dolor sit amet,<\/li>\n<li>consectetur adipisicing elit,<\/li>\n<li>sed do eiusmod tempo<\/li>\n<li>Lorem ipsum dolor sit amet<\/li>\n<\/ul>\n<\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_tta_section][vc_tta_section title=&#8221;service 4&#8243; tab_id=&#8221;1458647305191-e2986644-0b88&#8243;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 20px;\"><\/div>[vc_row_inner][vc_column_inner width=&#8221;1\/4&#8243;][vc_round_chart style=&#8221;custom&#8221; stroke_width=&#8221;0&#8243; legend=&#8221;&#8221; tooltips=&#8221;&#8221; values=&#8221;%5B%7B%22title%22%3A%22One%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23e24847%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23bfbbba%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22green%22%2C%22custom_color%22%3A%22%23d4d0d1%22%7D%5D&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;][vc_line_chart style=&#8221;custom&#8221; legend=&#8221;&#8221; tooltips=&#8221;&#8221; x_values=&#8221;85% , 60% , 24%&#8221; values=&#8221;%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2250%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23d4d0d1%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2230%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23bfbbba%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22y_values%22%3A%2250%22%2C%22color%22%3A%22green%22%2C%22custom_color%22%3A%22%23e24847%22%7D%5D&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243;][vc_column_text]<span style=\"color: #9e9e9e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\u00a0exercitation ullamco laboris nisi\u00a0consectetur adipisicing elit, sed do eiusmod tempor<\/span>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div><div class=\"gem-list gem-list-type-square gem-list-color-5\" ><ul>\n<li>Lorem ipsum dolor sit amet, consectetur adipisicing elit,<\/li>\n<li>Lorem ipsum dolor sit amet, sed do eiusmod tempo<\/li>\n<li>Lorem ipsum dolor sit amet\u00a0consectetur adipisicing elit,<\/li>\n<\/ul>\n<\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_tta_section][\/vc_tta_tabs]<\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; el_class=&#8221;no-white-line-portfolio&#8221; css=&#8221;.vc_custom_1458720849311{margin-bottom: 0px !important;}&#8221;][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 150px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">OUR CASE STUDIES<\/span><\/h1>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<p style=\"text-align: center;\"><span style=\"color: #9e9e9e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna <\/span><br \/>\n<span style=\"color: #9e9e9e;\">aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\/span>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 80px;\"><\/div><div class=\"preloader save-space\"><div class=\"preloader-spin\"><\/div><\/div> <div class=\"portfolio-preloader-wrapper\"> <div class=\"portfolio portfolio-grid no-padding portfolio-pagination-normal portfolio-style-masonry background-style-white title-style-light hover-vertical-sliding title-on-hover caption-position-right loading-animation item-animation-move-up no-gaps hover-title portfolio-items-masonry columns-4 next-page-preloading filters-preloading\" data-portfolio-uid=\"67793b6\" data-current-page=\"1\" data-per-page=\"8\" data-next-page=\"0\" data-pages-count=\"1\" data-hover=\"vertical-sliding\"> <div class=\"portfolio-row-outer \"> <div class=\"row portfolio-row\" style=\"margin: 0;\"> <div class=\"portfolio-set clearfix\" data-max-row-height=\"280\"> <div class=\"portfolio-item bankingfinance col-md-3 col-sm-4 col-xs-4 item-animations-not-inited post-24705 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" style=\"padding: 0px;\" data-default-sort=\"0\" data-sort-date=\"1722283342\"> <div class=\"wrap clearfix\"> <div class=\"image post-24705 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/17-3-thegem-portfolio-masonry-2x-500.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/17-3.jpg 2x\" media=\"(max-width: 550px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/17-3-thegem-portfolio-masonry-3x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/17-3.jpg 2x\" media=\"(max-width: 1100px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/17-3-thegem-portfolio-masonry-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/17-3.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/17-3-thegem-portfolio-masonry.jpg\" width=\"754\" height=\"566\" class=\"attachment-thegem-portfolio-masonry\" alt=\"Architecture Project\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/projects\/architecture-project\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/17-3.jpg\" target=\"_self\" class=\"icon full-image fancy\"><i class=\"default\"><\/i><\/a> <a href=\"javascript: void(0);\" class=\"icon share\"><i class=\"default\"><\/i><\/a> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Farchitecture-project%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Architecture+Project&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Farchitecture-project%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Farchitecture-project%2F&#038;description=Architecture+Project&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2018%2F12%2F17-3-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Farchitecture-project%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Farchitecture-project%2F&#038;title=Architecture+Project&amp;summary=Lorem+ipsum+dolor+sit+amet+ipsum\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Farchitecture-project%2F&#038;title=Architecture+Project\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Architecture Project <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet ipsum<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item bankingfinance col-md-3 col-sm-4 col-xs-4 item-animations-not-inited post-24707 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" style=\"padding: 0px;\" data-default-sort=\"0\" data-sort-date=\"1722283368\"> <div class=\"wrap clearfix\"> <div class=\"image post-24707 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/21-thegem-portfolio-masonry-2x-500.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/21.jpg 2x\" media=\"(max-width: 550px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/21-thegem-portfolio-masonry-3x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/21.jpg 2x\" media=\"(max-width: 1100px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/21-thegem-portfolio-masonry-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/21.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/21-thegem-portfolio-masonry.jpg\" width=\"754\" height=\"566\" class=\"attachment-thegem-portfolio-masonry\" alt=\"Photography Light\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/projects\/photography-light\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/\" target=\"_self\" class=\"icon inner-link \"><i class=\"default\"><\/i><\/a> <a href=\"javascript: void(0);\" class=\"icon share\"><i class=\"default\"><\/i><\/a> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-light%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Photography+Light&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-light%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-light%2F&#038;description=Photography+Light&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2018%2F12%2F21-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-light%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-light%2F&#038;title=Photography+Light&amp;summary=Lorem+ipsum+dolor+sit+amet+ipsum\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-light%2F&#038;title=Photography+Light\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Photography Light <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet ipsum<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item bankingfinance col-md-3 col-sm-4 col-xs-4 item-animations-not-inited post-24709 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" style=\"padding: 0px;\" data-default-sort=\"0\" data-sort-date=\"1722283383\"> <div class=\"wrap clearfix\"> <div class=\"image post-24709 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/19-1-thegem-portfolio-masonry-2x-500.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/19-1.jpg 2x\" media=\"(max-width: 550px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/19-1-thegem-portfolio-masonry-3x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/19-1.jpg 2x\" media=\"(max-width: 1100px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/19-1-thegem-portfolio-masonry-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/19-1.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/19-1-thegem-portfolio-masonry.jpg\" width=\"754\" height=\"566\" class=\"attachment-thegem-portfolio-masonry\" alt=\"video-project\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/projects\/video-project\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2019\/02\/Black-And-White-Video-Of-Man-Infront-Of-The-Computer.mp4\" target=\"_self\" class=\"icon self_video \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/19-1.jpg\" target=\"_self\" class=\"icon full-image fancy\"><i class=\"default\"><\/i><\/a> <a href=\"javascript: void(0);\" class=\"icon share\"><i class=\"default\"><\/i><\/a> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvideo-project%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=video-project&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvideo-project%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvideo-project%2F&#038;description=video-project&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2018%2F12%2F19-1-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvideo-project%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvideo-project%2F&#038;title=video-project&amp;summary=Lorem+ipsum+dolor+sit+amet+ipsum\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvideo-project%2F&#038;title=video-project\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> video-project <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet ipsum<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item bankingfinance col-md-3 col-sm-4 col-xs-4 item-animations-not-inited post-24712 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" style=\"padding: 0px;\" data-default-sort=\"0\" data-sort-date=\"1722283407\"> <div class=\"wrap clearfix\"> <div class=\"image post-24712 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/20-1-thegem-portfolio-masonry-2x-500.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/20-1.jpg 2x\" media=\"(max-width: 550px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/20-1-thegem-portfolio-masonry-3x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/20-1.jpg 2x\" media=\"(max-width: 1100px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/20-1-thegem-portfolio-masonry-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/20-1.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/20-1-thegem-portfolio-masonry.jpg\" width=\"754\" height=\"566\" class=\"attachment-thegem-portfolio-masonry\" alt=\"Photography Dark\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/20-1.jpg\" target=\"_self\" class=\"icon full-image fancy\"><i class=\"default\"><\/i><\/a> <a href=\"javascript: void(0);\" class=\"icon share\"><i class=\"default\"><\/i><\/a> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-dark%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Photography+Dark&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-dark%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-dark%2F&#038;description=Photography+Dark&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2018%2F12%2F20-1-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-dark%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-dark%2F&#038;title=Photography+Dark&amp;summary=Lorem+ipsum+dolor+sit+amet+ipsum\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fphotography-dark%2F&#038;title=Photography+Dark\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Photography Dark <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet ipsum<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item bankingfinance col-md-3 col-sm-4 col-xs-4 item-animations-not-inited post-24714 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" style=\"padding: 0px;\" data-default-sort=\"0\" data-sort-date=\"1722283426\"> <div class=\"wrap clearfix\"> <div class=\"image post-24714 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/16-4-thegem-portfolio-masonry-2x-500.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/16-4.jpg 2x\" media=\"(max-width: 550px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/16-4-thegem-portfolio-masonry-3x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/16-4.jpg 2x\" media=\"(max-width: 1100px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/16-4-thegem-portfolio-masonry-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/16-4.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/16-4-thegem-portfolio-masonry.jpg\" width=\"754\" height=\"566\" class=\"attachment-thegem-portfolio-masonry\" alt=\"Real Estate 02\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/projects\/real-estate-02\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/\" target=\"_self\" class=\"icon inner-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/16-4.jpg\" target=\"_self\" class=\"icon full-image fancy\"><i class=\"default\"><\/i><\/a> <a href=\"javascript: void(0);\" class=\"icon share\"><i class=\"default\"><\/i><\/a> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Freal-estate-02%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Real+Estate+02&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Freal-estate-02%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Freal-estate-02%2F&#038;description=Real+Estate+02&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2018%2F12%2F16-4-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Freal-estate-02%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Freal-estate-02%2F&#038;title=Real+Estate+02&amp;summary=Lorem+ipsum+dolor+sit+amet+ipsum\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Freal-estate-02%2F&#038;title=Real+Estate+02\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Real Estate 02 <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet ipsum<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item bankingfinance col-md-3 col-sm-4 col-xs-4 item-animations-not-inited post-24716 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" style=\"padding: 0px;\" data-default-sort=\"0\" data-sort-date=\"1722283444\"> <div class=\"wrap clearfix\"> <div class=\"image post-24716 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/15-4-thegem-portfolio-masonry-2x-500.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/15-4.jpg 2x\" media=\"(max-width: 550px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/15-4-thegem-portfolio-masonry-3x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/15-4.jpg 2x\" media=\"(max-width: 1100px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/15-4-thegem-portfolio-masonry-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/15-4.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/15-4-thegem-portfolio-masonry.jpg\" width=\"754\" height=\"566\" class=\"attachment-thegem-portfolio-masonry\" alt=\"Villa For Rent\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/projects\/villa-for-rent\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/\" target=\"_self\" class=\"icon outer-link \"><i class=\"default\"><\/i><\/a> <a href=\"javascript: void(0);\" class=\"icon share\"><i class=\"default\"><\/i><\/a> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvilla-for-rent%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Villa+For+Rent&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvilla-for-rent%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvilla-for-rent%2F&#038;description=Villa+For+Rent&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2018%2F12%2F15-4-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvilla-for-rent%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvilla-for-rent%2F&#038;title=Villa+For+Rent&amp;summary=Lorem+ipsum+dolor+sit+amet+ipsum\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fvilla-for-rent%2F&#038;title=Villa+For+Rent\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Villa For Rent <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet ipsum<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item bankingfinance col-md-3 col-sm-4 col-xs-4 item-animations-not-inited post-24718 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" style=\"padding: 0px;\" data-default-sort=\"0\" data-sort-date=\"1722283459\"> <div class=\"wrap clearfix\"> <div class=\"image post-24718 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/14-6-thegem-portfolio-masonry-2x-500.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/14-6.jpg 2x\" media=\"(max-width: 550px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/14-6-thegem-portfolio-masonry-3x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/14-6.jpg 2x\" media=\"(max-width: 1100px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/14-6-thegem-portfolio-masonry-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/14-6.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/14-6-thegem-portfolio-masonry.jpg\" width=\"754\" height=\"566\" class=\"attachment-thegem-portfolio-masonry\" alt=\"Web Project\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/projects\/web-project\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/14-6.jpg\" target=\"_self\" class=\"icon full-image fancy\"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/\" target=\"_self\" class=\"icon inner-link \"><i class=\"default\"><\/i><\/a> <a href=\"javascript: void(0);\" class=\"icon share\"><i class=\"default\"><\/i><\/a> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fweb-project%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Web+Project&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fweb-project%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fweb-project%2F&#038;description=Web+Project&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2018%2F12%2F14-6-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fweb-project%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fweb-project%2F&#038;title=Web+Project&amp;summary=Lorem+ipsum+dolor+sit+amet+ipsum\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fweb-project%2F&#038;title=Web+Project\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Web Project <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet ipsum<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item bankingfinance col-md-3 col-sm-4 col-xs-4 item-animations-not-inited post-24720 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" style=\"padding: 0px;\" data-default-sort=\"0\" data-sort-date=\"1722283481\"> <div class=\"wrap clearfix\"> <div class=\"image post-24720 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/12-11-thegem-portfolio-masonry-2x-500.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/12-11.jpg 2x\" media=\"(max-width: 550px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/12-11-thegem-portfolio-masonry-3x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/12-11.jpg 2x\" media=\"(max-width: 1100px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/12-11-thegem-portfolio-masonry-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/12-11.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/12-11-thegem-portfolio-masonry.jpg\" width=\"754\" height=\"566\" class=\"attachment-thegem-portfolio-masonry\" alt=\"App Development\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/projects\/app-development\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/12-11.jpg\" target=\"_self\" class=\"icon full-image fancy\"><i class=\"default\"><\/i><\/a> <a href=\"javascript: void(0);\" class=\"icon share\"><i class=\"default\"><\/i><\/a> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fapp-development%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=App+Development&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fapp-development%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fapp-development%2F&#038;description=App+Development&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2018%2F12%2F12-11-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fapp-development%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fapp-development%2F&#038;title=App+Development&amp;summary=Lorem+ipsum+dolor+sit+amet+ipsum\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fprojects%2Fapp-development%2F&#038;title=App+Development\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> App Development <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet ipsum<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div><!-- .portflio-set --> <div class=\"portfolio-item-size-container\"> <div class=\"portfolio-item col-md-3 col-sm-4 col-xs-4 item-animations-not-inited post-24720 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" style=\"padding: 0 0px !important;\"> <\/div> <\/div> <\/div><!-- .row--> <div class=\"portfolio-navigator gem-pagination\"> <a href=\"#\" class=\"prev\"> <i class=\"default\"><\/i> <\/a> <div class=\"pages\"><\/div> <a href=\"#\" class=\"next\"> <i class=\"default\"><\/i> <\/a> <\/div> <\/div><!-- .full-width --> <\/div><!-- .portfolio--> <\/div><!-- .portfolio-preloader-wrapper-->[\/vc_column][\/vc_row][vc_row css_animation=&#8221;bottom-to-top&#8221; el_class=&#8221;new-testimonials-style&#8221;][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 140px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">CUSTOMERS ABOUT US<\/span><\/h1>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 80px;\"><\/div><div class=\"preloader\"><div class=\"preloader-spin\"><\/div><\/div><div class=\"size-medium style1 gem-testimonials fullwidth-block\" style=background-color:> <div id=\"post-24109\" class=\"gem-testimonial-item post-24109 thegem_testimonial type-thegem_testimonial status-publish has-post-thumbnail\"> <div class=\"gem-testimonial-wrapper quote-color-added \"> <div class=\"gem-testimonial-image\"> <img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/4-7-thegem-person-160.jpg\" class=\"img-responsive img-circle wp-post-image\" alt=\"4\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/4-7-thegem-testimonial.jpg 2x\" sizes=\"100vw\" \/> <\/div> <div class=\"gem-testimonial-content\"> <div class=\"gem-testimonial-name\" style=\"color: #f34238\">Jeniffer Burns<\/div> <div class=\"gem-testimonial-company\" style=\"color: #5f727f\">Creative Heads Inc.<\/div> <div class=\"gem-testimonial-text\" style=\"color: #5f727f\"> <p>TheGem comes with an extended powerful theme options panel, which allows you to customize just anything in an appearance of your website \u2013 with few clicks.<\/p> <\/div> <\/div> <span style=\"color: #707070 \" class=\"custom-color-blockqute-mark\">&#xe60c;<\/span> <\/div> <\/div> <div id=\"post-24110\" class=\"gem-testimonial-item post-24110 thegem_testimonial type-thegem_testimonial status-publish has-post-thumbnail\"> <div class=\"gem-testimonial-wrapper quote-color-added \"> <div class=\"gem-testimonial-image\"> <img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/5-6-thegem-person-160.jpg\" class=\"img-responsive img-circle wp-post-image\" alt=\"5\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/5-6-thegem-testimonial.jpg 2x\" sizes=\"100vw\" \/> <\/div> <div class=\"gem-testimonial-content\"> <div class=\"gem-testimonial-name\" style=\"color: #f34238\">Marcus Fields<\/div> <div class=\"gem-testimonial-company\" style=\"color: #5f727f\">Marketing Manager<\/div> <div class=\"gem-testimonial-text\" style=\"color: #5f727f\"> <p>This powerful theme was optimised to get the best performance results. Tested with pagespeed insights &amp;amp; co., it delivers even better results with super cache &amp;amp; minification.<\/p> <\/div> <\/div> <span style=\"color: #707070 \" class=\"custom-color-blockqute-mark\">&#xe60c;<\/span> <\/div> <\/div> <div class=\"testimonials_svg\"><svg style=\"fill: \" width=\"100\" height=\"50\"><path d=\"M 0,-1 Q 45,5 50,50 Q 55,5 100,-1\" \/><\/svg><\/div><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 130px;\"><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css_animation=&#8221;fadeIn&#8221; css=&#8221;.vc_custom_1545920043229{margin-bottom: 0px !important;background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/3-26.jpg?id=24744) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 110px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">OUR CLIENTS<\/span><\/h1>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<p style=\"text-align: center;\"><span style=\"color: #8e8e8e;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna<br \/>\naliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat<\/span>.[\/vc_column_text]<div class=\"fullwidth-block\"> <div class=\"gem-client-set-title\"> <div class=\"container\"> <div class=\"clients_title\"><h3> <\/h3><\/div> <\/div> <\/div> <div class=\"gem_client-carousel lazy-loading\" > <div class=\"preloader\"> <div class=\"preloader-spin\"><\/div> <\/div> <div class=\" gem_client_carousel-items\" data-autoscroll='5000'> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <a href=\"#\" target=\"_blank\" class=\"grayscale grayscale-hover rounded-corners \"><img width=\"200\" height=\"200\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/04\/2.png\" class=\" wp-post-image\" alt=\"2\" \/><\/a><\/div> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <a href=\"#\" target=\"_blank\" class=\"grayscale grayscale-hover rounded-corners \"><img width=\"200\" height=\"200\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/04\/19.png\" class=\" wp-post-image\" alt=\"19\" \/><\/a><\/div> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <a href=\"#\" target=\"_blank\" class=\"grayscale grayscale-hover rounded-corners \"><img width=\"200\" height=\"200\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/04\/20.png\" class=\" wp-post-image\" alt=\"20\" \/><\/a><\/div> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <a href=\"#\" target=\"_blank\" class=\"grayscale grayscale-hover rounded-corners \"><img width=\"200\" height=\"200\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/04\/9.png\" class=\" wp-post-image\" alt=\"9\" \/><\/a><\/div> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <a href=\"#\" target=\"_blank\" class=\"grayscale grayscale-hover rounded-corners \"><img width=\"200\" height=\"200\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/04\/12.png\" class=\" wp-post-image\" alt=\"12\" \/><\/a><\/div> <\/div> <\/div> <\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 20px;\"><\/div><style type=\"text\/css\">.thegem-button-69d04c2d5ea217941.lazy-loading-before-start-animation .lazy-loading-item {opacity: 0;} body.thegem-effects-disabled .thegem-button-69d04c2d5ea217941.lazy-loading-before-start-animation .lazy-loading-item {opacity: 1;}<\/style><div class=\"gem-button-container gem-button-position-center thegem-button-69d04c2d5ea217941 lazy-loading lazy-loading-before-start-animation\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-2 lazy-loading-item\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 25px;border-color: #f44336;color: #f44336;\" onmouseleave=\"this.style.borderColor='#f44336';this.style.backgroundColor='transparent';this.style.color='#f44336';\" onmouseenter=\"this.style.backgroundColor='#f44336';this.style.color='#ffffff';\" href=\"\" target=\"_self\">see all<\/a><\/div> <div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 130px;\"><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1458725736289{margin-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1461913227385{padding-top: 0px !important;}&#8221;]<div id=\"fullwidth-block-69d04c2d5ea40\" class=\"fullwidth-block clearfix\"  style=\"background-color: #f4f4f4;padding-top: 160px;padding-bottom: 110px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d04c2d5ea40\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">LATEST NEWS<\/span><\/h1>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 60px;\"><\/div>[vc_row_inner el_class=&#8221;new-post-style&#8221;][vc_column_inner offset=&#8221;vc_col-lg-6&#8243;]<div class=\"blog blog-style-default clearfix item-animation-move-up\" data-next-page=\"0\">\n<article id=\"post-15097\" class=\"item-animations-not-inited post-15097 post type-post status-publish format-standard has-post-thumbnail category-development\" style=\"background-color: #ffffff\"> <div class=\"item-post-container\"> <div class=\"item-post clearfix\"> <div class=\"post-image\"><div class=\"post-featured-content\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/business-post-6\/\"> <picture> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2016\/03\/22-2-thegem-blog-default-large.jpg\" width=\"800\" height=\"540\" class=\"img-responsive\" alt=\"22-2\" \/> <\/picture> <\/a><\/div><\/div> <div class=\"item-background-wrapper\"> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <span class=\"comments-link\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/business-post-6\/#respond\">0<\/a><\/span> <span class=\"sep\"><\/span> <span class=\"post-meta-likes\"><a href=\"#\" class=\"zilla-likes\" id=\"zilla-likes-15097\" title=\"Like this\"><span class=\"zilla-likes-count\">3<\/span> <span class=\"zilla-likes-postfix\"><\/span><\/a><\/span> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-author\">By John Doe<\/span> <span class=\"sep\"><\/span> <span class=\"post-meta-categories\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/category\/development\/\" title=\"View all posts in Development\">Development<\/a><\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <div class=\"post-title\"> <h3 class=\"entry-title\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/business-post-6\/\" rel=\"bookmark\"><span class=\"entry-title-date\">01 Dec: <\/span><span class=\"light\">Business Post<\/span><\/a><\/h3> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum.<\/p> <\/div> <\/div> <div class=\"post-footer\"> <div class=\"post-footer-sharing\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d5fecc4826\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-flat gem-button-text-weight-normal gem-button-empty\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"#\" target=\"_self\"><i class=\"gem-print-icon gem-icon-pack-thegem-icons gem-icon-share \"><\/i><\/a><\/div> <div class=\"sharing-popup\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-6%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Business+Post&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-6%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-6%2F&#038;description=Business+Post&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2016%2F03%2F22-2-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-6%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-6%2F&#038;title=Business+Post&amp;summary=Lorem+Ipsum.+Proin+gravida+nibh+vel+velit+auctor+aliquet.+Aenean+sollicitudin%2C+lorem+quis+bibendum+auctor%2C+nisi+elit+consequat+ipsum%2C+nec+sagittis+sem+nibh+id+elit.+Duis+sed+odio+sit+amet+nibh+vulputate+cursus+a+sit+amet+mauris.+Morbi+accumsan+ipsum+velit.+Nam+nec+tellus+a+odio+tincidunt+auctor+a+ornare+odio.+Sed+non+mauris+vitae+erat+consequat+auctor+eu+in+elit.+Aenean+sollicitudin%2C+lorem+quis+bibendum+auctor%2C+nisi+elit+consequat+ipsum%2C+nec+sagittis+sem.+Duis+sed+odio+sit+amet+nibh+vulputate+cursus+a+sit+amet+mauris.+Morbi+accumsan+ipsum.\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-6%2F&#038;title=Business+Post\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <svg class=\"sharing-styled-arrow\"><use xlink:href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow\"><\/use><\/svg><\/div><\/div> <div class=\"post-read-more\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d607be4392\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-outline gem-button-text-weight-normal gem-button-border-2\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/business-post-6\/\" target=\"_self\">Read More<\/a><\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/article><!-- #post-15097 -->\n<\/div>[\/vc_column_inner][vc_column_inner el_class=&#8221;blog-padding&#8221; width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3&#8243;]<div class=\"blog blog-style-default clearfix item-animation-move-up\" data-next-page=\"0\">\n<article id=\"post-24930\" class=\"item-animations-not-inited post-24930 post type-post status-publish format-standard has-post-thumbnail category-investments\" style=\"background-color: #ffffff\"> <div class=\"item-post-container\"> <div class=\"item-post clearfix\"> <div class=\"post-image\"><div class=\"post-featured-content\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-3\/\"> <picture> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2019\/01\/7_-thegem-blog-default-large.jpg\" width=\"1170\" height=\"540\" class=\"img-responsive\" alt=\"7_\" \/> <\/picture> <\/a><\/div><\/div> <div class=\"item-background-wrapper\"> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <span class=\"comments-link\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-3\/#respond\">0<\/a><\/span> <span class=\"sep\"><\/span> <span class=\"post-meta-likes\"><a href=\"#\" class=\"zilla-likes\" id=\"zilla-likes-24930\" title=\"Like this\"><span class=\"zilla-likes-count\">5<\/span> <span class=\"zilla-likes-postfix\"><\/span><\/a><\/span> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-categories\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/category\/investments\/\" title=\"View all posts in Investments\">Investments<\/a><\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <div class=\"post-title\"> <h3 class=\"entry-title\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-3\/\" rel=\"bookmark\"><span class=\"entry-title-date\">12 Aug: <\/span><span class=\"light\">Sparta post 3<\/span><\/a><\/h3> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis<\/p> <\/div> <\/div> <div class=\"post-footer\"> <div class=\"post-footer-sharing\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d61f7f4856\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-flat gem-button-text-weight-normal gem-button-empty\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"#\" target=\"_self\"><i class=\"gem-print-icon gem-icon-pack-thegem-icons gem-icon-share \"><\/i><\/a><\/div> <div class=\"sharing-popup\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-3%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Sparta+post+3&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-3%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-3%2F&#038;description=Sparta+post+3&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2019%2F01%2F7_-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-3%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-3%2F&#038;title=Sparta+post+3&amp;summary=Lorem+Ipsum.+Proin+gravida+nibh+vel+velit+auctor+aliquet.+Aenean+sollicitudin%2C+lorem+quis\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-3%2F&#038;title=Sparta+post+3\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <svg class=\"sharing-styled-arrow\"><use xlink:href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow\"><\/use><\/svg><\/div><\/div> <div class=\"post-read-more\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d627548417\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-outline gem-button-text-weight-normal gem-button-border-2\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-3\/\" target=\"_self\">Read More<\/a><\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/article><!-- #post-24930 --> <article id=\"post-24932\" class=\"item-animations-not-inited post-24932 post type-post status-publish format-standard has-post-thumbnail category-investments\" style=\"background-color: #ffffff\"> <div class=\"item-post-container\"> <div class=\"item-post clearfix\"> <div class=\"post-image\"><div class=\"post-featured-content\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-4\/\"> <picture> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/6_-thegem-blog-default-large.jpg\" width=\"1170\" height=\"540\" class=\"img-responsive\" alt=\"6_\" \/> <\/picture> <\/a><\/div><\/div> <div class=\"item-background-wrapper\"> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <span class=\"comments-link\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-4\/#respond\">0<\/a><\/span> <span class=\"sep\"><\/span> <span class=\"post-meta-likes\"><a href=\"#\" class=\"zilla-likes\" id=\"zilla-likes-24932\" title=\"Like this\"><span class=\"zilla-likes-count\">1<\/span> <span class=\"zilla-likes-postfix\"><\/span><\/a><\/span> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-categories\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/category\/investments\/\" title=\"View all posts in Investments\">Investments<\/a><\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <div class=\"post-title\"> <h3 class=\"entry-title\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-4\/\" rel=\"bookmark\"><span class=\"entry-title-date\">07 Aug: <\/span><span class=\"light\">Sparta post 4<\/span><\/a><\/h3> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis<\/p> <\/div> <\/div> <div class=\"post-footer\"> <div class=\"post-footer-sharing\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d6352d9468\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-flat gem-button-text-weight-normal gem-button-empty\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"#\" target=\"_self\"><i class=\"gem-print-icon gem-icon-pack-thegem-icons gem-icon-share \"><\/i><\/a><\/div> <div class=\"sharing-popup\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-4%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Sparta+post+4&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-4%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-4%2F&#038;description=Sparta+post+4&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2018%2F11%2F6_-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-4%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-4%2F&#038;title=Sparta+post+4&amp;summary=Lorem+Ipsum.+Proin+gravida+nibh+vel+velit+auctor+aliquet.+Aenean+sollicitudin%2C+lorem+quis\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-4%2F&#038;title=Sparta+post+4\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <svg class=\"sharing-styled-arrow\"><use xlink:href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow\"><\/use><\/svg><\/div><\/div> <div class=\"post-read-more\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d63c732134\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-outline gem-button-text-weight-normal gem-button-border-2\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-4\/\" target=\"_self\">Read More<\/a><\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/article><!-- #post-24932 -->\n<\/div>[\/vc_column_inner][vc_column_inner el_class=&#8221;blog-padding&#8221; width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-3&#8243;]<div class=\"blog blog-style-default clearfix item-animation-move-up\" data-next-page=\"0\">\n<article id=\"post-15122\" class=\"item-animations-not-inited post-15122 post type-post status-publish format-standard has-post-thumbnail category-business\" style=\"background-color: #ffffff\"> <div class=\"item-post-container\"> <div class=\"item-post clearfix\"> <div class=\"post-image\"><div class=\"post-featured-content\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/business-post-7\/\"> <picture> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2019\/01\/5_-thegem-blog-default-large.jpg\" width=\"1170\" height=\"540\" class=\"img-responsive\" alt=\"5_\" \/> <\/picture> <\/a><\/div><\/div> <div class=\"item-background-wrapper\"> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <span class=\"comments-link\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/business-post-7\/#respond\">0<\/a><\/span> <span class=\"sep\"><\/span> <span class=\"post-meta-likes\"><a href=\"#\" class=\"zilla-likes\" id=\"zilla-likes-15122\" title=\"Like this\"><span class=\"zilla-likes-count\">1<\/span> <span class=\"zilla-likes-postfix\"><\/span><\/a><\/span> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-categories\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/category\/business\/\" title=\"View all posts in Business\">Business<\/a><\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <div class=\"post-title\"> <h3 class=\"entry-title\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/business-post-7\/\" rel=\"bookmark\"><span class=\"entry-title-date\">31 Jul: <\/span><span class=\"light\">Sparta post<\/span><\/a><\/h3> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis<\/p> <\/div> <\/div> <div class=\"post-footer\"> <div class=\"post-footer-sharing\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d650ce9020\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-flat gem-button-text-weight-normal gem-button-empty\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"#\" target=\"_self\"><i class=\"gem-print-icon gem-icon-pack-thegem-icons gem-icon-share \"><\/i><\/a><\/div> <div class=\"sharing-popup\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-7%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Sparta+post&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-7%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-7%2F&#038;description=Sparta+post&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2019%2F01%2F5_-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-7%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-7%2F&#038;title=Sparta+post&amp;summary=Lorem+Ipsum.+Proin+gravida+nibh+vel+velit+auctor+aliquet.+Aenean+sollicitudin%2C+lorem+quis\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fbusiness-post-7%2F&#038;title=Sparta+post\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <svg class=\"sharing-styled-arrow\"><use xlink:href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow\"><\/use><\/svg><\/div><\/div> <div class=\"post-read-more\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d6584b626\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-outline gem-button-text-weight-normal gem-button-border-2\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/business-post-7\/\" target=\"_self\">Read More<\/a><\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/article><!-- #post-15122 --> <article id=\"post-24728\" class=\"item-animations-not-inited post-24728 post type-post status-publish format-standard has-post-thumbnail category-business\" style=\"background-color: #ffffff\"> <div class=\"item-post-container\"> <div class=\"item-post clearfix\"> <div class=\"post-image\"><div class=\"post-featured-content\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-2\/\"> <picture> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2019\/01\/8_-thegem-blog-default-large.jpg\" width=\"1170\" height=\"540\" class=\"img-responsive\" alt=\"8_\" \/> <\/picture> <\/a><\/div><\/div> <div class=\"item-background-wrapper\"> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <span class=\"comments-link\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-2\/#respond\">0<\/a><\/span> <span class=\"sep\"><\/span> <span class=\"post-meta-likes\"><a href=\"#\" class=\"zilla-likes\" id=\"zilla-likes-24728\" title=\"Like this\"><span class=\"zilla-likes-count\">0<\/span> <span class=\"zilla-likes-postfix\"><\/span><\/a><\/span> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-categories\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/category\/business\/\" title=\"View all posts in Business\">Business<\/a><\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <div class=\"post-title\"> <h3 class=\"entry-title\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-2\/\" rel=\"bookmark\"><span class=\"entry-title-date\">29 Jul: <\/span><span class=\"light\">Sparta Post 2<\/span><\/a><\/h3> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis<\/p> <\/div> <\/div> <div class=\"post-footer\"> <div class=\"post-footer-sharing\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d667e23862\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-flat gem-button-text-weight-normal gem-button-empty\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"#\" target=\"_self\"><i class=\"gem-print-icon gem-icon-pack-thegem-icons gem-icon-share \"><\/i><\/a><\/div> <div class=\"sharing-popup\"> <div class=\"socials-sharing socials socials-colored-hover\"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-2%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Sparta+Post+2&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-2%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-2%2F&#038;description=Sparta+Post+2&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fwp-content%2Fuploads%2F2019%2F01%2F8_-thegem-blog-timeline-large.jpg\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-2%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-2%2F&#038;title=Sparta+Post+2&amp;summary=Lorem+Ipsum.+Proin+gravida+nibh+vel+velit+auctor+aliquet.+Aenean+sollicitudin%2C+lorem+quis\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fbanking-finance%2Fsparta-post-2%2F&#038;title=Sparta+Post+2\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <svg class=\"sharing-styled-arrow\"><use xlink:href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow\"><\/use><\/svg><\/div><\/div> <div class=\"post-read-more\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69d04c2d66fdf2817\" ><a class=\"gem-button gem-button-size-tiny gem-button-style-outline gem-button-text-weight-normal gem-button-border-2\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/sparta-post-2\/\" target=\"_self\">Read More<\/a><\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/article><!-- #post-24728 -->\n<\/div>[\/vc_column_inner][\/vc_row_inner]<\/div><\/div><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 150px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">hiring now<\/span><\/h1>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 100px;\"><\/div>[\/vc_column][\/vc_row][vc_row el_class=&#8221;new-textbox&#8221;][vc_column css_animation=&#8221;bottom-to-top&#8221;]<div class=\"gem-team row inline-row gem-team-style-5\" data-hover-colors=\"{&quot;name_color&quot;:&quot;#f74038&quot;,&quot;image_border_color&quot;:&quot;#f1f2f4&quot;}\" > <div class=\"col-md-3 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-24893\" class=\"team-person centered-box default-background post-24893 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff\"><div class=\"team-person-hover\"> <div class=\"team-person-image\"> <span><span class=\"image-hover\" > <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/1-thegem-person-240.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/1-thegem-person.jpg 2x\" media=\"(max-width: 1000px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/1-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/1-thegem-person.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/1-thegem-person.jpg\" width=\"400\" height=\"400\" class=\"img-responsive\" alt=\"1\" \/> <\/picture> <\/span><\/span> <\/div> <div class=\"team-person-info\"> <div class=\"team-person-name title-h5\" >GRAPHIC DESIGNER<\/div> <div class=\"team-person-position date-color\" >Full time<\/div> <div class=\"team-person-description\" style=\"color: #212121\"><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore<\/p>\n<\/div> <div class=\"team-person-phone styled-subtitle\"><a href=\"tel:+1%20(987)%201625346\">+1 (987) 1625346<\/a><\/div> <div class=\"team-person-email\"><a href=\"mailto:info@domain.tld\">info@domain.tld<\/a><\/div> <\/div> <\/div><a class=\"team-person-link\" href=\"\/thegem\/sites\/banking-finance\/about-us\/our-team\/emerson-anderson\/\" target=\"_self\"><\/a><\/div> <\/div> <div class=\"col-md-3 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-24896\" class=\"team-person centered-box default-background post-24896 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff\"><div class=\"team-person-hover\"> <div class=\"team-person-image\"> <span><span class=\"image-hover\" > <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/2-thegem-person-240.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/2-thegem-person.jpg 2x\" media=\"(max-width: 1000px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/2-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/2-thegem-person.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/2-thegem-person.jpg\" width=\"400\" height=\"400\" class=\"img-responsive\" alt=\"2\" \/> <\/picture> <\/span><\/span> <\/div> <div class=\"team-person-info\"> <div class=\"team-person-name title-h5\" >TEAM LEADER<\/div> <div class=\"team-person-position date-color\" >Full time<\/div> <div class=\"team-person-description\" style=\"color: #212121\"><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore<\/p>\n<\/div> <div class=\"team-person-phone styled-subtitle\"><a href=\"tel:+1%20(987)%201625346\">+1 (987) 1625346<\/a><\/div> <div class=\"team-person-email\"><a href=\"mailto:info@domain.tld\">info@domain.tld<\/a><\/div> <\/div> <\/div><a class=\"team-person-link\" href=\"\/thegem\/sites\/banking-finance\/about-us\/our-team\/emerson-anderson\/\" target=\"_self\"><\/a><\/div> <\/div> <div class=\"col-md-3 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-24897\" class=\"team-person centered-box default-background post-24897 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff\"><div class=\"team-person-hover\"> <div class=\"team-person-image\"> <span><span class=\"image-hover\" > <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/3-thegem-person-240.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/3-thegem-person.jpg 2x\" media=\"(max-width: 1000px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/3-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/3-thegem-person.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/3-thegem-person.jpg\" width=\"400\" height=\"400\" class=\"img-responsive\" alt=\"3\" \/> <\/picture> <\/span><\/span> <\/div> <div class=\"team-person-info\"> <div class=\"team-person-name title-h5\" >HR MANAGER<\/div> <div class=\"team-person-position date-color\" >Full time<\/div> <div class=\"team-person-description\" style=\"color: #212121\"><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore<\/p>\n<\/div> <div class=\"team-person-phone styled-subtitle\"><a href=\"tel:+1%20(987)%201625346\">+1 (987) 1625346<\/a><\/div> <div class=\"team-person-email\"><a href=\"mailto:info@domain.tld\">info@domain.tld<\/a><\/div> <\/div> <\/div><a class=\"team-person-link\" href=\"\/thegem\/sites\/banking-finance\/about-us\/our-team\/emerson-anderson\/\" target=\"_self\"><\/a><\/div> <\/div> <div class=\"col-md-3 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-24898\" class=\"team-person centered-box default-background post-24898 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff\"><div class=\"team-person-hover\"> <div class=\"team-person-image\"> <span><span class=\"image-hover\" > <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/3-thegem-person-240.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/3-thegem-person.jpg 2x\" media=\"(max-width: 1000px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/3-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/3-thegem-person.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/11\/3-thegem-person.jpg\" width=\"400\" height=\"400\" class=\"img-responsive\" alt=\"3\" \/> <\/picture> <\/span><\/span> <\/div> <div class=\"team-person-info\"> <div class=\"team-person-name title-h5\" >HR MANAGER<\/div> <div class=\"team-person-position date-color\" >Full time<\/div> <div class=\"team-person-description\" style=\"color: #212121\"><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore<\/p>\n<\/div> <div class=\"team-person-phone styled-subtitle\"><a href=\"tel:+1%20(987)%201625346\">+1 (987) 1625346<\/a><\/div> <div class=\"team-person-email\"><a href=\"mailto:info@domain.tld\">info@domain.tld<\/a><\/div> <\/div> <\/div><a class=\"team-person-link\" href=\"\/thegem\/sites\/banking-finance\/about-us\/our-team\/emerson-anderson\/\" target=\"_self\"><\/a><\/div> <\/div> <\/div>[\/vc_column][\/vc_row][vc_row el_class=&#8221;new-contact-form&#8221;][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 30px;\"><\/div><div id=\"fullwidth-block-69d04c2d69f02\" class=\"fullwidth-block clearfix\"  style=\"padding-top: 140px;padding-bottom: 110px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69d04c2d69f02\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-content\/uploads\/2018\/12\/5-24.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">CONTACT US<\/span><\/h1>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -50px;\"><\/div><div class=\"quickfinder quickfinder-style-classic quickfinder-binded row inline-row quickfinder-icon-position-top quickfinder-alignment-left quickfinder-title-bold\"><div id=\"post-15289\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-15289 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf3e4;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf3e4;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #ffffff;\">Address<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">908 New Hampshire Avenue<br \/>\nNorthwest #100, Washington, DC<br \/>\n20037, United States<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div id=\"post-15290\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-15290 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf477;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf477;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #ffffff;\">Phones<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Phone: +1 916-875-2235<br \/>\nMobile: +1 916-875-2235<br \/>\nFax: +1 916-875-2235<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div id=\"post-15291\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-15291 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf2af;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf2af;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #ffffff;\">contacts<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">info@domain.ltd<br \/>\nthegem@domain.ltd<br \/>\nwww.codex-themes.com<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div id=\"post-15292\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-3 col-xs-6 quickfinder-item-effect-simple icon-size-small quickfinder-box-style-solid lazy-loading post-15292 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-material gem-icon-size-small gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf221;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #f44336;\"><span class=\"back-angle\">&#xf221;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #ffffff;\">working hours<\/div> <div class=\"quickfinder-item-text\" style=\"color: #9e9e9e;\">Monday-Friday: 9:00 \u2013 18:00<br \/>\nSaturday: 11:00 \u2013 17:00<br \/>\nSunday: Closed<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div><div role=\"form\" class=\"wpcf7\" id=\"wpcf7-f24422-o1\" lang=\"en-US\" dir=\"ltr\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/thegem\/sites\/banking-finance\/wp-json\/wp\/v2\/pages\/14273#wpcf7-f24422-o1\" method=\"post\" class=\"wpcf7-form init gem-contact-form-dark\" novalidate=\"novalidate\" data-status=\"init\">\n<div style=\"display: none;\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"24422\" \/>\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.2\" \/>\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/>\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f24422-o1\" \/>\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/>\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/div>\n<div class=\"row\">\n<div class=\"form-line col-lg-4 col-md-4 col-xs-12\">\n<div class=\"gem-form-icon-name\"><span class=\"wpcf7-form-control-wrap your-name\"><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" \/><\/span><\/div>\n<\/div>\n<div class=\"form-line col-lg-4 col-md-4 col-xs-12\">\n<div class=\"gem-form-icon-email\"><span class=\"wpcf7-form-control-wrap your-email\"><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" class=\"wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email*\" \/><\/span><\/div>\n<\/div>\n<div class=\"form-line col-lg-4 col-md-4 col-xs-12\">\n<div class=\"gem-form-icon-website\"><span class=\"wpcf7-form-control-wrap your-website\"><input type=\"text\" name=\"your-website\" value=\"\" size=\"40\" class=\"wpcf7-form-control wpcf7-text\" aria-invalid=\"false\" placeholder=\"Website*\" \/><\/span><\/div>\n<\/div>\n<div class=\"form-line col-lg-12 col-md-12 col-xs-12\"><span class=\"wpcf7-form-control-wrap your-message\"><textarea name=\"your-message\" cols=\"40\" rows=\"10\" class=\"wpcf7-form-control wpcf7-textarea wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message\"><\/textarea><\/span><\/div>\n<div class=\"col-lg-12 col-md-12 col-xs-12\"><div class=\"gem-button-container gem-button-position-center thegem-button-69d04c2d6ab621137\" ><input class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-normal gem-button-border-3 wpcf7-form-control wpcf7-submit gem-button-wpcf-custom\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 50px;border-color: #f44336;color: #f44336;\" onmouseleave=\"this.style.borderColor='#f44336';this.style.backgroundColor='transparent';this.style.color='#f44336';\" onmouseenter=\"this.style.borderColor='#f44336';this.style.backgroundColor='#f44336';this.style.color='#fff';\" id=\"\" tabindex=\"\" type=\"submit\" value=\"SUBMIT MESSAGE\" \/><\/div> <\/div>\n<\/div>\n<div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div><\/form><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row el_class=&#8221;new-socials&#8221;][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 90px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h2 style=\"text-align: center;\"><span style=\"color: #212121;\">FOLLOW us<\/span><\/h2>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div><div class=\"socials socials-list socials-colored-hover socials-square socials-alignment-center\"><a class=\"socials-item\" target=\"_blank\" href=\"#\" style=\"color: #f44336;\"><i class=\"socials-item-icon facebook\" style=\"font-size: 35px\"><\/i><\/a><a class=\"socials-item\" target=\"_blank\" href=\"#\" style=\"color: #f44336;\"><i class=\"socials-item-icon twitter\" style=\"font-size: 35px\"><\/i><\/a><a class=\"socials-item\" target=\"_blank\" href=\"#\" style=\"color: #f44336;\"><i class=\"socials-item-icon youtube\" style=\"font-size: 35px\"><\/i><\/a><a class=\"socials-item\" target=\"_blank\" href=\"#\" style=\"color: #f44336;\"><i class=\"socials-item-icon instagram\" style=\"font-size: 35px\"><\/i><\/a><a class=\"socials-item\" target=\"_blank\" href=\"#\" style=\"color: #f44336;\"><i class=\"socials-item-icon linkedin\" style=\"font-size: 35px\"><\/i><\/a><a class=\"socials-item\" target=\"_blank\" href=\"#\" style=\"color: #f44336;\"><i class=\"socials-item-icon skype\" style=\"font-size: 35px\"><\/i><\/a><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 110px;\"><\/div>[vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<p style=\"text-align: center;\"><span style=\"color: #9e9e9e;\">\u00a9 Copyright<\/span>\u00a0<span style=\"color: #f44336;\">CodexThemes<\/span><\/p>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 60px;\"><\/div>[\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content&#8221; full_height=&#8221;yes&#8221; ken_burns_direction=&#8221;zoom_out&#8221; ken_burns_transition_speed=&#8221;15000&#8243; ken_burns_enabled=&#8221;true&#8221; css=&#8221;.vc_custom_1637581087346{margin-bottom: 0px !important;}&#8221; ken_burns_image=&#8221;24683&#8243;][vc_column css=&#8221;.vc_custom_1637582858775{padding-top: 150px !important;}&#8221;][vc_row_inner css=&#8221;.vc_custom_1638373703886{margin-bottom: 0px !important;}&#8221;][vc_column_inner el_class=&#8221;custom-button-align&#8221; css=&#8221;.vc_custom_1638373721086{padding-top: 0px !important;}&#8221;][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"_links":{"self":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-json\/wp\/v2\/pages\/14273"}],"collection":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-json\/wp\/v2\/comments?post=14273"}],"version-history":[{"count":97,"href":"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-json\/wp\/v2\/pages\/14273\/revisions"}],"predecessor-version":[{"id":25152,"href":"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-json\/wp\/v2\/pages\/14273\/revisions\/25152"}],"wp:attachment":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/banking-finance\/wp-json\/wp\/v2\/media?parent=14273"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}