CINXE.COM
CALL 988 is here to help | 988 Helpline
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>CALL 988 is here to help | 988 Helpline</title> <meta name="description" content="Call 988 during mental health and substance use emergencies in Baltimore and Central Maryland. Specialists are available 24/7 to provide free, confidential care."> <meta name="author" content="Marketing for Change"> <meta property="og:title" content="CALL 988 is here to help | 988 Helpline"> <meta property="og:type" content="website"> <meta property="og:url" content="https://www.988helpline.org/"> <meta property="og:description" content="Call 988 during mental health and substance use emergencies in Baltimore and Central Maryland. Specialists are available 24/7 to provide free, confidential care."> <meta property="og:image" content="image.png"> <link rel="icon" href="/favicon.ico"> <link rel="apple-touch-icon" href="/apple-touch-icon.png"> <script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> <meta name='robots' content='max-image-preview:large' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/988helpline.org\/wp-core\/wp-includes\/js\/wp-emoji.js?ver=6.7.2","twemoji":"https:\/\/988helpline.org\/wp-core\/wp-includes\/js\/twemoji.js?ver=6.7.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://988helpline.org/wp-core/wp-includes/css/dist/block-library/style.css?ver=6.7.2' type='text/css' media='all' /> <style id='safe-svg-svg-icon-style-inline-css' type='text/css'> .safe-svg-cover{text-align:center}.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%} </style> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='google-fonts-css' href='https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700;800;900&family=Nunito:wght@400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap' type='text/css' media='all' /> <link rel='stylesheet' id='main-style-css' href='https://988helpline.org/wp-content/themes/m4c-theme/dist/assets/css/main.41c57fdd83ccc71d9eb8.css' type='text/css' media='all' /> <script type="text/javascript" src="https://988helpline.org/wp-content/themes/m4c-theme/dist/assets/js/main.49a2128a94e2c7975e0e.js" id="main-scripts-js"></script> <link rel="https://api.w.org/" href="https://988helpline.org/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://988helpline.org/wp-json/wp/v2/pages/53" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://988helpline.org/wp-core/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel="canonical" href="https://988helpline.org/tips-men/" /> <link rel='shortlink' href='https://988helpline.org/?p=53' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://988helpline.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2F988helpline.org%2Ftips-men%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://988helpline.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2F988helpline.org%2Ftips-men%2F&format=xml" /> <style type="text/css" id="wp-custom-css"> .directory #directory-area .tab-content .region p.website { overflow-wrap: break-word; } @media (min-width: 768px) { .col-md-6 { overflow-wrap: break-word; } } </style> <script> const ajaxurl = 'https://988helpline.org/wp-core/wp-admin/admin-ajax.php'; </script> <script type="text/javascript"> var stylesheet_directory_uri = "https://988helpline.org/wp-content/themes/m4c-theme"; </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js" integrity="sha512-GsLlZN/3F2ErC5ifS5QtgpiJtWd43JWSuIgh7mbzZ8zBps+dvLusV+eNQATqgA/HdeKFVgA5v3S/cIrLF7QnIg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://kit.fontawesome.com/19821bd946.js" crossorigin="anonymous"></script> <script src="https://www.youtube.com/iframe_api"></script> <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/@accessible360/accessible-slick@1.0.1/slick/slick.min.css"> <script type="text/javascript" src="//cdn.jsdelivr.net/npm/@accessible360/accessible-slick@1.0.1/slick/slick.min.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.css" integrity="sha512-fxF1t7b0mpb/ytjBeSu/OpgXxCVcX5/O8AJGYvHaWmNfi/lYLtttitFK17K4iKBva4iU9dcZ+BIV7dyD/nDdSw==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.js" integrity="sha512-Yk47FuYNtuINE1w+t/KT4BQ7JaycTCcrvlSvdK/jry6Kcxqg5vN7/svVWCxZykVzzJHaxXk5T9jnFemZHSYgnw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-232359966-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'UA-232359966-1'); </script> <!-- Google Tag Manager --> <script> (function(w, d, s, l, i) { w[l] = w[l] || []; w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); var f = d.getElementsByTagName(s)[0], j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f); })(window, document, 'script', 'dataLayer', 'GTM-WPKZD54'); </script> <!-- End Google Tag Manager --> <meta name="facebook-domain-verification" content="ch0orcvvcaybvnlxbdga249lrr3pug" /> <style> .button.grey { color: #4A4A4A; } .tablinks { cursor: pointer; } .tabcontent { display: none; } .tabcontent.active { display: block; } .tablinks { font-size: 1.25rem; margin: 0 .5rem; } .tablinks.active { display: block; background: #ff6a1b; color: #ffffff; } .partner #handouts { border-top: none; border-bottom: none; } .partner #intro .links .link .media img { box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; } .partner #intro .links .link { width: 28rem; } </style> </head> <script> function openTab(evt, cityName) { var i, tabcontent, tablinks; tabcontent = document.getElementsByClassName("tabcontent"); for (i = 0; i < tabcontent.length; i++) { tabcontent[i].style.display = "none"; } tablinks = document.getElementsByClassName("tablinks"); for (i = 0; i < tablinks.length; i++) { tablinks[i].className = tablinks[i].className.replace(" active", ""); } document.getElementById(cityName).style.display = "block"; evt.currentTarget.className += " active"; } </script> <body> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WPKZD54" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --><div id="page-container" class="coping container-fluid"> <header> <nav class="navbar navbar-expand-lg navbar-light static-top"> <div class="container"> <a href="#main-content" class="skip-link">Skip to content</a> <a class="navbar-brand" href="https://988helpline.org/" title="988 Helpline"> <img src="https://988helpline.org/wp-content/themes/m4c-theme/assets/images/logo.svg" alt="Call 988"> </a> <div> <a class="mobile-button call-now" href="tel:988"> <button class="button orange"> Call 988 </button> </a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> </div> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav ms-auto align-items-center"> <li class="nav-item divider-right"> <a class="nav-link" href="https://988helpline.org/what-to-expect">What to Expect</a> </li> <li class="nav-item divider-right"> <a class="nav-link" href="https://988helpline.org/community">988 in Central MD</a> </li> <li class="nav-item divider-right dropdown"> <a href="#" class="nav-link dropdown-toggle" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">Coping Tips</a> <ul class="dropdown-menu" aria-labelledby="dropdownMenuLink"> <a href="/tips"><li><div><span>General Tips</span><img src='https://988helpline.org/wp-content/themes/m4c-theme/assets/images//hover-icon.svg' alt='' title='' /></div></li></a> <a href="/tips-men"><li><div><span>Tips for Men</span><img src='https://988helpline.org/wp-content/themes/m4c-theme/assets/images//hover-icon.svg' alt='' title='' /></div></li></a> <a href="/tips-lgbtq"><li><div><span>Tips for LGBTQ+</span><img src='https://988helpline.org/wp-content/themes/m4c-theme/assets/images//hover-icon.svg' alt='' title='' /></div></li></a> <a href="/tips-for-youth"><li><div><span>Tips for Youth</span><img src='https://988helpline.org/wp-content/themes/m4c-theme/assets/images//hover-icon.svg' alt='' title='' /></div></li></a> </ul> </li> <li class="nav-item divider-right"> <a class="nav-link" href="https://988helpline.org/about">About Us</a> </li> <li class="nav-item divider-right"> <a class="nav-link" href="https://988helpline.org/faq">FAQ</a> </li> <li class="nav-item"> <a class="nav-link" href="https://988helpline.org/directory">Support Clinics</a> </li> <li class="nav-item"> <a class="call-now btn orange" href="tel:988"> Need Help Now? Call 988 </a> </li> <!-- Dropdown Example --> <!-- <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Dropdown </a> <ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown"> <li> <a class="dropdown-item" href="#">Action</a> </li> <li> <a class="dropdown-item" href="#">Another action</a> </li> <li> <hr class="dropdown-divider"> </li> <li> <a class="dropdown-item" href="#">Something else here</a> </li> </ul> </li> --> </ul> </div> </div> </nav> </header> <main> <div id="main-content"></div> <section id="hero"> <div class="container"> <div class="row"> <div class="col-sm-12"> <h1>The Guy's Guide<br>to Coping.</h1> <p>Whether you're feeling anxious or overwhelmed or just had a tough day, we can help.</p> <p>See coping tips you can use right now or when you need them.</p> <p><span class="scroll-down"><i class="fas fa-angle-down"></i></span></p> </div> </div> </div> <div class="slider-wrap"> <div class="hero-slider"> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Header-Veteran1.png' alt=' Warning: Trying to access array offset on value of type bool in /var/www/html/wp-content/themes/m4c-theme/views/template_coping_landing_page.php on line 27 ' title='' /> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Header-Veteran3.png' alt='' title='' /> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Header-Veteran4.png' alt='' title='' /> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Header-Veteran5.png' alt='' title='' /> </div> </div> </section> <section id="emotions" style=" background-image: url(https://988helpline.org/wp-content/uploads/2023/03/Footer-OlderMenVeterans-v1-scaled.jpg); background-blend-mode: luminosity; background-color: #fff; background-repeat: no-repeat; background-position: bottom; background-size: contain; position: relative; "> <img class="grid-1" src="https://988helpline.org/wp-content/themes/m4c-theme/assets/images/grid/grid-1.svg"> <div class="emotions-container"> <div class="mobile"> <p>Whether you're feeling anxious or overwhelmed or just had a tough day, we can help.</p> <p>See coping tips you can use right now or when you need them.</p> </div> <h2>What are you dealing with?</h2> <div class="cards"> <button class="card-item"> <div class="card-inner"> <div class="card-front"> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Anxious-2.svg' alt="" title='GBRICS-Anxious-2' /> <h3>Anxiety</h3> </div> <div class="card-back"> <h3>Anxiety</h3> <ul> <li><b>Take a box breath.</b><span style="font-weight: 400"> Here’s how the U.S. Navy SEALs de-stress. Count to 4 as you take in a deep, slow breath. Hold your breath for 4 counts. Breathe out for 4 counts. Try to get all the air out of your lungs by the time you count to 4. Repeat. </span></li> <li><strong>Do something with your hands.</strong> Doing something to ground you in the moment can take your mind off racing thoughts.</li> <li><strong>Watch a funny video.</strong> Research found humor can help lower anxiety as much as exercise can.</li> </ul> </div> </div> </button> <button class="card-item"> <div class="card-inner"> <div class="card-front"> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Lonely.svg' alt="" title='GBRICS-Lonely' /> <h3>Loneliness</h3> </div> <div class="card-back"> <h3>Loneliness</h3> <ul> <li><strong>Find a group of people who like the same things as you.</strong> Want to meet in person? Ask around, or try <a href="https://www.meetup.com/" target="_blank" rel="noopener">Meetup</a>. Prefer online? Try a site like <a href="https://unblnd.com/?app=desktop&_branch_match_id=1161315708510041341&utm_source=app_link&utm_campaign=general_app_link&utm_medium=marketing&_branch_referrer=H4sIAAAAAAAAA8soKSkottLXL81LyslL0UssKNDLyczL1gcyAPnu1fEbAAAA" target="_blank" rel="noopener">UNBLND</a>.</li> <li><strong>Pick one day each week to share something.</strong> An easy, quick way to connect is to share something you like with someone you think will like it too. Pick one day of the week to share a joke, video, or resource with someone. Set a calendar reminder so you don’t forget.</li> </ul> </div> </div> </button> <button class="card-item"> <div class="card-inner"> <div class="card-front"> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Grief.svg' alt="" title='GBRICS-Grief' /> <h3>Grief</h3> </div> <div class="card-back"> <h3>Grief</h3> <ul> <li><strong>Resist the urge to judge or fake your feelings.</strong> Let yourself feel whatever you’re feeling from day to day.</li> <li><strong>Do something you loved doing with the person you’ve lost.</strong> This can help you feel closer to them.</li> <li><strong>Write a note or a text to your loved one.</strong> Say what you’d want to say to your loved one if they were here. This also helps you get your feelings out.</li> </ul> </div> </div> </button> <button class="card-item"> <div class="card-inner"> <div class="card-front"> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Sadness2.svg' alt="" title='GBRICS-Sadness2' /> <h3>Sadness</h3> </div> <div class="card-back"> <h3>Sadness</h3> <ul> <li><strong>Soak up some sun.</strong> Getting 15 minutes of sun can help boost serotonin (the hormone that helps improve your mood).</li> <li><strong>Question negative thoughts.</strong> Sometimes it helps to replace negative thoughts with a more balanced way of thinking. Ask yourself, “What facts prove that this thought is true? What facts prove it’s not true?” As you question these thoughts, you’ll probably see that they don’t hold up as true.</li> </ul> </div> </div> </button> <button class="card-item"> <div class="card-inner"> <div class="card-front"> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Anger.svg' alt="" title='GBRICS-Anger' /> <h3>Anger</h3> </div> <div class="card-back"> <h3>Anger</h3> <ul> <li><strong>Step away.</strong> When you feel anger rising, step away and try the breathing exercise below.</li> <li><b>Take a box breath.</b><span style="font-weight: 400"> Here’s how the U.S. Navy SEALs de-stress. Count to 4 as you take in a deep, slow breath. Hold your breath for 4 counts. Breathe out for 4 counts. Try to get all the air out of your lungs by the time you count to 4. Repeat. </span></li> <li><b>Get moving. </b><span style="font-weight: 400">Try something that works up a sweat or that has you focus on specific movements, like boxing or jumping rope. </span><span style="font-weight: 400"> </span></li> </ul> </div> </div> </button> <button class="card-item"> <div class="card-inner"> <div class="card-front"> <img src='https://988helpline.org/wp-content/uploads/2023/03/GBRICS-Overwhelmed.svg' alt="" title='GBRICS-Overwhelmed' /> <h3>Overwhelm</h3> </div> <div class="card-back"> <h3>Overwhelm</h3> <ul> <li><b>Take a box breath.</b><span style="font-weight: 400"> Here’s how the U.S. Navy SEALs de-stress. Count to 4 as you take in a deep, slow breath. Hold your breath for 4 counts. Breathe out for 4 counts. Try to get all the air out of your lungs by the time you count to 4. Repeat.</span></li> <li><strong>Break tasks down into smaller chunks.</strong> Write down the steps involved in getting your task done and tackle just one at a time.</li> </ul> </div> </div> </button> </div> </div> <img class="grid-2" src="https://988helpline.org/wp-content/themes/m4c-theme/assets/images/grid/grid-2.svg"> </section> <section class="need-help" style="background-image: url(https://988helpline.org/wp-content/themes/m4c-theme/assets/images/need-help.png); background-position: contain; background-position: 25% 50%; background-repeat: no-repeat;"> <div class="need-help-container"> <h2>Need more help?</h2> <p>If you feel like you need more support, we're always here to help. Call the 988 helpline anytime you need emergency emotional support. It's free, confidential, and available 24/7.</p> </div> </section> <section id="info-text"> <div class="container"> <p>The National Suicide Prevention Lifeline <span class="nobreak">(1-800-273-8255)</span> and the Here2Help Hotline (410-433-5175) are still working — and can also be reached by calling 988.</p> </div> </section> </main> <footer> <a href="/media" class="media-kit">Media</a> <a href="/partner-resources" class="media-kit">Partner Resources</a> </footer> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> </body> <script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script> </html> </div>