michaelkania
Hi,
It's a minor issue of JA Builder plugin which failed to detect HTTPS protocol. This file is updated on your site:
/plugins/system/jabuilder/jabuilder.php
if ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') || $_SERVER['SERVER_PORT'] == 443) {
change to:
if ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') || $_SERVER['SERVER_PORT'] == 443 || $_SERVER['HTTP_X_FORWARDED_PORT'] == 443) {