{"id":25000,"date":"2023-03-23T16:06:50","date_gmt":"2023-03-23T21:06:50","guid":{"rendered":"https:\/\/testbanksouthern-ada.aceone.io\/?page_id=25000"},"modified":"2026-03-10T09:25:04","modified_gmt":"2026-03-10T14:25:04","slug":"debito","status":"publish","type":"page","link":"https:\/\/staging.banksouthern.com\/es\/debit\/","title":{"rendered":"D\u00e9bito"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_0 et_pb_row et_pb_equal_columns et_block_row\">\n<div class=\"et_pb_column_0 et_pb_column et_pb_column_1_2 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h1>A Better Way to Debit<\/h1>\n<h2>The new Southern Bancorp<br \/>debit card is here!<\/h2>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_1 et_pb_column et_pb_column_1_2 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_code_0 et_pb_code et_pb_module\"><div class=\"et_pb_code_inner\"><script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/gsap\/3.12.2\/gsap.min.js\"><\/script>\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/three.js\/r128\/three.min.js\"><\/script>\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/three@0.128.0\/examples\/js\/loaders\/GLTFLoader.js\"><\/script>\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/three@0.128.0\/examples\/js\/lights\/RectAreaLightUniformsLib.js\"><\/script>\n  <canvas id=\"card-canvas\"><\/canvas>\n<style>\n  #card-canvas {\n    width: 100% !important;\n    height: 100% !important;\n    z-index: 1;\n  }\n<\/style>\n<script>\n\/\/start threeJS\n  function createCardScene() {\n    const canvas = document.getElementById('card-canvas');\n    const renderer = new THREE.WebGLRenderer({ canvas: canvas, alpha: true });\n    \/\/ Use canvas dimensions for renderer size and camera aspect\n    renderer.setSize(canvas.clientWidth, canvas.clientHeight);\n    renderer.setPixelRatio(window.devicePixelRatio);\n\n    const scene = new THREE.Scene();\n    const camera = new THREE.PerspectiveCamera(25, canvas.clientWidth \/ canvas.clientHeight, 0.1, 1000);\n    \/\/ camera.position.z will be set dynamically in onWindowResize\n    \/\/ Initial placeholder, will be overwritten\n    camera.position.z = 5; \n\n    THREE.RectAreaLightUniformsLib.init();\n\n    \n    let cardMesh;\n    const loader = new THREE.GLTFLoader();\n    loader.load(\n        'https:\/\/staging.banksouthern.com\/wp-content\/uploads\/2025\/07\/new-debit-card.glb',\n        function (gltf) {\n            cardMesh = gltf.scene;\n            \/\/ Ensure the card is centered\n            const box = new THREE.Box3().setFromObject(cardMesh);\n            const center = box.getCenter(new THREE.Vector3());\n            cardMesh.position.sub(center); \/\/ Center the model\n            scene.add(cardMesh);\n            onWindowResize(); \/\/ Call to set initial camera position correctly\n        },\n        undefined, \/\/ onProgress callback (optional)\n        function (error) {\n            console.error('An error happened while loading the GLB model:', error);\n        }\n    );\n\n    \/\/ Add lights\n    const ambientLight = new THREE.AmbientLight(0xffffff, 2); \/\/ Soft white light\n    scene.add(ambientLight);\n\n    const rectLight1 = new THREE.RectAreaLight(0xffffff, 10, 5, 15); \n    rectLight1.position.set(3, 2, -2); \/\/ Position the light\n    rectLight1.lookAt( 0, 0, 0 );\n    scene.add(rectLight1);\n\n    const rectLight2 = new THREE.RectAreaLight(0xffffff, 10, 5, 15);\n    rectLight2.position.set(-3 , -2, -2); \/\/ Position another light\n    rectLight2.lookAt( 0, 0, 0 );\n    scene.add(rectLight2);\n\n    function onWindowResize() {\n      \/\/ Use canvas dimensions for renderer size and camera aspect\n      const width = canvas.clientWidth;\n      const height = canvas.clientHeight;\n\n      camera.aspect = width \/ height;\n      renderer.setSize(width, height);\n\n      \/\/ Adjust camera.position.z to keep the card visible and centered\n      if (cardMesh) {\n        const boundingBox = new THREE.Box3().setFromObject(cardMesh);\n        const cardSize = boundingBox.getSize(new THREE.Vector3());\n        const currentAspect = camera.aspect; \n\n        const safeCardSizeX = Math.max(cardSize.x, 0.001);\n        const safeCardSizeY = Math.max(cardSize.y, 0.001);\n        const safeCardSizeZ = Math.max(cardSize.z, 0.001);\n\n        const fovRad = camera.fov * (Math.PI \/ 180); \n        const tanFovDiv2 = Math.tan(fovRad \/ 2);\n\n        const distanceForHeight = (safeCardSizeY \/ 2) \/ tanFovDiv2;\n        const distanceForWidth = (safeCardSizeX \/ 2) \/ (tanFovDiv2 * currentAspect);\n        \n        let cameraZ = Math.max(distanceForHeight, distanceForWidth);\n        \n        cameraZ *= 1.3; \n\n        const minCameraClearance = 0.5; \n        const minAbsDistance = 1.0; \n        const minCalculatedDist = (safeCardSizeZ \/ 2) + minCameraClearance;\n        camera.position.z = Math.max(cameraZ, minCalculatedDist, minAbsDistance);\n      }\n      camera.updateProjectionMatrix(); \n    }\n    window.addEventListener('resize', onWindowResize, false);\n\n    function handleMouseMove(event) {\n      const rect = canvas.getBoundingClientRect();\n      const mouseX = ((event.clientX - rect.left) \/ canvas.clientWidth) * 2 - 1;\n      const mouseY = -((event.clientY - rect.top) \/ canvas.clientHeight) * 2 + 1;\n\n      \/\/ Rotate card based on mouse position\n      \/\/ Adjust sensitivity by multiplying mouseX\/mouseY\n      if (cardMesh) { \/\/ Check if cardMesh is loaded\n        gsap.to(cardMesh.rotation, {\n          y: mouseX * 0.2, \/\/ Rotate around Y-axis based on horizontal mouse movement\n          x: -mouseY * 0.2, \/\/ Rotate around X-axis based on vertical mouse movement (inverted)\n          duration: 0.5,\n          ease: \"power2.out\"\n        });\n      }\n    }\n    document.addEventListener('mousemove', handleMouseMove, false);\n    \/\/ Add touch support\n    function handleTouchMove(event) {\n        if (event.touches.length > 0) {\n            const touch = event.touches[0];\n            const rect = canvas.getBoundingClientRect();\n            const mouseX = ((touch.clientX - rect.left) \/ canvas.clientWidth) * 2 - 1;\n            const mouseY = -((touch.clientY - rect.top) \/ canvas.clientHeight) * 2 + 1;\n            if (cardMesh) { \/\/ Check if cardMesh is loaded\n              gsap.to(cardMesh.rotation, {\n                  y: mouseX * 0.3,\n                  x: -mouseY * 0.3,\n                  duration: 0.5,\n                  ease: \"power2.out\"\n              });\n            }\n        }\n    }\n    document.addEventListener('touchmove', handleTouchMove, false);\n\n\n    function animate() {\n      requestAnimationFrame(animate);\n      renderer.render(scene, camera);\n    }\n    animate();\n  }\n\n  window.addEventListener('DOMContentLoaded', function() {\n    createCardScene();\n  });\n<\/script>\n<\/html><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_1 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_1 et_pb_row et_block_row\">\n<div class=\"et_pb_column_2 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_0 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap et_pb_only_image_mode_wrap\"><img decoding=\"async\" src=\"https:\/\/staging.banksouthern.com\/wp-content\/uploads\/2025\/07\/globe-02.svg\" class=\"wp-image-35079\" alt=\"Globe Icon\" \/><\/span><\/div><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Expanded ATM Partnership Network<\/h4><div class=\"et_pb_blurb_description\"><p>Free ATM service for withdrawals and account balance inquiries at any Regions Bank or Bank of America* location worldwide.<\/p>\n<\/div><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_3 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_1 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap et_pb_only_image_mode_wrap\"><img decoding=\"async\" src=\"https:\/\/staging.banksouthern.com\/wp-content\/uploads\/2025\/07\/nfc-02.svg\" class=\"wp-image-35080\" alt=\"Contactless Pay Icon\" \/><\/span><\/div><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">More Ways to Pay<\/h4><div class=\"et_pb_blurb_description\"><p>New card features include contactless debit, Apple Pay, Google Wallet, and Samsung Pay compatibility.<\/p>\n<\/div><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_4 et_pb_column et_pb_column_1_3 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_2 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap et_pb_only_image_mode_wrap\"><img decoding=\"async\" src=\"https:\/\/staging.banksouthern.com\/wp-content\/uploads\/2025\/07\/shield-02.svg\" class=\"wp-image-35081\" alt=\"Shield Icon\" \/><\/span><\/div><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Advanced Fraud Detection<\/h4><div class=\"et_pb_blurb_description\"><p>Detects and alerts you of suspicious activity the moment it is noticed.<\/p>\n<\/div><\/div><\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_2 et_pb_row et_block_row\">\n<div class=\"et_pb_column_5 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_1 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module et_pb_text_align_center\"><div class=\"et_pb_text_inner\"><p>*Regions Bank and Bank of America will waive the industry-standard out-of-network fee. Bank of America ATMs available for personal accounts only.<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_2 et_pb_section et_section_regular et_block_section meshGradient\">\n<div class=\"et_pb_row_3 et_pb_row et_block_row\">\n<div class=\"et_pb_column_6 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_code_1 et_pb_code et_pb_module\"><div class=\"et_pb_code_inner\"><style>\n      .meshGradient {                      \n        overflow: hidden;\n        background-size: 400% 400%;\t        \n      }\n<\/style>\n<script>\n        const meshGradient = document.querySelector('.meshGradient');\n        let targetX = 50;\n        let targetY = 50;\n        let currentX = 50; \/\/ Initial position X\n        let currentY = 50; \/\/ Initial position Y\n        const smoothing = 0.05; \/\/ Adjust this value for more or less smoothing\n\n        let mouseMoved = false;\n        let inactivityTimer;\n        let defaultAnimationTime = 0; \/\/ Used for the default animation cycle\n\n        document.addEventListener('mousemove', function(e) {\n            targetX = (e.clientX \/ window.innerWidth) * 100;\n            targetY = (e.clientY \/ window.innerHeight) * 100;\n            mouseMoved = true; \/\/ Flag that mouse is controlling the gradient\n\n            \/\/ Reset inactivity timer\n            clearTimeout(inactivityTimer);\n            inactivityTimer = setTimeout(() => {\n                mouseMoved = false; \/\/ Mouse is now inactive, default animation will take over\n            }, 1000); \/\/ 1 second of inactivity before reverting to default animation\n        });\n\n        function animateGradient() {\n            if (!mouseMoved) {\n                \/\/ Default animation logic when mouse is inactive\n                defaultAnimationTime += 0.002; \/\/ Increment time for animation cycle, adjust for speed\n                \/\/ Oscillate targetX between ~2% and ~98% for a gentle horizontal pan\n                targetX = 50 + Math.sin(defaultAnimationTime) * 48;\n                targetY = 50; \/\/ Keep targetY stable, or animate it similarly if desired\n                               \/\/ e.g., targetY = 50 + Math.cos(defaultAnimationTime * 0.7) * 10;\n            }\n\n            \/\/ Smoothly interpolate current position towards the target position\n            currentX += (targetX - currentX) * smoothing;\n            currentY += (targetY - currentY) * smoothing;\n\n            meshGradient.style.backgroundPosition = `${currentX}% ${currentY}%`;\n\n            requestAnimationFrame(animateGradient); \/\/ Continue the animation loop\n        }\n\n        \/\/ Initialize background position via JavaScript as CSS animation is removed\n        meshGradient.style.backgroundPosition = `${currentX}% ${currentY}%`;\n        animateGradient(); \/\/ Start the animation loop\n    <\/script><\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_4 et_pb_row et_block_row\">\n<div class=\"et_pb_column_7 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_3 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap et_pb_only_image_mode_wrap\"><img decoding=\"async\" src=\"https:\/\/staging.banksouthern.com\/wp-content\/uploads\/2025\/07\/phone.svg\" class=\"wp-image-35082\" alt=\"Globe Icon\" \/><\/span><\/div><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Activate<\/h4><div class=\"et_pb_blurb_description\"><p>It\u2019s easy to do via phone. Simply call <a href=\"tel:+18885365835\">1(888) 536-5835<\/a>.<\/p>\n<\/div><\/div><\/div><\/div>\n\n<div class=\"et_pb_blurb_4 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_left et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-pb-icon\">\uf071<\/span><\/span><\/div><div class=\"et_pb_blurb_container\"><div class=\"et_pb_blurb_description\"><p>Your current debit card will be disabled once your new card is activated.<\/p>\n<\/div><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_8 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_5 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap et_pb_only_image_mode_wrap\"><img decoding=\"async\" src=\"https:\/\/staging.banksouthern.com\/wp-content\/uploads\/2025\/07\/credit-card-edit.svg\" class=\"wp-image-35083\" alt=\"Contactless Pay Icon\" \/><\/span><\/div><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Update<\/h4><div class=\"et_pb_blurb_description\"><p>Make sure all automatic payments associated with your old debit card are updated with your new card information.<\/p>\n<\/div><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_9 et_pb_column et_pb_column_1_3 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_6 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap et_pb_only_image_mode_wrap\"><img decoding=\"async\" src=\"https:\/\/staging.banksouthern.com\/wp-content\/uploads\/2025\/07\/telescope.svg\" class=\"wp-image-35084\" alt=\"Shield Icon\" \/><\/span><\/div><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Explore<\/h4><div class=\"et_pb_blurb_description\"><p>Enjoy all of the new benefits and features of your new debit card.<\/p>\n<\/div><\/div><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_3 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_5 et_pb_row et_block_row\">\n<div class=\"et_pb_column_10 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_2 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h2>FAQs<\/h2>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_0 et_pb_accordion et_pb_module et_flex_module\">\n<div class=\"et_pb_accordion_item_0 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_open et_block_module\"><h5 class=\"et_pb_toggle_title\">How do I activate my new debit card?<\/h5><div class=\"et_pb_toggle_content\"><p>Call\u00a0<strong>1(888) 536-5835<\/strong>\u00a0and follow the prompts. During activation, you will have the opportunity to set your new PIN. Be sure to\u00a0<strong>activate as soon as your card arrives<\/strong>\u00a0so that you can begin enjoying all the features and benefits.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_1 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">What if I haven't received a new debit card in the mail?<\/h5><div class=\"et_pb_toggle_content\"><ul class=\"RichTextList-bulleted\">\n<li>\n<div class=\"TypographyPresentation TypographyPresentation--medium RichText3-paragraph--withVSpacingNormal RichText3-paragraph HighlightSol HighlightSol--buildingBlock\"><strong>Consumer:<\/strong> Visit your nearest branch to get a new debit card, or give our Customer Care Center a call at <strong>1(800) 789-3428<\/strong>.<\/div>\n<\/li>\n<li>\n<div class=\"TypographyPresentation TypographyPresentation--medium RichText3-paragraph--withVSpacingNormal RichText3-paragraph HighlightSol HighlightSol--buildingBlock\"><strong>Commercial:<\/strong> Give our Customer Care Center a call at <strong>1(800) 789-3428<\/strong>.<\/div>\n<\/li>\n<\/ul>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_2 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">When will my old Southern Bancorp debit card be deactivated?<\/h5><div class=\"et_pb_toggle_content\"><div class=\"TypographyPresentation TypographyPresentation--medium RichText3-paragraph--withVSpacingNormal RichText3-paragraph\"><span>Your old card will be deactivated within 5 business days following the activation of your new Southern Bancorp debit card.<\/span><\/div>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_3 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">Why am I getting a new debit card?<\/h5><div class=\"et_pb_toggle_content\"><p>The new Southern Bancorp debit cards bring more convenience, security, and flexibility to you. Here are some of the new features and benefits to look forward to:<\/p>\n<ul>\n<li><strong><span>Expanded ATM Partnership Network<\/span> <\/strong>with free ATM service*<strong>\u00a0<\/strong>for withdrawals and account balance inquiries at any\u00a0<strong><em>Regions Bank<\/em><\/strong>\u00a0or\u00a0<strong><em>Bank of America<\/em><\/strong>* location WORLDWIDE!<\/li>\n<li><strong>More Ways to Pay\u00a0<\/strong>with\u00a0<strong><em>contactless debit<\/em><\/strong>,\u00a0<strong><em>Apple Pay<\/em><\/strong>, and\u00a0<strong><em>Google Wallet<\/em><\/strong>\u00a0compatibility.<\/li>\n<li><strong>Advanced Fraud Detection<\/strong>\u00a0that detects and alerts you of suspicious activity the moment it is noticed.<\/li>\n<\/ul>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_4 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">Will my PIN stay the same?<\/h5><div class=\"et_pb_toggle_content\"><p>During the card activation process, you will be prompted to select a PIN for your new card.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_5 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">Can I change my debit card PIN number after I activate my debit card?<\/h5><div class=\"et_pb_toggle_content\"><p>Yes, simply call <strong>1(888) 549-8515<\/strong> and follow the prompts.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_6 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">Will my old debit card still work after activating my new card?<\/h5><div class=\"et_pb_toggle_content\"><p>No, your old debit card will be disabled once you activate your new card. Please be sure you cut your old debit card up before throwing it away.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_7 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">What if I have issues activating my card?<\/h5><div class=\"et_pb_toggle_content\"><p>Call us at <strong>1(800) 789-3428<\/strong> and a Customer Care representative will be glad to assist you. Please note: Customer Care hours of operation are Monday \u2013 Friday, 8:30 AM to 5:00 PM.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_8 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">What happens to automatic payments (bills and subscriptions) currently linked to my old debit card?<\/h5><div class=\"et_pb_toggle_content\"><p>You will need to update billing details on your accounts that use your current debit card for payments, so no payments are missed. The new debit card comes with a new card number, expiration date, and a 3-digit security code on the back.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_9 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">Will the direct deposit of my paycheck be impacted?<\/h5><div class=\"et_pb_toggle_content\"><p>No. Direct deposit of a paycheck, Social Security income, or retirement funds are sent via Automated Clearing House (ACH) transactions and not through your Southern Bancorp debit card.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_10 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">What if I have a credit or refund for a payment on my old debit card?<\/h5><div class=\"et_pb_toggle_content\"><p>Your checking account will receive the credit. You will not have to do anything for the credit to be deposited to your account.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_11 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">How does the expanded ATM partnership network work?<\/h5><div class=\"et_pb_toggle_content\"><p>Just use your new Southern Bancorp debit card as usual for either withdrawals or account balance inquiries at any Regions Bank or Bank of America location WORLDWIDE and no ATM service fees will apply. At this time, deposits are not able to be made at these locations.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_12 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">What is contactless tap-to-pay?<\/h5><div class=\"et_pb_toggle_content\"><p>Southern Bancorp\u2019s new contactless debit cards will allow you to tap your debit card against a<strong>\u00a0<\/strong>compatible reader instead of inserting or swiping your card. When you tap or hold your card near the contactless symbol on a merchant terminal, you can securely make payment.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_13 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">How do I set up contactless debit, Apple Pay, and Google Wallet?<\/h5><div class=\"et_pb_toggle_content\"><ul>\n<li>Apple Pay set up instructions: <a href=\"https:\/\/nam11.safelinks.protection.outlook.com\/?url=https%3A%2F%2Fwww.apple.com%2Fapple-pay%2F&amp;data=05%7C02%7Cabbie.kingsley%40banksouthern.com%7C4fbe83e0ac6f48496cab08dc484c7c1d%7Ca61380684e6f4db0b5852ddfdebb612a%7C0%7C0%7C638464740544168908%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=I6%2BZ5kXzgrDdeF4PSGpt%2FsTRu9LrdgR7a3bNCL6Y1uE%3D&amp;reserved=0\"><strong>https:\/\/www.apple.com\/apple-pay\/<\/strong><\/a><\/li>\n<li>Google Wallet set up instructions: <a href=\"https:\/\/nam11.safelinks.protection.outlook.com\/?url=https%3A%2F%2Fwallet.google%2Fintl%2Fen_us%2F&amp;data=05%7C02%7Cabbie.kingsley%40banksouthern.com%7C4fbe83e0ac6f48496cab08dc484c7c1d%7Ca61380684e6f4db0b5852ddfdebb612a%7C0%7C0%7C638464740544183039%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=4bHbgrtS130aQhmP2%2Fit9fRIH92Pb2par4P5YujhDCs%3D&amp;reserved=0\"><strong>https:\/\/wallet.google\/intl\/en_us\/<\/strong><\/a><\/li>\n<li>Samsung Wallet set up instructions: <a href=\"https:\/\/nam11.safelinks.protection.outlook.com\/?url=https%3A%2F%2Fwww.samsung.com%2Fsg%2Fsupport%2Fapps-services%2Fhow-to-setup-samsung-wallet%2F&amp;data=05%7C02%7Cabbie.kingsley%40banksouthern.com%7C4fbe83e0ac6f48496cab08dc484c7c1d%7Ca61380684e6f4db0b5852ddfdebb612a%7C0%7C0%7C638464740544190127%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=51N5zOqr3EI099udONhHL1%2Bkv3w9BSdjudhF2uaBLXw%3D&amp;reserved=0\"><strong>https:\/\/www.samsung.com\/sg\/support\/apps-services\/how-to-setup-samsung-wallet\/<\/strong><\/a><\/li>\n<\/ul>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_14 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">What if I lose my new debit card?<\/h5><div class=\"et_pb_toggle_content\"><p>If you lose your new Southern Bancorp debit card, please call our customer care team at <strong>1(800) 789-3428<\/strong> during our normal hours of operation.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_15 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">What do I do if my current card is expiring?<\/h5><div class=\"et_pb_toggle_content\"><ul class=\"RichTextList-bulleted\">\n<li>\n<div class=\"TypographyPresentation TypographyPresentation--medium RichText3-paragraph--withVSpacingNormal RichText3-paragraph HighlightSol HighlightSol--buildingBlock\"><strong>Consumer:<\/strong> Visit your nearest branch to get a new debit card, or give our Customer Care Center a call at <strong>1(800) 789-3428<\/strong>.<\/div>\n<\/li>\n<li>\n<div class=\"TypographyPresentation TypographyPresentation--medium RichText3-paragraph--withVSpacingNormal RichText3-paragraph HighlightSol HighlightSol--buildingBlock\"><strong>Commercial:<\/strong> Give our Customer Care Center a call at <strong>1(800) 789-3428<\/strong>.<\/div>\n<\/li>\n<\/ul>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_16 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_block_module\"><h5 class=\"et_pb_toggle_title\">What if I find my card after reporting it lost?<\/h5><div class=\"et_pb_toggle_content\"><div class=\"TypographyPresentation TypographyPresentation--medium RichText3-paragraph--withVSpacingNormal RichText3-paragraph\">You have the option to un-pause the card through online or mobile banking.<\/div>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_4 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_6 et_pb_row et_pb_equal_columns et_block_row\">\n<div class=\"et_pb_column_11 et_pb_column et_pb_column_1_2 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_3 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h2>Customer Support<\/h2>\n<p>Monday - Friday 8:30AM - 5:00PM<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_4 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p><a href=\"mailto:support@banksouthern.com\">support@banksouthern.com<\/a><br \/><a href=\"tel:+18007893428\">1 (800) 789-3428<\/a><\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_12 et_pb_column et_pb_column_1_2 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_5 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Activate: <a href=\"tel:+18885365835\">1 (888) 536-5835<\/a><\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_6 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Change Pin Number: <a href=\"tel:+1885498515\">1 (888) 549-8515<\/a><\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_7 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Issues Activating Card: <a href=\"tel:+18007893428\">1 (800) 789-3428<\/a><\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_8 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Lost Debit Card: <a href=\"tel:+18007893428\">1 (800) 789-3428<\/a><\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":10242,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-25000","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/staging.banksouthern.com\/es\/wp-json\/wp\/v2\/pages\/25000","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staging.banksouthern.com\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/staging.banksouthern.com\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/staging.banksouthern.com\/es\/wp-json\/wp\/v2\/users\/10242"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.banksouthern.com\/es\/wp-json\/wp\/v2\/comments?post=25000"}],"version-history":[{"count":58,"href":"https:\/\/staging.banksouthern.com\/es\/wp-json\/wp\/v2\/pages\/25000\/revisions"}],"predecessor-version":[{"id":37113,"href":"https:\/\/staging.banksouthern.com\/es\/wp-json\/wp\/v2\/pages\/25000\/revisions\/37113"}],"wp:attachment":[{"href":"https:\/\/staging.banksouthern.com\/es\/wp-json\/wp\/v2\/media?parent=25000"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}