Back

Contact us

Book Telephone Consultation

Please book a call with member of our team. We will be happy to answer your questions.

Send us a Message

In case you have any queries regarding our courses, faculty or anything else, here’s how you can get in touch with us. Our team will revert to you at the earliest!

This form collects your name, contact number and email address so that our support team can communicate with you and provide assistance. Please check out Privacy Policy to see how we protect and manage your submitted data.

Phone

+44 (0) 203 9300 612

Mobile

+44 (0) 752 6042 497

Email

info@lsbc.uk

Rainham Campus

CEME Business Campus, Marsh Way, Rainham, RM13 8EU

Gants Hill Campus

Imperial Business Centre, 10-17 Seven Ways Parade Woodford Avenue, Gants Hill, Ilford IG2 6JX

/** * Calculate age based on date of birth date picker field * * @link https://wpforms.com/developers/how-to-display-the-age-from-a-date-picker-field/ */ function wpf_dev_check_age() { ?> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } );