$(document).ready(function () {
    "use strict";


    // begin:: Apply now Modal
    let targetItem = document.querySelectorAll('.getFinancing');
    targetItem.forEach(item => {

        item.addEventListener("click", () => {
            console.log('clicked');
            let modal = document.querySelector('#myModal');
            modal.style.display = 'block';
            document.querySelector('.closeBtn').addEventListener("click", () => {
                modal.style.display = 'none';
            });
        });




    });
    // end:: Apply now Modal





});