{"id":3732,"date":"2024-09-05T11:00:25","date_gmt":"2024-09-05T15:00:25","guid":{"rendered":"https:\/\/giving.georgetown.edu\/give\/?page_id=3732"},"modified":"2024-11-08T14:42:48","modified_gmt":"2024-11-08T19:42:48","slug":"fight","status":"publish","type":"page","link":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/","title":{"rendered":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center"},"content":{"rendered":"\n<body id=\"ip81\"><div id=\"i4hga\" class=\"gjs-row\"><div id=\"ifa1x\" class=\"gjs-cell\"><div id=\"i702u\">Join the Fight Against Cancer with Georgetown Lombardi <\/div><\/div><\/div><div id=\"iq0ue\" class=\"gjs-row\"><div id=\"iy7qs\" class=\"gjs-cell\"><div id=\"ik8pj\" class=\"gjs-row\"><div id=\"i9c5y\" class=\"gjs-cell\"><div id=\"iq22og\">Your Gift Saves Lives! <\/div><div id=\"i7nklv\"><i id=\"idxyzm\">Deadline: October 31 <\/i><\/div><section class=\"bdg-sect\"><p class=\"paragraph\">Our goal is to raise $50,000 by October 31,\u00a0the final day of Breast Cancer Awareness\u00a0Month. <span id=\"i7i4ab\">Can we count on you to stay in the fight?<\/span><\/p><\/section><div id=\"i1xt9r\">Your Support Helps Save Lives <\/div><div id=\"give-form\" class=\"gjs-row\"><div id=\"iu0yud\" class=\"gjs-cell\"><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_56' >\n                        <div class='gform_heading'>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_56'  action='\/give\/wp-json\/wp\/v2\/pages\/3732' data-formid='56' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_56' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_56_2\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio dollar-amount-radio-button field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Amount<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_56_2'>\n\t\t\t<li class='gchoice gchoice_56_2_0'>\n\t\t\t\t<input name='input_2' type='radio' value='500'  id='choice_56_2_0'    \/>\n\t\t\t\t<label for='choice_56_2_0' id='label_56_2_0' class='gform-field-label gform-field-label--type-inline'>$500<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_56_2_1'>\n\t\t\t\t<input name='input_2' type='radio' value='250'  id='choice_56_2_1'    \/>\n\t\t\t\t<label for='choice_56_2_1' id='label_56_2_1' class='gform-field-label gform-field-label--type-inline'>$250<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_56_2_2'>\n\t\t\t\t<input name='input_2' type='radio' value='100' checked='checked' id='choice_56_2_2'    \/>\n\t\t\t\t<label for='choice_56_2_2' id='label_56_2_2' class='gform-field-label gform-field-label--type-inline'>$100<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_56_2_3'>\n\t\t\t\t<input name='input_2' type='radio' value='50'  id='choice_56_2_3'    \/>\n\t\t\t\t<label for='choice_56_2_3' id='label_56_2_3' class='gform-field-label gform-field-label--type-inline'>$50<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_56_2_4'>\n\t\t\t\t<input name='input_2' type='radio' value='25'  id='choice_56_2_4'    \/>\n\t\t\t\t<label for='choice_56_2_4' id='label_56_2_4' class='gform-field-label gform-field-label--type-inline'>$25<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_56_2_5'>\n\t\t\t\t<input name='input_2' type='radio' value='gf_other_choice'  id='choice_56_2_5'   onfocus=\"jQuery(this).next('input').focus();\" \/>\n\t\t\t\t<input class='small' id='input_56_2_other' name='input_2_other' type='text' value='Other' aria-label='Other' onfocus='jQuery(this).prev(\"input\")[0].click(); if(jQuery(this).val() == \"Other\") { jQuery(this).val(\"\"); }' onblur='if(jQuery(this).val().replace(\" \", \"\") == \"\") { jQuery(this).val(\"Other\"); }'   \/>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_56_16\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h5 class=\"form-title\" >Become a Leadership Partner today:<\/h5><\/li><li id=\"field_56_15\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full dollar-amount-radio-buttons field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Amount<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_56_15'>\n\t\t\t<li class='gchoice gchoice_56_15_0'>\n\t\t\t\t<input name='input_15' type='radio' value='1000'  id='choice_56_15_0'    \/>\n\t\t\t\t<label for='choice_56_15_0' id='label_56_15_0' class='gform-field-label gform-field-label--type-inline'>$1000<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_56_15_1'>\n\t\t\t\t<input name='input_15' type='radio' value='gf_other_choice'  id='choice_56_15_1'   onfocus=\"jQuery(this).next('input').focus();\" \/>\n\t\t\t\t<input class='small' id='input_56_15_other' name='input_15_other' type='text' value='Other' aria-label='Other' onfocus='jQuery(this).prev(\"input\")[0].click(); if(jQuery(this).val() == \"Other\") { jQuery(this).val(\"\"); }' onblur='if(jQuery(this).val().replace(\" \", \"\") == \"\") { jQuery(this).val(\"Other\"); }'   \/>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_56_9\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_56_9'>Your Gift Will Support<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_9' id='input_56_9' class='medium gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Lombardi Cancer Center' >Lombardi Cancer Center<\/option><\/select><\/div><\/li><li id=\"field_56_4\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_4' id='input_56_4' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='25CW007589' \/><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_56' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Continue'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_56' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_56' id='gform_theme_56' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_56' id='gform_style_settings_56' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_56' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='56' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_56' value='WyJbXSIsIjhhNzk4MjY1NmFiNTU3M2JmYmNjZTQzY2IwMmY4ZGEwIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_56' id='gform_target_page_number_56' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_56' id='gform_source_page_number_56' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 56, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery('#gform_ajax_frame_56').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_56');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_56').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_56').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_56').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_56').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_56').val();gformInitSpinner( 56, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery(document).trigger('gform_page_loaded', [56, current_page]);window['gf_submitting_56'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_56').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [56]);window['gf_submitting_56'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_56').text());}else{jQuery('#gform_56').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"56\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_56\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_56\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_56\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 56, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]> *\/\n<\/script>\n <\/div><\/div><\/div><\/div><\/div><\/div><div id=\"i7l5f\" class=\"gjs-row\"><div id=\"ib9pj\" class=\"gjs-cell\"><div id=\"ixg7z\" class=\"gjs-row\"><div id=\"ivb84\" class=\"gjs-cell\"><\/div><\/div><\/div><\/div><div class=\"gjs-row\" id=\"i0bc0x\"><div class=\"gjs-cell\"><div id=\"iwiwbo\" class=\"gjs-row\"><div id=\"iaghzk\" class=\"gjs-cell\"><div id=\"ipi8p\" class=\"gjs-row\"><div id=\"iv2rj\" class=\"gjs-cell\"><div id=\"igcih\">At Georgetown University\u2019s Lombardi Comprehensive Cancer Center, we are in a relentless battle \u2013 a fight to uncover groundbreaking discoveries, develop better cancer treatments, and ultimately save lives. We need your help to maintain this momentum. Please consider sending a generous gift today. <\/div><a id=\"iy85l\" href=\"https:\/\/secure.advancement.georgetown.edu\/s\/1686\/18\/giving.aspx?sid=1686&#038;gid=4&#038;pgid=3975&#038;cid=5816&#038;dids=665.667.668.159.56.669.58.144&#038;bledit=1&#038;sort=1&#038;unit=11&#038;appealcode=25CW007589\"><b id=\"indez\"><span id=\"il6uf\">GIVE NOW<\/span><\/b><\/a><\/div><\/div><\/div><div id=\"izc4vk\" class=\"gjs-cell\"><\/div><\/div><\/div><\/div><div id=\"i94pd\" class=\"gjs-row\"><div id=\"ijn2r\" class=\"gjs-cell\"><div id=\"ik0m9\">Support Life-Saving Research Projects <\/div><\/div><\/div><div id=\"iq4d5\" class=\"gjs-row\"><div id=\"i91ns\" class=\"gjs-cell\"><div id=\"iu0c5\" class=\"gjs-row\"><\/div><\/div><\/div><div id=\"i54kl\" class=\"gjs-row\"><div id=\"iy3gi\" class=\"gjs-cell\"><div id=\"ivptu\" class=\"gjs-row\"><div id=\"i8zay\" class=\"gjs-cell\"><img decoding=\"async\" src=\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+16.png\" id=\"iahns\"\/><\/div><div id=\"ic7zn\" class=\"gjs-cell\"><div id=\"irm12\"><b id=\"issxp\">3D Breast Imaging <\/b><\/div><div id=\"iis0c\">This cutting-edge screening modality has become the preferred method over conventional digital mammography. However, does it actually improve detection and survival rates of life-threatening breast cancers? Our researchers are exploring this question through a large-scale, randomized clinical trial in partnership with MedStar Georgetown University Hospital. <\/div><\/div><\/div><\/div><\/div><div id=\"i5qhid\" class=\"gjs-row\"><div id=\"iuejhg\" class=\"gjs-cell\"><div id=\"ivbeub\" class=\"gjs-row\"><div id=\"idcf6s\" class=\"gjs-cell\"><div id=\"ijn9xl\"><span id=\"i17yj-2\" draggable=\"true\">Mammogram Screening<\/span><\/div><div id=\"i5axs\">Since 2009, the standard has been for women in their forties to make individualized decisions about when to start screening based on their health history and preferences, starting no later than age 50. However, a new study co-authored by Georgetown Lombardi researcher Jeanne S. Mandelblatt, M.D., shows that beginning breast cancer screening every two years at age 40 could reduce breast cancer mortality by 30%, while minimizing false positives. <br\/><\/div><\/div><div id=\"iwx4ty\" class=\"gjs-cell\"><img decoding=\"async\" id=\"i4y3fj\" src=\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+17.png\"\/><\/div><\/div><\/div><\/div><div id=\"imkoa\" class=\"gjs-row\"><div id=\"i8134\" class=\"gjs-cell\"><div id=\"i4grn\" class=\"gjs-row\"><div id=\"iwwmc\" class=\"gjs-cell\"><img decoding=\"async\" id=\"iyikh\" src=\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/AdobeStock_554822469_Preview.png\"\/><\/div><div id=\"i8ib9\" class=\"gjs-cell\"><div id=\"ivwqg\"><b id=\"ihuq1\">Diversity in Clinical Trials <\/b><\/div><div id=\"i2xxv5\">At Georgetown Lombardi, we believe diversity in clinical trials is essential for effective cancer treatment. Our commitment to inclusivity ensures that our research benefits all populations, regardless of race, ethnicity, or socioeconomic status. By involving a diverse group of participants, we can better understand how different groups respond to various treatments and tailor our approaches to meet their unique needs. <br\/><\/div><\/div><\/div><\/div><\/div><div id=\"iwb1q\" class=\"gjs-row\"><div id=\"i2jr6\" class=\"gjs-cell\"><div id=\"i6bku\" class=\"gjs-row\"><div id=\"iu584\" class=\"gjs-cell\"><div id=\"i2ah8\"><i id=\"idztrq\">\u201cIt\u2019s important to conduct these trials in a way that includes people from all backgrounds,\u201d <\/i><span draggable=\"true\">says Dr. Song.<\/span><i draggable=\"true\" id=\"imdh7\">\u201cOur diverse population allows us to gather more comprehensive data, leading to more effective and personalized treatments.\u201d <\/i><\/div><\/div><\/div><\/div><\/div><div id=\"iad21\" class=\"gjs-row\"><div id=\"io7e4\" class=\"gjs-cell\"><div id=\"i8kmz\" class=\"gjs-row\"><div id=\"imasa\" class=\"gjs-cell\"><div id=\"iforq\">Georgetown Lombardi Comprehensive Cancer Center is one of only 57 research and treatment facilities nationwide that have qualified as a National Cancer Institute-designated Comprehensive Cancer Center, leading the world in innovative cancer research. However, our groundbreaking studies cannot be fully supported by government funds alone. <\/div><div id=\"iug4v\"><span id=\"i3s7db\"><i>With your support<\/i><\/span>, we will achieve the next significant breakthrough in breast cancer treatment and other cancers, offering hope and saving lives in the Washington, DC metro area and beyond. <\/div><\/div><\/div><\/div><\/div><div id=\"inhid\" class=\"gjs-row\"><div id=\"ixnjk\" class=\"gjs-cell\"><img decoding=\"async\" id=\"i2brp\" src=\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/sAdobeStock_127259506_Preview.png\"\/><\/div><div id=\"ig87f\" class=\"gjs-cell\"><div id=\"imx6k\" class=\"gjs-row\"><div id=\"ii5b5\" class=\"gjs-cell\"><div id=\"igni7\"><b id=\"ihco0x\"><i id=\"iairyo\">Big Breakthroughs Are Within Reach <\/i><\/b><\/div><div id=\"ifbbb\">Stay in the fight to save lives today. <\/div><a id=\"i922h\" href=\"https:\/\/secure.advancement.georgetown.edu\/s\/1686\/18\/giving.aspx?sid=1686&#038;gid=4&#038;pgid=3975&#038;cid=5816&#038;dids=665.667.668.159.56.669.58.144&#038;bledit=1&#038;sort=1&#038;unit=11&#038;appealcode=25CW007589\"><b id=\"i41ti\"><span id=\"ilhdf\">GIVE NOW<\/span><\/b><\/a><\/div><\/div><\/div><\/div><\/body>\n\n\n\n<link rel=\"stylesheet\" href=\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/gravity-dwi.min.css\">\n\n<style>\n\n.gfield_label{\nmargin-bottom:15px!important;\n}\n\n.paragraph{\nline-height:1.25em!important;\n}\n\n.lc--layout-container h5{\nfont-size:1rem!important;\nfont-weight:500!important;\n}\n\n* {\n  box-sizing: border-box;\nfont-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif!important;\nline-height:1.25em;\n}\nbody {\n  margin: 0;\n}\n.gjs-row{\n  display:flex;\n  justify-content:flex-start;\n  align-items:stretch;\n  flex-wrap:nowrap;\n  padding:10px;\n}\n.gjs-cell{\n  min-height:75px;\n  flex-grow:1;\n  flex-basis:100%;\n}\n#i94pd{\n  background-color:#0b2041;\n  padding:15px 0px 15px 0px;\n}\n#ijn2r{\n  max-width:1200px;\n  margin:0px auto 0px auto;\n}\n#ik0m9{\n  padding:10px;\n  text-align:center;\n  font-size:55px;\n  color:white;\n}\n#iq4d5{\n  padding:0px 0px 0px 0;\n  background-repeat:repeat;\n  background-position:center center;\n  background-attachment:scroll;\n  background-size:cover;\n  background-image:url('https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+15.png');\n  justify-content:center;\n  align-items:center;\n  min-height:420px;\n  border-bottom:0px none rgba(213,1,50,0);\n  border-left:0px solid;\n}\n#iu0c5{\n  background-repeat:unset;\n  background-position:unset;\n  background-attachment:unset;\n  background-size:unset;\n  background-image:unset;\n  max-width:1200px;\n  margin:0px auto 0px auto;\n  background-image-color:unset;\n  background-image-gradient:unset;\n  background-image-gradient-dir:unset;\n  background-image-gradient-type:unset;\n  padding:40px 10px 10px 10px;\n}\n#ixg7z{\n  background-repeat:unset;\n  background-position:unset;\n  background-attachment:unset;\n  background-size:unset;\n  background-image:unset;\n  max-width:1200px;\n  margin:0px auto 0px auto;\n  background-image-color:unset;\n  background-image-gradient:unset;\n  background-image-gradient-dir:unset;\n  background-image-gradient-type:unset;\n  padding:10px 10px 10px 10px;\n}\n#i7l5f{\n  padding:0px 0px 0px 0;\n  background-repeat:repeat;\n  background-position:left center;\n  background-attachment:scroll;\n  background-size:cover;\n  background-image:url('https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Group+5.png');\n  justify-content:center;\n  align-items:center;\n  min-height:323px;\n  border-bottom:0px solid #ffffff;\n}\n#ipi8p{\n  margin:0px auto 0px auto;\n  border-left:3px solid #4eb3dd;\n  padding:10px 10px 0px 10px;\n}\n#igcih{\n  padding:0px 10px 40px 10px;\n  font-size:22px;\n  color:#091f3f;\n  width:100%;\n}\n#iy85l{\n  color:#ffffff;\n  background-color:#d50032;\n  padding:6px 15px 6px 15px;\n  display:inline-block;\n  margin:10px 10px 10px 10px;\n  border-radius:6px 6px 6px 6px;\n}\n#indez{\n  font-size:21px;\n}\n#il6uf{\n  font-weight:normal;\n  font-size:25px;\n}\n#i702u{\n  padding:10px;\n  text-align:center;\n  font-size:46px;\n  color:white;\n}\n#ifa1x{\n  max-width:1200px;\n  margin:0px auto 0px auto;\n}\n#i4hga{\n  background-color:#0b2041;\n  padding:0px 0px 0px 0px;\n}\n#i9c5y{\n  background-color:#ffffff;\n  position:absolute;\n  max-width:500px;\n  right:0px;\n  top:-100px;\n  padding:25px 40px 40px 40px;\n  border:1px solid #b6b6b6;\n  color:#001931;\n}\n#ik8pj{\n  background-repeat:unset;\n  background-position:unset;\n  background-attachment:unset;\n  background-size:unset;\n  background-image:unset;\n  max-width:1200px;\n  margin:0px auto 0px auto;\n  background-image-color:unset;\n  background-image-gradient:unset;\n  background-image-gradient-dir:unset;\n  background-image-gradient-type:unset;\n  padding:40px 10px 10px 10px;\n  position:relative;\n}\n#iq0ue{\n  padding:0px 0px 0px 0;\n  background-repeat:repeat;\n  background-position:center center;\n  background-attachment:scroll;\n  background-size:cover;\n  background-image:url('https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+13.png');\n  justify-content:center;\n  align-items:center;\n  min-height:427px;\n  border-bottom:20px solid #d50132;\n  align-content:center;\n}\n#ivwqg{\n  padding:0px 10px 0px 10px;\n  color:#091f3f;\n}\n#i4grn{\n  max-width:1200px;\n  margin:0px auto 0px auto;\n  border-left:0px none #4eb3dd;\n  padding:10px 0px 10px 0px;\n}\n#imkoa{\n  padding:30px 10px 30px 10px;\n  background-repeat:repeat;\n  background-position:left top;\n  background-attachment:scroll;\n  background-size:auto;\n  background-image:linear-gradient(#f0f0f0 0%, #f0f0f0 100%);\n  background-image-color:unset;\n  background-image-gradient:unset;\n  background-image-gradient-dir:unset;\n  background-image-gradient-type:unset;\n}\n#iyikh{\n  color:black;\n  width:353px;\n  display:flex;\n  justify-content:center;\n  align-items:center;\n}\n#i8ib9{\n  flex-basis:134%;\n  align-self:center;\n}\n#iwwmc{\n  flex-basis:64%;\n  display:flex;\n  justify-content:flex-start;\n  align-items:center;\n}\n#i5axs{\n  padding:0px 0px 0px 0px;\n  color:#091f3f;\n  font-size:22px;\n}\n#ihuq1{\n  font-size:40px;\n}\n#iahns{\n  color:black;\n  display:flex;\n  justify-content:center;\n  align-items:center;\n}\n#i8zay{\n  flex-basis:64%;\n  display:flex;\n  justify-content:flex-start;\n  align-items:center;\n  align-content:center;\n}\n#issxp{\n  font-size:40px;\n}\n#irm12{\n  padding:0px 10px 0px 10px;\n  color:#091f3f;\n}\n#iis0c{\n  padding:0px 10px 0px 10px;\n  color:#091f3f;\n  font-size:22px;\n}\n#ic7zn{\n  flex-basis:134%;\n  align-self:center;\n}\n#ivptu{\n  max-width:1200px;\n  margin:0px auto 0px auto;\n  border-left:0px none #4eb3dd;\n  padding:0px 0px 0px 0px;\n}\n#i54kl{\n  padding:75px 10px 30px 10px;\n  background-repeat:unset;\n  background-position:unset;\n  background-attachment:unset;\n  background-size:unset;\n  background-image:unset;\n  background-image-color:unset;\n  background-image-gradient:unset;\n  background-image-gradient-dir:unset;\n  background-image-gradient-type:unset;\n  background-color:#f0f0f0;\n}\n#i2ah8{\n  padding:0px 10px 0px 10px;\n  color:#091f3f;\n  font-size:29px;\n  text-align:center;\n}\n#iu584{\n  flex-basis:134%;\n}\n#i6bku{\n  margin:0px auto 0px auto;\n  border-left:0px none #4eb3dd;\n  padding:10px 10px 10px 10px;\n  border:0px solid;\n  border-top:3px solid #4eb3dd;\n  border-bottom:3px solid #4eb3dd;\n  max-width:1000px;\n}\n#iwb1q{\n  padding:30px 10px 60px 10px;\n  background-repeat:repeat;\n  background-position:left top;\n  background-attachment:scroll;\n  background-size:auto;\n  background-image:linear-gradient(#f0f0f0 0%, #f0f0f0 100%);\n  background-image-color:unset;\n  background-image-gradient:unset;\n  background-image-gradient-dir:unset;\n  background-image-gradient-type:unset;\n}\n#iforq{\n  padding:5px 10px 15px 10px;\n  color:#091f3f;\n  font-size:20px;\n  text-align:center;\n}\n#imasa{\n  flex-basis:134%;\n}\n#i8kmz{\n  max-width:1122px;\n  margin:0px auto 0px auto;\n  border-left:0px none #4eb3dd;\n  padding:10px 10px 10px 10px;\n  border:0px solid;\n  border-top:0px none #4eb3dd;\n  border-bottom:0px none #4eb3dd;\n}\n#iad21{\n  padding:40px 10px 50px 10px;\n  background-repeat:repeat;\n  background-position:left top;\n  background-attachment:scroll;\n  background-size:auto;\n  background-image:linear-gradient(#d0cabf 0%, #d0cabf 100%);\n  background-image-color:unset;\n  background-image-gradient:unset;\n  background-image-gradient-dir:unset;\n  background-image-gradient-type:unset;\n  border-top:20px solid #d50132;\n}\n#iug4v{\n  padding:5px 10px 15px 10px;\n  color:#091f3f;\n  font-size:20px;\n  text-align:center;\n}\n#inhid{\n  padding:0px 0px 0px 0px;\n  background-color:#041e42;\n  border-bottom:20px solid #d50132;\n}\n#i2brp{\n  color:black;\n}\n#ixnjk{\n  display:flex;\n  justify-content:flex-start;\n  align-items:center;\n  flex-basis:79%;\n}\n#ig87f{\n  display:flex;\n  justify-content:center;\n  align-items:center;\n  flex-basis:112%;\n}\n#igni7{\n  text-align:center;\n  font-size:36px;\n  color:#ffffff;\n}\n#ifbbb{\n  padding:0px 10px 30px 10px;\n  text-align:center;\n  color:#ffffff;\n  font-size:34px;\n}\n#ilhdf{\n  font-weight:normal;\n  text-align:center;\n}\n#i41ti{\n  font-size:25px;\n}\n#i922h{\n  color:#ffffff;\n  background-color:#d50032;\n  padding:6px 15px 6px 15px;\n  display:inline-block;\n  border-radius:6px 6px 6px 6px;\n  float:none;\n  margin:10px 10px 10px 10px;\n  text-align:center;\n}\n#ii5b5{\n  text-align:center;\n}\n#iairyo{\n  padding:0 0 0px 0;\n  font-size:38px;\n  font-weight:800;\n}\n#ivbeub{\n  max-width:1200px;\n  margin:0px auto 0px auto;\n  padding:0px 0px 0px 0px;\n}\n#ijn9xl{\n  padding:0px 0px 0px 0px;\n  font-size:25px;\n  color:#091f3f;\n}\n#iwx4ty{\n  display:flex;\n  align-items:center;\n  justify-content:flex-end;\n  flex-basis:83%;\n}\n#i4y3fj{\n  color:black;\n  padding:0px 0px 0px 25px;\n}\n#i17yj-2{\n  --tw-border-spacing-x:0;\n  --tw-border-spacing-y:0;\n  --tw-translate-x:0;\n  --tw-translate-y:0;\n  --tw-rotate:0;\n  --tw-skew-x:0;\n  --tw-skew-y:0;\n  --tw-scale-x:1;\n  --tw-scale-y:1;\n  --tw-scroll-snap-strictness:proximity;\n  --tw-ring-offset-width:0px;\n  --tw-ring-offset-color:#fff;\n  --tw-ring-color:rgb(59 130 246 \/ 0.5);\n  --tw-ring-offset-shadow:0 0 #0000;\n  --tw-ring-shadow:0 0 #0000;\n  --tw-shadow:0 0 #0000;\n  --tw-shadow-colored:0 0 #0000;\n  font-weight:bolder;\n  color:rgb(9, 31, 63);\n  font-size:40px;\n}\n#i5qhid{\n  border:1px solid #f0f0f0;\n  background-color:#f0f0f0;\n}\n#iq22og{\n  font-size:40px;\n  color:#001931;\n  font-weight:700;\n}\n#i7nklv{\n  padding:0px 0px 0px 0px;\n  font-weight:500;\n  font-size:31px;\n}\n.paragraph{\n  font-size:17px;\n  margin:20px 0px 20px 0px;\n  color:#001931;\n}\n#i7i4ab{\n  color:#d50132;\n}\n#i1xt9r{\n  padding:15px 0px 0px 0px;\n  font-size:24px;\n  color:#001931;\n  margin:0px 0px 50px 0px;\nfont-weight:900!important;\n}\n#give-form{\n  padding:0px 0px 0px 0px;\n}\n#idcf6s{\n  align-self:center;\n}\n#idztrq{\n  font-weight:600;\n}\n#ikew9w{\n  font-weight:500;\n}\n#i2xxv5{\n  padding:0px 10px 0px 10px;\n  color:#091f3f;\n  font-size:22px;\n}\n#iwiwbo{\n  max-width:1200px;\n  margin:50px auto 50px auto;\n}\n#i0bc0x{\n  background-repeat:repeat;\n  background-position:left top;\n  background-attachment:scroll;\n  background-size:auto;\n  background-image:linear-gradient(#f0f0f0 0%, #f0f0f0 100%);\n}\n#imdh7{\n  font-weight:600!important;\n}\n#i3s7db i{\n  font-weight:700!important;\n}\n@media (max-width: 992px){\n  #iq0ue{\n    min-height:219px;\n  }\n  #ifbbb{\n    font-size:17px;\n    padding:0px 10px 0px 10px;\n  }\n  #i702u{\n    font-size:27px;\n  }\n  #il6uf{\n    font-size:20px;\n  }\n  #ik0m9{\n    font-size:27px;\n  }\n  #ijn2r{\n    min-height:0px;\n  }\n  #ifa1x{\n    min-height:0px;\n  }\n  #ivb84{\n    min-height:0px;\n  }\n  #i7l5f{\n    min-height:146px;\n  }\n  #issxp{\n    font-size:20px;\n  }\n  #ihuq1{\n    font-size:32px;\n  }\n  #i2ah8{\n    font-size:19px;\n  }\n  #igni7{\n    font-size:27px;\n  }\n  #ixnjk{\n    flex-basis:114%;\n  }\n  #i41ti{\n    font-size:20px;\n  }\n  #ig87f{\n    flex-basis:121%;\n  }\n  #i9c5y{\n    margin:45px 10px 10px 10px;\n    flex-basis:42%;\n    max-width:50%;\n    padding:10px 40px 40px 40px;\n    position:absolute;\n  }\n  #iahns{\n    width:243px;\n  }\n  #i4y3fj{\n    width:380px;\n    height:auto;\n  }\n  #iwx4ty{\n    flex-basis:83%;\n  }\n  #ijn9xl{\n    font-size:20px;\n  }\n  #iq4d5{\n    min-height:214px;\n  }\n  #igcih{\n    font-size:18px;\n  }\n  #iis0c{\n    font-size:16px;\n  }\n  #i5axs{\n    font-size:16px;\n  }\n  #i2xxv5{\n    font-size:16px;\n  }\n  #i17yj-2{\n    font-size:32px;\n  }\n  #iq22og{\n    font-size:29px;\n  }\n  #idxyzm{\n    font-size:23px;\n  }\n  #i7nklv{\n    line-height:0.75em;\n  }\n  .paragraph{\n    font-size:13px;\n  }\n  #i1xt9r{\n    font-size:20px;\n    margin:50px 0px 20px 0px;\n  }\n  #iforq{\n    font-size:17px;\n  }\n  #iug4v{\n    font-size:17px;\n  }\n  #iairyo{\n    font-size:21px;\n  }\n}\n@media (max-width: 768px){\n  .gjs-row{\n    flex-wrap:wrap;\n  }\n}\n@media (max-width: 480px){\n  #i702u{\n    font-size:18px;\n  }\n  #ik0m9{\n    font-size:18px;\n  }\n  #igni7{\n    font-size:18px;\n  }\n  #i9c5y{\n    padding:10px 10px 10px 10px;\n    max-width:100%;\n    margin:80px 10px 10px 10px;\n    position:relative;\n    top:0px;\n  }\n  #ik8pj{\n    padding:5px 5px 5px 5px;\n  }\n  #i7l5f{\n    min-height:99px;\n  }\n  #il6uf{\n    font-size:16px;\n  }\n  #iq4d5{\n    min-height:89px;\n  }\n  #issxp{\n    font-size:16px;\n  }\n  #irm12{\n    font-size:16px;\n    padding:10px 10px 0px 10px;\n  }\n  #iahns{\n    width:264px;\n    height:169px;\n  }\n  #ivwqg{\n    padding:10px 10px 0px 10px;\n  }\n  #ihuq1{\n    font-size:22px;\n  }\n  #i2ah8{\n    font-size:16px;\n    padding:0px 0px 0px 0px;\n  }\n  #ifbbb{\n    font-size:16px;\n  }\n  #ilhdf{\n    font-size:16px;\n  }\n  #i41ti{\n    font-size:0px;\n  }\n  #ijn9xl{\n    font-size:16px;\n  }\n  #i4y3fj{\n    width:100%;\n    text-align:center;\n  }\n  #i8zay{\n    justify-content:center;\n  }\n  #i8kmz{\n    padding:0px 0px 0px 0px;\n  }\n  #ib9pj{\n    min-height:0px;\n  }\n  #ivptu{\n    padding:10px 0px 0px 0px;\n  }\n  #ivbeub{\n    padding:10px 0px 10px 0px;\n  }\n  #i4grn{\n    padding:10px 0px 0px 0px;\n  }\n  #iq22og{\n    font-size:25px;\n  }\n  #idxyzm{\n    font-size:20px;\n  }\n  #i1xt9r{\n    font-size:17px;\n  }\n  #iq0ue{\n    background-repeat:no-repeat;\n    background-position:center top;\n    background-attachment:scroll;\n    background-size:contain;\n    background-image:url('https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+13.png');\n    min-height:100px;\n  }\n  #igcih{\n    font-size:16px;\n  }\n  #iis0c{\n    font-size:16px;\n  }\n  #i5axs{\n    font-size:16px;\n    margin:0 0 25px 0;\n  }\n  #i2xxv5{\n    font-size:16px;\n  }\n  #i17yj-2{\n    font-size:22px;\n  }\n  #ipi8p{\n    border:1 none;\n  }\n  #iyikh{\n    text-align:center;\n    width:100%;\n  }\n  #iwx4ty,#iugqn{\n    justify-content:center;\n  }\n}\n\n.desktop-logo img{max-width:450px;\n\n<\/style>\n\n<script>\ndocument.querySelector('.desktop-logo img').src = 'https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/LCCC_White.png';\ndocument.querySelectorAll('nav .menu-item a')[1].href=\"https:\/\/secure.advancement.georgetown.edu\/s\/1686\/18\/giving.aspx?sid=1686&gid=4&pgid=3975&cid=5816&dids=665.667.668.159.56.669.58.144&bledit=1&sort=1&unit=11&appealcode=25CW007589\";\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>Join the Fight Against Cancer with Georgetown Lombardi Your Gift Saves Lives! Deadline: October 31 Our goal is to raise $50,000 by October 31,\u00a0the final day of Breast Cancer Awareness\u00a0Month. [&hellip;]<\/p>\n","protected":false},"author":885,"featured_media":0,"parent":3245,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page_landing-page.php","meta":{"_acf_changed":false,"footnotes":"","_links_to":"","_links_to_target":""},"class_list":["post-3732","page","type-page","status-publish","hentry"],"acf":{"share_link":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/?utm_source=do&utm_medium=email&utm_campaign=dw899_outreach","activate_citymap":false,"chart_embed":false,"contact_button_text":"","contact_email":"","mapbox_embed":false,"override_nav_logo":false,"page_header_appearance":"header-default"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Make a Gift to Georgetown Lombardi Comprehensive Cancer Center - Give<\/title>\n<meta name=\"description\" content=\"Join the Fight Against Cancer with Georgetown Lombardi Your Gift Saves Lives! Deadline: October 31 Our goal is to raise $50,000 by October 31,\u00a0the final day of Breast Cancer Awareness\u00a0Month. [&hellip;]\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center - Give\" \/>\n<meta property=\"og:description\" content=\"Join the Fight Against Cancer with Georgetown Lombardi Your Gift Saves Lives! Deadline: October 31 Our goal is to raise $50,000 by October 31,\u00a0the final day of Breast Cancer Awareness\u00a0Month. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/\" \/>\n<meta property=\"og:site_name\" content=\"Give\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-08T19:42:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+16.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/\",\"name\":\"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center - Give\",\"isPartOf\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+16.png\",\"datePublished\":\"2024-09-05T15:00:25+00:00\",\"dateModified\":\"2024-11-08T19:42:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#primaryimage\",\"url\":\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+16.png\",\"contentUrl\":\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+16.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/my.giving.georgetown.edu\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"2023 October LCCC Evergreen TSM_Landing Page\",\"item\":\"https:\/\/giving.georgetown.edu\/give\/lccc\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/#website\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/\",\"name\":\"Give\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/giving.georgetown.edu\/give\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center - Give","description":"Join the Fight Against Cancer with Georgetown Lombardi Your Gift Saves Lives! Deadline: October 31 Our goal is to raise $50,000 by October 31,\u00a0the final day of Breast Cancer Awareness\u00a0Month. [&hellip;]","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/","og_locale":"en_US","og_type":"article","og_title":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center - Give","og_description":"Join the Fight Against Cancer with Georgetown Lombardi Your Gift Saves Lives! Deadline: October 31 Our goal is to raise $50,000 by October 31,\u00a0the final day of Breast Cancer Awareness\u00a0Month. [&hellip;]","og_url":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/","og_site_name":"Give","article_modified_time":"2024-11-08T19:42:48+00:00","og_image":[{"url":"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+16.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/","url":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/","name":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center - Give","isPartOf":{"@id":"https:\/\/giving.georgetown.edu\/give\/#website"},"primaryImageOfPage":{"@id":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#primaryimage"},"image":{"@id":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#primaryimage"},"thumbnailUrl":"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+16.png","datePublished":"2024-09-05T15:00:25+00:00","dateModified":"2024-11-08T19:42:48+00:00","breadcrumb":{"@id":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#primaryimage","url":"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+16.png","contentUrl":"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/2024.09\/Mask+Group+16.png"},{"@type":"BreadcrumbList","@id":"https:\/\/giving.georgetown.edu\/give\/lccc\/fight\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/my.giving.georgetown.edu\/"},{"@type":"ListItem","position":2,"name":"2023 October LCCC Evergreen TSM_Landing Page","item":"https:\/\/giving.georgetown.edu\/give\/lccc\/"},{"@type":"ListItem","position":3,"name":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center"}]},{"@type":"WebSite","@id":"https:\/\/giving.georgetown.edu\/give\/#website","url":"https:\/\/giving.georgetown.edu\/give\/","name":"Give","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/giving.georgetown.edu\/give\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/3732","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/users\/885"}],"replies":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/comments?post=3732"}],"version-history":[{"count":55,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/3732\/revisions"}],"predecessor-version":[{"id":4011,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/3732\/revisions\/4011"}],"up":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/3245"}],"wp:attachment":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/media?parent=3732"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}