<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":477,"date":"2018-12-11T14:27:45","date_gmt":"2018-12-11T14:27:45","guid":{"rendered":"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/?page_id=477"},"modified":"2021-12-01T15:10:11","modified_gmt":"2021-12-01T15:10:11","slug":"homepage","status":"publish","type":"page","link":"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/","title":{"rendered":"Homepage"},"content":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;middle&#8221; ken_burns_direction=&#8221;zoom_out&#8221; ken_burns_transition_speed=&#8221;10000&#8243; ken_burns_enabled=&#8221;true&#8221; ken_burns_image=&#8221;537&#8243; css=&#8221;.vc_custom_1637851870971{padding-top: 200px !important;padding-bottom: 200px !important;}&#8221; mobile_padding_top=&#8221;100&#8243; mobile_padding_bottom=&#8221;100&#8243; el_class=&#8221;custom-paddings&#8221;][vc_column]<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-69ea21e2973a8\" class=\"thegem-heading title-h1 vc_custom_1637930430868 words-slide-left thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #3c3950; animation-delay: 120ms\">We<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #3c3950; animation-delay: 240ms\">provide<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #3c3950; animation-delay: 360ms\">total<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69ea21e2973a8 {margin: 0;}#thegem-heading-69ea21e2973a8 {font-size: 56px;}#thegem-heading-69ea21e2973a8 {letter-spacing: 0px;}#thegem-heading-69ea21e2973a8, #thegem-heading-69ea21e2973a8 .light {text-transform: uppercase;}@media screen and (max-width: 767px) {#thegem-heading-69ea21e2973a8 {font-size: 36px;}}<\/style><div id=\"thegem-heading-69ea21e299370\" class=\"thegem-heading title-xlarge vc_custom_1637930477949 words-slide-up thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #00a4ef; animation-delay: 440ms\">Health<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #00a4ef; animation-delay: 580ms\">care<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69ea21e299370 {margin: 0;}#thegem-heading-69ea21e299370 {font-size: 76px;}#thegem-heading-69ea21e299370 {line-height: 86px;}#thegem-heading-69ea21e299370, #thegem-heading-69ea21e299370 .light {text-transform: uppercase;}@media screen and (max-width: 767px) {#thegem-heading-69ea21e299370 {font-size: 40px;}}@media screen and (max-width: 767px) {#thegem-heading-69ea21e299370 {line-height: 50px;}}#thegem-heading-69ea21e299370 .thegem-heading-word {animation-timing-function: cubic-bezier(0.25,1,0.5,1);}<\/style><div id=\"thegem-heading-69ea21e2993cf\" class=\"thegem-heading styled-subtitle vc_custom_1638371410084 lines-slide-up thegem-heading-animate\" style=\"text-align: left;\" data-animation-name=\"lines-slide-up\" data-animation-delay=\"500\" data-animation-interval=\"80\"><span class=\"thegem-heading-word\" style=\"color: #3c3950;\">Not<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">just<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">better<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">healthcare,<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">but<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">a<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">better<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">healthcare<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">experience<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">serving<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">all<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">people<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">through<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">exemplary<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">research,<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">education<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">and<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">community<\/span> <span class=\"thegem-heading-word\" style=\"color: #3c3950;\">outreach.<\/span><\/div><style type=\"text\/css\">#thegem-heading-69ea21e2993cf {margin: 0;}#thegem-heading-69ea21e2993cf {max-width: 715px;}<\/style><style type=\"text\/css\">.thegem-button-69ea21e2994b37172 .gem-button {opacity:0;animation-delay:800ms !important}<\/style><div class=\"gem-button-container gem-button-position-left thegem-button-69ea21e2994b37172 thegem-advanced-animation thegem-advanced-animation-slide-up\" ><a title=\"Contact\" class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-thin\" style=\"border-radius: 0px;background-color: #00a4ef;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#00a4ef';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#3c3950';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center-new\/contact\/\" target=\"_self\">Online help<\/a><\/div> [\/vc_column][\/vc_row][vc_row el_disable_mobile=&#8221;1&#8243; css=&#8221;.vc_custom_1637320970276{margin-top: -100px !important;}&#8221; el_class=&#8221;z-index&#8221;][vc_column][vc_column_text]<a class=\"mouse-scroll scroll-to-anchor\" href=\"#details\">mouse<\/a>[\/vc_column_text][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1637320823692{margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221; el_class=&#8221;custom-image&#8221; el_id=&#8221;details&#8221;][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 135px;\"><\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1478783677232{padding-right: 0px !important;padding-left: 0px !important;}&#8221; offset=&#8221;vc_col-lg-6 vc_col-md-12&#8243;]<div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered\"  style=\"\"><div class=\"gem-wrapbox-inner \" ><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-1-1.jpg\" alt=\"\"\/><\/div><\/div><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -30px;\"><\/div>[\/vc_column][vc_column offset=&#8221;vc_col-lg-6&#8243;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 32px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"title-h4\"><span style=\"color: #3c3950;\">Welcome to <\/span>thegem<\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -20px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"title-h1\"><span style=\"color: #00a4ef;\">Medical center<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 30px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"styled-subtitle\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.<\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 26px;\"><\/div>[vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"title-h4\">our mission<\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div><div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border: 1px solid #cccccc;\"><div class=\"gem-textbox-content\" style=\"background-position: center top;padding-top: 8px;padding-bottom: 16px;\"><div class=\"gem-dropcap gem-dropcap-shape-circle gem-dropcap-style-medium\"><span class=\"gem-dropcap-letter\" style=\"color: #ffffff;background-color: #008fd0;\">1<\/span><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -52px;\"><\/div>[vc_column_text]<span style=\"color: #008fd0;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0<\/span>[\/vc_column_text]<\/div><\/div><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -24px;\"><\/div><div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border: 1px solid #cccccc;\"><div class=\"gem-textbox-content\" style=\"background-position: center top;padding-top: 8px;padding-bottom: 16px;\"><div class=\"gem-dropcap gem-dropcap-shape-circle gem-dropcap-style-medium\"><span class=\"gem-dropcap-letter\" style=\"color: #ffffff;background-color: #00a4ef;\">2<\/span><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -52px;\"><\/div>[vc_column_text]<span style=\"color: #00a4ef;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0<\/span>[\/vc_column_text]<\/div><\/div><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -25px;\"><\/div><div class=\"gem-textbox \"  ><div class=\"gem-textbox-inner\" style=\"border: 1px solid #cccccc;\"><div class=\"gem-textbox-content\" style=\"background-position: center top;padding-top: 8px;padding-bottom: 16px;\"><div class=\"gem-dropcap gem-dropcap-shape-circle gem-dropcap-style-medium\"><span class=\"gem-dropcap-letter\" style=\"color: #ffffff;background-color: #2ab6f6;\">3<\/span><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -52px;\"><\/div>[vc_column_text]<span style=\"color: #2ab6f6;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0<\/span>[\/vc_column_text]<\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1477486216071{margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69ea21e299eb6\" class=\"fullwidth-block fullwidth-block-parallax-vertical clearfix\" data-mobile-parallax-enable=\"0\" style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69ea21e299eb6\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/6.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\"><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 139px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"title-h2\" style=\"text-align: center;\"><span style=\"color: #00a4ef;\">OUR <span style=\"color: #3c3950;\">DEPARTMENT<\/span><\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 33px;\"><\/div>[vc_row_inner css=&#8221;.vc_custom_1544611021788{margin-bottom: 0px !important;}&#8221;][vc_column_inner offset=&#8221;vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10&#8243;][vc_column_text]<\/p>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.<\/p>\n<p>[\/vc_column_text][\/vc_column_inner][\/vc_row_inner]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -12px;\"><\/div><div class=\"quickfinder quickfinder-style-iconed row inline-row quickfinder-icon-position-top quickfinder-alignment-center quickfinder-title-bold\" data-hover-border-color=\"#00a4ef\" data-hover-title-color=\"#00a4ef\"><div id=\"post-321\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 quickfinder-item-effect-image-scale icon-size-medium quickfinder-box-style-soft-outlined lazy-loading post-321 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: #ffffff;border-color: #dfe5e8;\"> <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\" style=\"\"> <img width=\"80\" height=\"80\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/1.png\" class=\" quickfinder-img-size-medium wp-post-image\" alt=\"1\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/1-thegem-person-80.png 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/1.png 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: #3c3950;\">PULMONARY<\/div> <div class=\"quickfinder-item-text\" style=\"color: #5f727f;\">Lorem ipsum dolor sit amet, consectetur aditpisicing elit, sed do eiusmod tempor.<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-343\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 quickfinder-item-effect-image-scale icon-size-medium quickfinder-box-style-soft-outlined lazy-loading post-343 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: #ffffff;border-color: #dfe5e8;\"> <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\" style=\"\"> <img width=\"80\" height=\"80\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2.png\" class=\" quickfinder-img-size-medium wp-post-image\" alt=\"2\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-thegem-person-80.png 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2.png 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: #3c3950;\">CARDIOLOGY<\/div> <div class=\"quickfinder-item-text\" style=\"color: #5f727f;\">Lorem ipsum dolor sit amet, consectetur aditpisicing elit, sed do eiusmod tempor.<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-342\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 quickfinder-item-effect-image-scale icon-size-medium quickfinder-box-style-soft-outlined lazy-loading post-342 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: #ffffff;border-color: #dfe5e8;\"> <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\" style=\"\"> <img width=\"80\" height=\"80\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3.png\" class=\" quickfinder-img-size-medium wp-post-image\" alt=\"3\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-thegem-person-80.png 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3.png 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: #3c3950;\">NEUROLOGY<\/div> <div class=\"quickfinder-item-text\" style=\"color: #5f727f;\">Lorem ipsum dolor sit amet, consectetur aditpisicing elit, sed do eiusmod tempor.<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-344\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 quickfinder-item-effect-image-scale icon-size-medium quickfinder-box-style-soft-outlined lazy-loading post-344 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: #ffffff;border-color: #dfe5e8;\"> <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\" style=\"\"> <img width=\"80\" height=\"80\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4.png\" class=\" quickfinder-img-size-medium wp-post-image\" alt=\"4\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-thegem-person-80.png 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4.png 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: #3c3950;\">DENTAL CARE<\/div> <div class=\"quickfinder-item-text\" style=\"color: #5f727f;\">Lorem ipsum dolor sit amet, consectetur aditpisicing elit, sed do eiusmod tempor.<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-345\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 quickfinder-item-effect-image-scale icon-size-medium quickfinder-box-style-soft-outlined lazy-loading post-345 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: #ffffff;border-color: #dfe5e8;\"> <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\" style=\"\"> <img width=\"80\" height=\"80\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5.png\" class=\" quickfinder-img-size-medium wp-post-image\" alt=\"5\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-thegem-person-80.png 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5.png 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: #3c3950;\">UROLOGY<\/div> <div class=\"quickfinder-item-text\" style=\"color: #5f727f;\">Lorem ipsum dolor sit amet, consectetur aditpisicing elit, sed do eiusmod tempor.<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-346\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 quickfinder-item-effect-image-scale icon-size-medium quickfinder-box-style-soft-outlined lazy-loading post-346 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: #ffffff;border-color: #dfe5e8;\"> <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\" style=\"\"> <img width=\"80\" height=\"80\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/6.png\" class=\" quickfinder-img-size-medium wp-post-image\" alt=\"6\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/6-thegem-person-80.png 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/6.png 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: #3c3950;\">EYE CARE<\/div> <div class=\"quickfinder-item-text\" style=\"color: #5f727f;\">Lorem ipsum dolor sit amet, consectetur aditpisicing elit, sed do eiusmod tempor.<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 90px;\"><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;top&#8221; css=&#8221;.vc_custom_1544598397373{margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column disable_custom_paddings_mobile=&#8221;true&#8221; css=&#8221;.vc_custom_1550760612577{padding-right: 50px !important;padding-left: 50px !important;}&#8221; offset=&#8221;vc_col-lg-4 vc_col-md-6 vc_col-xs-12&#8243; el_class=&#8221;custom-paddings&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 62px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"title-h4\" style=\"text-align: center;\"><span style=\"color: #00a4ef;\">working<\/span> hours<\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -6px;\"><\/div>[vc_column_text]<\/p>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit.<\/p>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 45px;\"><\/div><div class=\"gem-table  gem-table-style-1\"><table style=\"width: 100%;\">\n<thead><\/thead>\n<tbody>\n<tr>\n<td>Monday &#8211; Thursday:<\/td>\n<td style=\"text-align: right;\">10:00 am \u2013 2:00 pm<\/td>\n<\/tr>\n<tr>\n<td>Friday:<\/td>\n<td style=\"text-align: right;\">12:00 am \u2013 3:00 pm<\/td>\n<\/tr>\n<tr>\n<td>Saturday:<\/td>\n<td style=\"text-align: right;\">13:00 am \u2013 3:00 pm<\/td>\n<\/tr>\n<tr>\n<td>Sunday:<\/td>\n<td style=\"text-align: right;\">10:00 am \u2013 2:00 pm<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 75px;\"><\/div>[\/vc_column][vc_column disable_custom_paddings_tablet=&#8221;true&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; css=&#8221;.vc_custom_1544539911884{padding-right: 60px !important;padding-left: 60px !important;background-color: #00a4ef !important;}&#8221; offset=&#8221;vc_col-lg-4 vc_col-md-6 vc_col-xs-12&#8243;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 30px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"title-h4\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">BOOK AN APPOINTMENT<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 41px;\"><\/div><div role=\"form\" class=\"wpcf7\" id=\"wpcf7-f494-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\/medical-center\/wp-json\/wp\/v2\/pages\/477#wpcf7-f494-o1\" method=\"post\" class=\"wpcf7-form init gem-contact-form-white gem-contact-form-simple-line\" novalidate=\"novalidate\" data-status=\"init\">\n<div style=\"display: none;\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"494\" \/>\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-f494-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 medical-center\">\n<p class=\"col-lg-6 col-md-6 col-xs-12\"><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><\/p>\n<p class=\"col-lg-6 col-md-6 col-xs-12\"><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><\/p>\n<p class=\"col-lg-6 col-md-6 col-xs-12\"><span class=\"wpcf7-form-control-wrap department\"><select name=\"department\" class=\"wpcf7-form-control wpcf7-select wpcf7-validates-as-required gem-combobox\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Department*\">Department*<\/option><option value=\"Coloring\">Coloring<\/option><option value=\"Cuttung\">Cuttung<\/option><option value=\"Styling\">Styling<\/option><\/select><\/span><\/p>\n<p class=\"col-lg-6 col-md-6 col-xs-12\"><span class=\"wpcf7-form-control-wrap date\"><select name=\"date\" class=\"wpcf7-form-control wpcf7-select wpcf7-validates-as-required gem-combobox\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Date\">Date<\/option><option value=\"Now\">Now<\/option><option value=\"Tommorow\">Tommorow<\/option><option value=\"Next Week\">Next Week<\/option><\/select><\/span><\/p>\n<p class=\"col-lg-12 col-md-12 col-xs-12\"><span class=\"wpcf7-form-control-wrap your-message\"><textarea name=\"your-message\" cols=\"30\" rows=\"1\" class=\"wpcf7-form-control wpcf7-textarea wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message\"><\/textarea><\/span><\/p>\n<div class=\"gem-button-container gem-button-position-center thegem-button-69ea21e29ec0a424\" ><input class=\"gem-button gem-button-size-small gem-button-style-outline gem-button-text-weight-thin gem-button-border-1 wpcf7-form-control wpcf7-submit gem-button-wpcf-custom\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;border-color: #fff;color: #fff;\" onmouseleave=\"this.style.borderColor='#fff';this.style.backgroundColor='transparent';this.style.color='#fff';\" onmouseenter=\"this.style.backgroundColor='#fff';this.style.color='#00a4ef';\" id=\"\" tabindex=\"\" type=\"submit\" value=\"Make an appointment\" \/><\/div><\/div>\n<div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div><\/form><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div>[\/vc_column][vc_column width=&#8221;1\/3&#8243; css=&#8221;.vc_custom_1544539855492{background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-6.jpg?id=418) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; offset=&#8221;vc_hidden-md vc_hidden-sm vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 400px;\"><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1477489035415{margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69ea21e29ec40\" class=\"fullwidth-block clearfix\"  style=\"background-color: #042938;padding-top: 33px;padding-bottom: 28px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69ea21e29ec40\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\"><div data-number-format=\"(ddd).ddd\" class=\"gem-counter-box row inline-row inline-row-center gem-counter-style-1 lazy-loading lazy-loading-not-hide\" ><div class=\"gem-counter col-md-3 col-sm-4 col-xs-6 inline-column gem-counter-effect-simple\" ><div class=\"gem-counter-inner\"><div class=\"gem-counter-number\" style=\"color: #00a4ef\"><div class=\"gem-counter-odometer\" data-to=\"120\">0<\/div><\/div><div class=\"gem-counter-text styled-subtitle\" style=\"color: #ffffff\">Hospital Rooms<\/div><\/div><\/div><div class=\"gem-counter col-md-3 col-sm-4 col-xs-6 inline-column gem-counter-effect-simple\" ><div class=\"gem-counter-inner\"><div class=\"gem-counter-number\" style=\"color: #00a4ef\"><div class=\"gem-counter-odometer\" data-to=\"790\">0<\/div><\/div><div class=\"gem-counter-text styled-subtitle\" style=\"color: #ffffff\">Satisfied Patients<\/div><\/div><\/div><div class=\"gem-counter col-md-3 col-sm-4 col-xs-6 inline-column gem-counter-effect-simple\" ><div class=\"gem-counter-inner\"><div class=\"gem-counter-number\" style=\"color: #00a4ef\"><div class=\"gem-counter-odometer\" data-to=\"345\">0<\/div><\/div><div class=\"gem-counter-text styled-subtitle\" style=\"color: #ffffff\">Qualified Staff<\/div><\/div><\/div><div class=\"gem-counter col-md-3 col-sm-4 col-xs-6 inline-column gem-counter-effect-simple\" ><div class=\"gem-counter-inner\"><div class=\"gem-counter-number\" style=\"color: #00a4ef\"><div class=\"gem-counter-odometer\" data-to=\"230\">0<\/div><\/div><div class=\"gem-counter-text styled-subtitle\" style=\"color: #ffffff\">Doctor Awards<\/div><\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; equal_height=&#8221;yes&#8221; css=&#8221;.vc_custom_1477657967167{margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1544600097790{background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-1.jpg?id=504) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; offset=&#8221;vc_hidden-md vc_hidden-sm vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 400px;\"><\/div><div class=\"gem-dropcap gem-dropcap-shape-square gem-dropcap-style-medium\"><span class=\"gem-dropcap-letter\" style=\"\"><\/span><\/div>[\/vc_column][vc_column el_class=&#8221;custom-qf&#8221; offset=&#8221;vc_col-lg-6&#8243;]<div class=\"quickfinder quickfinder-style-classic row inline-row quickfinder-icon-position-top quickfinder-alignment-center quickfinder-title-bold\" data-hover-icon-color=\"#3c3950\"><div id=\"post-505\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-6 col-sm-6 col-xs-12 quickfinder-item-effect-simple icon-size-medium quickfinder-box-style-solid lazy-loading post-505 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-medium gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #00a4ef;\"><span class=\"back-angle\">&#xf221;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #00a4ef;\"><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: #3c3950;\">Call Center 24\/7<\/div> <div class=\"quickfinder-item-text\" style=\"color: #6a7b88;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.<br \/>\n<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-507\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-6 col-sm-6 col-xs-12 quickfinder-item-effect-simple icon-size-medium quickfinder-box-style-solid lazy-loading post-507 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-medium gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #00a4ef;\"><span class=\"back-angle\">&#xf10e;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #00a4ef;\"><span class=\"back-angle\">&#xf10e;<\/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: #3c3950;\">Professional staff<\/div> <div class=\"quickfinder-item-text\" style=\"color: #6a7b88;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.<br \/>\n<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-508\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-6 col-sm-6 col-xs-12 quickfinder-item-effect-simple icon-size-medium quickfinder-box-style-solid lazy-loading post-508 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-medium gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #00a4ef;\"><span class=\"back-angle\">&#xf57f;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #00a4ef;\"><span class=\"back-angle\">&#xf57f;<\/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: #3c3950;\">Modern Equipment<\/div> <div class=\"quickfinder-item-text\" style=\"color: #6a7b88;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.<br \/>\n<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <div id=\"post-509\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-6 col-sm-6 col-xs-12 quickfinder-item-effect-simple icon-size-medium quickfinder-box-style-solid lazy-loading post-509 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-medium gem-icon-shape-circle gem-simple-icon\" style=\"opacity: 1;\"><div class=\"gem-icon-inner\" style=\"\"><span class=\"gem-icon-half-1\" style=\"color: #00a4ef;\"><span class=\"back-angle\">&#xf21e;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #00a4ef;\"><span class=\"back-angle\">&#xf21e;<\/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: #3c3950;\">Online Appointment<\/div> <div class=\"quickfinder-item-text\" style=\"color: #6a7b88;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.<br \/>\n<\/div> <\/div> <\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div>[\/vc_column][\/vc_row][vc_row el_class=&#8221;custom-qf-3&#8243; css=&#8221;.vc_custom_1477662424872{margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69ea21e29f82d\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69ea21e29f82d\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/6-1-1.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\"><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 143px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"title-h2\" style=\"text-align: center;\"><span style=\"color: #00a4ef;\">history\u00a0of <span style=\"color: #ffffff;\">our clinic<\/span><\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[vc_column_text]<\/p>\n<p style=\"text-align: center; max-width: 832px; margin: 0 auto;\"><span style=\"color: #aac1d1;\">Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id e m auctor, nisi elit consequat ipsum, nec sagittis sem nibh ilit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum <\/span><\/p>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 12px;\"><\/div><div class=\"quickfinder quickfinder-style-vertical-1 quickfinder-style-vertical quickfinder-icon-position-top quickfinder-alignment-center quickfinder-title-thin\" data-hover-title-color=\"#ffffff\" data-hover-description-color=\"#ffffff\"><div id=\"post-515\" data-ll-finish-delay=\"200\" class=\"quickfinder-item odd quickfinder-item-effect-image-scale large lazy-loading post-515 thegem_qf_item type-thegem_qf_item status-publish has-post-thumbnail\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-info-wrapper\"> <svg class=\"qf-svg-arrow-right\" viewBox=\"0 0 50 100\"> <use xlink:href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow\"><\/use> <\/svg> <div class=\"connector-top\" style=\"border-color: rgba(71,108,125,0.7); right: -81.5px;\"> <\/div> <div class=\"connector-bot\" style=\"border-color: rgba(71,108,125,0.7); right: -81.5px;\"> <\/div> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div style=\"display: block; min-height: 250px;\"> <div class=\"quickfinder-item-title\" style=\"color: #00a4ef;\">1995: Opening Clinic<\/div> <div class=\"quickfinder-item-text\" style=\"color: #aac1d1 ;\">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<\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <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\" style=\"box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px rgba(71,108,125,0.7);\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/12-1-thegem-person.jpg\" class=\" quickfinder-img-size-large wp-post-image\" alt=\"12\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/12-1-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/12-1-thegem-person.jpg 2x\" sizes=\"100vw\" \/> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div> <\/div> <div id=\"post-517\" data-ll-finish-delay=\"200\" class=\"quickfinder-item even quickfinder-item-effect-image-scale large lazy-loading post-517 thegem_qf_item type-thegem_qf_item status-publish has-post-thumbnail\" data-ll-item-delay=\"0\"> <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\" style=\"box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px rgba(71,108,125,0.7);\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/8-1-thegem-person.jpg\" class=\" quickfinder-img-size-large wp-post-image\" alt=\"8\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/8-1-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/8-1-thegem-person.jpg 2x\" sizes=\"100vw\" \/> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <svg class=\"qf-svg-arrow-left\" viewBox=\"0 0 50 100\"> <use xlink:href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow\"><\/use> <\/svg> <div class=\"connector-top\" style=\"border-color: rgba(71,108,125,0.7); left: -81.5px;\"> <\/div> <div class=\"connector-bot\" style=\"border-color: rgba(71,108,125,0.7); left: -81.5px;\"> <\/div> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div style=\"display: block; min-height: 250px;\"> <div class=\"quickfinder-item-title\" style=\"color: #00a4ef;\">2002: Lorem Ipsum<\/div> <div class=\"quickfinder-item-text\" style=\"color: #aac1d1 ;\">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<\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div> <div id=\"post-518\" data-ll-finish-delay=\"200\" class=\"quickfinder-item odd quickfinder-item-effect-image-scale large lazy-loading post-518 thegem_qf_item type-thegem_qf_item status-publish has-post-thumbnail\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-info-wrapper\"> <svg class=\"qf-svg-arrow-right\" viewBox=\"0 0 50 100\"> <use xlink:href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow\"><\/use> <\/svg> <div class=\"connector-top\" style=\"border-color: rgba(71,108,125,0.7); right: -81.5px;\"> <\/div> <div class=\"connector-bot\" style=\"border-color: rgba(71,108,125,0.7); right: -81.5px;\"> <\/div> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div style=\"display: block; min-height: 250px;\"> <div class=\"quickfinder-item-title\" style=\"color: #00a4ef;\">2013: Lorem Ipsum<\/div> <div class=\"quickfinder-item-text\" style=\"color: #aac1d1 ;\">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<\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <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\" style=\"box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px rgba(71,108,125,0.7);\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/11-1-thegem-person.jpg\" class=\" quickfinder-img-size-large wp-post-image\" alt=\"11\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/11-1-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/11-1-thegem-person.jpg 2x\" sizes=\"100vw\" \/> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div> <\/div> <div id=\"post-519\" data-ll-finish-delay=\"200\" class=\"quickfinder-item even quickfinder-item-effect-image-scale large lazy-loading post-519 thegem_qf_item type-thegem_qf_item status-publish has-post-thumbnail\" data-ll-item-delay=\"0\"> <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\" style=\"box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px rgba(71,108,125,0.7);\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/9-1-thegem-person.jpg\" class=\" quickfinder-img-size-large wp-post-image\" alt=\"9\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/9-1-thegem-person-160.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/9-1-thegem-person.jpg 2x\" sizes=\"100vw\" \/> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <svg class=\"qf-svg-arrow-left\" viewBox=\"0 0 50 100\"> <use xlink:href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow\"><\/use> <\/svg> <div class=\"connector-top\" style=\"border-color: rgba(71,108,125,0.7); left: -81.5px;\"> <\/div> <div class=\"connector-bot\" style=\"border-color: rgba(71,108,125,0.7); left: -81.5px;\"> <\/div> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div style=\"display: block; min-height: 250px;\"> <div class=\"quickfinder-item-title\" style=\"color: #00a4ef;\">2018: Lorem Ipsum<\/div> <div class=\"quickfinder-item-text\" style=\"color: #aac1d1 ;\">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<\/div> <\/div> <\/div> <a href=\"#\" target=\"_self\" class=\"quickfinder-item-link\"><\/a> <\/div> <\/div> <\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 103px;\"><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column]<div class=\"preloader\"><div class=\"preloader-spin\"><\/div><\/div> <div class=\"portfolio portfolio-slider clearfix no-padding col-lg-12 col-md-12 col-sm-12 hover-horizontal-sliding full hover-title fullwidth-columns-4 portfolio_slider_arrow_big background-style-white title-style-light title-on-hover gem-slider-animation-dynamic post-519 thegem_qf_item type-thegem_qf_item status-publish has-post-thumbnail\" data-hover=\"horizontal-sliding\"> <div class=\"navigation fullwidth-block\"> <div class=\"portolio-slider-prev\"> <span>&#xe603;<\/span> <\/div> <div class=\"portolio-slider-next\"> <span>&#xe601;<\/span> <\/div> <div class=\"portolio-slider-content\"> <div class=\"portolio-slider-center\"> <div class=\"fullwidth-block\"> <div style=\"margin: -0px;\"> <div class=\"portfolio-set clearfix\" > <div style=\"padding: 0px;\" class=\"portfolio-item slider post-576 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-sort-date=\"1549956024\"> <div class=\"wrap clearfix\" style=\"border-bottom-color: \"> <div class=\"image post-576 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/6-1-thegem-portfolio-carusel-4x.jpg\" width=\"580\" height=\"370\" alt=\"Uzi joints and internal organs\" \/> <\/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\/medical-center\/pf\/uzi-joints-and-internal-organs-2\/\" target=\"_self\" class=\"icon self-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%2Fmedical-center%2Fpf%2Fuzi-joints-and-internal-organs-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=Uzi+joints+and+internal+organs&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fpf%2Fuzi-joints-and-internal-organs-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%2Fmedical-center%2Fpf%2Fuzi-joints-and-internal-organs-2%2F&#038;description=Uzi+joints+and+internal+organs&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F6-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%2Fmedical-center%2Fpf%2Fuzi-joints-and-internal-organs-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%2Fmedical-center%2Fpf%2Fuzi-joints-and-internal-organs-2%2F&#038;title=Uzi+joints+and+internal+organs&amp;summary=Lorem+ipsum+dolor+sit+amet+elit+sed\" 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%2Fmedical-center%2Fpf%2Fuzi-joints-and-internal-organs-2%2F&#038;title=Uzi+joints+and+internal+organs\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Uzi joints and internal organs <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet elit sed<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>\n<\/div> <div style=\"padding: 0px;\" class=\"portfolio-item slider post-571 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-sort-date=\"1549955975\"> <div class=\"wrap clearfix\" style=\"border-bottom-color: \"> <div class=\"image post-571 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/7-1-thegem-portfolio-carusel-4x.jpg\" width=\"580\" height=\"370\" alt=\"Physical therapy, reflexology, massage\" \/> <\/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\/medical-center\/pf\/physical-therapy-reflexology-massage-2\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2019\/02\/clinic.mp4\" target=\"_self\" class=\"icon self_video \"><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%2Fmedical-center%2Fpf%2Fphysical-therapy-reflexology-massage-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=Physical+therapy%2C+reflexology%2C+massage&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fpf%2Fphysical-therapy-reflexology-massage-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%2Fmedical-center%2Fpf%2Fphysical-therapy-reflexology-massage-2%2F&#038;description=Physical+therapy%2C+reflexology%2C+massage&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F7-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%2Fmedical-center%2Fpf%2Fphysical-therapy-reflexology-massage-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%2Fmedical-center%2Fpf%2Fphysical-therapy-reflexology-massage-2%2F&#038;title=Physical+therapy%2C+reflexology%2C+massage&amp;summary=Lorem+ipsum+dolor+sit+amet+elit+sed\" 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%2Fmedical-center%2Fpf%2Fphysical-therapy-reflexology-massage-2%2F&#038;title=Physical+therapy%2C+reflexology%2C+massage\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Physical therapy, reflexology, massage <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet elit sed<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>\n<\/div> <div style=\"padding: 0px;\" class=\"portfolio-item slider post-575 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-sort-date=\"1549956013\"> <div class=\"wrap clearfix\" style=\"border-bottom-color: \"> <div class=\"image post-575 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/8-1-thegem-portfolio-carusel-4x.jpg\" width=\"580\" height=\"370\" alt=\"Diagnosis of autoimmune diseases\" \/> <\/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\/medical-center\/pf\/diagnosis-of-autoimmune-diseases-2\/\" target=\"_self\" class=\"icon self-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%2Fmedical-center%2Fpf%2Fdiagnosis-of-autoimmune-diseases-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=Diagnosis+of+autoimmune+diseases&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fpf%2Fdiagnosis-of-autoimmune-diseases-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%2Fmedical-center%2Fpf%2Fdiagnosis-of-autoimmune-diseases-2%2F&#038;description=Diagnosis+of+autoimmune+diseases&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F8-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%2Fmedical-center%2Fpf%2Fdiagnosis-of-autoimmune-diseases-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%2Fmedical-center%2Fpf%2Fdiagnosis-of-autoimmune-diseases-2%2F&#038;title=Diagnosis+of+autoimmune+diseases&amp;summary=Lorem+ipsum+dolor+sit+amet+elit+sed\" 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%2Fmedical-center%2Fpf%2Fdiagnosis-of-autoimmune-diseases-2%2F&#038;title=Diagnosis+of+autoimmune+diseases\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Diagnosis of autoimmune diseases <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet elit sed<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>\n<\/div> <div style=\"padding: 0px;\" class=\"portfolio-item slider post-570 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-sort-date=\"1549955961\"> <div class=\"wrap clearfix\" style=\"border-bottom-color: \"> <div class=\"image post-570 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/9-1-thegem-portfolio-carusel-4x.jpg\" width=\"580\" height=\"370\" alt=\"Genetic engineering biological therapy\" \/> <\/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\/medical-center\/pf\/genetic-engineering-biological-therapy-2\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/9-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%2Fmedical-center%2Fpf%2Fgenetic-engineering-biological-therapy-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=Genetic+engineering+biological+therapy&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fpf%2Fgenetic-engineering-biological-therapy-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%2Fmedical-center%2Fpf%2Fgenetic-engineering-biological-therapy-2%2F&#038;description=Genetic+engineering+biological+therapy&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F9-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%2Fmedical-center%2Fpf%2Fgenetic-engineering-biological-therapy-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%2Fmedical-center%2Fpf%2Fgenetic-engineering-biological-therapy-2%2F&#038;title=Genetic+engineering+biological+therapy&amp;summary=Lorem+ipsum+dolor+sit+amet+elit+sed\" 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%2Fmedical-center%2Fpf%2Fgenetic-engineering-biological-therapy-2%2F&#038;title=Genetic+engineering+biological+therapy\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Genetic engineering biological therapy <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet elit sed<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>\n<\/div> <div style=\"padding: 0px;\" class=\"portfolio-item slider post-574 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-sort-date=\"1549956004\"> <div class=\"wrap clearfix\" style=\"border-bottom-color: \"> <div class=\"image post-574 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/10-1-thegem-portfolio-carusel-4x.jpg\" width=\"580\" height=\"370\" alt=\"Treatment of rheumatoid arthritis\" \/> <\/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\/medical-center\/pf\/treatment-of-rheumatoid-arthritis-2\/\" target=\"_self\" class=\"icon self-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%2Fmedical-center%2Fpf%2Ftreatment-of-rheumatoid-arthritis-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=Treatment+of+rheumatoid+arthritis&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fpf%2Ftreatment-of-rheumatoid-arthritis-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%2Fmedical-center%2Fpf%2Ftreatment-of-rheumatoid-arthritis-2%2F&#038;description=Treatment+of+rheumatoid+arthritis&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F10-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%2Fmedical-center%2Fpf%2Ftreatment-of-rheumatoid-arthritis-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%2Fmedical-center%2Fpf%2Ftreatment-of-rheumatoid-arthritis-2%2F&#038;title=Treatment+of+rheumatoid+arthritis&amp;summary=Lorem+ipsum+dolor+sit+amet+elit+sed\" 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%2Fmedical-center%2Fpf%2Ftreatment-of-rheumatoid-arthritis-2%2F&#038;title=Treatment+of+rheumatoid+arthritis\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Treatment of rheumatoid arthritis <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet elit sed<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>\n<\/div> <div style=\"padding: 0px;\" class=\"portfolio-item slider post-569 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-sort-date=\"1549955949\"> <div class=\"wrap clearfix\" style=\"border-bottom-color: \"> <div class=\"image post-569 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/11-1-thegem-portfolio-carusel-4x.jpg\" width=\"580\" height=\"370\" alt=\"Intravenous laser irradiation of blood\" \/> <\/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\/medical-center\/pf\/intravenous-laser-irradiation-of-blood-2\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/11-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%2Fmedical-center%2Fpf%2Fintravenous-laser-irradiation-of-blood-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=Intravenous+laser+irradiation+of+blood&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fpf%2Fintravenous-laser-irradiation-of-blood-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%2Fmedical-center%2Fpf%2Fintravenous-laser-irradiation-of-blood-2%2F&#038;description=Intravenous+laser+irradiation+of+blood&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F11-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%2Fmedical-center%2Fpf%2Fintravenous-laser-irradiation-of-blood-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%2Fmedical-center%2Fpf%2Fintravenous-laser-irradiation-of-blood-2%2F&#038;title=Intravenous+laser+irradiation+of+blood&amp;summary=Lorem+ipsum+dolor+sit+amet+elit+sed\" 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%2Fmedical-center%2Fpf%2Fintravenous-laser-irradiation-of-blood-2%2F&#038;title=Intravenous+laser+irradiation+of+blood\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Intravenous laser irradiation of blood <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet elit sed<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>\n<\/div> <div style=\"padding: 0px;\" class=\"portfolio-item slider post-573 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-sort-date=\"1549955994\"> <div class=\"wrap clearfix\" style=\"border-bottom-color: \"> <div class=\"image post-573 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/12-1-thegem-portfolio-carusel-4x.jpg\" width=\"580\" height=\"370\" alt=\"Treatment of osteochondrosis\" \/> <\/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\/medical-center\/pf\/treatment-of-osteochondrosis-2\/\" target=\"_self\" class=\"icon self-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%2Fmedical-center%2Fpf%2Ftreatment-of-osteochondrosis-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=Treatment+of+osteochondrosis&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fpf%2Ftreatment-of-osteochondrosis-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%2Fmedical-center%2Fpf%2Ftreatment-of-osteochondrosis-2%2F&#038;description=Treatment+of+osteochondrosis&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F12-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%2Fmedical-center%2Fpf%2Ftreatment-of-osteochondrosis-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%2Fmedical-center%2Fpf%2Ftreatment-of-osteochondrosis-2%2F&#038;title=Treatment+of+osteochondrosis&amp;summary=Lorem+ipsum+dolor+sit+amet+elit+sed\" 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%2Fmedical-center%2Fpf%2Ftreatment-of-osteochondrosis-2%2F&#038;title=Treatment+of+osteochondrosis\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Treatment of osteochondrosis <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet elit sed<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>\n<\/div> <div style=\"padding: 0px;\" class=\"portfolio-item slider post-568 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-sort-date=\"1549955934\"> <div class=\"wrap clearfix\" style=\"border-bottom-color: \"> <div class=\"image post-568 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/13-1-thegem-portfolio-carusel-4x.jpg\" width=\"580\" height=\"370\" alt=\"Treatment of osteoarthritis\" \/> <\/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\/medical-center\/pf\/treatment-of-osteoarthritis-2\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2019\/02\/clinic.mp4\" target=\"_self\" class=\"icon self_video \"><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%2Fmedical-center%2Fpf%2Ftreatment-of-osteoarthritis-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=Treatment+of+osteoarthritis&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fpf%2Ftreatment-of-osteoarthritis-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%2Fmedical-center%2Fpf%2Ftreatment-of-osteoarthritis-2%2F&#038;description=Treatment+of+osteoarthritis&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F13-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%2Fmedical-center%2Fpf%2Ftreatment-of-osteoarthritis-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%2Fmedical-center%2Fpf%2Ftreatment-of-osteoarthritis-2%2F&#038;title=Treatment+of+osteoarthritis&amp;summary=Lorem+ipsum+dolor+sit+amet+elit+sed\" 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%2Fmedical-center%2Fpf%2Ftreatment-of-osteoarthritis-2%2F&#038;title=Treatment+of+osteoarthritis\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> Treatment of osteoarthritis <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet elit sed<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>\n<\/div> <div style=\"padding: 0px;\" class=\"portfolio-item slider post-572 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-sort-date=\"1549955983\"> <div class=\"wrap clearfix\" style=\"border-bottom-color: \"> <div class=\"image post-572 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/14-1-thegem-portfolio-carusel-4x.jpg\" width=\"580\" height=\"370\" alt=\"The whole complex of laboratory researches\" \/> <\/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\/medical-center\/pf\/the-whole-complex-of-laboratory-researches-2\/\" target=\"_self\" class=\"icon self-link \"><i class=\"default\"><\/i><\/a> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/14-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%2Fmedical-center%2Fpf%2Fthe-whole-complex-of-laboratory-researches-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=The+whole+complex+of+laboratory+researches&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fpf%2Fthe-whole-complex-of-laboratory-researches-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%2Fmedical-center%2Fpf%2Fthe-whole-complex-of-laboratory-researches-2%2F&#038;description=The+whole+complex+of+laboratory+researches&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F14-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%2Fmedical-center%2Fpf%2Fthe-whole-complex-of-laboratory-researches-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%2Fmedical-center%2Fpf%2Fthe-whole-complex-of-laboratory-researches-2%2F&#038;title=The+whole+complex+of+laboratory+researches&amp;summary=Lorem+ipsum+dolor+sit+amet+elit+sed\" 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%2Fmedical-center%2Fpf%2Fthe-whole-complex-of-laboratory-researches-2%2F&#038;title=The+whole+complex+of+laboratory+researches\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"title title-h4\"> <span class=\"light\"> The whole complex of laboratory researches <\/span> <\/div> <div class=\"description\"> <div class=\"subtitle\"><p>Lorem ipsum dolor sit amet elit sed<\/p>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1544603317953{margin-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1544104109970{padding-top: 0px !important;}&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 125px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"title-h2\" style=\"text-align: center;\"><span style=\"color: #00a4ef;\">QUALIFIED <span style=\"color: #3c3950;\">DOCTORS<\/span><\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div>[vc_row_inner][vc_column_inner offset=&#8221;vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10&#8243;][vc_column_text css=&#8221;.vc_custom_1544107102847{margin-bottom: 0px !important;}&#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 aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.<\/p>\n<p>[\/vc_column_text][\/vc_column_inner][\/vc_row_inner]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div>[vc_tta_pageable][vc_tta_section title=&#8221;Section 1&#8243; tab_id=&#8221;1544427808214-cddfa1f1-6d3c&#8221;]<div class=\"gem-team row inline-row gem-team-style-4\" data-hover-colors=\"{&quot;bottom_border_color&quot;:&quot;#3c3950&quot;,&quot;tel_color&quot;:&quot;#3c3950&quot;,&quot;background_color&quot;:&quot;#ffffff&quot;}\" > <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-71\" class=\"team-person bordered-box centered-box post-71 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-1-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"4\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-1-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Emerson Anderson<\/div> <div class=\"team-person-position date-color\" >Department Manager<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-153\" class=\"team-person bordered-box centered-box post-153 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-2-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"3\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-2-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Merry Berry<\/div> <div class=\"team-person-position date-color\" >Cardiology<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-154\" class=\"team-person bordered-box centered-box post-154 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"5\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Evelyn Snyder<\/div> <div class=\"team-person-position date-color\" >Haematology<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-bottom: -40px;\"><\/div>[\/vc_tta_section][vc_tta_section title=&#8221;Section 1&#8243; tab_id=&#8221;1544428515697-26e27841-47d4&#8243;]<div class=\"gem-team row inline-row gem-team-style-4\" data-hover-colors=\"{&quot;bottom_border_color&quot;:&quot;#3c3950&quot;,&quot;tel_color&quot;:&quot;#3c3950&quot;,&quot;background_color&quot;:&quot;#ffffff&quot;}\" > <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-90\" class=\"team-person bordered-box centered-box post-90 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/12-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"12\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/12-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Angel Sienna<\/div> <div class=\"team-person-position date-color\" >Gynecology<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-89\" class=\"team-person bordered-box centered-box post-89 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/13-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"13\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/13-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >David Villar<\/div> <div class=\"team-person-position date-color\" >Cardiology<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-91\" class=\"team-person bordered-box centered-box post-91 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/11-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"11\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/11-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Maya Jacobs<\/div> <div class=\"team-person-position date-color\" >Orthopaedics<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-bottom: -40px;\"><\/div>[\/vc_tta_section][vc_tta_section title=&#8221;Section 1&#8243; tab_id=&#8221;1544428576274-646f10ff-7561&#8243;]<div class=\"gem-team row inline-row gem-team-style-4\" data-hover-colors=\"{&quot;bottom_border_color&quot;:&quot;#3c3950&quot;,&quot;tel_color&quot;:&quot;#3c3950&quot;,&quot;background_color&quot;:&quot;#ffffff&quot;}\" > <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-71\" class=\"team-person bordered-box centered-box post-71 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-1-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"4\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-1-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Emerson Anderson<\/div> <div class=\"team-person-position date-color\" >Department Manager<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-153\" class=\"team-person bordered-box centered-box post-153 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-2-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"3\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-2-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Merry Berry<\/div> <div class=\"team-person-position date-color\" >Cardiology<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-154\" class=\"team-person bordered-box centered-box post-154 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"5\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Evelyn Snyder<\/div> <div class=\"team-person-position date-color\" >Haematology<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-bottom: -40px;\"><\/div>[\/vc_tta_section][vc_tta_section title=&#8221;Section 1&#8243; tab_id=&#8221;1544428577883-f5153246-740b&#8221;]<div class=\"gem-team row inline-row gem-team-style-4\" data-hover-colors=\"{&quot;bottom_border_color&quot;:&quot;#3c3950&quot;,&quot;tel_color&quot;:&quot;#3c3950&quot;,&quot;background_color&quot;:&quot;#ffffff&quot;}\" > <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-90\" class=\"team-person bordered-box centered-box post-90 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/12-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"12\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/12-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Angel Sienna<\/div> <div class=\"team-person-position date-color\" >Gynecology<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-89\" class=\"team-person bordered-box centered-box post-89 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/13-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"13\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/13-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >David Villar<\/div> <div class=\"team-person-position date-color\" >Cardiology<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <div class=\"col-md-4 col-sm-6 col-xs-12 inline-column\"> <div id=\"post-91\" class=\"team-person bordered-box centered-box post-91 thegem_team_person type-thegem_team_person status-publish has-post-thumbnail\" style=\"background-color: #ffffff; border-bottom-color: #00a4ef;\"> <div class=\"team-person-image\"><span><img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/11-thegem-person-160.jpg\" class=\"img-responsive wp-post-image\" alt=\"11\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/11-thegem-person.jpg 2x\" sizes=\"100vw\" \/><\/span><\/div> <div class=\"team-person-info clearfix\"> <div class=\"team-person-name styled-subtitle\" >Maya Jacobs<\/div> <div class=\"team-person-position date-color\" >Orthopaedics<\/div> <div class=\"gem-styled-color-1\"><div class=\"team-person-phone title-h5\"><a href=\"tel:+1%20(987)%201625346\" style=\"color: #00a4ef\">+1 (987) 1625346<\/a><\/div><\/div> <div class=\"team-person-email date-color\"><a class=\"date-color\" href=\"mailto:info@domain.ltd\"><\/a><\/div> <\/div> <a class=\"team-person-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/about-us\/team-member\/\" target=\"_self\"><\/a>\t<\/div> <\/div> <\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-bottom: -40px;\"><\/div>[\/vc_tta_section][\/vc_tta_pageable]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 125px;\"><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1478085199685{margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69ea21e2b31bb\" class=\"fullwidth-block clearfix\"  style=\"background-color: #f7f7f7;padding-top: 135px;padding-bottom: 140px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69ea21e2b31bb\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-3.jpg);background-repeat: no-repeat; background-size: cover;background-position: right bottom;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_column_text]<\/p>\n<div class=\"title-h2\" style=\"text-align: center;\"><span style=\"color: #00a4ef;\">pricing\u00a0<span style=\"color: #3c3950;\">table<\/span><\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 32px;\"><\/div>[vc_column_text]<\/p>\n<p style=\"text-align: center; max-width: 832px; margin: 0 auto;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\/p>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 97px;\"><\/div><div class=\"pricing-table row inline-row inline-row-center pricing-table-style-6 button-icon-default\" >\n\t<div class=\"pricing-column-wrapper col-md-4 col-sm-4 col-xs-6  inline-column\"><div class=\"pricing-column\">\n\t <div class=\"pricing-price-row  \"  style=\" background-color: #008fd0; color:#2ab6f6; \">\n\n\t\t<div class=\"pricing-price-title-wrapper\">\n\t\t<div   class=\"pricing-price-title\">Blood<\/div>\n\t\t<div  class=\"pricing-price-subtitle\">Analysis<\/div>\n\t\t<\/div>\n\n\t\t<div class=\"pricing-price-wrapper\"><div class=\"pricing-price\" style=\" background-color: #008fd0; \"><div style=\" color:#2ab6f6; \" class=\"pricing-cost\">$399<\/div><div  class=\"time\" style= display:inline-block;>\/person<\/div><\/div><\/div><svg style='fill:#008fd0' class=\"wrap-style\"><use xlink:href=https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow \/><\/use><\/svg><\/div><figure class=\"pricing-row\">Photo sharing school<\/figure><figure class=\"pricing-row\"><span style=\"color: #5f727f;\">Drop out ramen hustle<\/span><\/figure><figure class=\"pricing-row\">Crush revenue traction<\/figure><figure class=\"pricing-row\">Crush revenue traction<\/figure><figure class=\"pricing-row\">User base minimum viable<\/figure><figure class=\"pricing-row\">Lorem ipsum dolor<\/figure><div class=\"pricing-footer\"><div class=\"gem-button-container gem-button-position-center thegem-button-69ea21e2b32ff9906\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-thin gem-button-border-1\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;border-color: #00a4ef;color: #00a4ef;\" onmouseleave=\"this.style.borderColor='#00a4ef';this.style.backgroundColor='transparent';this.style.color='#00a4ef';\" onmouseenter=\"this.style.borderColor='#00a4ef';this.style.backgroundColor='#00a4ef';this.style.color='#ffffff';\" href=\"\" target=\"_self\">order<\/a><\/div> <\/div><\/div><\/div>\n\t<div class=\"pricing-column-wrapper col-md-4 col-sm-4 col-xs-6  inline-column\"><div class=\"pricing-column\">\n\t <div class=\"pricing-price-row  \"  style=\" background-color: #00a4ef; color:#00a4ef; \">\n\n\t\t<div class=\"pricing-price-title-wrapper\">\n\t\t<div   class=\"pricing-price-title\">Medical<\/div>\n\t\t<div  class=\"pricing-price-subtitle\">Checkup<\/div>\n\t\t<\/div>\n\n\t\t<div class=\"pricing-price-wrapper\"><div class=\"pricing-price\" style=\" background-color: #00a4ef; \"><div style=\" color:#00a4ef; \" class=\"pricing-cost\">$499<\/div><div  class=\"time\" style= display:inline-block;>\/person<\/div><\/div><\/div><svg style='fill:#00a4ef' class=\"wrap-style\"><use xlink:href=https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow \/><\/use><\/svg><\/div><figure class=\"pricing-row\">Photo sharing school<\/figure><figure class=\"pricing-row\"><span style=\"color: #5f727f;\">Drop out ramen hustle<\/span><\/figure><figure class=\"pricing-row\"><span style=\"color: #5f727f;\">Crush revenue traction<\/span><\/figure><figure class=\"pricing-row\">Crush revenue traction<\/figure><figure class=\"pricing-row\">User base minimum viable<\/figure><figure class=\"pricing-row\">Lorem ipsum dolor<\/figure><div class=\"pricing-footer\"><div class=\"gem-button-container gem-button-position-center thegem-button-69ea21e2b336e8141\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-thin gem-button-border-1\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;border-color: #00a4ef;color: #00a4ef;\" onmouseleave=\"this.style.borderColor='#00a4ef';this.style.backgroundColor='transparent';this.style.color='#00a4ef';\" onmouseenter=\"this.style.borderColor='#00a4ef';this.style.backgroundColor='#00a4ef';this.style.color='#ffffff';\" href=\"\" target=\"_self\">order<\/a><\/div> <\/div><\/div><\/div>\n\t<div class=\"pricing-column-wrapper col-md-4 col-sm-4 col-xs-6  inline-column\"><div class=\"pricing-column\">\n\t <div class=\"pricing-price-row  \"  style=\" background-color: #2ab6f6; color:#2ab6f6; \">\n\n\t\t<div class=\"pricing-price-title-wrapper\">\n\t\t<div   class=\"pricing-price-title\">Dental<\/div>\n\t\t<div  class=\"pricing-price-subtitle\">Care<\/div>\n\t\t<\/div>\n\n\t\t<div class=\"pricing-price-wrapper\"><div class=\"pricing-price\" style=\" background-color: #2ab6f6; \"><div style=\" color:#2ab6f6; \" class=\"pricing-cost\">$599<\/div><div  class=\"time\" style= display:inline-block;>\/person<\/div><\/div><\/div><svg style='fill:#2ab6f6' class=\"wrap-style\"><use xlink:href=https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/themes\/thegem\/css\/post-arrow.svg#dec-post-arrow \/><\/use><\/svg><\/div><figure class=\"pricing-row\">Photo sharing school<\/figure><figure class=\"pricing-row\"><span style=\"color: #5f727f;\">Drop out ramen hustle<\/span><\/figure><figure class=\"pricing-row\"><span style=\"color: #5f727f;\">Crush revenue traction<\/span><\/figure><figure class=\"pricing-row\">Crush revenue traction<\/figure><figure class=\"pricing-row\">User base minimum viable<\/figure><figure class=\"pricing-row\">Lorem ipsum dolor<\/figure><div class=\"pricing-footer\"><div class=\"gem-button-container gem-button-position-center thegem-button-69ea21e2b33bd2441\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-thin gem-button-border-1\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;border-color: #00a4ef;color: #00a4ef;\" onmouseleave=\"this.style.borderColor='#00a4ef';this.style.backgroundColor='transparent';this.style.color='#00a4ef';\" onmouseenter=\"this.style.borderColor='#00a4ef';this.style.backgroundColor='#00a4ef';this.style.color='#ffffff';\" href=\"\" target=\"_self\">order<\/a><\/div> <\/div><\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1530183305136{margin-top: -1px !important;margin-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1544428765707{background-color: #00a4ef !important;}&#8221; offset=&#8221;vc_col-md-6&#8243;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div><div class=\"preloader\"><div class=\"preloader-spin\"><\/div><\/div><div class=\"size-medium style1 gem-testimonials\" data-autoscroll=\"1800\" style=background-color:> <div id=\"post-92\" class=\"gem-testimonial-item post-92 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\/medical-center\/wp-content\/uploads\/2018\/12\/Faces-400x400px-1_1_22-thegem-person-160.jpg\" class=\"img-responsive img-circle wp-post-image\" alt=\"Faces-400x400px-1_1_22\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/Faces-400x400px-1_1_22-thegem-testimonial.jpg 2x\" sizes=\"100vw\" \/> <\/div> <div class=\"gem-testimonial-content\"> <div class=\"gem-testimonial-name\" style=\"color: #ffffff\">Emerson Anderson<\/div> <div class=\"gem-testimonial-position\" style=\"color: #ffffff\">Creative Heads Inc.<\/div> <div class=\"gem-testimonial-text\" style=\"color: #ffffff\"> <p>The blinding splendor of the diamond. The mighty power of the rocket.\u00a0Design perfection. The status symbol for any business.<\/p> <\/div> <\/div> <span style=\"color: rgba(255,255,255,0) \" class=\"custom-color-blockqute-mark\">&#xe60c;<\/span> <\/div> <\/div> <div id=\"post-95\" class=\"gem-testimonial-item post-95 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\/medical-center\/wp-content\/uploads\/2018\/12\/Faces-400x400px-1_1_31-thegem-person-160.jpg\" class=\"img-responsive img-circle wp-post-image\" alt=\"Faces-400x400px-1_1_31\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/Faces-400x400px-1_1_31-thegem-testimonial.jpg 2x\" sizes=\"100vw\" \/> <\/div> <div class=\"gem-testimonial-content\"> <div class=\"gem-testimonial-name\" style=\"color: #ffffff\">Emerson Anderson<\/div> <div class=\"gem-testimonial-position\" style=\"color: #ffffff\">Creative Heads Inc.<\/div> <div class=\"gem-testimonial-text\" style=\"color: #ffffff\"> <p>The blinding splendor of the diamond. The mighty power of the rocket.\u00a0Design perfection. The status symbol for any business.<\/p> <\/div> <\/div> <span style=\"color: rgba(255,255,255,0) \" 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: 50px;\"><\/div>[\/vc_column][vc_column offset=&#8221;vc_col-md-6&#8243; css=&#8221;.vc_custom_1544185618128{background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-3.jpg?id=98) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 600px;\"><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1544180539587{margin-bottom: 0px !important;padding-top: 50px !important;padding-bottom: 50px !important;background-color: #042938 !important;}&#8221; el_class=&#8221;need-help&#8221;][vc_column css=&#8221;.vc_custom_1532346253351{padding-top: 0px !important;}&#8221; offset=&#8221;vc_col-lg-4 vc_col-md-6&#8243;][vc_column_text css=&#8221;.vc_custom_1554905175174{margin-bottom: 0px !important;}&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\"><span style=\"color: #ffffff;\"><span style=\"color: #00a4ef;\">need<\/span> help?<\/span><\/div>\n<p>[\/vc_column_text][\/vc_column][vc_column css=&#8221;.vc_custom_1532346260470{padding-top: 0px !important;}&#8221; offset=&#8221;vc_col-lg-5 vc_col-md-6&#8243;][vc_column_text css=&#8221;.vc_custom_1554905183978{margin-bottom: 0px !important;}&#8221;]<\/p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adi pisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<\/span><\/p>\n<p>[\/vc_column_text][\/vc_column][vc_column css=&#8221;.vc_custom_1554905191730{padding-top: 0px !important;}&#8221; offset=&#8221;vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-12&#8243;]<style type=\"text\/css\">.thegem-button-69ea21e2b4ca71954.lazy-loading-before-start-animation .lazy-loading-item {opacity: 0;} body.thegem-effects-disabled .thegem-button-69ea21e2b4ca71954.lazy-loading-before-start-animation .lazy-loading-item {opacity: 1;}<\/style><div class=\"gem-button-container gem-button-position-center thegem-button-69ea21e2b4ca71954 lazy-loading lazy-loading-before-start-animation\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-thin gem-button-border-1 lazy-loading-item\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;border-color: #00a4ef;color: #00a4ef;\" onmouseleave=\"this.style.borderColor='#00a4ef';this.style.backgroundColor='transparent';this.style.color='#00a4ef';\" onmouseenter=\"this.style.backgroundColor='#00a4ef';this.style.color='#ffffff';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/contact\/#app-form\" target=\"_self\">Ask a Question<\/a><\/div> [\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1478087082290{margin-bottom: 0px !important;padding-bottom: 0px !important;background-color: #f7f7f7 !important;}&#8221;][vc_column]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div>[vc_column_text]<\/p>\n<div class=\"title-h2\" style=\"text-align: center;\"><span style=\"color: #00a4ef;\">OUR LATEST\u00a0 <span style=\"color: #3c3950;\">news<\/span><\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div>[vc_row_inner css=&#8221;.vc_custom_1544602635508{margin-bottom: 0px !important;}&#8221;][vc_column_inner offset=&#8221;vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10&#8243;][vc_column_text]<\/p>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.<\/p>\n<p>[\/vc_column_text][\/vc_column_inner][\/vc_row_inner]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div><div class=\"blog blog-style-justified-4x justified-style-2 inline-row clearfix item-animation-move-up\" data-next-page=\"0\">\n<article id=\"post-284\" class=\"col-lg-3 col-md-3 col-sm-6 col-xs-6 inline-column item-animations-not-inited post-284 post type-post status-publish format-standard has-post-thumbnail category-medcenter tag-accumsan tag-aodio tag-aornare tag-auctor tag-ipsum tag-morbi tag-nam tag-tellus tag-tincidunt tag-velit\"> <div class=\"post-content-wrapper\" style=\"background-color: #ffffff;\"> <div class=\"post-image\"><div class=\"post-featured-content\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/simple-blog-post-title-9\/\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-3-thegem-blog-justified.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-3-thegem-blog-justified.jpg 2x\" media=\"(max-width: 600px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-3-thegem-blog-justified-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-3-thegem-blog-justified.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-3-thegem-blog-justified-3x-small.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-3-thegem-blog-justified.jpg 2x\" media=\"(max-width: 1125px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-3-thegem-blog-justified-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-3-thegem-blog-justified.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/4-3-thegem-blog-justified.jpg\" width=\"640\" height=\"480\" class=\"img-responsive\" alt=\"4\" \/> <\/picture> <\/a><\/div><\/div> <div class=\"description\"> <div class=\"post-meta-conteiner\"> <span class=\"post-meta-author\">By John Doe<\/span> <div class=\"post-meta-right\"> <span class=\"post-meta-likes\"><a href=\"#\" class=\"zilla-likes\" id=\"zilla-likes-284\" title=\"Like this\"><span class=\"zilla-likes-count\">8<\/span> <span class=\"zilla-likes-postfix\"><\/span><\/a><\/span> <\/div> <\/div> <div class=\"post-title\"> <div class=\"entry-title title-h4\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/simple-blog-post-title-9\/\" rel=\"bookmark\">14 Dec: <span class=\"light\">Simple Blog Post Title<\/span><\/a><\/div> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidilabore<\/p> <\/div> <\/div> <div class=\"info clearfix\"> <div class=\"post-footer-sharing\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69ea21e2b66629121\" ><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%2Fmedical-center%2Fsimple-blog-post-title-9%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Simple+Blog+Post+Title&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fsimple-blog-post-title-9%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%2Fmedical-center%2Fsimple-blog-post-title-9%2F&#038;description=Simple+Blog+Post+Title&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F4-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%2Fmedical-center%2Fsimple-blog-post-title-9%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%2Fmedical-center%2Fsimple-blog-post-title-9%2F&#038;title=Simple+Blog+Post+Title&amp;summary=Lorem+ipsum+dolor+sit+ametcon+sectetur+adipisicing+elit%2C+sed+doiusmod+tempor+incidilabore\" 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%2Fmedical-center%2Fsimple-blog-post-title-9%2F&#038;title=Simple+Blog+Post+Title\" 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\/medical-center\/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-69ea21e2b6ddb5015\" ><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\/medical-center\/simple-blog-post-title-9\/\" target=\"_self\">Read More<\/a><\/div> <\/div> <\/div> <\/div> <\/div>\n<\/article> <article id=\"post-285\" class=\"col-lg-3 col-md-3 col-sm-6 col-xs-6 inline-column item-animations-not-inited post-285 post type-post status-publish format-standard has-post-thumbnail category-medcenter tag-accumsan tag-aodio tag-aornare tag-auctor tag-ipsum tag-morbi tag-nam tag-tellus tag-tincidunt tag-velit\"> <div class=\"post-content-wrapper\" style=\"background-color: #ffffff;\"> <div class=\"post-image\"><div class=\"post-featured-content\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/simple-blog-post-title-8\/\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-thegem-blog-justified.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-thegem-blog-justified.jpg 2x\" media=\"(max-width: 600px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-thegem-blog-justified-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-thegem-blog-justified.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-thegem-blog-justified-3x-small.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-thegem-blog-justified.jpg 2x\" media=\"(max-width: 1125px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-thegem-blog-justified-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-thegem-blog-justified.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/5-1-thegem-blog-justified.jpg\" width=\"640\" height=\"480\" class=\"img-responsive\" alt=\"5\" \/> <\/picture> <\/a><\/div><\/div> <div class=\"description\"> <div class=\"post-meta-conteiner\"> <span class=\"post-meta-author\">By John Doe<\/span> <div class=\"post-meta-right\"> <span class=\"post-meta-likes\"><a href=\"#\" class=\"zilla-likes\" id=\"zilla-likes-285\" title=\"Like this\"><span class=\"zilla-likes-count\">22<\/span> <span class=\"zilla-likes-postfix\"><\/span><\/a><\/span> <\/div> <\/div> <div class=\"post-title\"> <div class=\"entry-title title-h4\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/simple-blog-post-title-8\/\" rel=\"bookmark\">13 Dec: <span class=\"light\">Simple Blog Post Title<\/span><\/a><\/div> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidilabore<\/p> <\/div> <\/div> <div class=\"info clearfix\"> <div class=\"post-footer-sharing\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69ea21e2b7d8f669\" ><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%2Fmedical-center%2Fsimple-blog-post-title-8%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Simple+Blog+Post+Title&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fsimple-blog-post-title-8%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%2Fmedical-center%2Fsimple-blog-post-title-8%2F&#038;description=Simple+Blog+Post+Title&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F5-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%2Fmedical-center%2Fsimple-blog-post-title-8%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%2Fmedical-center%2Fsimple-blog-post-title-8%2F&#038;title=Simple+Blog+Post+Title&amp;summary=Lorem+ipsum+dolor+sit+ametcon+sectetur+adipisicing+elit%2C+sed+doiusmod+tempor+incidilabore\" 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%2Fmedical-center%2Fsimple-blog-post-title-8%2F&#038;title=Simple+Blog+Post+Title\" 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\/medical-center\/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-69ea21e2b84c17920\" ><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\/medical-center\/simple-blog-post-title-8\/\" target=\"_self\">Read More<\/a><\/div> <\/div> <\/div> <\/div> <\/div>\n<\/article> <article id=\"post-283\" class=\"col-lg-3 col-md-3 col-sm-6 col-xs-6 inline-column item-animations-not-inited post-283 post type-post status-publish format-standard has-post-thumbnail category-medcenter tag-accumsan tag-aodio tag-aornare tag-auctor tag-ipsum tag-morbi tag-nam tag-tellus tag-tincidunt tag-velit\"> <div class=\"post-content-wrapper\" style=\"background-color: #ffffff;\"> <div class=\"post-image\"><div class=\"post-featured-content\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/simple-blog-post-title-7\/\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-4-thegem-blog-justified.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-4-thegem-blog-justified.jpg 2x\" media=\"(max-width: 600px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-4-thegem-blog-justified-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-4-thegem-blog-justified.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-4-thegem-blog-justified-3x-small.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-4-thegem-blog-justified.jpg 2x\" media=\"(max-width: 1125px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-4-thegem-blog-justified-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-4-thegem-blog-justified.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/3-4-thegem-blog-justified.jpg\" width=\"640\" height=\"480\" class=\"img-responsive\" alt=\"3\" \/> <\/picture> <\/a><\/div><\/div> <div class=\"description\"> <div class=\"post-meta-conteiner\"> <span class=\"post-meta-author\">By John Doe<\/span> <div class=\"post-meta-right\"> <span class=\"post-meta-likes\"><a href=\"#\" class=\"zilla-likes\" id=\"zilla-likes-283\" title=\"Like this\"><span class=\"zilla-likes-count\">11<\/span> <span class=\"zilla-likes-postfix\"><\/span><\/a><\/span> <\/div> <\/div> <div class=\"post-title\"> <div class=\"entry-title title-h4\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/simple-blog-post-title-7\/\" rel=\"bookmark\">12 Dec: <span class=\"light\">Simple Blog Post Title<\/span><\/a><\/div> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidilabore<\/p> <\/div> <\/div> <div class=\"info clearfix\"> <div class=\"post-footer-sharing\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69ea21e2b94996030\" ><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%2Fmedical-center%2Fsimple-blog-post-title-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=Simple+Blog+Post+Title&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fsimple-blog-post-title-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%2Fmedical-center%2Fsimple-blog-post-title-7%2F&#038;description=Simple+Blog+Post+Title&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F3-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%2Fmedical-center%2Fsimple-blog-post-title-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%2Fmedical-center%2Fsimple-blog-post-title-7%2F&#038;title=Simple+Blog+Post+Title&amp;summary=Lorem+ipsum+dolor+sit+ametcon+sectetur+adipisicing+elit%2C+sed+doiusmod+tempor+incidilabore\" 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%2Fmedical-center%2Fsimple-blog-post-title-7%2F&#038;title=Simple+Blog+Post+Title\" 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\/medical-center\/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-69ea21e2b9bf92616\" ><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\/medical-center\/simple-blog-post-title-7\/\" target=\"_self\">Read More<\/a><\/div> <\/div> <\/div> <\/div> <\/div>\n<\/article> <article id=\"post-282\" class=\"col-lg-3 col-md-3 col-sm-6 col-xs-6 inline-column item-animations-not-inited post-282 post type-post status-publish format-standard has-post-thumbnail category-medcenter tag-accumsan tag-aodio tag-aornare tag-auctor tag-ipsum tag-morbi tag-nam tag-tellus tag-tincidunt tag-velit\"> <div class=\"post-content-wrapper\" style=\"background-color: #ffffff;\"> <div class=\"post-image\"><div class=\"post-featured-content\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/simple-blog-post-title-6\/\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-5-thegem-blog-justified.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-5-thegem-blog-justified.jpg 2x\" media=\"(max-width: 600px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-5-thegem-blog-justified-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-5-thegem-blog-justified.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-5-thegem-blog-justified-3x-small.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-5-thegem-blog-justified.jpg 2x\" media=\"(max-width: 1125px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-5-thegem-blog-justified-4x.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-5-thegem-blog-justified.jpg 2x\" media=\"(max-width: 1920px)\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-content\/uploads\/2018\/12\/2-5-thegem-blog-justified.jpg\" width=\"640\" height=\"480\" class=\"img-responsive\" alt=\"2\" \/> <\/picture> <\/a><\/div><\/div> <div class=\"description\"> <div class=\"post-meta-conteiner\"> <span class=\"post-meta-author\">By John Doe<\/span> <div class=\"post-meta-right\"> <span class=\"post-meta-likes\"><a href=\"#\" class=\"zilla-likes\" id=\"zilla-likes-282\" title=\"Like this\"><span class=\"zilla-likes-count\">6<\/span> <span class=\"zilla-likes-postfix\"><\/span><\/a><\/span> <\/div> <\/div> <div class=\"post-title\"> <div class=\"entry-title title-h4\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/simple-blog-post-title-6\/\" rel=\"bookmark\">11 Dec: <span class=\"light\">Simple Blog Post Title<\/span><\/a><\/div> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor incidilabore<\/p> <\/div> <\/div> <div class=\"info clearfix\"> <div class=\"post-footer-sharing\"><div class=\"gem-button-container gem-button-position-inline thegem-button-69ea21e2bab4b1141\" ><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%2Fmedical-center%2Fsimple-blog-post-title-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=Simple+Blog+Post+Title&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fsimple-blog-post-title-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%2Fmedical-center%2Fsimple-blog-post-title-6%2F&#038;description=Simple+Blog+Post+Title&#038;media=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fmedical-center%2Fwp-content%2Fuploads%2F2018%2F12%2F2-5-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%2Fmedical-center%2Fsimple-blog-post-title-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%2Fmedical-center%2Fsimple-blog-post-title-6%2F&#038;title=Simple+Blog+Post+Title&amp;summary=Lorem+ipsum+dolor+sit+ametcon+sectetur+adipisicing+elit%2C+sed+doiusmod+tempor+incidilabore\" 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%2Fmedical-center%2Fsimple-blog-post-title-6%2F&#038;title=Simple+Blog+Post+Title\" 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\/medical-center\/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-69ea21e2bb2a9618\" ><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\/medical-center\/simple-blog-post-title-6\/\" target=\"_self\">Read More<\/a><\/div> <\/div> <\/div> <\/div> <\/div>\n<\/article>\n<\/div><div class=\"gem-button-container gem-button-position-center thegem-button-69ea21e2bb31e6312\" ><a class=\"gem-button gem-button-size-medium gem-button-style-outline gem-button-text-weight-thin gem-button-border-1\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;border-color: #00a4ef;color: #00a4ef;\" onmouseleave=\"this.style.borderColor='#00a4ef';this.style.backgroundColor='transparent';this.style.color='#00a4ef';\" onmouseenter=\"this.style.borderColor='#00a4ef';this.style.backgroundColor='#00a4ef';this.style.color='#ffffff';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/our-news\/news\/\" target=\"_self\">view all news<\/a><\/div> <div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 110px;\"><\/div>[\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;middle&#8221; ken_burns_direction=&#8221;zoom_out&#8221; ken_burns_transition_speed=&#8221;10000&#8243; ken_burns_enabled=&#8221;true&#8221; ken_burns_image=&#8221;537&#8243; css=&#8221;.vc_custom_1637851870971{padding-top: 200px !important;padding-bottom: 200px !important;}&#8221; mobile_padding_top=&#8221;100&#8243; mobile_padding_bottom=&#8221;100&#8243; el_class=&#8221;custom-paddings&#8221;][vc_column][\/vc_column][\/vc_row][vc_row el_disable_mobile=&#8221;1&#8243; css=&#8221;.vc_custom_1637320970276{margin-top: -100px !important;}&#8221; el_class=&#8221;z-index&#8221;][vc_column][vc_column_text]mouse[\/vc_column_text][\/vc_column][\/vc_row][vc_row&#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\/medical-center\/wp-json\/wp\/v2\/pages\/477"}],"collection":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-json\/wp\/v2\/comments?post=477"}],"version-history":[{"count":98,"href":"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-json\/wp\/v2\/pages\/477\/revisions"}],"predecessor-version":[{"id":741,"href":"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-json\/wp\/v2\/pages\/477\/revisions\/741"}],"wp:attachment":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/medical-center\/wp-json\/wp\/v2\/media?parent=477"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}