/**
  * Access the single instance of this class
  * @return Avada_Settings
  */
 public static function get_instance()
 {
     if (null == self::$instance) {
         self::$instance = new Avada_Settings();
     }
     return self::$instance;
 }